Skip to content

Illegal instruction (core dumped) in ALS #137

@mkdy

Description

@mkdy

OS: CentOS 7
Python 3.6.4 |Anaconda custom (64-bit)
fastFM 0.2.11 (installed with pip)

When trying to run a simple example of ALS:

from fastFM.datasets import make_user_item_regression
from sklearn.model_selection import train_test_split
X, y, _ = make_user_item_regression(label_stdev=.4)
X_train, X_test, y_train, y_test = train_test_split(X, y)

from fastFM import als
fm = als.FMRegression(n_iter=1000, init_stdev=0.1, rank=2, l2_reg_w=0.1, l2_reg_V=0.5)
fm.fit(X_train, y_train)

the last line kills python interpreter (with SIGILL)
Downgraded to 0.2.10 and everything works fine.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions