├── LICENSE ├── Makefile ├── README.md ├── cfrbm ├── __init__.py ├── dataset.py ├── experiments.py ├── item_based.py ├── rbm.py ├── user_based.py └── utils.py ├── tests ├── __init__.py └── test_utils.py └── ubased.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/README.md -------------------------------------------------------------------------------- /cfrbm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cfrbm/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/cfrbm/dataset.py -------------------------------------------------------------------------------- /cfrbm/experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/cfrbm/experiments.py -------------------------------------------------------------------------------- /cfrbm/item_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/cfrbm/item_based.py -------------------------------------------------------------------------------- /cfrbm/rbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/cfrbm/rbm.py -------------------------------------------------------------------------------- /cfrbm/user_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/cfrbm/user_based.py -------------------------------------------------------------------------------- /cfrbm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/cfrbm/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /ubased.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipecruz/CFRBM/HEAD/ubased.json --------------------------------------------------------------------------------