Skip to content
zayoorowah edited this page May 9, 2023 · 36 revisions

Peter's Algorithm(PA)

Microcosm AI

(back to top)

Table of Contents

(back to top)

What Is PA?

(back to top)

What Is PA For?


(back to top)

Usage

To use our code, you first have to install the ~~~ from the ~~

 e.g.

(back to top)

Structure

.
├── src                    
│   ├── MNIST                              # Here is the entire MNIST dataset          
│   │   ├── testing
│   │   │   ├── 0                          # Each subfolder represents a class
│   │   │   │   ├── 3.png
│   │   │   │   ├── 10.png
│   │   │   │   ├── 13.png
│   │   │   │   ...
│   │   │   ├── 1
│   │   │   ├── 2
│   │   │   ├── 3
│   │   │   ├── 4
│   │   │   ├── 5
│   │   │   ├── 6
│   │   │   ├── 7
│   │   │   ├── 8
│   │   │   ├── 9
│   │   ├── training
│   │   │   ├── 0
│   │   │   ...
│   │   ├── labels.csv
├── Notebooks
│   │── ANN_Comparison.ipynb          # Comparison ANNs being trained in Tensorflow
│   │── Visualization_Helper.ipynb    # Visualization of our results
│   │── Deprecated_Training.ipynb     # Old deprecated training notebook
├── Pretrained              # Pretrained weights and labels for testing
│   │── labels.csv
│   │── weights.csv
│── .gitignore
│── main.py                 # Main file for executing training/inference the SNN
│── Neuron.py
│── Paper.pdf               # The term paper we submitted
│── Parameters.py           # All parameters used for training/inference
│── README.md
│── requirements.txt
└── SNN.py                  # The file containing all functions for training/infering 

(back to top)

Limitation

(back to top)

Authors

Peter Keffer

(back to top)

License

(back to top)

Clone this wiki locally