test.sh 243 字节
Newer Older
R
Renwb1991 已提交
1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/bash

#
#script to test all models
#

models="alexnet vgg16 googlenet resnet152 resnet101 resnet50"
for i in $models;do
    echo "begin to process $i"
    bash ./tools/diff.sh $i 2>&1
    echo "finished to process $i with ret[$?]"
done