dive-into-ml-system icon indicating copy to clipboard operation
dive-into-ml-system copied to clipboard

Dive into machine learning system, start from reinventing the wheel.

Results 2 dive-into-ml-system issues
Sort by recently updated
recently updated
newest added

Windows10 + mingw-w64 重新编译DLL Python3.6下运行example.py,报错 ![image](https://user-images.githubusercontent.com/5583099/45884433-794cbc80-bde6-11e8-95bb-5e38520770c7.png) model.py文件的第40行 ```char_p = c_char_p("0"*25)``` 改为 ```char_p = c_char_p(str("0"*25).encode('utf-8'))``` 第92行 ```self.fmodel = path``` 改为 ```self.fmodel = path.encode('utf-8')``` 运行成功

如题。 另外,看了一下代码,感觉还是太难了,自己搞不懂。 既然仓库起了这个名字,那能不能提供一些可以学习的资料啊?十分感谢!