Open abieler opened 7 years ago
There is a simple regression example that shows how to deal with providing data from arrays in https://github.com/dmlc/MXNet.jl/blob/master/examples/regression-example.jl
Thanks! I somehow managed to not see this example...
I created a Jupyter Notebook MLP tutorial taking MNIST data from Kaggle and accessing it using an ArrayDataProvider
. You can see it here: https://github.com/ultradian/julia_notebooks/blob/master/mxnet/mnistMLP.ipynb
I would love to contribute to the MXNet.jl
project with further documentation. How would I best do this?
@ultradian Thanks a lot! I suggest one of the two options, whichever you prefer that might be easier for maintenance:
examples/jupyter-notebooks
.@pluskid Thank you for all your work. I'm going for option 2, and just submitted a PR #227. Hopefully, I'll be able to contribute something more substantial in the future!
I am not smart enough to extrapolate from the MNIST example what to do with data and labels that come in form of regular Julia arrays. Say, X = Matrix{Float}(1000, 10) and y = Vector{Int}(1000)
Is there a minimal example for a 3 layer perceptron applied to this data?
Thanks Andre