-
Hello. I have a question (maybe very newbie one T^T) regards to train/val/test split. The image below is my custom dataset. I do not want the model to get the split from the train data into the validation or test set. So, in summary, train dataset for train dataset only and other abnormal / test dir for both val&test only. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Yes, when
The settings you mentioned should achieve this. Whenever a Please note that from v0.4.0, the naming of some of these parameters will change. |
Beta Was this translation helpful? Give feedback.
Yes, when
create_validation_set
is set totrue
, the evaluation images will be divided equally (50%) into a validation set and a test set which are mutually exclusive. When set tofalse
, the test set and the validation set will both contain the same images.The settings you mentioned should achieve this. Whenever a
normal_test_dir
is specified, the normal images for evaluat…