Skip to content

aguunu/neural-network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neural Network

Introduction

This repository is a basic implementation from scratch of neural network (NNs) systems using only numpy library.

Usage

from neural_network import Network
from neural_network.activations import Tanh
from neural_network.losses import MSE

def load_data():
    ...
    return x_train, y_train

x_train, y_train = load_data()

network = Network(loss=MSE())
network.fit(x_train, y_train, epochs=1000, learning_rate=0.1)

About

A simple neural network implementation.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages