Closed dzrdzrdzr closed 11 months ago
well, this is validation set which seems only ran the eighth dataset. But how to run 11-20
As indicated in the README, execute the command python tools/test.py +ckpt_path=...
I would like to clarify that the test set doesn't provide labels for local evaluation. You may need to generate the predictions using this script and submit them to the test server at https://codalab.lisn.upsaclay.fr/competitions/7170.
thanks that's what needed
I assume you are looking to evaluate on the validation set using a pre-trained checkpoint. I think you can achieve this by the followings:
tools/train.py
. Specifically, replace https://github.com/hustvl/Symphonies/blob/f74b9d4ae15a9b11c6d692224053aa882e261076/tools/train.py#L19 withtrainer.test(dls[1])
referring to https://lightning.ai/docs/pytorch/stable/common/trainer.html#testing.These steps should help you achieve your goal. Please don’t hesitate to reach out if you encounter any issues or have further questions.