wangch-g / lanet

MIT License
30 stars 12 forks source link

Why is the shuffle config True in training? #5

Closed cxmscb closed 1 year ago

cxmscb commented 1 year ago

Thanks for the sharing. I am confused about the the shuffle config in training.

traindata_arg.add_argument('--shuffle', type=str2bool, default=False, help='Whether to shuffle the train and valid indices')

wangch-g commented 1 year ago

Thanks for pointing out, this code is released on the basis of the testing version. As for training, the shuffle config should be set as 'True'.

cxmscb commented 1 year ago

Thanks.