├── Document Search Engine.ipynb ├── Flask API ├── __pycache__ │ └── app.cpython-37.pyc ├── app.py ├── df_news_index.csv ├── requirements.txt ├── tfid.pkl └── vocabulary_news20group.txt ├── README.md └── data ├── WordLemmatize20NewsGroup.json ├── df_news_index.csv ├── newsgroups.json ├── tfid.pkl └── vocabulary_news20group.txt /Document Search Engine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/Document Search Engine.ipynb -------------------------------------------------------------------------------- /Flask API/__pycache__/app.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/Flask API/__pycache__/app.cpython-37.pyc -------------------------------------------------------------------------------- /Flask API/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/Flask API/app.py -------------------------------------------------------------------------------- /Flask API/df_news_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/Flask API/df_news_index.csv -------------------------------------------------------------------------------- /Flask API/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/Flask API/requirements.txt -------------------------------------------------------------------------------- /Flask API/tfid.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/Flask API/tfid.pkl -------------------------------------------------------------------------------- /Flask API/vocabulary_news20group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/Flask API/vocabulary_news20group.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/README.md -------------------------------------------------------------------------------- /data/WordLemmatize20NewsGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/data/WordLemmatize20NewsGroup.json -------------------------------------------------------------------------------- /data/df_news_index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/data/df_news_index.csv -------------------------------------------------------------------------------- /data/newsgroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/data/newsgroups.json -------------------------------------------------------------------------------- /data/tfid.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/data/tfid.pkl -------------------------------------------------------------------------------- /data/vocabulary_news20group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zayedrais/DocumentSearchEngine/HEAD/data/vocabulary_news20group.txt --------------------------------------------------------------------------------