MCPcopy
hub / github.com/benfred/implicit

github.com/benfred/implicit @v0.7.3 sqlite

repository ↗ · DeepWiki ↗ · release v0.7.3 ↗
286 symbols 977 edges 40 files 76 documented · 27%
README

Implicit

Build
Status Documentation

Fast Python Collaborative Filtering for Implicit Datasets.

This project provides fast Python implementations of several different popular recommendation algorithms for implicit feedback datasets:

All models have multi-threaded training routines, using Cython and OpenMP to fit the models in parallel among all available CPU cores. In addition, the ALS and BPR models both have custom CUDA kernels - enabling fitting on compatible GPU's. Approximate nearest neighbours libraries such as Annoy, NMSLIB and Faiss can also be used by Implicit to speed up making recommendations.

Installation

Implicit can be installed from pypi with:

pip install implicit

Installing with pip will use prebuilt binary wheels on x86_64 Linux, Windows and OSX. These wheels include GPU support on Linux.

Implicit can also be installed with conda:

# CPU only package
conda install -c conda-forge implicit

# CPU+GPU package
conda install -c conda-forge implicit implicit-proc=*=gpu

Basic Usage

import implicit

# initialize a model
model = implicit.als.AlternatingLeastSquares(factors=50)

# train the model on a sparse matrix of user/item/confidence weights
model.fit(user_item_data)

# recommend items for a user
recommendations = model.recommend(userid, user_item_data[userid])

# find related items
related = model.similar_items(itemid)

The examples folder has a program showing how to use this to compute similar artists on the last.fm dataset.

For more information see the documentation.

Articles about Implicit

These blog posts describe the algorithms that power this library:

There are also several other articles about using Implicit to build recommendation systems: * H&M Personalized Fashion Recommendations Kaggle Competition * Yandex Cup 2022: Like Prediction * Recommending GitHub Repositories with Google BigQuery and the implicit library * Intro to Implicit Matrix Factorization: Classic ALS with Sketchfab Models * A Gentle Introduction to Recommender Systems with Implicit Feedback.

Requirements

This library requires SciPy version 0.16 or later and Python version 3.9 or later.

GPU Support requires version 13 of the NVidia CUDA Toolkit, and requires that RMM be installed pip install rmm-cu13

This library is tested with Python 3.9 to 3.14 on Ubuntu, OSX and Windows.

Benchmarks

Simple benchmarks comparing the ALS fitting time versus Spark can be found here.

Optimal Configuration

I'd recommend configuring SciPy to use Intel's MKL matrix libraries. One easy way of doing this is by installing the Anaconda Python distribution.

For systems using OpenBLAS, I highly recommend setting 'export OPENBLAS_NUM_THREADS=1'. This disables its internal multithreading ability, which leads to substantial speedups for this package. Likewise for Intel MKL, setting 'export MKL_NUM_THREADS=1' should also be set.

Released under the MIT License

Core symbols most depended-on inside this repo

recommend
called by 38
implicit/ann/faiss.py
fit
called by 29
implicit/ann/faiss.py
similar_items
called by 20
implicit/ann/faiss.py
AlternatingLeastSquares
called by 19
implicit/als.py
fit
called by 17
implicit/gpu/als.py
_batch_call
called by 6
implicit/utils.py
_filter_items_from_results
called by 6
implicit/utils.py
check_csr
called by 6
implicit/utils.py

Shape

Method 155
Function 100
Class 31

Languages

Python100%

Modules by API surface

tests/approximate_als_test.py31 symbols
tests/recommender_base_test.py27 symbols
implicit/nearest_neighbours.py20 symbols
tests/als_test.py18 symbols
implicit/cpu/als.py18 symbols
implicit/gpu/matrix_factorization_base.py16 symbols
implicit/cpu/matrix_factorization_base.py15 symbols
implicit/gpu/als.py14 symbols
tests/evaluation_test.py11 symbols
implicit/recommender_base.py10 symbols
tests/bpr_test.py8 symbols
implicit/utils.py8 symbols

Dependencies from manifests, versioned

Cython0.24.0 · 1×
numpy1.17.0 · 1×
scikit-build0.13.1 · 1×
scipy0.16.0 · 1×
threadpoolctl
tqdm4.27.0 · 1×

For agents

$ claude mcp add implicit \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact