-
Notifications
You must be signed in to change notification settings - Fork 54
[WIP] Continue work on Integration with DeepLabCut 3.0 #127
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
Changes from all commits
143f3d3
41ee58f
662e223
ea8ce75
36557a8
6cae578
4004ef9
f8fc8ba
ae95d0b
88038ac
3b88f25
a74101f
0883c17
6c61b29
ef37746
2a4f4af
ad14faa
d882b6b
7599121
7593c87
199adc0
e86db2d
0d6b2d5
6402380
f013557
39c27f6
44c960f
f2c6b11
bc036a7
4bbcf7c
8366187
db6a61d
664835c
4475ea2
e994808
5731ebe
ce65a5a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -73,10 +73,13 @@ same version (i.e., export a PyTorch model, then install PyTorch, export with TF | |
| then use TF1.13 with DlC-Live; export with TF2.3, then use TF2.3 with DLC-live). | ||
|
|
||
| - available on pypi as: `pip install deeplabcut-live` | ||
|
|
||
|
|
||
| Note, you can then test your installation by running: | ||
| Note, you can then test your installation by installing poetry (`pip install poetry`), then running: | ||
|
|
||
| `dlc-live-test` | ||
| ```python | ||
| poetry run dlc-live-test | ||
| ``` | ||
|
Comment on lines
+78
to
+82
|
||
|
|
||
| If installed properly, this script will i) create a temporary folder ii) download the | ||
| full_dog model from the [DeepLabCut Model Zoo]( | ||
|
|
||
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.
The workflow installs numpy twice with conflicting versions. Line 56 installs
"numpy<2"while line 60 installs"numpy>=1.26,<2.0". This is redundant and confusing. Consolidate these into a single installation step.