Skip to content

Commit

Permalink
Expose utils module
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-narozniak committed Mar 5, 2024
1 parent d08b44b commit 0ed7585
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions datasets/flwr_datasets/federated_dataset_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,10 @@ def test_load_partition_size(self, _: str, train_num_partitions: int) -> None:
@parameterized.expand( # type: ignore
[
((0.2, 0.8), 2),
((0.2, 0.8), None),
([0.2, 0.8], 2),
({"train": 0.2, "test": 0.8}, 2),
# Not full dataset
([0.2, 0.1], 2),
((0.2, 0.1), None),
({"train": 0.2, "test": 0.1}, 2),
({"train": 0.2, "test": 0.1}, None),
(None, None),
(None, None),
],
)
Expand Down

0 comments on commit 0ed7585

Please sign in to comment.