├── .gitignore ├── LICENSE ├── README.md ├── examples ├── fractional_pca.py ├── hinge.py ├── huber_pca.py ├── likert.py ├── mixed.py ├── pca_nonneg.py ├── pca_nucnorm.py ├── pca_test.py ├── readme.md └── smiley.py ├── glrm ├── __init__.py ├── convergence.py ├── glrm.py ├── loss.py ├── reg.py └── util.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/README.md -------------------------------------------------------------------------------- /examples/fractional_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/fractional_pca.py -------------------------------------------------------------------------------- /examples/hinge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/hinge.py -------------------------------------------------------------------------------- /examples/huber_pca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/huber_pca.py -------------------------------------------------------------------------------- /examples/likert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/likert.py -------------------------------------------------------------------------------- /examples/mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/mixed.py -------------------------------------------------------------------------------- /examples/pca_nonneg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/pca_nonneg.py -------------------------------------------------------------------------------- /examples/pca_nucnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/pca_nucnorm.py -------------------------------------------------------------------------------- /examples/pca_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/pca_test.py -------------------------------------------------------------------------------- /examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/readme.md -------------------------------------------------------------------------------- /examples/smiley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/examples/smiley.py -------------------------------------------------------------------------------- /glrm/__init__.py: -------------------------------------------------------------------------------- 1 | from glrm import GLRM 2 | -------------------------------------------------------------------------------- /glrm/convergence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/glrm/convergence.py -------------------------------------------------------------------------------- /glrm/glrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/glrm/glrm.py -------------------------------------------------------------------------------- /glrm/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/glrm/loss.py -------------------------------------------------------------------------------- /glrm/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/glrm/reg.py -------------------------------------------------------------------------------- /glrm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/glrm/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powerscorinne/GLRM/HEAD/setup.py --------------------------------------------------------------------------------