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

https://github.com/frederickroman/quadratic-equation-solver-neuralnet

This notebook shows how to train a neural network to solve quadratic equations where the coefficients are on [0, 1)
https://github.com/frederickroman/quadratic-equation-solver-neuralnet

equation-solver neural-network tensorflow tensorflow2

Last synced: 2 months ago
JSON representation

This notebook shows how to train a neural network to solve quadratic equations where the coefficients are on [0, 1)

Awesome Lists containing this project

README

          

# quadratic-equation-solver-neuralnet
This notebook shows how to train a neural network to solve equations of the form ax2 + bx + c = 0 where 0 &leq; a, b, c < 1

## Getting Started

The train.ipynb has the all you need to generate the synthetic training data, train and run the model. All you need to do is to meet the prerequisites.

### Prerequisites

Python>=3.8.6

```
numpy
tensorflow
```

### Training
Run the jupyter notebook cells in [train.ipynb](https://github.com/FrederickRoman/quadratic-equation-solver-neuralnet/blob/main/train.ipynb).