├── __init__.py ├── attention.py ├── data ├── .floyddata ├── __init__.py ├── en.txt └── fa.txt ├── data_helper.py ├── logger.py ├── model.py ├── model_helper.py ├── requirements.txt ├── requirements_gpu.txt └── train.py /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/attention.py -------------------------------------------------------------------------------- /data/.floyddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/data/.floyddata -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/data/en.txt -------------------------------------------------------------------------------- /data/fa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/data/fa.txt -------------------------------------------------------------------------------- /data_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/data_helper.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/logger.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/model.py -------------------------------------------------------------------------------- /model_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/model_helper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_gpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/requirements_gpu.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Razzaghnoori/mt_biGRU_attention_keras/HEAD/train.py --------------------------------------------------------------------------------