forked from baudm/parseq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump minimum pytorch-lightning version to 1.7.0. This avoids the installation of protobuf < 3.20.3 which has known vulnerabilities. - train: Fix SWA compatibility with PL >= 1.7.0 - Fix compatibility with timm > 0.6.5 (tested until 0.9.2) - Add minimum version requirements to all direct dependencies - Add maximum version limit to ray[tune], pytorch-lightning
- Loading branch information
Showing
15 changed files
with
84 additions
and
129 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
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,3 +1,4 @@ | ||
-c ${CONSTRAINTS} | ||
hydra-core~=1.2.0 | ||
fvcore | ||
|
||
hydra-core >=1.2.0 | ||
fvcore >=0.1.5.post20220512 |
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,7 +1,8 @@ | ||
-c ${CONSTRAINTS} | ||
|
||
torch >=1.10.0, <2.0.0 | ||
torchvision >=0.11.0, <0.15.0 | ||
timm~=0.6.5 | ||
pytorch-lightning~=1.6.5 # TODO: refactor code to separate model from training code. | ||
nltk # TODO: refactor/reorganize code. This is a train/test dependency. | ||
PyYAML # TODO: can we move this to train/test? | ||
timm >=0.6.5 | ||
pytorch-lightning >=1.7.0, <2.0.0 # TODO: refactor code to separate model from training code. | ||
nltk >=3.7.0 # TODO: refactor/reorganize code. This is a train/test dependency. | ||
PyYAML >=6.0.0 # TODO: can we move this to train/test? |
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,57 +1,34 @@ | ||
--extra-index-url https://download.pytorch.org/whl/cpu | ||
|
||
absl-py==1.4.0 | ||
aiohttp==3.8.4 | ||
aiosignal==1.3.1 | ||
async-timeout==4.0.2 | ||
attrs==23.1.0 | ||
cachetools==5.3.1 | ||
certifi==2023.5.7 | ||
charset-normalizer==3.1.0 | ||
click==8.0.4 | ||
filelock==3.12.0 | ||
frozenlist==1.3.3 | ||
fsspec[http]==2023.5.0 | ||
google-auth==2.19.0 | ||
google-auth-oauthlib==0.4.6 | ||
grpcio==1.43.0 | ||
huggingface-hub==0.14.1 | ||
huggingface-hub==0.15.1 | ||
idna==3.4 | ||
importlib-metadata==6.6.0 | ||
joblib==1.2.0 | ||
markdown==3.4.3 | ||
markupsafe==2.1.2 | ||
lightning-utilities==0.8.0 | ||
multidict==6.0.4 | ||
nltk==3.8.1 | ||
numpy==1.24.3 | ||
oauthlib==3.2.2 | ||
packaging==23.1 | ||
pillow==9.5.0 | ||
protobuf==3.20.1 | ||
pyasn1==0.5.0 | ||
pyasn1-modules==0.3.0 | ||
pydeprecate==0.3.2 | ||
pytorch-lightning==1.6.5 | ||
pytorch-lightning==1.9.5 | ||
pyyaml==6.0 | ||
regex==2023.5.5 | ||
requests==2.31.0 | ||
requests-oauthlib==1.3.1 | ||
rsa==4.9 | ||
six==1.16.0 | ||
tensorboard==2.11.2 | ||
tensorboard-data-server==0.6.1 | ||
tensorboard-plugin-wit==1.8.1 | ||
timm==0.6.13 | ||
safetensors==0.3.1 | ||
timm==0.9.2 | ||
torch==1.13.1+cpu | ||
torchmetrics==0.11.4 | ||
torchvision==0.14.1+cpu | ||
tqdm==4.65.0 | ||
typing-extensions==4.6.2 | ||
urllib3==1.26.16 | ||
werkzeug==2.3.4 | ||
wheel==0.40.0 | ||
urllib3==2.0.2 | ||
yarl==1.9.2 | ||
zipp==3.15.0 | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
setuptools==67.8.0 |
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,4 +1,5 @@ | ||
-c ${CONSTRAINTS} | ||
lmdb | ||
pillow | ||
tqdm | ||
|
||
lmdb >=1.3.0 | ||
Pillow >=9.2.0 | ||
tqdm >=4.64.0 |
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,5 +1,6 @@ | ||
-c ${CONSTRAINTS} | ||
lmdb | ||
pillow | ||
imgaug | ||
hydra-core~=1.2.0 | ||
|
||
lmdb >=1.3.0 | ||
Pillow >=9.2.0 | ||
imgaug >=0.4.0 | ||
hydra-core >=1.2.0 |
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,7 +1,8 @@ | ||
-c ${CONSTRAINTS} | ||
lmdb | ||
pillow | ||
imgaug | ||
hydra-core~=1.2.0 | ||
ray[tune]~=1.13.0 | ||
ax-platform | ||
|
||
lmdb >=1.3.0 | ||
Pillow >=9.2.0 | ||
imgaug >=0.4.0 | ||
hydra-core >=1.2.0 | ||
ray[tune] >=1.13.0, <2.0.0 | ||
ax-platform >=0.2.5.1 |
Oops, something went wrong.