genforce/volumegan

Looks like you haven't tested this codebase.

Closed this issue · 2 comments

This is totally not runable.

python render.py volumegan-ffhq \
    --work_dir ${WORK_DIR} \
    --checkpoint ${MODEL_PATH} \
    --num ${NUM} \
    --seed ${SEED} \
    --render_mode ${RENDER_MODE} \
    --generate_html ${SAVE_HTML}

Results:

Error: No such option: --work_dir
Error: No such option: --checkpoint
Error: No such option: --render_mode

And there is a typo in here:

raise NotImplemenedError

Finally I would like to ask if the training code has been tested?

Thanks for your issue. I have update the shell cmd of Readme and you try the following cmd!

python render.py \
    --work_dir ${WORK_DIR} \
    --checkpoint ${MODEL_PATH} \
    --num ${NUM} \
    --seed ${SEED} \
    --render_mode ${RENDER_MODE} \
    --generate_html ${SAVE_HTML} \
    volumegan-ffhq

Working now, thx~