Mixed Membership Stochastic Block Models
A Python implementation of Mixed Membership Stochastic Block Models for recommendation systems, based on the work by Godoy-Lorite et al. (2016). This library provides an efficient, vectorized implementation with multiple computational backends suitable for both research and production environments.
Features
- Multiple Backends: Choose between
numpy(default),numba(JIT-compiled CPU), andcupy(GPU-accelerated) for performance tuning. - Fast, vectorized implementation of MMSBM.
- Support for both simple and cross-validated fitting.
- Parallel processing for multiple sampling runs.
- Comprehensive model statistics and evaluation metrics.
- Compatible with Python 3.7+.
Installation
The base library can be installed with pip:
pip install mmsbm
For accelerated backends, you can install the optional dependencies:
Numba (JIT Compilation on CPU):
pip install mmsbm[numba]
CuPy (NVIDIA GPU Acceleration): Make sure you have a compatible NVIDIA driver and CUDA toolkit installed. Then install with:
pip install mmsbm[cupy]
You can also install all optional dependencies with:
pip install mmsbm[numba,cupy]
Performance & Backends
This library uses a backend system to perform the core computations of the Expectation-Maximization algorithm. You can specify the backend when you initialize the model, giving you control over the performance characteristics.
from mmsbm import MMSBM
# Use the default, pure NumPy backend
model_numpy = MMSBM(user_groups=2, item_groups=4, backend='numpy')
# Use the Numba backend for JIT-compiled CPU acceleration
model_numba = MMSBM(user_groups=2, item_groups=4, backend='numba')
# Use the CuPy backend for GPU acceleration
model_cupy = MMSBM(user_groups=2, item_groups=4, backend='cupy')
numpy(Default): A highly optimized, pure NumPy implementation. It is universally compatible and requires no extra dependencies beyond NumPy itself.numba: Uses the Numba library to just-in-time (JIT) compile the core computational loops. This can provide a significant speedup on the CPU, especially for large datasets. It is recommended for users who want better performance without a dedicated GPU.cupy: Offloads computations to a compatible NVIDIA GPU using the CuPy library. This provides the best performance but requires a CUDA-enabled GPU and the appropriate drivers. Note that there is some overhead for transferring data to and from the GPU, so it's most effective on larger models where the computation time outweighs the data transfer time. For small models, numba might actually be faster.
Quick Start
from mmsbm import MMSBM
# Create a model with the desired backend
model = MMSBM(user_groups=2, item_groups=4, backend='numba') # or 'numpy', 'cupy'
# Fit and predict
model.fit(train_data)
predictions = model.predict(test_data)
# Get model results
results = model.score()
Detailed Usage
Data Format
The input data should be a pandas DataFrame with exactly 3 columns representing users, items, and ratings:
import pandas as pd
from random import choice
train = pd.DataFrame(
{
"users": [f"user{choice(list(range(5)))}" for _ in range(100)],
"items": [f"item{choice(list(range(10)))}" for _ in range(100)],
"ratings": [choice(list(range(1, 6))) for _ in range(100)]
}
)
test = pd.DataFrame(
{
"users": [f"user{choice(list(range(5)))}" for _ in range(50)],
"items": [f"item{choice(list(range(10)))}" for _ in range(50)],
"ratings": [choice(list(range(1, 6))) for _ in range(50)]
}
)
Model Configuration
from mmsbm import MMSBM
# Initialize the MMSBM class:
model = MMSBM(
user_groups=2, # Number of user groups
item_groups=4, # Number of item groups
backend='numba', # Specify the computational backend
iterations=500, # Number of EM iterations
sampling=5, # Number of parallel runs
seed=1, # Random seed for reproducibility
debug=False # Enable debug logging
)
Training Methods
Simple Fit
model.fit(train)
Cross-Validation Fit
accuracies = model.cv_fit(train, folds=5)
print(f"Mean accuracy: {np.mean(accuracies):.3f} ± {np.std(accuracies):.3f}")
Making Predictions
predictions = model.predict(test)
Model Evaluation
results = model.score()
# Access various metrics
accuracy = results['stats']['accuracy']
mae = results['stats']['mae']
# Access model parameters
theta = results['objects']['theta'] # User group memberships
eta = results['objects']['eta'] # Item group memberships
pr = results['objects']['pr'] # Rating probabilities
Running Tests
To run tests do the following:
pytest
Contributing
- Fork the repository
- Create your feature branch (git checkout -b feature/amazing-feature)
- Commit your changes (git commit -m 'Add amazing feature')
- Push to the branch (git push origin feature/amazing-feature)
- Open a Pull Request
TODO
- Progress bars are not working for jupyter notebooks.
- There is a persistent (albeit harmless) warning when using the cupy backend.
References
[1]: Godoy-Lorite, Antonia, et al. "Accurate and scalable social recommendation using mixed-membership stochastic block models." Proceedings of the National Academy of Sciences 113.50 (2016): 14207-14212.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mmsbm-1.0.0.tar.gz.
File metadata
- Download URL: mmsbm-1.0.0.tar.gz
- Upload date:
- Size: 22.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d297ab81bd7e8d8c0c7311361592df35b209804cfcc42db4cc3efb53a3e12e91
|
|
| MD5 |
93756ebfd4ef77099f774f920978720c
|
|
| BLAKE2b-256 |
dd91e09609bde24611b86f8b93cfbe1db861c76349055984183161813c50648d
|
File details
Details for the file mmsbm-1.0.0-py3-none-any.whl.
File metadata
- Download URL: mmsbm-1.0.0-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.1.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9db80dd4a950a9e00499c6311cece218dba5a51183f364a0c5afb22fd1ea2198
|
|
| MD5 |
e03b94061e403f448d266a9ce479b798
|
|
| BLAKE2b-256 |
0d8d517c850790a2f2c1644aa2aa6ac6c3d8e98a3f7ad8b8533880f63bac11a5
|