From: François Fleuret Date: Tue, 21 Mar 2023 06:01:11 +0000 (+0100) Subject: Update X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=beaver.git;a=commitdiff_plain;h=13e4bbafc59edd81528ddf8320b58052daec50b8 Update --- diff --git a/README.txt b/README.txt index 31710e2..dc13a4f 100644 --- a/README.txt +++ b/README.txt @@ -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 diff --git a/beaver.py b/beaver.py index f5bd924..bdc12aa 100755 --- 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") ######################################################################