aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-11-10 17:34:50 -0600
committerToby Vincent <tobyv13@gmail.com>2021-11-10 17:34:50 -0600
commit983238aad19ac7c76352ca4e7b7c55fd197af0cf (patch)
treee9ea9bc88628203f25fc8905aae6720983da3fcd
parenteed17dd24603ec1c685d34c2e0c2724501a40449 (diff)
parentcf94224beca7f87f8d60af9386466b26fb9a6052 (diff)
Merge branch 'q6' into develop
-rw-r--r--.vscode/launch.json25
-rw-r--r--src/analysis.py2
2 files changed, 24 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 1e2b518..9108452 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -25,10 +25,31 @@
"-a",
"q",
"-k",
- "5",
- "m"
+ "50",
+ "-n",
+ "0",
+ "-g",
+ "BridgeGrid",
+ "-e",
+ "${input:epsilon}",
+ "-l",
+ "${input:learning_rate}"
],
"console": "integratedTerminal"
},
+ ],
+ "inputs": [
+ {
+ "type": "promptString",
+ "id": "epsilon",
+ "default": "0.5",
+ "description": ""
+ },
+ {
+ "type": "promptString",
+ "id": "learning_rate",
+ "default": "0.5",
+ "description": ""
+ },
]
} \ No newline at end of file
diff --git a/src/analysis.py b/src/analysis.py
index e2bd538..3d086f3 100644
--- a/src/analysis.py
+++ b/src/analysis.py
@@ -62,7 +62,7 @@ def question3e():
def question6():
answerEpsilon = None
answerLearningRate = None
- return answerEpsilon, answerLearningRate
+ return 'NOT POSSIBLE'
# If not possible, return 'NOT POSSIBLE'
if __name__ == '__main__':