ASTBAR

Results 5 comments of ASTBAR

可能是模型问题,如果是的话请尽快调整

os:win10+pycharm python:3.7 paddle:1.6训练模型,1.5读取模型

给的train.py文件只能在1.6版本以上才能运行 读取指的是加载保存下来的参数 因为在做AI安全对抗比赛,这个比赛只能用1.5版本 其他模型参数均可以成功加载,但GooleNet不行,可能是版本间api的兼容性问题 有办法处理吗?

ok收到,我试下,如果不行,再来留言,感谢

还是没法加载参数........ ![image](https://user-images.githubusercontent.com/58623947/70615014-91f0fe80-1c46-11ea-92c0-345f2983e3dd.png) 使用1.5版本进行训练的,训练命令如下: python -m paddle.distributed.launch train.py \ --model=GoogleNet \ --batch_size=256 \ --total_images=12000 \ --class_dim=121 \ --image_shape=3,224,224 \ --model_save_dir=output/ \ --with_mem_opt=True \ --lr_strategy=cosine_decay \ --lr=0.01 \ --num_epochs=200 \ --checkpoint=output/GoogleNet/199/ \...