Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 778 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 778 Bytes

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