diff --git a/README.md b/README.md index 288d0dc..ed68bb6 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,5 @@ This is a python port of the [AccAltProj algorithm for robust PCA](https://github.com/caesarcai/AccAltProj_for_RPCA), described in this [paper](https://arxiv.org/abs/1711.05519). + +This implementation follows `sklearn`'s `fit` & `transform` API. diff --git a/pyproject.toml b/pyproject.toml index fc017b4..79d59c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,10 @@ [tool.poetry] -name = "rpca" +keywords = ["robust pca", "rpca", "pca", "sklearn", "dimensionality reduction"]name = "rpca" version = "0.1.0" description = "Robust PCA using Accelerated Alternating Projection" authors = ["Loic Coyle "] readme = "README.md" license = "MIT" -keywords = ["robust pca", "rpca", "sklearn", "dimensionality reduction"] repository = "https://github.com/loiccoyle/RPCA" classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules",