yyang181 / colormnet

43 stars 3 forks source link

Bug on "disable_long_term" #10

Open dan64 opened 1 month ago

dan64 commented 1 month ago

Hello,

If in the script test.py I set the parameter --disable_long_term = True The images are not colored and in output is produced always a black frame. There is a combination of parameters that allows to set --disable_long_term = True ?

Thank you, Dan

UPstud commented 1 month ago

Try python test.py --benchmark 😊And that's all

dan64 commented 1 month ago

Sorry but I don't understand your answer. I reported the problem that when --disable_long_term is set to True, in output (folder result) are provided only black images. To set this parameter to True it is possible either, run the command:

python test.py --disable_long_term

or change the code in this way

parser.add_argument('--disable_long_term', default=True, action='store_true')

In any case the result is always the same: black images.

Dan