We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Dear @NJU-Jet:
I wanna to train a model that scale=2. (as you know, the defaut scale is 3) it seems have a bug here:
you can see that this [inp, inp, inp, inp, inp, inp, inp, inp, inp] is for scale=3, so how to fix it if I want to train a x2 model?
can we fix it this way: [inp, inp, inp, inp, inp, inp, inp, inp, inp] --> [inp] x scale x scale ?
thank you very much!
The text was updated successfully, but these errors were encountered:
You are right and this is a bug. The inp should just repeat (scale**2) times.
Sorry, something went wrong.
No branches or pull requests
Hi Dear @NJU-Jet:
I wanna to train a model that scale=2. (as you know, the defaut scale is 3)
it seems have a bug here:
you can see that this [inp, inp, inp, inp, inp, inp, inp, inp, inp] is for scale=3, so how to fix it if I want to train a x2 model?
can we fix it this way: [inp, inp, inp, inp, inp, inp, inp, inp, inp] --> [inp] x scale x scale ?
thank you very much!
The text was updated successfully, but these errors were encountered: