A model describes a neural network. It is a tar file which contains some other files:
One example for a model.yml is
type: mlp
layers:
- W:
filename: W0.hdf5
size:
- 167
- 500
activation: sigmoid
b:
filename: b0.hdf5
size:
- 500
- W:
filename: W1.hdf5
size:
- 500
- 500
activation: sigmoid
b:
filename: b1.hdf5
size:
- 500
- W:
filename: W2.hdf5
size:
- 500
- 369
activation: softmax
b:
filename: b2.hdf5
size:
- 369
The content might be different for other model types. Each layer has a weight matrix W and a bias vector b. They are stored in HDF5 files.