Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 740 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 740 Bytes

Artificial Neural Network

An artificial neural network designed for ECSE-526 Artificial Intelligence.

GUI

Setup

To install all the dependencies, run pip install -r requirements.txt. Tkinter is also required for the GUI tool. If it is not already included in your python distribution, it can be installed via apt-get install python-tk.

Usage

GUI

To launch the GUI tool, run the main method found in main.py.

Fully Connected Network

To train and test our fully connected network, run the main method found in mnist_fully_connected.py.

Convolutional Network

To train and test the TensorFlow convolutional network, run the main method found in mnist_convolutional.py.