Skip to main content

eALS - Element-wise Alternating Least Squares

Project description

eALS - Element-wise Alternating Least Squares

A Python implementation of the element-wise alternating least squares (eALS) for fast online matrix factorization proposed by arXiv:1708.05024.

Prerequisites

  • Python >= 3.8, < 3.11

Installation

pip install eals

Usage

import numpy as np
import scipy.sparse as sps
from eals import ElementwiseAlternatingLeastSquares, load_model

# batch training
user_items = sps.csr_matrix([[1, 2, 0, 0], [0, 3, 1, 0], [0, 4, 0, 4]], dtype=np.float32)
model = ElementwiseAlternatingLeastSquares(factors=2)
model.fit(user_items)

# learned latent vectors
model.user_factors
model.item_factors

# online training for new data (user_id, item_id)
model.update_model(1, 0)

# rating matrix and latent vectors will be expanded for a new user or item
model.update_model(0, 5)

# current rating matrix
model.user_items

# save and load the model
model.save("model.joblib")
model = load_model("model.joblib")

See the examples directory for complete examples.

Development

Setup development environment

git clone https://github.com/newspicks/eals.git
cd eals
poetry run pip install -U pip
poetry install

Tests

poetry run pytest

Set USE_NUMBA=0 for faster testing without numba JIT overhead.

USE_NUMBA=0 poetry run pytest

To run tests against all supported Python versions, use tox. You may need to add the Python versions in the tox.ini file.

poetry run tox

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eals-0.9.6.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

eals-0.9.6-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file eals-0.9.6.tar.gz.

File metadata

  • Download URL: eals-0.9.6.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.1 CPython/3.10.8 Darwin/21.6.0

File hashes

Hashes for eals-0.9.6.tar.gz
Algorithm Hash digest
SHA256 b1eccc9571b57529b319c0638cde55588a1c7ebbc7753985aeac535b4cbfec45
MD5 af6faea2ae8fe476d248dc5a73723a2b
BLAKE2b-256 c9e0c2cc2db39a56fd0cc3de909f6ee6898deaa050cf9b3064b727a9554248dd

See more details on using hashes here.

File details

Details for the file eals-0.9.6-py3-none-any.whl.

File metadata

  • Download URL: eals-0.9.6-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.1 CPython/3.10.8 Darwin/21.6.0

File hashes

Hashes for eals-0.9.6-py3-none-any.whl
Algorithm Hash digest
SHA256 43d0790e5523cb9967287496954c48ef57dd682cfea082befc245422eb5bcc37
MD5 eaa7a5ff2350017550d937e68e8eacf8
BLAKE2b-256 0e9d5917468bc49de2412975a4055f956cf012c0b3d2a7d1998f01123b82812f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page