From 90b41a3bea79e170e8024a73da2ed0f449728520 Mon Sep 17 00:00:00 2001 From: Berkay Berabi Date: Thu, 9 Feb 2023 20:29:17 +0100 Subject: [PATCH] bug report: init step is missing breaker training --- src/run-round0.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/run-round0.sh b/src/run-round0.sh index bf72c7f..25b7178 100644 --- a/src/run-round0.sh +++ b/src/run-round0.sh @@ -7,3 +7,10 @@ export PYTHONPATH=. python src/c001__train_fixer.py --round_name round0 --gpu_id 0 --max_epoch 2 python src/c003__run_fixer.py --round_name round0 --gpu_ids '0,1,2,3,4' python src/c005__eval_fixer.py --round_name round0 + + +According to the paper, the initialization step contains the training of an initial fixer and a breaker as well. See the image in PR's description. +However, in this script created for initialization step, you do not train the initial breaker. +The first breaker is trained in the first round. + +Is this a bug?