You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I running ./data/femnist/preprocess.sh to get the femnist dataset, I met a problem about the split of train and test data.
Is there a small mistake in the file (femnist/split_data.py) ? The line 118 of the file: ./data/femnist/split_data.py
should be test_indices = list(set(worker_indices) - set(train_indices))
instead of test_indices = list(set(indices) - set(train_indices)).
Thanks.
The text was updated successfully, but these errors were encountered:
Hi authors,
When I running
./data/femnist/preprocess.sh
to get the femnist dataset, I met a problem about the split of train and test data.Is there a small mistake in the file (femnist/split_data.py) ?
The line 118 of the file:
./data/femnist/split_data.py
should be
test_indices = list(set(worker_indices) - set(train_indices))
instead of
test_indices = list(set(indices) - set(train_indices))
.Thanks.
The text was updated successfully, but these errors were encountered: