FAQ and Common User Hurdles#

1) The system cannot find the path specified

  • check your path and if you’re running the terminal as administrator. As a good practice avoid using white spaces and dots in your folder and file names. Use _ or - instead

2) Blury images

  • If there is a lot of motion blur and you absolutely need to label blurry bodyparts, you should do it but try to be as consistent as possible

3) ‘OOM when allocating tensor with shape’

  • You’re trying to use more memory than is available on your GPU. Consider cropping unnecessary parts of the image, changing the batch_size or the global_scale in pose_cfg.yaml

4) How do I restart the training from snapshot?

  • To restart training from a snapshot you have to change the init_weights in your pose_cfg.yaml file to a path of your snapshot (without the extension!) e.g.:
    init_weights: "C:\path\project_path-2022-10-03\dlc-models\iteration-0\project_pathOct3-trainset95shuffle1\train\snapshot-100000"

5) Can I add new bodyparts to an existing project?

  • Yes! You’ll then have to label those new bodyparts onto all your images stored in labeled-data and create a new training dataset - remember to change iteration number in your config.yaml file

    Additional info on restarting training after adding new bodyparts: https://forum.image.sc/t/adding-new-labels/73675

6) ‘Error: Tracklets are empty’

  • This error usually means that your model hasn’t been trained well enough. You can run deeplabcut.create_video_with_all_detections(config_path, video_path) to see how it performs

7) No suitable videos found in “yourpath” error

  • Check if your path isn’t pointing to a “_labeled” video. You should always point to the regular video that was used for analysis

8) Video analysis stuck at a specific point/cannot start analysis

  • Most likely this frame of the video was corrupted/the whole video has been corrupted. Re-encode the video following the amazing guide (:grin:) written by @KonradDanielewski Video reencoding

9) Missing data/jumping labels/occlusions

  • low likelihood detections that result in missing data at visualization step are completely normal and to be expected. Essential step of pose estimation data processing is filtering it and interpolating what you consider bad detections. For general purposes, DLC offer deeplabcut.filterpredictions(config_path,              filtertype="arima"/"median"/"spline"

10) How to report issues and share snippets of code?

  • To report any issues, especially when sharing code or error tracebacks we use Markdown, a markup language used for formatting text. This allows us to easily create code blocks, quote others, bold/italicize/underscore etc. You can follow this short guide for Markdown from Discord or this more elaborate one to become a Markdown expert!

If you can’t find what you are looking 👀 for here, you should checkout the community forum!#

🚨 Feel free to post your question there (on the User forum or Discord)!#