Skip to content

Commit

Permalink
v0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Jintao-Huang committed Feb 15, 2023
1 parent 5a57387 commit 91a7cd8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,25 @@ pip install .
python examples/test_env.py

### cv.py
pip install "torchvision>=0.13.*"
pip install "torchvision>=0.13"
python examples/cv.py
# Using DP (not recommended, please use DDP)
python examples/cv.py # setting device_ids=[0, 1]

### nlp.py
pip install "transformers>=4.25.*" "datasets>=2.7.*"
pip install "transformers>=4.25" "datasets>=2.7"
python examples/nlp.py

### dqn.py
pip install "gym>=0.26.2" "pygame>=2.1.2"
python examples/dqn.py

### gan.py
pip install "torchvision>=0.13.*"
pip install "torchvision>=0.13"
python examples/gan.py

### cl.py (contrastive_learning)
pip install "torchvision>=0.13.*" "scikit-learn>=1.2.*"
pip install "torchvision>=0.13" "scikit-learn>=1.2"
python examples/cl.py

### cl_ddp.py
Expand All @@ -70,15 +70,15 @@ python examples/gnn2.py
python examples/gnn3.py

### ae.py
pip install "torchvision>=0.13.*" "scikit-learn>=1.2.*"
pip install "torchvision>=0.13" "scikit-learn>=1.2"
python examples/ae.py

### vae.py
pip install "torchvision>=0.13.*"
pip install "torchvision>=0.13"
python examples/vae.py

### meta_learning.py
pip install "torchvision>=0.13.*"
pip install "torchvision>=0.13"
python examples/meta_learning.py


Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
torch>=1.12.*
torchmetrics>=0.11.*
tensorboard>=2.11.*
numpy>=1.23.*
torch>=1.12
torchmetrics>=0.11
tensorboard>=2.11
numpy>=1.23
PyYAML>=6.0
tqdm>=4.63.*
matplotlib>=3.6.*
tqdm>=4.63
matplotlib>=3.6

0 comments on commit 91a7cd8

Please sign in to comment.