windows - VowpalWabbit: ImportError: dynamic module does not define init function (initpylibvw) -
during installation vowpalwabbit under windows, performed following steps:
- checkout sources , restore packages via nuget
- build vm-solution under python 2.7.13
- install package through
python setup.py install
- structure of vw-package
__init__.pyc sklearn_vw.pyc pyvw.pyc __init__.py sklearn_vw.py pyvw.py pylibvw.pyd
after trying use compiled package:
- first import works :)
import vowpalwabbit
needed - but
from vowpalwabbit.sklearn_vw import vwclassifier
doesn't work due exception inpyvw.py line => import pylibvw
:
importerror: dynamic module not define init function (initpylibvw)
where wrong ?
Comments
Post a Comment