Skip to content

Commit

Permalink
commented out one print statement in stageWise
Browse files Browse the repository at this point in the history
  • Loading branch information
pbharrin committed Dec 20, 2011
1 parent 1e99152 commit 522d3a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ch08/regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def stageWise(xArr,yArr,eps=0.01,numIt=100):
returnMat = zeros((numIt,n)) #testing code remove
ws = zeros((n,1)); wsTest = ws.copy(); wsMax = ws.copy()
for i in range(numIt):#could change this to while loop
print ws.T
#print ws.T
lowestError = inf;
for j in range(n):
for sign in [-1,1]:
Expand Down

0 comments on commit 522d3a6

Please sign in to comment.