I want to use mnist dataset to train a simple autoencoder in caffe and with nvidia-digits.
I have: caffe: 0.16.4 DIGITS: 5.1 python 2.7
I use the structure provided here: https://github.com/BVLC/caffe/blob/master/examples/mnist/mnist_autoencoder.prototxt
Then I face 2 problems:
When I use the provided structure I get this error:
Traceback (most recent call last): File "digits/scheduler.py", line 512, in run_task task.run(resources) File "digits/task.py", line 189, in run self.before_run() File "digits/model/tasks/caffe_train.py", line 220, in before_run self.save_files_generic() File "digits/model/tasks/caffe_train.py", line 665, in save_files_generic 'cannot specify two val image data layers' AssertionError: cannot specify two val image data layers
when I remove the layer for ''test-on-test'', I get a bad result like this: https://screenshots.firefox.com/8hwLmSmEP2CeiyQP/localhost
What is the problem??