mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
TOOLS=./caffe/build/tools
|
|
|
|
$TOOLS/caffe test \
|
|
--model=models/cifar10_fast/cifar10_fast_train_test.prototxt \
|
|
--weights=models/cifar10_fast/cifar10_fast_iter_70000.caffemodel.h5 $@
|