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

https://github.com/nathom/numpy-fcn

FCN using only numpy
https://github.com/nathom/numpy-fcn

Last synced: about 1 month ago
JSON representation

FCN using only numpy

Awesome Lists containing this project

README

        

[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-24ddc0f5d75046c5622901739e7c5dd533143b0c8e959d652212380cedb1ea36.svg)](https://classroom.github.com/a/tCO2PRy9)
# PA1-Starter
1. main.py is the driver function that has to be run in order to run different set of experiments. You can run it by doing: `python main.py --experiment `.
2. the first time you run main.py, it will automatically download the data to the 'data' directory
3. config files need to be in the 'config' directory
5. You are free to create new functions, change existing function signatures, add/remove member variables/functions in the provided classes but you need to maintain the overall given structure of the code. Specifically, you have to mandatorily use the classes provided in neuralnet.py to create your model (although, like already mentioned, you can add or remove variables/functions in these classes or change the function signatures)
6. We have marked sections to be implemented by you as TODO for your convenience