Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[IO] Fix, make shuffle false by default #155

Merged
merged 1 commit into from
Sep 25, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/io/iter_image_recordio.cc
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ struct ImageRecordParam: public dmlc::Parameter<ImageRecordParam> {
bool verbose;
// declare parameters
DMLC_DECLARE_PARAMETER(ImageRecordParam) {
DMLC_DECLARE_FIELD(shuffle).set_default(true)
DMLC_DECLARE_FIELD(shuffle).set_default(false)
.describe("Augmentation Param: Whether to shuffle data.");
DMLC_DECLARE_FIELD(seed).set_default(0)
.describe("Augmentation Param: Random Seed.");
Expand Down