├── .DS_Store ├── .gitignore ├── .ipynb_checkpoints └── fastsent_notebook-checkpoint.ipynb ├── .train_fastsent.py.swp ├── README.md ├── data ├── dataset.txt ├── dataset_tok.txt └── pretrained.txt ├── debug.ipynb ├── fastsent.py ├── fastsent_notebook.ipynb ├── testgpu.py ├── train_fastsent.py └── utils.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | chineseModel 2 | *.ipynb_checkpoints 3 | vocab 4 | *pyc 5 | -------------------------------------------------------------------------------- /.ipynb_checkpoints/fastsent_notebook-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/.ipynb_checkpoints/fastsent_notebook-checkpoint.ipynb -------------------------------------------------------------------------------- /.train_fastsent.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/.train_fastsent.py.swp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/README.md -------------------------------------------------------------------------------- /data/dataset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/data/dataset.txt -------------------------------------------------------------------------------- /data/dataset_tok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/data/dataset_tok.txt -------------------------------------------------------------------------------- /data/pretrained.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/data/pretrained.txt -------------------------------------------------------------------------------- /debug.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/debug.ipynb -------------------------------------------------------------------------------- /fastsent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/fastsent.py -------------------------------------------------------------------------------- /fastsent_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/fastsent_notebook.ipynb -------------------------------------------------------------------------------- /testgpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/testgpu.py -------------------------------------------------------------------------------- /train_fastsent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/train_fastsent.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hediby/fastsent_theano/HEAD/utils.py --------------------------------------------------------------------------------