├── .DS_Store ├── README.md ├── __pycache__ └── main.cpython-37.pyc ├── app.py ├── main.py ├── requirements.txt ├── static ├── .DS_Store ├── css │ ├── .DS_Store │ ├── app.css │ ├── bootstrap-suggest.css │ └── bootstrap.min.css └── js │ ├── .DS_Store │ ├── app.js │ ├── bootstrap-suggest.js │ ├── bootstrap.min.js │ └── jquery-3.4.1.min.js ├── templates ├── .DS_Store └── index.html └── word_prediction.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/app.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch 2 | transformers 3 | Flask 4 | numpy -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /static/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/css/.DS_Store -------------------------------------------------------------------------------- /static/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/css/app.css -------------------------------------------------------------------------------- /static/css/bootstrap-suggest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/css/bootstrap-suggest.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/js/.DS_Store -------------------------------------------------------------------------------- /static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/js/app.js -------------------------------------------------------------------------------- /static/js/bootstrap-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/js/bootstrap-suggest.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/static/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/templates/.DS_Store -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/templates/index.html -------------------------------------------------------------------------------- /word_prediction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renatoviolin/next_word_prediction/HEAD/word_prediction.gif --------------------------------------------------------------------------------