Changed the config file's input LMDB path train to: datasets/my_dataset/lmdb/train and val to datasets/my_dataset/lmdb/val
But, after I run the training command I get:
Using random seed 2
Training with 1 GPUs.
Make folder logs/
cudnn benchmark: True
cudnn deterministic: False
Creating metadata
['images', 'landmarks-dlib68']
Data file extensions: {'images': 'jpg', 'landmarks-dlib68': 'json'}
Searching in dir: images
Found 0 sequences
Found 0 files
Folder at datasets/my_dataset/lmdb/train/images opened.
Folder at datasets/my_dataset/lmdb/train/landmarks-dlib68 opened.
Num datasets: 1
Num sequences: 0
Max sequence length: 0
Requested sequence length (30) + few shot K (1) > max sequence length (0).
Reduced sequence length to -1
Epoch length: 0
Creating metadata
['images', 'landmarks-dlib68']
Data file extensions: {'images': 'jpg', 'landmarks-dlib68': 'json'}
Searching in dir: images
Found 0 sequences
Found 0 files
Folder at datasets/my_dataset/lmdb/val/images opened.
Folder at datasets/my_dataset/lmdb/val/landmarks-dlib68 opened.
Num datasets: 1
Num sequences: 0
Max sequence length: 0
Requested sequence length (2) + few shot K (1) > max sequence length (0).
Reduced sequence length to -1
Epoch length: 0
Train dataset length: 0
Val dataset length: 0
So, what is causing this error? Any help will be appreciated.
I have arranged the data as required and split it into train and validation sets. Like:
train(340+ video frames):
val(101 video frames):
Used:
This made files in the structure:
Changed the config file's input LMDB path train to: datasets/my_dataset/lmdb/train and val to datasets/my_dataset/lmdb/val
But, after I run the training command I get:
So, what is causing this error? Any help will be appreciated.