Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 554 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 554 Bytes

NeuralNetwork-python

Neural Network from scratch in Python

Prerequisites

  • Python
  • Numpy
  • Scipy
  • matplotlib.pyplot
  • PIL

Introduction

In main.py a simple neural network with one convolutional layer and two fully connected layers. All code can run without problem, but due to numerical unstability loss value might be inf. Please tell me if anyone has a solution.

Usage

To add layers to neural network and train it: python3 main.py

More details: 深度学习(五)上 Python徒手实现CNN