Changelog History
-
v0.5.0
December 30, 2019 -
v0.4.1
December 30, 2019 -
v0.4.0 Changes
December 02, 2019๐ This is a pre-release according to issue #168
-
v0.3 Changes
May 01, 2019About
๐ This is a pre-release able to run the emotion fer+ model.
๐ On top of that, it holds the premises of a new package to manipulate images and BCHW tensors (see internal/x).Binary attachment
๐ The attachment is a simple tool that expects the emotion fer + model as input (
model.onnx
) and a picture encoded in gray/png and of size 64x64. (See theMakefile
for options of ImageMagick to convert the picture to a suitable format).You need to grab the
model.onnx
file from here๐ MacOS with brew
๐ On MacOS you can install
imagesnap
andimagemagick
and run macos_fun.sh.Otherwise, simply download the
Makefile
and typemake install
to install everything andmake analyze1.jpg
to create a picture and analyze it. -
v0.2
April 26, 2019 -
v0.1-mnist Changes
March 22, 2019To use it:
curl https://www.cntk.ai/OnnxModels/mnist/opset_7/mnist.tar.gz | tar -C /tmp -xzvf -
./mnist-reader.darwin -model /tmp/mnist/model.onnx
๐ป then point your browser to
http://localhost:8100
๐ To build it:
$ git checkout v0.1-mnist-cli $ cd example/gorgonia/mnist-reader $ curl https://www.cntk.ai/OnnxModels/mnist/opset_7/mnist.tar.gz | tar -C /tmp -xzf - $ go run main.go -model /tmp/mnist/model.onnx