Skip to content

Commit 01eb029

Browse files
Conchylicultorcopybara-github
authored andcommitted
Deterministic math_dataset configs order
PiperOrigin-RevId: 281604744
1 parent 1d029fa commit 01eb029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow_datasets/text/math_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207
def _generate_builder_configs():
208208
"""Generate configs with different subsets of mathematics dataset."""
209209
configs = []
210-
for module in set(_MODULES):
210+
for module in sorted(set(_MODULES)):
211211
configs.append(
212212
tfds.core.BuilderConfig(
213213
name=module,

0 commit comments

Comments
 (0)