I ran the create_lmdb_dataset.py script and successfully created the data.mbd and lock.mbd and put them into the data_lmbd_release/training directory. But when I ran the train.py script, I got the following error:
AssertionError: datasets should not be an empty ot be an empty iterable' # type: ignor
iterable
Am I supposed to split my data beforehand into evaluation, training and validation sets and then run the create_lmdb_dataset.py script on each of them?
I ran the
create_lmdb_dataset.py
script and successfully created the data.mbd and lock.mbd and put them into thedata_lmbd_release/training
directory. But when I ran thetrain.py
script, I got the following error:AssertionError: datasets should not be an empty ot be an empty iterable' # type: ignor iterable
Am I supposed to split my data beforehand into evaluation, training and validation sets and then run the
create_lmdb_dataset.py
script on each of them?Thanks for your help!