12 lines
289 B
Bash
Executable File
12 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
echo "build test Model"
|
|
cd test
|
|
python test_model.py
|
|
cd ..
|
|
cd mnist
|
|
python mnist_model.py
|
|
cd ..
|
|
echo "export weights"
|
|
python weights_exporter.py test/net.h5 --output test/layers
|
|
python caffe_weights_exporter.py mnist/lenet.prototxt mnist/lenet.caffemodel --output mnist/layers
|