Metadata-Version: 2.4
Name: recnexa
Version: 0.2.0
Summary: A collection of recommendation algorithms
License-Expression: MIT
Keywords: collaborative-filtering,factorization-machines,implicit-feedback,recommendation,ranking,sequential-recommendation
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy<3,>=1.23.5
Requires-Dist: pandas>=1.5.3
Provides-Extra: dev
Requires-Dist: abi3audit==0.0.26; extra == "dev"
Requires-Dist: build>=1.2; extra == "dev"
Requires-Dist: packaging>=24; extra == "dev"
Requires-Dist: pytest>=8; extra == "dev"
Requires-Dist: PyYAML>=6; extra == "dev"
Requires-Dist: twine>=5; extra == "dev"
Provides-Extra: rankfm
Provides-Extra: lightsans
Requires-Dist: torch>=2.0.0; extra == "lightsans"
Requires-Dist: scipy>=1.10.0; extra == "lightsans"
Requires-Dist: tqdm>=4.48.2; extra == "lightsans"
Requires-Dist: colorlog>=4.7.2; extra == "lightsans"
Requires-Dist: colorama>=0.4.4; extra == "lightsans"
Requires-Dist: PyYAML>=6; extra == "lightsans"
Requires-Dist: tensorboard>=2.5.0; extra == "lightsans"
Requires-Dist: thop>=0.1.1.post2207130030; extra == "lightsans"
Requires-Dist: texttable>=0.9.0; extra == "lightsans"
Requires-Dist: psutil>=5.9.0; extra == "lightsans"
Provides-Extra: all
Requires-Dist: recnexa[lightsans,rankfm]; extra == "all"
Dynamic: license-file

# RecNexa

[![PyPi Latest Release](https://img.shields.io/pypi/v/recnexa)](https://pypi.org/project/recnexa/)
[![Python Versions](https://img.shields.io/pypi/pyversions/recnexa)](https://pypi.org/project/recnexa/)
[![PyPI Downloads](https://img.shields.io/pypi/dm/recnexa)](https://pypi.org/project/recnexa/)
[![Wheel](https://img.shields.io/pypi/wheel/recnexa)](https://pypi.org/project/recnexa/)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE)

RecNexa is a production-oriented collection of recommendation algorithms, designed to curate and integrate practical implementations in a consistent, maintainable way.

The project focuses on algorithm packages from the third-party community, especially valuable implementations that are no longer maintained. Where needed, it adapts and maintains them for use in modern production environments.

## Included Algorithms

- **rankfm**: A factorization machine implementation optimized for ranking. See the [rankfm documentation](docs/rankfm.md).
- **LightSANs**: A sequential next-item recommendation model. See the [LightSANs documentation](docs/lightsans.md).

## Roadmap

RecNexa will continue to collect more proven recommendation algorithms, gradually covering additional recommendation scenarios and modeling paradigms.

Installation, configuration, usage examples, and API references for each algorithm are maintained separately in the `docs` directory. This README only introduces the project and its included algorithms.
