├── .gitignore ├── README.md ├── data.txt ├── predict.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | model/ 3 | vocab/ 4 | *.pyc 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyedsaeidmasoumzadeh/Predict-next-word/HEAD/README.md -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyedsaeidmasoumzadeh/Predict-next-word/HEAD/data.txt -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyedsaeidmasoumzadeh/Predict-next-word/HEAD/predict.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyedsaeidmasoumzadeh/Predict-next-word/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seyedsaeidmasoumzadeh/Predict-next-word/HEAD/utils.py --------------------------------------------------------------------------------