rpudlFindTrainingDataMean {rpud} | R Documentation |
Finding mean input values of the training data in
an RPUDL
data source. The result is to be
saved to an output file.
rpudlFindTrainingDataMean(
data.source,
filename = "data.mean",
...,
log.level = 1
)
data.source |
An S3 object that inherits the class |
filename |
Name of the output file, which is located in the same path folder as the data set. |
... |
further arguments to be passed to or from methods |
log.level |
level of the method output (0 = silent, 1 = basic output, 2 = detailed output) |
Chi Yau
chi.yau@r-tutor.com
rpudlCreateDataSource
## Not run:
ds <- rpudlCreateDataSource(
data.format="lmdb",
data.dir=file.path(data.dir, "cifar10"),
train.data="samples_train_lmdb",
test.data="samples_test_lmdb",
data.shape=c(32, 32),
data.channels=3
)
rpudlFindTrainingDataMean(ds, filename="samples.mean")
## End(Not run)