You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-9Lines changed: 16 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,15 +60,24 @@
60
60
61
61
Please click the link above for all the information you need to get started! Please note that currently we support only Python 3.10+ (see conda files for guidance).
62
62
63
-
Developers Stable Release:
64
-
- Very quick start: You need to have TensorFlow installed (up to v2.10 supported across platforms) `pip install "deeplabcut[gui,tf]"` that includes all functions plus GUIs, or `pip install deeplabcut[tf]` (headless version with PyTorch and TensorFlow).
65
-
66
-
Developers Alpha Release:
67
-
- We also have an alpha release of PyTorch DeepLabCut available! [Please see here for instructions and information](https://github.com/DeepLabCut/DeepLabCut/blob/pytorch_docs/docs/pytorch/user_guide.md).
63
+
Developers Stable Release: very quick start (Python 3.10+ required) to install
64
+
DeepLabCut with the PyTorch engine
65
+
66
+
-[Install PyTorch](https://pytorch.org/get-started/locally/) (**select the desired
67
+
CUDA version if you want to use a GPU**): `pip install torch torchvision`
- Finally, install `DeepLabCut` (with all functions + the GUI):
70
+
`pip install --pre "deeplabcut[gui]"` or `pip install --pre "deeplabcut"` (headless
71
+
version with PyTorch)!
72
+
73
+
To use the TensorFlow engine (requires Python 3.10; TF up to v2.10 supported on Windows,
74
+
up to v2.12 on other platforms): you'll need to run `pip install "deeplabcut[gui,tf]"`
75
+
(which includes all functions plus GUIs) or `pip install "deeplabcut[tf]"` (headless
76
+
version with PyTorch and TensorFlow).
68
77
69
78
We recommend using our conda file, see [here](https://github.com/DeepLabCut/DeepLabCut/blob/main/conda-environments/README.md) or the new [`deeplabcut-docker` package](https://github.com/DeepLabCut/DeepLabCut/tree/main/docker).
70
79
71
-
# [Documentation: The DeepLabCut Process](https://deeplabcut.github.io/DeepLabCut)
80
+
# [Documentation: The DeepLabCut Process](https://deeplabcut.github.io/DeepLabCut/README.html)
72
81
73
82
Our docs walk you through using DeepLabCut, and key API points. For an overview of the toolbox and workflow for project management, see our step-by-step at [Nature Protocols paper](https://doi.org/10.1038/s41596-019-0176-0).
74
83
@@ -82,9 +91,7 @@ For a deeper understanding and more resources for you to get started with Python
82
91
83
92
🐭 pose tracking of single animals demo [](https://colab.research.google.com/github/DeepLabCut/DeepLabCut/blob/master/examples/COLAB/COLAB_DEMO_mouse_openfield.ipynb)
84
93
85
-
🐭🐭🐭 pose tracking of multiple animals demo [](https://colab.research.google.com/github/DeepLabCut/DeepLabCut/blob/master/examples/COLAB/COLAB_3miceDemo.ipynb)
86
-
87
-
- See [more demos here](https://github.com/DeepLabCut/DeepLabCut/blob/main/examples/README.md). We provide data and several Jupyter Notebooks: one that walks you through a demo dataset to test your installation, and another Notebook to run DeepLabCut from the beginning on your own data. We also show you how to use the code in Docker, and on Google Colab.
94
+
See [more demos here](https://github.com/DeepLabCut/DeepLabCut/blob/main/examples/README.md). We provide data and several Jupyter Notebooks: one that walks you through a demo dataset to test your installation, and another Notebook to run DeepLabCut from the beginning on your own data. We also show you how to use the code in Docker, and on Google Colab.
Copy file name to clipboardExpand all lines: conda-environments/DEEPLABCUT.yaml
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,13 @@
9
9
#Licensed under GNU Lesser General Public License v3.0
10
10
#
11
11
# DeepLabCut environment
12
-
# FIRST: INSTALL CORRECT DRIVER for GPU, see https://stackoverflow.com/questions/30820513/what-is-the-correct-version-of-cuda-for-my-nvidia-driver/30820690
13
12
#
14
-
# AFTER THIS FILE IS INSTALLED, if you have a GPU be sure to install cudnn from conda-forge: conda install cudnn -c conda-forge
13
+
# FIRST: If you have an NVIDIA GPU and want to use it, check that you have drivers installed!
14
+
# To check if your GPUs are visible to PyTorch (and thus DeepLabCut), run:
0 commit comments