We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e57a67 commit 975ad04Copy full SHA for 975ad04
Dockerfile
@@ -6,7 +6,7 @@ RUN pip install --no-cache-dir -r requirements.txt
6
COPY setup.py .
7
COPY tictactoe/ ./tictactoe/
8
RUN python setup.py install
9
-COPY pytorch_dqn-v6.pt .
+COPY pytorch_dqn.pt .
10
11
ENV TERM=xterm-color
12
tictactoe/play.py
@@ -14,7 +14,7 @@
14
def play():
15
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
16
env = TicTacToe()
17
- model = load_model("pytorch_dqn-v6.pt", device)
+ model = load_model("pytorch_dqn.pt", device)
18
19
done = False
20
obs = env.reset()
0 commit comments