Skip to content

mojivalipour/nnscratch

Repository files navigation

A Simple Numpy Neural Network Framework

TA: Mojtaba Valipour

CS 486-686 Course Assignment : University of Waterloo - Alice Gao - Spring 2020

Dataset: https://archive.ics.uci.edu/ml/datasets/Anuran+Calls+%28MFCCs%29

Need to fix the bug in relu prediction, a possible solution is:

elif self.config[self.configKeyList[-1]][-1] == 'relu': 
          yPred = np.round(yPred)
          yPred = np.clip(yPred, 0, self.numClass-1) # sanity check 

About

Neural Network Framework using Numpy

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published