-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from EmmaRenauld/back_to_master_scilpy
Back to master scilpy
- Loading branch information
Showing
8 changed files
with
30 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,4 +71,5 @@ target/ | |
*.swo | ||
|
||
# dwi_ml stuff | ||
.ipynb_config/ | ||
.ipynb_config/ | ||
.ipynb_checkpoints/ |
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
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
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,30 +1,38 @@ | ||
# Supported for python 3.10 | ||
# Should work for python > 3.8. | ||
|
||
# Scilpy and comet_ml both require requests. In comet: >=2.18.*, | ||
# which installs a version >2.28. Adding request version explicitely. | ||
# ------- | ||
# Main dependency: scilpy | ||
# Scilpy and comet_ml both require requests. In comet: >=2.18.*, | ||
# which installs a version >2.28. Adding request version explicitely. | ||
# ------- | ||
requests==2.28.* | ||
scilpy @ git+https://github.com/scilus/[email protected] | ||
|
||
|
||
# ------- | ||
# Other important dependencies | ||
# ------- | ||
bertviz~=1.4.0 # For transformer's visu | ||
torch==1.13.* | ||
tqdm==4.64.* | ||
comet-ml==3.21.* | ||
contextlib2==21.6.0 | ||
jupyterlab>=3.6.2 # For transformer's visu | ||
IProgress>=0.4 # For jupyter with tdqm | ||
nested_lookup==0.2.25 | ||
nose==1.3.* | ||
scilpy==1.5.post2 | ||
nested_lookup==0.2.25 # For lists management | ||
|
||
## Necessary but should be installed with scilpy (Last check: 09/2023): | ||
# ------- | ||
# Necessary but should be installed with scilpy (Last check: 01/2024): | ||
# ------- | ||
future==0.18.* | ||
h5py==3.7.* # h5py must absolutely be >2.4: that's when it became thread-safe | ||
matplotlib==3.6.* # Hint: If matplotlib fails, you may try to install pyQt5. | ||
nibabel==4.0.* | ||
nibabel==5.2.* | ||
numpy==1.23.* | ||
scipy==1.9.* | ||
|
||
|
||
|
||
# --------------- Notes to developers | ||
# If we upgrade torch, verify if code copied in | ||
# models.projects.transformers_from_torch has changed. | ||
|