Skip to content

Commit 975ad04

Browse files
committed
Fix the things that I broke
1 parent 3e57a67 commit 975ad04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN pip install --no-cache-dir -r requirements.txt
66
COPY setup.py .
77
COPY tictactoe/ ./tictactoe/
88
RUN python setup.py install
9-
COPY pytorch_dqn-v6.pt .
9+
COPY pytorch_dqn.pt .
1010

1111
ENV TERM=xterm-color
1212

tictactoe/play.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
def play():
1515
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
1616
env = TicTacToe()
17-
model = load_model("pytorch_dqn-v6.pt", device)
17+
model = load_model("pytorch_dqn.pt", device)
1818

1919
done = False
2020
obs = env.reset()

0 commit comments

Comments
 (0)