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
How do I choose img_size for the model? Thanks you
The text was updated successfully, but these errors were encountered:
Search the variable keep_res in dataset.py and you will know how to do it.
keep_res
Sorry, something went wrong.
keep_res = False # if keep_res: input_h = (height | 31) + 1 input_w = (width | 31) + 1 s = np.array([input_w, input_h], dtype=np.float32) else: s = max(img.shape[0], img.shape[1]) * 1.0 input_h, input_w = 512, 512
Did I just change input_h and input_w in the last command line? Thanks very much
No branches or pull requests
How do I choose img_size for the model? Thanks you
The text was updated successfully, but these errors were encountered: