Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/falcowinkler/nlp-getting-started

study group code for the kaggle challenge
https://github.com/falcowinkler/nlp-getting-started

Last synced: about 2 months ago
JSON representation

study group code for the kaggle challenge

Awesome Lists containing this project

README

        

Binary tweet classification

This was an experiment to use word vectors for a simple classification task.
Idea:

- Map every word to it's corresponding word vector (we use globe embeddings)
- Feed the embeddings into a bidirectional LSTM
- Compute output by concatenating the architecture with a dense layer

Validation score on kaggle is around .7 ~ .78

Credits for the hyperparameters go to https://www.kaggle.com/shahules/basic-eda-cleaning-and-glove

Credits for the code to load glove embeddings: https://github.com/ciwin/Intent_Classification

### Run

```bash
export KAGGLE_USERNAME=
export KAGGLE_KEY=
python main.py
```