├── .gitignore ├── README.md ├── code ├── .DS_Store ├── OnlineRS │ ├── .DS_Store │ ├── .idea │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── OnlineRS.iml │ └── com │ │ ├── .DS_Store │ │ ├── Recsys_engine │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── app.py │ │ ├── app.pyc │ │ ├── engine.py │ │ ├── engine.pyc │ │ ├── server.py │ │ ├── util.py │ │ └── util.pyc │ │ └── __init__.py ├── Python │ ├── load_data_db.ipynb │ ├── news │ │ ├── __init__.py │ │ ├── news │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── items.py │ │ │ ├── items.pyc │ │ │ ├── middlewares.py │ │ │ ├── pipelines.py │ │ │ ├── pipelines.pyc │ │ │ ├── run.py │ │ │ ├── settings.py │ │ │ ├── settings.pyc │ │ │ └── spiders │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── news_spider.py │ │ │ │ └── news_spider.pyc │ │ └── scrapy.cfg │ ├── process_data.py │ └── utils.py ├── Scala │ ├── LDA_Part.scala │ ├── LRReommend.scala │ ├── Solution.scala │ └── TFIDF_News.scala └── Web │ ├── .DS_Store │ └── NewsRecommend │ ├── .DS_Store │ ├── NewsRecommend │ ├── __init__.py │ ├── __init__.pyc │ ├── settings.py │ ├── settings.pyc │ ├── urls.py │ ├── urls.pyc │ ├── wsgi.py │ └── wsgi.pyc │ ├── __init__.py │ ├── app │ ├── .DS_Store │ ├── __init__.py │ ├── __init__.pyc │ ├── admin.py │ ├── admin.pyc │ ├── apps.py │ ├── forms.py │ ├── forms.pyc │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0001_initial.pyc │ │ ├── 0002_clickrecords.py │ │ ├── 0002_clickrecords.pyc │ │ ├── 0003_clickrecords_read_ts.py │ │ ├── 0003_clickrecords_read_ts.pyc │ │ ├── 0004_recommendset_read_ts.py │ │ ├── 0004_recommendset_read_ts.pyc │ │ ├── 0005_caixinwebnews.py │ │ ├── 0005_caixinwebnews.pyc │ │ ├── 0006_auto_20170524_0849.py │ │ ├── 0006_auto_20170524_0849.pyc │ │ ├── 0007_userrecords.py │ │ ├── 0007_userrecords.pyc │ │ ├── __init__.py │ │ └── __init__.pyc │ ├── models.py │ ├── models.pyc │ ├── templates │ │ ├── base.html │ │ ├── login.html │ │ ├── main.html │ │ ├── online_recommend.html │ │ ├── recommend.html │ │ ├── recommend_newsList.html │ │ └── user.html │ ├── tests.py │ ├── views.py │ └── views.pyc │ ├── db.sqlite3 │ ├── manage.py │ ├── media.png │ ├── media │ ├── 1.png │ ├── 100017383.png │ ├── 100049675.png │ ├── 100049903.png │ ├── 100058055.png │ ├── 100058134.png │ └── a1.jpg │ └── static │ └── bootstrap │ ├── css │ ├── bootstrap.css │ └── style.css │ ├── fonts │ ├── Antonio-Bold.ttf │ ├── Antonio-Light.ttf │ ├── Antonio-Regular.ttf │ ├── Georgia Italic.ttf │ ├── SIL Open Font License.txt │ └── Times-Italic.ttf │ ├── images │ ├── 1.png │ ├── a1.jpg │ ├── a2.jpg │ ├── abt_pic.jpg │ ├── avatar.jpg │ ├── ep1.jpg │ ├── ep2.jpg │ ├── ep3.jpg │ ├── ep4.jpg │ ├── features-bg.jpg │ ├── nav.png │ ├── p1.jpg │ ├── p2.jpg │ ├── p3.jpg │ ├── p4.jpg │ ├── p5.jpg │ ├── print.jpg │ └── printing.jpg │ └── js │ └── jquery.min.js └── data └── stopwords.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Content-Based News Recommendation System in Spark 2 | -------------------------------------------------------------------------------- /code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/.DS_Store -------------------------------------------------------------------------------- /code/OnlineRS/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/.DS_Store -------------------------------------------------------------------------------- /code/OnlineRS/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/.idea/misc.xml -------------------------------------------------------------------------------- /code/OnlineRS/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/.idea/modules.xml -------------------------------------------------------------------------------- /code/OnlineRS/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/.idea/workspace.xml -------------------------------------------------------------------------------- /code/OnlineRS/OnlineRS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/OnlineRS.iml -------------------------------------------------------------------------------- /code/OnlineRS/com/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/.DS_Store -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/.DS_Store -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/app.py -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/app.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/app.pyc -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/engine.py -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/engine.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/engine.pyc -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/server.py -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/util.py -------------------------------------------------------------------------------- /code/OnlineRS/com/Recsys_engine/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/OnlineRS/com/Recsys_engine/util.pyc -------------------------------------------------------------------------------- /code/OnlineRS/com/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Python/load_data_db.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/load_data_db.ipynb -------------------------------------------------------------------------------- /code/Python/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Python/news/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Python/news/news/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/__init__.pyc -------------------------------------------------------------------------------- /code/Python/news/news/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/items.py -------------------------------------------------------------------------------- /code/Python/news/news/items.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/items.pyc -------------------------------------------------------------------------------- /code/Python/news/news/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/middlewares.py -------------------------------------------------------------------------------- /code/Python/news/news/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/pipelines.py -------------------------------------------------------------------------------- /code/Python/news/news/pipelines.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/pipelines.pyc -------------------------------------------------------------------------------- /code/Python/news/news/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/run.py -------------------------------------------------------------------------------- /code/Python/news/news/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/settings.py -------------------------------------------------------------------------------- /code/Python/news/news/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/settings.pyc -------------------------------------------------------------------------------- /code/Python/news/news/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/spiders/__init__.py -------------------------------------------------------------------------------- /code/Python/news/news/spiders/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/spiders/__init__.pyc -------------------------------------------------------------------------------- /code/Python/news/news/spiders/news_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/spiders/news_spider.py -------------------------------------------------------------------------------- /code/Python/news/news/spiders/news_spider.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/news/spiders/news_spider.pyc -------------------------------------------------------------------------------- /code/Python/news/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/news/scrapy.cfg -------------------------------------------------------------------------------- /code/Python/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/process_data.py -------------------------------------------------------------------------------- /code/Python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Python/utils.py -------------------------------------------------------------------------------- /code/Scala/LDA_Part.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Scala/LDA_Part.scala -------------------------------------------------------------------------------- /code/Scala/LRReommend.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Scala/LRReommend.scala -------------------------------------------------------------------------------- /code/Scala/Solution.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Scala/Solution.scala -------------------------------------------------------------------------------- /code/Scala/TFIDF_News.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Scala/TFIDF_News.scala -------------------------------------------------------------------------------- /code/Web/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/.DS_Store -------------------------------------------------------------------------------- /code/Web/NewsRecommend/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/.DS_Store -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/NewsRecommend/__init__.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/NewsRecommend/settings.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/settings.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/NewsRecommend/settings.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/NewsRecommend/urls.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/urls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/NewsRecommend/urls.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/NewsRecommend/wsgi.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/NewsRecommend/wsgi.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/NewsRecommend/wsgi.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/.DS_Store -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/__init__.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/admin.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/admin.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/admin.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/apps.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/forms.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/forms.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/forms.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0001_initial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0001_initial.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0002_clickrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0002_clickrecords.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0002_clickrecords.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0002_clickrecords.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0003_clickrecords_read_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0003_clickrecords_read_ts.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0003_clickrecords_read_ts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0003_clickrecords_read_ts.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0004_recommendset_read_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0004_recommendset_read_ts.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0004_recommendset_read_ts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0004_recommendset_read_ts.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0005_caixinwebnews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0005_caixinwebnews.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0005_caixinwebnews.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0005_caixinwebnews.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0006_auto_20170524_0849.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0006_auto_20170524_0849.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0006_auto_20170524_0849.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0006_auto_20170524_0849.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0007_userrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0007_userrecords.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/0007_userrecords.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/0007_userrecords.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/migrations/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/migrations/__init__.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/models.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/models.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/models.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/templates/base.html -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/templates/login.html -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/templates/main.html -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/templates/online_recommend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/templates/online_recommend.html -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/templates/recommend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/templates/recommend.html -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/templates/recommend_newsList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/templates/recommend_newsList.html -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/templates/user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/templates/user.html -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/tests.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/views.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/app/views.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/app/views.pyc -------------------------------------------------------------------------------- /code/Web/NewsRecommend/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/db.sqlite3 -------------------------------------------------------------------------------- /code/Web/NewsRecommend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/manage.py -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media/1.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media/100017383.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media/100017383.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media/100049675.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media/100049675.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media/100049903.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media/100049903.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media/100058055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media/100058055.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media/100058134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media/100058134.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/media/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/media/a1.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/css/style.css -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/fonts/Antonio-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/fonts/Antonio-Bold.ttf -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/fonts/Antonio-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/fonts/Antonio-Light.ttf -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/fonts/Antonio-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/fonts/Antonio-Regular.ttf -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/fonts/Georgia Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/fonts/Georgia Italic.ttf -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/fonts/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/fonts/SIL Open Font License.txt -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/fonts/Times-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/fonts/Times-Italic.ttf -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/1.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/a1.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/a2.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/abt_pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/abt_pic.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/avatar.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/ep1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/ep1.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/ep2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/ep2.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/ep3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/ep3.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/ep4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/ep4.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/features-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/features-bg.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/nav.png -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/p1.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/p2.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/p3.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/p4.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/p5.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/print.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/images/printing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/images/printing.jpg -------------------------------------------------------------------------------- /code/Web/NewsRecommend/static/bootstrap/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/code/Web/NewsRecommend/static/bootstrap/js/jquery.min.js -------------------------------------------------------------------------------- /data/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Labyrinth108/Content-Based-News-Recommendation-System-in-Spark/HEAD/data/stopwords.txt --------------------------------------------------------------------------------