Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
try minimal requirements (#62)
Browse files Browse the repository at this point in the history
* try minimal requirements

* Apply suggestions from code review

* tests

* revert

* back
  • Loading branch information
Borda authored Feb 19, 2021
1 parent 522cf75 commit 0750ad9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
uses: actions/cache@v2
with:
path: data # This path is specific to Ubuntu
key: flash-datasets-${{ hashFiles('tests/examples/test_examples.py') }}
key: flash-datasets-${{ hashFiles('tests/examples/test_scripts.py') }}
restore-keys: flash-datasets-

- name: Tests
Expand Down
19 changes: 9 additions & 10 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
pytorch-lightning==1.2.0rc0
torch==1.7.1
PyYAML==5.3.1
pytorch-lightning==1.2.0rc0 # todo: we shall align with real 1.2
torch>=1.7 # TODO: regenerate weights with lewer PT version
PyYAML>=5.1
Pillow>=7.2
torchvision==0.8.2
transformers==4.2.2
pytorch-tabnet==3.1.1
datasets==1.2.1
pandas==1.1.5 ; python_version < "3.7"
pandas==1.2.2 ; python_version >= "3.7"
scikit-learn==0.24.0
torchvision>=0.8 # lower to 0.7 after PT 1.6
transformers>=4.0
pytorch-tabnet==3.1
datasets>=1.2, <1.3
pandas>=1.1
scikit-learn>=0.24
numpy # comes with 3rd-party dependency
tqdm # comes with 3rd-party dependency
rouge-score>=0.0.4
Expand Down
File renamed without changes.

0 comments on commit 0750ad9

Please sign in to comment.