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

try minimal requirements #62

Merged
merged 8 commits into from
Feb 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Borda marked this conversation as resolved.
Show resolved Hide resolved
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