Skip to main content

Machine learning for animal behavior analysis

Project description

codecov

Ethome

Machine learning for animal behavior.

Interprets pose-tracking files (currently only from DLC) and behavior annotations (currently only from BORIS) to train a behavior classifier, perform unsupervised learning, and other common analysis tasks.

Features

  • Interpolate DLC data
  • Create generic features for kinematic analysis and downstream ML tasks
  • Create features specifically for mouse resident-intruder setup
  • Read in DLC pose data and corresponding BORIS behavior annotations to make supervised learning easy
  • Perform unsupervised learning on pose data to extract discrete behavioral motifs (MotionMapper)
  • Quickly generate a movie with behavior predictions

Installation

pip install ethome-ml

Can install optional extras with:

pip install numpy, cython
pip install ethome-ml[all]

This includes matplotlib, keras, and Linderman lab's state-space model package, ssm. Note that installing ssm requires cython and numpy for the build, so must be already present in the environment.

Quickstart

Import

from glob import glob 
from ethome import createExperiment, clone_metadata
from ethome.features import CNN1DProb, MARS
from ethome.io import get_sample_data_paths

Gather the DLC and BORIS tracking and annotation files

tracking_files, boris_files = get_sample_data_paths()

Setup some parameters

frame_width = 20                 # (float) length of entire horizontal shot
frame_width_units = 'in'         # (str) units frame_width is given in
fps = 30                         # (int) frames per second
resolution = (1200, 1600)        # (tuple) HxW in pixels

Create a parameter object and video dataset

metadata = clone_metadata(tracking_files, 
                          label_files = boris_files, 
                          frame_width = frame_width, 
                          fps = fps, 
                          frame_width_units = frame_width_units, 
                          resolution = resolution)

animal_renamer = {'adult': 'resident', 'juvenile':'intruder'}

dataset = createExperiment(metadata, animal_renamer=animal_renamer)

Now create features on this dataset. Feature creation objects are class instances, similar to sk-learn:

cnn_probabilities = CNN1DProb()
mars = MARS()

dataset.features.add(cnn_probabilities, 
                     featureset_name = '1dcnn', 
                     add_to_features = True)

dataset.features.add(mars, 
                     featureset_name = 'MARS', 
                     add_to_features = True)

Now access a features table, labels, and groups for learning with dataset.ml.features, dataset.ml.labels, dataset.ml.groups. From here it's easy to use some ML libraries to predict behavior. For example:

from sklearn.ensemble import ExtraTreesClassifier, RandomForestClassifier
from sklearn.model_selection import cross_val_predict
from sklearn.metrics import accuracy_score

model = RandomForestClassifier()
predictions = cross_val_predict(model, dataset.ml.features, dataset.ml.labels, dataset.ml.groups)
score = accuracy_score(dataset.ml.labels, predictions)

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

ethome-ml-0.3.0.tar.gz (5.8 MB view hashes)

Uploaded Source

Built Distribution

ethome_ml-0.3.0-py3-none-any.whl (40.5 kB view hashes)

Uploaded Python 3

Supported by

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