KamiYin

Results 6 comments of KamiYin

Yes,i installed your .txt And i installed gtp from pypi. Before i ran Mugo i had changed cuDNN v5 into v5.1. I dont know whether it's the point of the...

After I uninstall gtp, it works!!! It said GTP engine ready. So what should I type in next? I found that whatever I type in there just is '? unknown...

And I found another quesqion... > >>> gogui -size 19 -program "$TWOGTP" -computer-both -auto > File "stdin", line 1 > gogui -size 19 -program "$TWOGTP" -computer-both -auto > ^(point to...

Hi,siyangbing. 您是在完全没改动或者仅是根据我给出的改动方法(更换loss时)进行改动吗,使用的训练集和测试集是否都是我的项目中的数据?我上传的代码均是在我电脑上反复多次验证的,或许是您进行了某些没有注意到的改动导致这种情况的发生。 另外,不同loss训练出来的效果也是不一样的,具体您可以参考PDF文件末尾的对比图。建议您试一下下载我的代码后不做任何改动运行一次(提前删掉.pth文件),并且确保test时使用的是新的.pth文件。如果还是出现同样问题的话我很乐意和您探讨,期待您的回答!

目前我的电脑上也出现了该问题,我正在改正,您可以先用model_trained.pth文件来进行测试,这个模型权重文件应该是正确的,并且也是在这个项目下训练出来的。 十分抱歉

是的我计划修复这个问题,但是目前我手头上还有另外的工作,等我修复完毕第一时间通知您。 初步推测应该是Linux和Win(我的环境)下文件读取差异造成的,Win会自动对读取文件进行排序,Linux则不会,有能力的话您可以自己在代码上改正,在preprocessing_image.py中将读取进来的文件添加sorted进行修改 self.img_path = sorted(os.listdir(self.imgs)) # 这里返回文件夹下所有文件的文件名 self.label_path = sorted(os.listdir(self.labels)) 或者等我修复并验证成功再上传