MiniBullLab / easy_ai

3 stars 1 forks source link

detect2d断点训练问题 #152

Closed foww-0001 closed 2 years ago

foww-0001 commented 2 years ago

detect2d断点训练后,由于config中的类别会重新读取导致和之前训练的类别不一致,精度会骤降。 原来的config的类别:

"detect2d_class": [
    "orange",
    "potato",
    "pear",
    "apple"
],

断点训练后的config:

"detect2d_class": [
    "pear",
    "orange",
    "apple",
    "potato"
],
foww-0001 commented 2 years ago

后期会加入到测试用例中。

foww-0001 commented 2 years ago

暂时定位不到,需要进行讨论分配。

lpj0822 commented 2 years ago

我来修改

lpj0822 commented 2 years ago

解决

foww-0001 commented 2 years ago

测试结果正常。