-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
more on data io...specially for images. #1
Comments
Dear Andre, You can try following codes: library(mxnet) CustomCSVIter <- setRefClass("CustomCSVIter", batch.size <- 50 lenet.model <- function(){ n.cpu <- 4 model <- mx.model.FeedForward.create(symbol=network, |
Hello, Chin Lin.
First of all, nicely structured guide you have here.
( I'm starting with mxnet and there is not so much help in R).
I don't know if this is the correct place (since it is not an issue) to put it but here it goes:
I would like to see more on data io...specially how to build datasets efficiently from images.
The main topics I'm dealing with are:
-convert images to Xdataset (most data efficient way (space and speed));
-optimal structure the final X dataset (HeightxWidthxChannelxObservation) or other;
-normalized the data?from 0 to 255? from 0 to 1?other?
-is there any reference guide or format that should be used(data.matrix or array)?
Hope my feedback help your guide in the future, as your answer will certainly help me.
Kind regards, Andre
The text was updated successfully, but these errors were encountered: