JABS behavior event processing and postprocessing filters
Project description
JABS Behavior (jabs-behavior)
Prediction Postprocessing
The jabs.behavior.postprocessing module provides tools for refining behavior predictions generated by the JABS framework. It includes classes and functions to manipulate and enhance the quality of behavior event predictions through various postprocessing techniques.
- BehaviorEvents: Run-length encoding of JABS predictions for efficient behavior event manipulation
- Postprocessing Stages: Configurable pipeline stages for refining behavior predictions:
BoutDurationFilterStage: Remove short behavior bouts below a minimum durationBoutStitchingStage: Combine behavior bouts separated by short gapsGapInterpolationStage: Fill gaps in predictions (NONE labels)
- PostprocessingPipeline: Sequential application of multiple Stages
Usage
import numpy as np
from jabs.behavior.events import BehaviorEvents, ClassLabels
from jabs.behavior.postprocessing import BoutDurationFilterStage, BoutStitchingStage, PostprocessingPipeline
# Create behavior events from a prediction vector
predictions = np.array([0, 0, 1, 1, 0, 1, 1, 1, 0])
events = BehaviorEvents.from_vector(predictions)
# Apply postprocessing pipeline
config = {
BoutStitchingStage.name: {"max_stitch_gap": 2},
BoutDurationFilterStage.name: {"min_duration": 3},
}
pipeline = PostprocessingPipeline(config)
refined_predictions = pipeline.run(predictions)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jabs_behavior-0.41.0.tar.gz.
File metadata
- Download URL: jabs_behavior-0.41.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b940c9f81ceafbc4de6d7fb77ecb98ef3ee2b2f3ce92a865c2d11c54a4b991a3
|
|
| MD5 |
40c410cc57eaf4f46f26d4aff8bf2afd
|
|
| BLAKE2b-256 |
47987b2844e174ac4ab06e82bae397d8553dd1ab7d574f456c14da90299e6c10
|
File details
Details for the file jabs_behavior-0.41.0-py3-none-any.whl.
File metadata
- Download URL: jabs_behavior-0.41.0-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76b03f230924d651f67eb7a28642ab81cdb5ea8c4bb6da98b5d636a2824081dc
|
|
| MD5 |
f5d0ad963a33cffa8c7de1aa99456c85
|
|
| BLAKE2b-256 |
c199a080a983191074c29b1c26b783cd86f310e37a830a830a4496242f50f618
|