Hi,
I am wondering in which order the model methods will be executed. I assume its this order:
model.load(dir_path)
model.collect_statistics_iter(img, meta)
model.update_model()
model.predict(img, meta)
Can someone confirm?
Thanks a lot
Hi,
You are correct, this is the order of execution.
Notice that collect_statistics_iter and update_model will only run if you set make_initial_pass_over_dataset to true
Shai,
MAFAt Challenge Team
Can you please make it clear if the calibration is on all dataset (all images) before prediction or calibrate single image before each single image prediction?
Posted by: eladcoh3 @ March 3, 2023, 7:29 p.m.Hi,
The calibration is an optional pass on all test data. It starts and finishes before the prediction.
Neta,
MAFAT Challenge Team