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

https://github.com/gsteixeira/neuralnetwork-fortran

A simple neural network in Fortran
https://github.com/gsteixeira/neuralnetwork-fortran

fortran machine-learning neural-network

Last synced: 8 days ago
JSON representation

A simple neural network in Fortran

Awesome Lists containing this project

README

        

# A Neural Network in Fortran

Simple feed forward neural network in Fortran

## usage:

```shell
make
make run
```

## Create a neural network:

Create a network telling the size (neurons) of earch layer.
```fortran
nn = new_nn(input_size, output_size, hidden_size)
# Start training
call train(nn, inputs, outputs, 10000)
```