├── .ipynb_checkpoints ├── Debug-model-simple-checkpoint.ipynb ├── README-checkpoint.md ├── Reference-checkpoint.ipynb ├── detaching_by_zeroing_out-checkpoint.ipynb ├── example-checkpoint.ipynb ├── example-debug-checkpoint.ipynb ├── run_train-checkpoint.py └── run_train_old-checkpoint.py ├── README.md ├── data └── .gitignore ├── example.ipynb ├── logs └── .gitignore ├── models └── .gitignore ├── modules ├── .ipynb_checkpoints │ └── model-checkpoint.py ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── data.cpython-36.pyc │ ├── data.cpython-37.pyc │ ├── evaluate.cpython-36.pyc │ ├── evaluate.cpython-37.pyc │ ├── function.cpython-36.pyc │ ├── generator.cpython-36.pyc │ ├── layer.cpython-36.pyc │ ├── layer.cpython-37.pyc │ ├── loss.cpython-36.pyc │ ├── loss.cpython-37.pyc │ ├── model.cpython-36.pyc │ ├── model.cpython-37.pyc │ ├── model_old.cpython-36.pyc │ ├── model_simple.cpython-36.pyc │ ├── model_simple2.cpython-36.pyc │ ├── optimizer.cpython-36.pyc │ ├── optimizer.cpython-37.pyc │ └── train.cpython-36.pyc ├── data.py ├── evaluate.py ├── layer.py ├── loss.py ├── misc │ ├── .ipynb_checkpoints │ │ └── README-checkpoint.md │ ├── Debug-model-simple.ipynb │ ├── README.md │ ├── __init__.py │ ├── detaching_by_zeroing_out.ipynb │ ├── example-debug.ipynb │ ├── generator.py │ ├── misc.py │ ├── model_old.py │ ├── model_simple_old.py │ ├── run_train_old.py │ └── save.py ├── model.py └── optimizer.py ├── run_train.py └── run_train.sh /.ipynb_checkpoints/Debug-model-simple-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/Debug-model-simple-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/README-checkpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/README-checkpoint.md -------------------------------------------------------------------------------- /.ipynb_checkpoints/Reference-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/Reference-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/detaching_by_zeroing_out-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/detaching_by_zeroing_out-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/example-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/example-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/example-debug-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/example-debug-checkpoint.ipynb -------------------------------------------------------------------------------- /.ipynb_checkpoints/run_train-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/run_train-checkpoint.py -------------------------------------------------------------------------------- /.ipynb_checkpoints/run_train_old-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/.ipynb_checkpoints/run_train_old-checkpoint.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/example.ipynb -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /modules/.ipynb_checkpoints/model-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/.ipynb_checkpoints/model-checkpoint.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/data.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/evaluate.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/evaluate.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/evaluate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/evaluate.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/function.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/function.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/generator.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/generator.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/layer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/layer.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/layer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/layer.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/loss.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/loss.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/loss.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/model.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/model_old.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/model_old.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/model_simple.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/model_simple.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/model_simple2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/model_simple2.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/optimizer.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/optimizer.cpython-36.pyc -------------------------------------------------------------------------------- /modules/__pycache__/optimizer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/optimizer.cpython-37.pyc -------------------------------------------------------------------------------- /modules/__pycache__/train.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/__pycache__/train.cpython-36.pyc -------------------------------------------------------------------------------- /modules/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/data.py -------------------------------------------------------------------------------- /modules/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/evaluate.py -------------------------------------------------------------------------------- /modules/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/layer.py -------------------------------------------------------------------------------- /modules/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/loss.py -------------------------------------------------------------------------------- /modules/misc/.ipynb_checkpoints/README-checkpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/.ipynb_checkpoints/README-checkpoint.md -------------------------------------------------------------------------------- /modules/misc/Debug-model-simple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/Debug-model-simple.ipynb -------------------------------------------------------------------------------- /modules/misc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/README.md -------------------------------------------------------------------------------- /modules/misc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/misc/detaching_by_zeroing_out.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/detaching_by_zeroing_out.ipynb -------------------------------------------------------------------------------- /modules/misc/example-debug.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/example-debug.ipynb -------------------------------------------------------------------------------- /modules/misc/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/generator.py -------------------------------------------------------------------------------- /modules/misc/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/misc.py -------------------------------------------------------------------------------- /modules/misc/model_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/model_old.py -------------------------------------------------------------------------------- /modules/misc/model_simple_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/model_simple_old.py -------------------------------------------------------------------------------- /modules/misc/run_train_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/run_train_old.py -------------------------------------------------------------------------------- /modules/misc/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/misc/save.py -------------------------------------------------------------------------------- /modules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/model.py -------------------------------------------------------------------------------- /modules/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/modules/optimizer.py -------------------------------------------------------------------------------- /run_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/run_train.py -------------------------------------------------------------------------------- /run_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yhs968/pyGRU4REC/HEAD/run_train.sh --------------------------------------------------------------------------------