dive-into-ml-system
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,报错  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')``` 运行成功
如题。 另外,看了一下代码,感觉还是太难了,自己搞不懂。 既然仓库起了这个名字,那能不能提供一些可以学习的资料啊?十分感谢!