Skip to main content

deepof (Deep Open Field): Open Field animal pose classification tool

Reason this release was yanked:

pre-release

Project description

Maintainability Maintainability Maintainability Maintainability Maintainability

DeepOF

A suite for postprocessing time-series extracted from videos of freely moving animals using DeepLabCut

You can use this package to either extract pre-defined motifs from the time series (such as time-in-zone, climbing, basic social interactions) or to embed your data into a sequence-aware latent space to extract meaningful motifs in an unsupervised way! Both of these can be used within the package, for example, to automatically compare user-defined experimental groups.

How do I start?

Installation:

open a terminal (with python>3.6 installed) and type: pip install deepof

Before we delve in:

To start, create a folder for your project with at least two subdirectories inside, called 'Videos' and 'Tables'. The former should contain the videos you're working with (either you original data or the labeled ones obtained from DLC); the latter should have all the tracking tables you got from DeepLabCut, either in .h5 or .csv format. If you don't want to use DLC yourself, don't worry: a compatible pre-trained model for mice will be released soon!

my_project  -- Videos -> all tagged videos
            |
            |
            -- Tables -> all tracking tables (.h5 or .csv)

IMPORTANT: You should make sure that the tables and videos correspond to the same experiments. While the names should be compatible, this is handled by DLC by default.

Basic usage:

The main module with which you'll interact is called deepof.data. Let's import it and create a project:

import deepof.data
my_project = deepof.data.project(path="./my_project",
                                 smooth_alpha=0.99)

This command will create a deepof.data.project object storing all the necessary information to start. The smooth_alpha parameter will control how much smoothing will be applied to your trajectories, using an exponentially weighted average. Values close to 0 apply a stronger smoothing, and values close to 1 a very light one. In practice, we recommend values between 0.95 and 0.99 if your trajectories are not too noisy. There are other things you can do here, but let's stick to the basics for now.

One you have this, you can run you project using the .run() method, which will do quite a lot of computing under the hood (load your data, smooth your trajectories, compute distances and angles). The returned object belongs to the deepof.data.coordinates class.

my_project = my_project.run(verbose=True)

Once you have this, you can do several things! But let's first explore how the results of those computations I mentioned are stored. To extract trajectories, distances and/or angles, you can respectively type:

my_project_coords = my_project.get_coords(center=True, polar=False, speed=0, align="Nose", align_inplace=True)
my_project_dists  = my_project.get_distances(speed=0)
my_project_angles = my_project.get_angles(speed=0)

Here, the data are stored as deepof.data.table_dict instances. These are very similar to python dictionaries with experiment IDs as keys and pandas.DataFrame objects as values, with a few extra methods for convenience. Peeping into the parameters you see in the code block above, center centers your data (it can be either a boolean or one of the body parts in your model! in which case the coordinate origin will be fixed to the position of that point); polar makes the .get_coords() method return polar instead of Cartesian coordinates, and speed indicates the derivation level to apply (0 is position-based, 1 speed, 2 acceleration, 3 jerk, etc). Regarding align and align-inplace, they take care of aligning the animal position to the y Cartesian axis: if we center the data to "Center" and set align="Nose", align_inplace=True, all frames in the video will be aligned in a way that will keep the Center-Nose axis fixed. This is useful to constrain the set of movements that one can extract with out unsupervised methods.

As mentioned above, the two main analyses that you can run are supervised and unsupervised. They are executed by the .rule_based_annotation() method, and the .gmvae_embedding() methods of the deepof.data.coordinates class, respectively.

rule_based_annot = my_project.rule_based_annotation()
gmvae_embedding  = my_project.gmvae_embedding()

The former returns a deepof.data.table_dict object, with a pandas.DataFrame per experiment containing a series of annotations. The latter is a bit more complicated: it returns an array containing the encoding of the data per animal, another one with motif membership per time point (probabilities of the animal doing whatever is represented by each of the clusters at any given time), an abstract distribution (a multivariate Gaussian mixture) representing the extracted components, and a decoder you can use to generate samples from each of the extracted components (yeah, you get a generative model for free).

That's it for this (very basic) introduction. More detailed documentation, tutorials and method explanation will follow, so stay tuned!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

deepof-0.1.3.tar.gz (49.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

deepof-0.1.3-py3-none-any.whl (52.1 kB view details)

Uploaded Python 3

File details

Details for the file deepof-0.1.3.tar.gz.

File metadata

  • Download URL: deepof-0.1.3.tar.gz
  • Upload date:
  • Size: 49.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.6

File hashes

Hashes for deepof-0.1.3.tar.gz
Algorithm Hash digest
SHA256 a0924870aedccda92850075e24d08d12f56daa677541d1ebac2778052550c369
MD5 c236e75ce69c2949516844a66734791e
BLAKE2b-256 f7c4c3a70b9edc9ec7a37354090e342536af435ccbbde36608605f0a5527faed

See more details on using hashes here.

File details

Details for the file deepof-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: deepof-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 52.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.6

File hashes

Hashes for deepof-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 79cd4f321974d7f78da44b68b6e90f67c67f9e27260a689dfa5196390a9120ee
MD5 3f876a4c3cc72e41548d20cc1f012ad7
BLAKE2b-256 c894bb7b7073368a22a81ba096a29ed5cd129e587bf3914f43a4998ecfa5f6cf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page