Bonsai.DeepLabCut is a Bonsai interface for DeepLabCut allowing real-time markerless pose estimation using pretrained models stored in the Protocol Buffers (pb) format. Natively, DLC stores the result of training as checkpoints, but it is possible to export them to .pb files using the deeplabcut.export_model
function within DLC (Read more here).
Bonsai.DeepLabCut loads these .pb files using TensorFlowSharp, a set of .NET bindings for TensorFlow allowing native inference using either the CPU or GPU. By using the .pb file and the pose configuration YAML (pose_cfg.yaml
), the DetectPose
operator from Bonsai.DeepLabCut automatically sets up an inference graph and feeds it with live image data coming from any other Bonsai image source. The output is a Pose
class which you can access to extract specific body parts, filter out invalid positions using a confidence threshold, or record using CsvWriter
.
The Bonsai.DeepLabCut project was kickstarted at the DeepLabCut Hackathon sponsored by the Chan Zuckerberg Initiative and held at Harvard University in March 2020. It has since been published in eLife (Kane et al, eLife 2020).
Bonsai.DeepLabCut can be downloaded through the Bonsai package manager. In order to get visualizer support, you should download both the Bonsai.DeepLabCut
and Bonsai.DeepLabCut.Design
packages. However, in order to use it for either CPU or GPU inference, you need to pair it with a compiled native TensorFlow binary. You can find precompiled binaries for Windows 64-bit at https://www.tensorflow.org/install/lang_c.
To use GPU TensorFlow (highly recommended for live inference), you also need to install the CUDA Toolkit 11.2 from the CUDA Toolkit Archive, and download cuDNN 8.1.0 for CUDA 11.2. Make sure you have a CUDA 11 compatible GPU with the latest NVIDIA drivers.
After downloading the native TensorFlow binary and cuDNN, you can follow these steps to get the required native files into the Extensions
folder of your local Bonsai install:
- The easiest way to find your Bonsai install folder is to right-click on the Bonsai shortcut > Properties. The path to the folder will be shown in the "Start in" textbox;
- Copy
tensorflow.dll
file from either the CPU or GPU tensorflow release to theExtensions
folder; - If you are using TensorFlow GPU, make sure to add the
cuda/bin
folder of your cuDNN download to thePATH
environment variable, or copy all DLL files to theExtensions
folder.
The core operator of Bonsai.DeepLabCut is the DetectPose
node. You can place it after any image source, like so:
You will also need to point the ModelFileName
to the exported .pb file containing your pretrained DLC model, and the PoseConfigFileName
to the pose_cfg.yaml
file describing the joint labels of the pose skeleton.
If everything works out, you should see some indications in the Bonsai command line window about whether the GPU was successfully detected and enabled. The first frame will cold start the inference graph which may take a bit of time, but after that your poses should start streaming through!
For all questions regarding installation of DeepLabCut, please check the official docs. However, we did find the following build steps to be reliable for a self-contained barebones install on Windows at the time of writing:
- Download WinPython 3.8.10 64bit only from GitHub.
- Extract to a folder and launch
WinPython Command Prompt.exe
. pip install tensorflow==2.8.0
orpip install tensorflow-gpu==2.8.0
depending on whether you will be using CPU or GPU TensorFlow.pip install deeplabcut[gui]==2.2.0.6
.- Launch the DLC gui:
python -m deeplabcut
.