Skip to content

Commit

Permalink
small syntax error in example_deserialization
Browse files Browse the repository at this point in the history
  • Loading branch information
bgenchel committed Aug 9, 2024
1 parent 6e3710d commit 805ec25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion basic_pitch/data/tf_example_deserialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def sample_datasets(
choice_dataset = tf.data.Dataset.range(
n_datasets
).repeat() # this repeat is critical! if not, only n_dataset points will be sampled!!
return tf.data.Datasets.choose_from_datasets(ds_list, choice_dataset)
return tf.data.Dataset.choose_from_datasets(ds_list, choice_dataset)


def transcription_file_generator(
Expand Down

0 comments on commit 805ec25

Please sign in to comment.