Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tanyachutani/siamese-network-on-text-data

Siamese Network On Quora Question Pairs Similarity Data Keras
https://github.com/tanyachutani/siamese-network-on-text-data

cnn-on-text deep-learning gru keras lstm one-shot-learning quora-question-pairs siamese-network siamese-neural-network text-similarity word2vec

Last synced: 21 days ago
JSON representation

Siamese Network On Quora Question Pairs Similarity Data Keras

Awesome Lists containing this project

README

        

# SiameseNetworkOnTextData
Siamese Network On Quora Question Pairs Similarity Data Keras

## Dataset
Quora Question Pair Similarity
[Download Dataset](https://www.kaggle.com/c/quora-question-pairs)

## Model
This is a natural language processing problem wherein we classify the question pairs as having similar intent or not.
- Developed a Siamese network, in this let the embeddings of two questions be passed through the same model.
- check the distance measure using cosine similarity.
- For embeddings, Word2Vec embeddings have been used.

## Result

#### GRU Model Prediction

![](https://github.com/TanyaChutani/Siamese-Network-On-Text-Data/blob/master/result/gru.PNG)

#### Conv1D (CNN) Model Prediction

![](https://github.com/TanyaChutani/Siamese-Network-On-Text-Data/blob/master/result/cnn.PNG)