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
这个函数https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/random_erasing.py#L57,可以加入到train.py中的解析器中以方便使用么,感谢
https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/random_erasing.py#L57
The text was updated successfully, but these errors were encountered:
自己写了一下,添加了解析器语句 parser.add_argument('--grayscale_erasing_p', default=0, type=float, help='probability of applying grayscale erasing') 在https://github.com/layumi/Person_reID_baseline_pytorch/blob/4dae9cdf42f71c72a44a64fb23bfc470c501085f/train.py#L48C103-L48C103 这一行下 以及调用语句 if opt.grayscale_erasing_p > 0: transform_train_list = transform_train_list + [RandomGrayscaleErasing(probability=opt.grayscale_erasing_p)] 添加在了https://github.com/layumi/Person_reID_baseline_pytorch/blob/4dae9cdf42f71c72a44a64fb23bfc470c501085f/train.py#L141 这一行下 大佬可以帮忙看看这样写有问题么
https://github.com/layumi/Person_reID_baseline_pytorch/blob/4dae9cdf42f71c72a44a64fb23bfc470c501085f/train.py#L48C103-L48C103
https://github.com/layumi/Person_reID_baseline_pytorch/blob/4dae9cdf42f71c72a44a64fb23bfc470c501085f/train.py#L141
Sorry, something went wrong.
你好 @qiaosuobutouche 看上去没有问题!
No branches or pull requests
这个函数
https://github.com/layumi/Person_reID_baseline_pytorch/blob/master/random_erasing.py#L57
,可以加入到train.py中的解析器中以方便使用么,感谢The text was updated successfully, but these errors were encountered: