在train.py找到:
parser.add_argument('--cos-lr', action='store_true', help='cosine LR scheduler')
改为:parser.add_argument('--cos-lr', action='store_true', help='cosine LR scheduler',default=True)
在train.py找到:
parser.add_argument('--cos-lr', action='store_true', help='cosine LR scheduler')
改为:parser.add_argument('--cos-lr', action='store_true', help='cosine LR scheduler',default=True)