Load dataset offline #2416
Replies: 5 comments
-
You can specify
|
Beta Was this translation helpful? Give feedback.
-
@charlie1986 |
Beta Was this translation helpful? Give feedback.
-
@FrankLiu |
Beta Was this translation helpful? Give feedback.
-
@FrankLiu |
Beta Was this translation helpful? Give feedback.
-
When we download the files from remote repo, we uncompress the file, so in local you won't see It looks like a bug to me that we are using |
Beta Was this translation helpful? Give feedback.
-
Hi guys!
I'm following the books d2l java version to learning deep learning concepts. The following code shows how to load fashion mnist dataset to train the model:
int batchSize = 256;
FashionMnist trainIter = FashionMnist.builder()
.optUsage(Dataset.Usage.TRAIN)
.setSampling(batchSize, true)
.optLimit(Long.getLong("DATASET_LIMIT", Long.MAX_VALUE))
.build();
But this code requires internet connection to download the dataset from fashion mnist repo. Could we manually download the dataset and load it offline locally? How to do that?
P/s: My computer at work doesnt have internet connection.
Beta Was this translation helpful? Give feedback.
All reactions