Skip to content
This repository was archived by the owner on Sep 5, 2019. It is now read-only.

Commit 2814f18

Browse files
committed
relaxed deps
1 parent 0b002ff commit 2814f18

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ To do so, first `cd` to the project directory on your local machine. Then, depen
8484

8585
## Submitting
8686

87-
When the competition opens, you will [submit](https://github.com/duckietown/duckietown-shell#ai-do-submissions) your Docker image using `dt`, the [Duckietown Shell](https://github.com/duckietown/duckietown-shell) like so:
87+
When the competition opens, you will [submit](https://github.com/duckietown/duckietown-shell#ai-do-submissions) your Docker image using `dts`, the [Duckietown Shell](https://github.com/duckietown/duckietown-shell) like so:
8888

89-
dt aido18 submit <YOUR_DOCKER_HUB_USERNAME>/<YOUR_IMAGE_BASED_ON_GYM_DUCKIETOWN_AGENT>
89+
**** command not ready ******
9090

9191
The referenced Docker image will contain a pretrained model which you have trained locally. If you send us a GPU model, we will run it on the simulator only. If you send us an ARM image, we will evaluate the submission and run it on a physical robot, then send you a link to the corresponding log. Should you wish to participate in the robotarium challenge, you must submit an ARM-based image.
9292

agent-keyboard-control.py

100644100755
+4-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python
2+
13
import gym
24
import gym_duckietown_agent # don't remove this line
35
import numpy as np
@@ -59,7 +61,7 @@
5961

6062
# We receive the name of the challenge at every time step - just to
6163
# make sure we are solving the correct task
62-
challenge = misc["challenge"]
64+
# challenge = misc["challenge"]
6365

6466
stdscr.addstr(2, 0, "action {}".format(action))
6567
stdscr.addstr(3, 0, "reward {}".format(np.around(rew,3)))
@@ -97,4 +99,4 @@
9799
np.around(np.mean(rewards), 4),
98100
np.around(np.max(rewards), 4),
99101
np.around(np.min(rewards), 4)
100-
))
102+
))

gym_duckietown_agent/envs/simplesimagent_env.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import os
2-
import time
32

43
import gym
54
from duckietown_slimremote.pc.robot import RemoteRobot

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
'gym>=0.9.0',
99
'numpy>=1.10.0',
1010
'duckietown_slimremote>=2018.8.3',
11-
'matplotlib==2.2.3',
11+
'matplotlib',
1212
'tqdm>=4.0.0'
1313
]
1414
)

0 commit comments

Comments
 (0)