mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
9 lines
192 B
Bash
Executable File
9 lines
192 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
DIR=models/cifar10_fast
|
|
TOOLS=./caffe/build/tools
|
|
|
|
$TOOLS/caffe train \
|
|
--solver=models/cifar10_fast/cifar10_fast_solver.prototxt $@ 2>&1 | tee $DIR/training.log
|