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

https://github.com/vzhou842/rnn-from-scratch

A Recurrent Neural Network implemented from scratch (using only numpy) in Python.
https://github.com/vzhou842/rnn-from-scratch

guide machine-learning natural-language-processing neural-network python recurrent-neural-networks

Last synced: about 1 year ago
JSON representation

A Recurrent Neural Network implemented from scratch (using only numpy) in Python.

Awesome Lists containing this project

README

          

# A Recurrent Neural Network (RNN) From Scratch

This was written for my [Introduction to Recurrent Neural Networks](https://victorzhou.com/blog/intro-to-rnns/).

## Usage

Install dependencies:

```bash
$ pip install -r requirements.txt
```

Run the RNN:

```bash
$ python main.py
```

## More

You may also be interested in:

- [a Neural Network implemented from scratch in Python](https://github.com/vzhou842/neural-network-from-scratch), which was written for my [introduction to Neural Networks](https://victorzhou.com/blog/intro-to-neural-networks/).