-
Notifications
You must be signed in to change notification settings - Fork 24
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 #110 from mwalmsley/dev
Finetuning improvements
- Loading branch information
Showing
10 changed files
with
172 additions
and
108 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 |
---|---|---|
|
@@ -165,4 +165,6 @@ results | |
|
||
hparams.yaml | ||
|
||
data/pretrained_models | ||
data/pretrained_models | ||
|
||
*.tar |
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="zoobot", | ||
version="1.0.4", | ||
version="1.0.5", | ||
author="Mike Walmsley", | ||
author_email="[email protected]", | ||
description="Galaxy morphology classifiers", | ||
|
@@ -61,12 +61,14 @@ | |
'timm == 0.6.12' | ||
], | ||
'pytorch_colab': [ | ||
# colab includes pytorch already | ||
'pytorch-lightning >= 2.0.0', | ||
'albumentations', | ||
'pyro-ppl>=1.8.0', | ||
'torchmetrics==0.11.0', | ||
'timm == 0.6.12' | ||
], | ||
# TODO may add narval/Digital Research Canada config | ||
'tensorflow': [ | ||
'tensorflow == 2.10.0', # 2.11.0 turns on XLA somewhere which then fails on multi-GPU...TODO | ||
'keras_applications', | ||
|
@@ -95,13 +97,12 @@ | |
'pandas', | ||
'scipy', | ||
'astropy', # for reading fits | ||
'scikit-image >= 0.19.2', | ||
'scikit-learn >= 1.0.2', | ||
'matplotlib', | ||
'pyarrow', # to read parquet, which is very handy for big datasets | ||
# for saving metrics to weights&biases (cloud service, free within limits) | ||
'wandb', | ||
'setuptools==59.5.0', # wandb logger incompatibility | ||
'galaxy-datasets==0.0.14' # for dataset loading in both TF and Torch (renamed from pytorch-galaxy-datasets) | ||
'setuptools', # no longer pinned | ||
'galaxy-datasets>=0.0.15' # for dataset loading in both TF and Torch (see github/mwalmsley/galaxy-datasets) | ||
] | ||
) |
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
Oops, something went wrong.