pywFM
pywFM copied to clipboard
TypeError: init() got an unexpected keyword argument 'seed'
seed is not implemented
I got this error message when running
fm = pywFM.FM(task='regression', k2=2, seed=seed)
TypeError Traceback (most recent call last)
TypeError: init() got an unexpected keyword argument 'seed'
I installed pywFM directly by running
pip install pywFM
and found out the package in 0.9.0 version
but when I try to install by running
pip install pywFM==0.12.3
I got this error
Collecting pywFM==0.12.3 ERROR: Could not find a version that satisfies the requirement pywFM==0.12.3 (from versions: 0.1, 0.2a0, 0.2, 0.3, 0.4, 0.5, 0.6a0, 0.6, 0.7, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.8, 0.8.1, 0.9.0) ERROR: No matching distribution found for pywFM==0.12.3
You can install directly from Github:
pip install git+https://github.com/jfloff/pywFM
Same issue here. Is there any reason that the new versions are on PyPI but cannot be pip-installed? Thanks.