Browse Source

reset50 gpu change to defaut training to mixprecision

tags/v0.7.0-beta
VectorSL 5 years ago
parent
commit
13de53d667
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      model_zoo/official/cv/resnet/scripts/run_distribute_train_gpu.sh
  2. +1
    -1
      model_zoo/official/cv/resnet/train.py

+ 1
- 1
model_zoo/official/cv/resnet/scripts/run_distribute_train_gpu.sh View File

@@ -55,7 +55,7 @@ then
fi


if [ ! -d $PATH2 ]
if [ ! -d $PATH1 ]
then
echo "error: DATASET_PATH=$PATH1 is not a directory"
exit 1


+ 1
- 1
model_zoo/official/cv/resnet/train.py View File

@@ -163,7 +163,7 @@ if __name__ == '__main__':
loss = SoftmaxCrossEntropyWithLogits(sparse=True, reduction="mean", is_grad=False,
num_classes=config.class_num)

if args_opt.net == "resnet101":
if args_opt.net == "resnet101" or args_opt.net == "resnet50":
opt = Momentum(filter(lambda x: x.requires_grad, net.get_parameters()), lr, config.momentum, config.weight_decay,
config.loss_scale)
loss_scale = FixedLossScaleManager(config.loss_scale, drop_overflow_update=False)


Loading…
Cancel
Save