my code is like following:
cfg = get_cfg()
...
trainer = DefaultTrainer(cfg)
trainer.resume_or_load(resume=False)
trainer.train()
After training, the model is automatically saved in./output/model_final.pth
. I found the folder where the model is saved, but I couldn't find an interface to change the model filename
What can I do to change the saved filename? I would really appreciate it if you could help me