Skip to content

Commit

Permalink
added new installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlaskey committed Apr 18, 2018
1 parent a0a5433 commit df37448
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
9 changes: 9 additions & 0 deletions requirements.txt
@@ -0,0 +1,9 @@
gym==0.9.5
numpy
scipy
matplotlib
pandas
sklearn
keras==2.0.4
tensorflow==1.1.0
mujoco-py==0.5.7
14 changes: 14 additions & 0 deletions setup.py
@@ -0,0 +1,14 @@
from setuptools import setup

setup(name='dart',
version='0.1.0',
install_requires=["gym==0.9.5",
"numpy",
"scipy",
"matplotlib",
"pandas",
"sklearn",
"keras==2.0.4",
"tensorflow==1.1.0",
"mujoco-py==0.5.7"]
)
8 changes: 4 additions & 4 deletions test.sh
Expand Up @@ -29,10 +29,10 @@
# python experiments/test_dart.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7
# python experiments/test_dart3.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 10
# python experiments/test_dart3.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 3
python experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 5
python experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 10
python experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 50
python experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 450
python2 experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 5
python2 experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 10
python2 experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 50
python2 experiments/test_dart2.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 450
# python experiments/test_dart3.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --partition 3
# python experiments/test_dagger.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --beta .5
# python experiments/test_dagger_b.py --envname Walker2d-v1 --t 500 --iters 5 10 15 20 --update 1 7 --beta .1
Expand Down

0 comments on commit df37448

Please sign in to comment.