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

https://github.com/lovesaroha/imdb-reviews-sentiment-analysis-training

Training a keras model to recognize sentiment in order to classify an incoming movie review text as positive or the other.
https://github.com/lovesaroha/imdb-reviews-sentiment-analysis-training

imdb-dataset keras machine-learning python sentiment-analysis tensorflow

Last synced: 2 months ago
JSON representation

Training a keras model to recognize sentiment in order to classify an incoming movie review text as positive or the other.

Awesome Lists containing this project

README

          

# IMDB-Reviews-Sentiment-Analysis-Training
Training a keras model to recognize sentiment in order to classify an incoming movie review text as positive or the other.

## Requirements
- Python 3 or higher.

## Packages

### Numpy
```bash
py -m pip install numpy
```

### Tensorflow
```bash
py -m pip install tensorflow
```

### Tensorflow Datasets
```bash
py -m pip install tensorflow_datasets
```

## Start Training With Text Reviews
```bash
py convolutional_neural_network_text.py
```
```bash
py bi_lstm_text.py
```
```bash
py gru_text.py
```
## Start Training With SubWords
```bash
py convolutional_neural_network_subwords.py
```
```bash
py bi_lstm_subwords.py
```
```bash
py gru_subwords.py
```