wzb-bupt / LandmarkGait

LandmarkGait: Intrinsic Human Parsing for Gait Recognition (ACM MM 2023)
13 stars 0 forks source link

在LandmarkGait_Recognition中出现warning #1

Open FlySharker opened 3 weeks ago

FlySharker commented 3 weeks ago

我在训练LandmarkGait_Recognition这一步出现了warning。具体是 [WARNING]: Restore NO Optimizer from ./output/CASIA-B/LandmarkGait_Landmark_to_Parsing/LandmarkGait_Landmark_to_Parsing/checkpoints/Landmark Gait_Landmark_to_Parsing-00300.pt !!! [WARNING]: Restore NO Scheduler from ./output/CASIA-B/LandmarkGait_Landmark_to_Parsing/LandmarkGait_Landmark_to_Parsing/checkpoints/Landmark Gait_Landmark_to_Parsing-00300.pt !!! 请问这是为什么

wzb-bupt commented 3 weeks ago

The training process involves three steps. Each step's checkpoint will be sent to the next step for initialization.

However, the next step will not follow the original optimizer and scheduler, and will directly reset them. You can refer to ./configs/landmarkgait/LandmarkGait_Recognition.yaml#L83-84 to find this setting.

This is why you will see these warnings. Don't worry; this is correct : )

FlySharker commented 3 weeks ago

我找到了,谢谢您!