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
发现train_fixmatch_standard_augs.py文件存在一个有趣的问题: 如果通过命令行指令修改--conf_thresh 的值,会报错没有这个参数 我在尝试寻找问题时将该参数设置为了必需,再次通过命令行指令修改--conf_thresh 的值 parser.add_argument("--conf_thresh", type=float, required=True, help="confidence threshold for using pseudo-labels") 我发现: 当未指定conf_thresh时,会报错conf_thresh参数是必需的,指定conf_thresh又会导致报错:不能识别conf_thresh 这可太有意思了 我目前还在寻找这种情况出现的原因。
parser.add_argument("--conf_thresh", type=float, required=True, help="confidence threshold for using pseudo-labels")
The text was updated successfully, but these errors were encountered:
实际上 如果加任意的args参数都会有这么个问题 我在两台服务器上都复现了 目前还找不到原因 哈哈哈哈哈哈哈哈哈
Sorry, something went wrong.
No branches or pull requests
发现train_fixmatch_standard_augs.py文件存在一个有趣的问题:
如果通过命令行指令修改--conf_thresh 的值,会报错没有这个参数
我在尝试寻找问题时将该参数设置为了必需,再次通过命令行指令修改--conf_thresh 的值
parser.add_argument("--conf_thresh", type=float, required=True, help="confidence threshold for using pseudo-labels")
我发现:
当未指定conf_thresh时,会报错conf_thresh参数是必需的,指定conf_thresh又会导致报错:不能识别conf_thresh
这可太有意思了 我目前还在寻找这种情况出现的原因。
The text was updated successfully, but these errors were encountered: