Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug report: init step is missing breaker training #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/run-round0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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?