You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git checkout fast_neural_style/images/output-images/amber-candy.jpg || error "couldn't clean up fast neural style image"
base_stop "$1"
}
functionrun_all() {
# cpp moved to `run_cpp_examples.sh```
run dcgan
# distributed moved to `run_distributed_examples.sh`
run fast_neural_style
run imagenet
# language_translation
run mnist
run mnist_forward_forward
run mnist_hogwild
run mnist_rnn
run regression
run reinforcement_learning
run siamese_network
# run super_resolution - flaky
run time_sequence_prediction
run vae
# vision_transformer - example broken see https://github.com/pytorch/examples/issues/1184 and https://github.com/pytorch/examples/pull/1258 for more details
run word_language_model
run fx
run gcn
run gat
}
# by default, run all examples
if [ ""=="$EXAMPLES" ];then
run_all
else
foriin$(echo $EXAMPLES| sed "s/,/ /g")
do
echo"Starting $i"
run $i
echo"Finished $i, status $?"
done
fi
if [ ""=="$ERRORS" ];then
echo"Completed successfully with status $?"
else
echo"Some python examples failed:"
printf"$ERRORS\n"
#Exit with error (0-255) in case of failure in one of the tests.