You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
12345678910 |
- #!/bin/bash
-
- workdir=$(cd $(dirname $0); pwd)
- mainpy=${workdir}/../tf_main.py
-
- ### validate and timing
- python ${mainpy} --model $1 --dataset $2 --learning-rate 0.01 --validate --timing
-
- ### run in cpu
- # python ${mainpy} --model tf_mlp --gpu -1 --validate --timing
|