lijiadong

Results 2 comments of lijiadong

我在PPHGNet上遇到了同样的问题,debug以后应该是在分类部分的标签处存在问题... 我这边是分类的地方加载标签文件中: `ppcls/engine/evaluation/classification.py line59` `batch[1] = batch[1].reshape([-1, 1]).astype("int64")`这里如果用双引号 label的标签编码形式会改变 可以试下单引号:`batch[1] = batch[1].reshape([-1, 1])

> I also have a same problem. But the wired thing is I can train the model using training script. (I mean I can train using `dist_train.sh`) But when I...