Update
authorFrançois Fleuret <francois@fleuret.org>
Tue, 21 Mar 2023 06:01:11 +0000 (07:01 +0100)
committerFrançois Fleuret <francois@fleuret.org>
Tue, 21 Mar 2023 06:01:11 +0000 (07:01 +0100)
README.txt
beaver.py

index 31710e2..dc13a4f 100644 (file)
@@ -1,9 +1,4 @@
-To run the experiments:
+To train the shortest-path solving GPT, and train the one-shot MLP
+read-out:
 
-  ./beaver.py
-
-to train the shortest-path solving GPT, and
-
-  ./beaver.py --overwrite --one_shot --nb_epochs=10
-
-to train the one-shot MLP read-out.
+  ./beaver.py --oneshot
index f5bd924..bdc12aa 100755 (executable)
--- a/beaver.py
+++ b/beaver.py
@@ -86,7 +86,7 @@ parser.add_argument("--oneshot", action="store_true", default=False)
 
 parser.add_argument("--oneshot_input", type=str, default="head")
 
-parser.add_argument("--oneshot_output", type=str, default="policy")
+parser.add_argument("--oneshot_output", type=str, default="trace")
 
 ######################################################################