Closed BeepBump closed 5 years ago
Hello.
You should change the model architecture. I recommend you to create another file for your new model and do experiments with a new model file. Specifically,
Copy src/model/edsr.py
to src/model/mymodel.py
.
Modify these two lines. Also, class name should be replaced to MyModel
instead of EDSR
.
Use --model mymodel
argument to use your new model.
Thank you!
Hi, Sorry for bothering! If I conduct some transform to the input data, how can I change the number of input channel from 3 to 12? And I need to conduct inverse transform, so the 12-channel output can turn back to 3-channel, where can I modify the code? Pls~Thanks!