-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Aadi/track local queues #20
Merged
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
e4386d8
fix issue tracking across gaps of no instances
91d8b41
add notebooks folder to gitignore
51200a0
add `notebooks` folder to git ignore(temp)
b37d199
Add `Frame` and `Instance` objects for data manipulation
a63dbf5
implement track_local_queues
02051d3
implement track_local_queues for tracking inference
d19bdf4
add tests for data_structures
25dd3bf
fix formatting + doc strings
8a2801b
fix typos
055d6e1
get training to work with Frames and Instances objects
6f83300
update test yaml
908f679
lint test_models
2d31a21
fix doc strings
ba4913d
fix typo, use gt track from predicted dataset not pred track
c0f9bcd
fix edgecase leading to error when no instances are detected
a03cca9
fix small typos + docstrings
7c4c645
fix docstrings + small typo
db5d83a
create checkpoint dir manually, use better checkpoint names
aaprasad 2fcb057
add poses and easy conversion to sleap label objects
aaprasad 5975bc1
add flexibility to visualization such as control over sizes as well a…
aaprasad 6589d45
add random seed for reproducibility especially for chunk subsampling
aaprasad 305b0bf
extend CTC dataset to multiple videos. fix small for loop variable du…
aaprasad 0b647fa
handle missing detections case
aaprasad 7b59bbc
use correct bounds for instance retention limits. Add max tracks
aaprasad dfd3691
fix gpu memory leak
aaprasad 8d9ed9d
move train metrics to its own section in config
aaprasad a46290d
add ability to store and visualize track scores
aaprasad e7a22f7
don't subsample chunks with replacement
aaprasad 1d5e1b7
add debug statements to tracker
aaprasad 67d879e
only clear gpu after each epoch instead of each step
aaprasad 5e53341
lint
aaprasad e37fc35
lint + fix docstrings
aaprasad 4c61fbe
fix typing in cell tracking dataset,
aaprasad 52d9ae8
lint
aaprasad 8a560c8
add open-cv-headless to environment.yml
aaprasad 96048aa
use conda-forge opencv instead of opencv-headless
aaprasad d7d2d09
* commit suggestions from * @coderabbit's reviews
aaprasad 2eef70f
add @coderabbit's suggestions
aaprasad c351008
lint
aaprasad 4fed899
use batch_size when logging metrics to prevent lightning "cant infer …
aaprasad 33b97ad
Merge branch 'aadi/to_slp' into aadi/track-local-queues
aaprasad File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,7 @@ target/ | |
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
notebooks/ | ||
|
||
# IPython | ||
profile_default/ | ||
|
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused import detected.
- import os
Please remove the unused import
os
to maintain clean and efficient code.Committable suggestion