Hello, thanks for this repo.
test_set = DatasetLung(data_path=data_path, data_dict=test_dict,
subclasses=subclasses, cond_drop_prob=1.,
transform=transform)
|
test_set = DatasetLung(data_path=data_path, data_dict=test_dict, |
why in the test set, cond_drop_prob=1. ? This will always drop the conditionnal (=the mask ) during evaluation.
In my opinion, to have a test as clos eas possible to final task (imge-mask pair generation) one should keep the conditionnal (on should set cond_drop_prob=0.), what do you think ?
Hello, thanks for this repo.
diffinfinite/dataset.py
Line 274 in 4d23096
why in the test set,
cond_drop_prob=1.? This will always drop the conditionnal (=the mask ) during evaluation.In my opinion, to have a test as clos eas possible to final task (imge-mask pair generation) one should keep the conditionnal (on should set
cond_drop_prob=0.), what do you think ?