Question about generating validation dataset.
Closed this issue · 5 comments
According to step two which is used to generate ten levels' foggy training images and val images, respectively
However, when we access data_make.py. We can observe that the img_name for the validation set has been commented.
The VOC structure is exactly the same as it is required.
is there anything I have missed?
According to step two which is used to generate ten levels' foggy training images and val images, respectively
However, when we access data_make.py. We can observe that the img_name for the validation set has been commented.
The VOC structure is exactly the same as it is required.
is there anything I have missed?
I have the same question.Did you solve it?
According to step two which is used to generate ten levels' foggy training images and val images, respectively
However, when we access data_make.py. We can observe that the img_name for the validation set has been commented.
The VOC structure is exactly the same as it is required.
is there anything I have missed?I have the same question.Did you solve it?
Hi @lyq216398 i did solved it, if you are generating validation set, just uncomment it and comment the the line above.
According to step two which is used to generate ten levels' foggy training images and val images, respectively
However, when we access data_make.py. We can observe that the img_name for the validation set has been commented.
The VOC structure is exactly the same as it is required.
is there anything I have missed?I have the same question.Did you solve it?
Hi @lyq216398 i did solved it, if you are generating validation set, just uncomment it and comment the the line above.
Thank you for your reply!I want to know whether the validation set is for final testing or just is separated from the training set to verify the effectiveness during training.I am a little confused with the concept of "val and test".
According to step two which is used to generate ten levels' foggy training images and val images, respectively
However, when we access data_make.py. We can observe that the img_name for the validation set has been commented.
The VOC structure is exactly the same as it is required.
is there anything I have missed?I have the same question.Did you solve it?
Hi @lyq216398 i did solved it, if you are generating validation set, just uncomment it and comment the the line above.
Thank you for your reply!I want to know whether the validation set is for final testing or just is separated from the training set to verify the effectiveness during training.I am a little confused with the concept of "val and test".
The validation set is to verify the effectiveness during training. The author has mixing up the val and test in his code, if i'm remember correctly.
According to step two which is used to generate ten levels' foggy training images and val images, respectively
However, when we access data_make.py. We can observe that the img_name for the validation set has been commented.
The VOC structure is exactly the same as it is required.
is there anything I have missed?I have the same question.Did you solve it?
Hi @lyq216398 i did solved it, if you are generating validation set, just uncomment it and comment the the line above.
Thank you for your reply!I want to know whether the validation set is for final testing or just is separated from the training set to verify the effectiveness during training.I am a little confused with the concept of "val and test".
The validation set is to verify the effectiveness during training. The author has mixing up the val and test in his code, if i'm remember correctly.
Thank you !!!