├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ ├── aylien.cpython-37.pyc ├── azure_processing.cpython-37.pyc ├── summarize.cpython-37.pyc ├── wikipedia_processing.cpython-37.pyc └── wolfpack.cpython-37.pyc ├── api.py ├── aylien.py ├── azure_processing.py ├── css ├── Layout.css └── bootstrap.min.css ├── docs ├── CustomVision.md ├── Lecture.xd ├── homepage.xd └── questions.md ├── html ├── imgs │ └── brain.png ├── index.html └── lecture.html ├── requirements.txt ├── scripts ├── data │ ├── mock_bio_data.json │ ├── mock_cities.json │ ├── mock_person_data.json │ ├── mock_planet_data.json │ ├── mock_summary_zebra.json │ └── scripts - Shortcut.lnk ├── extensions │ ├── bootstrap.min.js │ ├── jquery-3.3.1.slim.min.js │ ├── jquery.min.js │ └── popper.min.js └── main │ ├── global.js │ ├── index.js │ └── lecture.js ├── summarize.py ├── templates └── index.html ├── wikipedia_processing.py └── wolfpack.py /.gitignore: -------------------------------------------------------------------------------- 1 | configs.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/aylien.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/__pycache__/aylien.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/azure_processing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/__pycache__/azure_processing.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/summarize.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/__pycache__/summarize.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/wikipedia_processing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/__pycache__/wikipedia_processing.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/wolfpack.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/__pycache__/wolfpack.cpython-37.pyc -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/api.py -------------------------------------------------------------------------------- /aylien.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/aylien.py -------------------------------------------------------------------------------- /azure_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/azure_processing.py -------------------------------------------------------------------------------- /css/Layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/css/Layout.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/CustomVision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/docs/CustomVision.md -------------------------------------------------------------------------------- /docs/Lecture.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/docs/Lecture.xd -------------------------------------------------------------------------------- /docs/homepage.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/docs/homepage.xd -------------------------------------------------------------------------------- /docs/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/docs/questions.md -------------------------------------------------------------------------------- /html/imgs/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/html/imgs/brain.png -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/html/index.html -------------------------------------------------------------------------------- /html/lecture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/html/lecture.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/data/mock_bio_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/data/mock_bio_data.json -------------------------------------------------------------------------------- /scripts/data/mock_cities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/data/mock_cities.json -------------------------------------------------------------------------------- /scripts/data/mock_person_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/data/mock_person_data.json -------------------------------------------------------------------------------- /scripts/data/mock_planet_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/data/mock_planet_data.json -------------------------------------------------------------------------------- /scripts/data/mock_summary_zebra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/data/mock_summary_zebra.json -------------------------------------------------------------------------------- /scripts/data/scripts - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/data/scripts - Shortcut.lnk -------------------------------------------------------------------------------- /scripts/extensions/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/extensions/bootstrap.min.js -------------------------------------------------------------------------------- /scripts/extensions/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/extensions/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /scripts/extensions/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/extensions/jquery.min.js -------------------------------------------------------------------------------- /scripts/extensions/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/extensions/popper.min.js -------------------------------------------------------------------------------- /scripts/main/global.js: -------------------------------------------------------------------------------- 1 | // Scripts across all pages 2 | -------------------------------------------------------------------------------- /scripts/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/main/index.js -------------------------------------------------------------------------------- /scripts/main/lecture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/scripts/main/lecture.js -------------------------------------------------------------------------------- /summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/summarize.py -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/templates/index.html -------------------------------------------------------------------------------- /wikipedia_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/wikipedia_processing.py -------------------------------------------------------------------------------- /wolfpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hevia/KnowledgeBytes/HEAD/wolfpack.py --------------------------------------------------------------------------------