Skip to content

Commit 0aba048

Browse files
Edit random action model title
1 parent 3ba8cb7 commit 0aba048

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

00_random_action.ipynb

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"# Playback saved model"
7+
"## Random action model"
88
]
99
},
1010
{
@@ -24,14 +24,6 @@
2424
"import pandas as pd\n",
2525
"import random\n",
2626
"\n",
27-
"import torch\n",
28-
"import torch.nn as nn\n",
29-
"import torch.optim as optim\n",
30-
"\n",
31-
"# Use a double ended queue (deque) for memory\n",
32-
"# When memory is full, this will replace the oldest value with the new one\n",
33-
"from collections import deque\n",
34-
"\n",
3527
"# Supress all warnings (e.g. deprecation warnings) for regular use\n",
3628
"import warnings\n",
3729
"\n",
@@ -44,13 +36,6 @@
4436
"metadata": {},
4537
"outputs": [],
4638
"source": [
47-
"MODEL_PATH = './models/'\n",
48-
"\n",
49-
"MODELS = {\n",
50-
" 'ddqn':'ddqn_policy.pt',\n",
51-
" '3dqn': '3dqn_policy.pt'\n",
52-
"}\n",
53-
"\n",
5439
"# Replicate runs\n",
5540
"TEST_EPISODES = 30\n",
5641
"\n",

0 commit comments

Comments
 (0)