You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@464hee Good catch! I will look into this problem. I thought it is related to batch size. I am not sure if the number of epochs can also cause the problem.
@PomIsBest See my reply in another thread. Thanks.
当 args.num_train_epochs=1时存在训练异常
下面函数
pred_camera, pred_3d_joints, pred_vertices_sub, pred_vertices = METRO_model(images, mano_model, mesh_sampler, meta_masks=meta_masks, is_train=True)
输出pred_camera是一个维度的列表,例如:[1,2,3]
但是visualize_reconstruction需要这个pred_camera参数是一个二维列表,例如:[ [1,2,3] ]
虽然可以将 args.num_train_epochs=2实现解决,但希望能更新
The text was updated successfully, but these errors were encountered: