├── .gitignore ├── 1_spacy_glove.py ├── 2_tf_idf_vec.py ├── 3_word2vec_train.py ├── README.md ├── data └── 3_word2vec.bin ├── glove_stanford.py ├── investigate.py ├── siamese.py ├── siamese.pyc ├── utils.py └── utils.pyc /.gitignore: -------------------------------------------------------------------------------- 1 | *.pkl 2 | *.mdl -------------------------------------------------------------------------------- /1_spacy_glove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/1_spacy_glove.py -------------------------------------------------------------------------------- /2_tf_idf_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/2_tf_idf_vec.py -------------------------------------------------------------------------------- /3_word2vec_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/3_word2vec_train.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/README.md -------------------------------------------------------------------------------- /data/3_word2vec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/data/3_word2vec.bin -------------------------------------------------------------------------------- /glove_stanford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/glove_stanford.py -------------------------------------------------------------------------------- /investigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/investigate.py -------------------------------------------------------------------------------- /siamese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/siamese.py -------------------------------------------------------------------------------- /siamese.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/siamese.pyc -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/utils.py -------------------------------------------------------------------------------- /utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erogol/QuoraDQBaseline/HEAD/utils.pyc --------------------------------------------------------------------------------