Le0v1n
Le0v1n
1. Make sure to add `meta_info` to both `train_dataloader` and `val_dataloader`. 2. Ensure that `model.bbox_head.head_module.num_classes` is set correctly.
1. Make sure to add meta_info to both train_dataloader and val_dataloader. 2. Ensure that model.bbox_head.head_module.num_classes is set correctly.
After running, a relatively complete `config.py` file will be generated. Check whether all the `class_name` related items in this file have been changed to your `class_name`.
@nyatorch And you, my friend, are a true hero.
现在的文档很多地方和代码对不上,难搞
For example, `blue_obj` may be displayed with a yellow box, while `yellow_obj` may be displayed with a blue box, which is very confusing 😭 .
`paddleseg/core/train.py`: - `avg_loss_list = [l[0] / log_iters for l in avg_loss_list]` --> `avg_loss_list = [l / log_iters for l in avg_loss_list]`