├── .gitignore ├── .idea ├── modules.xml └── vcs.xml ├── PhasedLSTMCell.py ├── PhasedLSTMCell_v1.py ├── README.md ├── fig └── PLSTMvsGRU.png ├── phasedLSTM_run ├── GRU_async_res_0.1_hid_100_exp_3.0 │ └── events.out.tfevents.1481654985.cocoha2-enea ├── GRU_sync_res_0.1_hid_100_exp_3.0 │ └── events.out.tfevents.1481655397.cocoha2-enea └── PLSTM_async_res_0.1_hid_100_exp_3.0 │ └── events.out.tfevents.1481654997.cocoha2-enea ├── simplePhasedLSTM.py └── simplePhasedLSTM_v1.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /PhasedLSTMCell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/PhasedLSTMCell.py -------------------------------------------------------------------------------- /PhasedLSTMCell_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/PhasedLSTMCell_v1.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/README.md -------------------------------------------------------------------------------- /fig/PLSTMvsGRU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/fig/PLSTMvsGRU.png -------------------------------------------------------------------------------- /phasedLSTM_run/GRU_async_res_0.1_hid_100_exp_3.0/events.out.tfevents.1481654985.cocoha2-enea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/phasedLSTM_run/GRU_async_res_0.1_hid_100_exp_3.0/events.out.tfevents.1481654985.cocoha2-enea -------------------------------------------------------------------------------- /phasedLSTM_run/GRU_sync_res_0.1_hid_100_exp_3.0/events.out.tfevents.1481655397.cocoha2-enea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/phasedLSTM_run/GRU_sync_res_0.1_hid_100_exp_3.0/events.out.tfevents.1481655397.cocoha2-enea -------------------------------------------------------------------------------- /phasedLSTM_run/PLSTM_async_res_0.1_hid_100_exp_3.0/events.out.tfevents.1481654997.cocoha2-enea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/phasedLSTM_run/PLSTM_async_res_0.1_hid_100_exp_3.0/events.out.tfevents.1481654997.cocoha2-enea -------------------------------------------------------------------------------- /simplePhasedLSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/simplePhasedLSTM.py -------------------------------------------------------------------------------- /simplePhasedLSTM_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Enny1991/PLSTM/HEAD/simplePhasedLSTM_v1.py --------------------------------------------------------------------------------