Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rubaramanan/lexical-simplification


https://github.com/rubaramanan/lexical-simplification

deeplearning summarization t5-model transfer-learning

Last synced: about 10 hours ago
JSON representation

Awesome Lists containing this project

README

        

# Lexical-Simplification

## Download the wikihow dataset

```bash
wget https://www.inf.uni-hamburg.de/en/inst/ab/lt/resources/data/complex-word-identification-dataset/cwishareddataset.zip
```

## Unzip data as dataset folder
```bash
unzip cwishareddataset.zip -d datset
```

## Download the glove model
```bash
wget http://nlp.stanford.edu/data/glove.6B.zip
```

## Unzip model as embeddings folder
```bash
unzip glove.6B.zip -d embeddings
```

## install require python libraries
```bash
pip3 install nltk pandas matplotlib keras gensim sklearn seaborn
```