Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dataset/casia_hwdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def parse_example_v2(record):
def load_ds():
input_files = ['dataset/HWDB1.1trn_gnt.tfrecord']
ds = tf.data.TFRecordDataset(input_files)
ds = ds.map(parse_example)
ds = ds.map(parse_example_v2)
return ds


Expand Down