-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
152 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
# BioGTR | ||
# DREEM Reconstructs Every Entities' Motion | ||
Global Tracking Transformers for biological multi-object tracking. | ||
|
||
## Installation | ||
<!-- ### Basic | ||
``` | ||
pip install biogtr | ||
pip install dreem | ||
``` --> | ||
### Development | ||
1. Clone the repository: | ||
``` | ||
git clone https://github.com/talmolab/biogtr && cd biogtr | ||
git clone https://github.com/talmolab/dreem && cd dreem | ||
``` | ||
2. Set up in a new conda environment: | ||
``` | ||
conda env create -y -f environment.yml && conda activate biogtr | ||
conda env create -y -f environment.yml && conda activate dreem | ||
``` | ||
|
||
### Uninstalling | ||
``` | ||
conda env remove -n biogtr | ||
conda env remove -n dreem | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
"""Top-level package for dreem.""" | ||
|
||
from dreem.version import __version__ | ||
|
||
from dreem.models.global_tracking_transformer import GlobalTrackingTransformer | ||
from dreem.models.gtr_runner import GTRRunner | ||
from dreem.models.transformer import Transformer | ||
from dreem.models.visual_encoder import VisualEncoder | ||
|
||
from dreem.io.frame import Frame | ||
from dreem.io.instance import Instance | ||
from dreem.io.association_matrix import AssociationMatrix | ||
from dreem.io.config import Config | ||
from dreem.io.visualize import annotate_video | ||
|
||
# from .training import run | ||
|
||
from dreem.inference.tracker import Tracker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"""This module contains the command line interfaces for the dreem package.""" |
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
biogtr/datasets/base_dataset.py → dreem/datasets/base_dataset.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
biogtr/datasets/eval_dataset.py → dreem/datasets/eval_dataset.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
biogtr/datasets/tracking_dataset.py → dreem/datasets/tracking_dataset.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
biogtr/inference/post_processing.py → dreem/inference/post_processing.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
biogtr/inference/track_queue.py → dreem/inference/track_queue.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"""Module containing input/output data structures for easy storage and manipulation.""" | ||
|
||
from dreem.io.frame import Frame | ||
from dreem.io.instance import Instance | ||
from dreem.io.association_matrix import AssociationMatrix | ||
from dreem.io.track import Track | ||
from dreem.io.config import Config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.