Skip to content
This repository has been archived by the owner on Sep 24, 2021. It is now read-only.

Latest commit

 

History

History
52 lines (32 loc) · 1.21 KB

README.md

File metadata and controls

52 lines (32 loc) · 1.21 KB

Self-Attentive-Tensorflow

model image of Self Attentive

Tensorflow implementation of A Structured Self-Attentive Sentence Embedding

You can read more about concept from this paper

Key Concept

Frobenius norm with attention

Usage

Download ag news dataset as below

$ tree ./data
./data
└── ag_news_csv
    ├── classes.txt
    ├── readme.txt
    ├── test.csv
    ├── train.csv
    └── train_mini.csv

and then

$ python train.py

Result

Accuracy 0.895

visualize without penalization

visualize with penalization

To-do list

  • support multiple dataset

Notes

This implementation does not use pretrained GloVe or Word2vec.