├── README.md ├── Sample_Outputs.txt ├── __pycache__ ├── beam_search_beta.cpython-37.pyc └── protobuff.cpython-37.pyc ├── beam_search_beta.py ├── model.py ├── model ├── checkpoint ├── frozen_model.pb ├── keras_model.h5 ├── tf_model.data-00000-of-00001 ├── tf_model.index └── tf_model.meta ├── model_protobuff.py ├── model_protobuff2.py ├── multiple senetnces output samples.txt ├── preprocessing.py ├── protobuff.py ├── sent_pred.py ├── tokenizer_Model4 ├── word_pred.py └── word_pred_Model4.h5 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/README.md -------------------------------------------------------------------------------- /Sample_Outputs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/Sample_Outputs.txt -------------------------------------------------------------------------------- /__pycache__/beam_search_beta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/__pycache__/beam_search_beta.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/protobuff.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/__pycache__/protobuff.cpython-37.pyc -------------------------------------------------------------------------------- /beam_search_beta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/beam_search_beta.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model.py -------------------------------------------------------------------------------- /model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model/checkpoint -------------------------------------------------------------------------------- /model/frozen_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model/frozen_model.pb -------------------------------------------------------------------------------- /model/keras_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model/keras_model.h5 -------------------------------------------------------------------------------- /model/tf_model.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model/tf_model.data-00000-of-00001 -------------------------------------------------------------------------------- /model/tf_model.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model/tf_model.index -------------------------------------------------------------------------------- /model/tf_model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model/tf_model.meta -------------------------------------------------------------------------------- /model_protobuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model_protobuff.py -------------------------------------------------------------------------------- /model_protobuff2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/model_protobuff2.py -------------------------------------------------------------------------------- /multiple senetnces output samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/multiple senetnces output samples.txt -------------------------------------------------------------------------------- /preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/preprocessing.py -------------------------------------------------------------------------------- /protobuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/protobuff.py -------------------------------------------------------------------------------- /sent_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/sent_pred.py -------------------------------------------------------------------------------- /tokenizer_Model4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/tokenizer_Model4 -------------------------------------------------------------------------------- /word_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/word_pred.py -------------------------------------------------------------------------------- /word_pred_Model4.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irdanish11/Sentence-Prediction-using-LSTMs_aka-Language-Modeling/HEAD/word_pred_Model4.h5 --------------------------------------------------------------------------------