├── .idea ├── Person-recommendation.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── CF ├── __init__.py ├── data │ ├── movies.txt │ └── ratings.txt ├── doc │ ├── itemcf.md │ ├── usercf.md │ └── usercf.png ├── production │ ├── __init__.py │ ├── __pycache__ │ │ └── reader.cpython-37.pyc │ ├── itemcf.py │ ├── reader.py │ ├── reader.pyc │ └── usercf.py └── util │ ├── __init__.py │ └── reader.py ├── LFM ├── data │ ├── movies.txt │ └── ratings.txt ├── doc │ └── LFM.md ├── readme.md └── util │ ├── __init__.py │ └── read.py └── README.md /.idea/Person-recommendation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/.idea/Person-recommendation.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /CF/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CF/data/movies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/data/movies.txt -------------------------------------------------------------------------------- /CF/data/ratings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/data/ratings.txt -------------------------------------------------------------------------------- /CF/doc/itemcf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/doc/itemcf.md -------------------------------------------------------------------------------- /CF/doc/usercf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/doc/usercf.md -------------------------------------------------------------------------------- /CF/doc/usercf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/doc/usercf.png -------------------------------------------------------------------------------- /CF/production/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CF/production/__pycache__/reader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/production/__pycache__/reader.cpython-37.pyc -------------------------------------------------------------------------------- /CF/production/itemcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/production/itemcf.py -------------------------------------------------------------------------------- /CF/production/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/production/reader.py -------------------------------------------------------------------------------- /CF/production/reader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/production/reader.pyc -------------------------------------------------------------------------------- /CF/production/usercf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/production/usercf.py -------------------------------------------------------------------------------- /CF/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/util/__init__.py -------------------------------------------------------------------------------- /CF/util/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/CF/util/reader.py -------------------------------------------------------------------------------- /LFM/data/movies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/LFM/data/movies.txt -------------------------------------------------------------------------------- /LFM/data/ratings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/LFM/data/ratings.txt -------------------------------------------------------------------------------- /LFM/doc/LFM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/LFM/doc/LFM.md -------------------------------------------------------------------------------- /LFM/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/LFM/readme.md -------------------------------------------------------------------------------- /LFM/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LFM/util/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/LFM/util/read.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zu3zz/Person-Recommendation-Algorithms/HEAD/README.md --------------------------------------------------------------------------------