You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
APIs for models(train, test) need to be discussed in the issue. A simple use case for starting,
Image classification on MNIST dataset with 784-200-200-10.
The above is a sample code for training and testing a classification model. It highlights some things that need to be implemented before we can think of working on model APIs.
Activity
czgdp1807 commentedon May 1, 2020
czgdp1807 commentedon May 1, 2020
The above is a sample code for training and testing a classification model. It highlights some things that need to be implemented before we can think of working on model APIs.
czgdp1807 commentedon May 1, 2020
A few functions are to be added in
tensor_ops.hpp
,normalise(TensorCPU<data_type>* t, const string& type, unsigned axis=-1)
- This will normalise the specified axis of the tensor.flatten(TensorCPU<data_type>* t)
- This will flatten the complete tensor in place.