Helpful Resources and Reminders for Pose Post‐Analysis - LizbethMG/DLC_PoseAnalysis GitHub Wiki
This resource provides some essential documentation I have gathered for post-analysis projects using DeepLabCut (DLC) results.
Before using DLC results:
- Ensuring Reliable Pose Analysis with DeepLabCut Read more
- My DLC results are not very accurate. What can I do? Read more
Useful links:
- Deeplabcut's Tutorials and cookbook (Read more)
- List of Open-source software for automated rodent behavioral analysis (until 04 / 2023)
Reminder of useful commands
In your terminal window, run:
- To see a list of all of your environments:
conda info --envs - Activate environment:
conda activate name_of_environment - Check the Python version installed in your environment:
python --version - List installed packages and versions in your environment:
conda list - Remove environement:
conda env remove --name [replace by env name]