-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrailcodes.py
39 lines (32 loc) · 950 Bytes
/
trailcodes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
"""
Created on Fri Dec 14 14:20:20 2018
@author: nithish k
"""
XTrian = np.array([[1,2,3],[2,3,4]])
yTrain = np.array([1,2,3])
myNet = neuralNet(3,[3,3],0.05,10)
myNet.compileNetwork(XTrian)
myNet.forwardPass(XTrian[0,:])
myNet.backpropogate(yTrain)
myNet.updateWeights()
myNet._listOfLayers[1].getWeights()
##trails
# myNet = neuralNet(3,[3,1],0.05,10)
# myNet.compileNetwork(XTrian)
#
# myNet.forwardPass(XTrian[0,:])
# myNet.backpropogate(yTrain[0])
# myNet._listOfLayers[1].getWeights()
# myNet._listOfLayers[1].getCachedOutputs()
# myNet._listOfLayers[1].getDeltas()
# myNet.updateWeights()
# myNet._listOfLayers[1].getWeights()
a = np.array([[0, 1],
[2, 3],
[4, 5],
[6, 7],
[9, 8]])
row_maxes = a.max(axis=1).reshape(-1, 1)
np.where(a == row_maxes, 1, 0)
np.where(a == row_maxes).astype(int)