Skip to content

Commit

Permalink
Top level scripting env
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi98khandelwal committed Mar 25, 2017
1 parent 8187390 commit e12d643
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions HintApp/predictor/NEO.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,10 @@ def Get_UserData():
ind = (len(sheet.get_all_values()))
return ((sheet.row_values(ind))[:2])

n = Neon_Engine()
l = Get_UserData()
print l[0]
print l[1]
n.getdata_and_train(l[0])
print(n.predict_delay(l[1]))
if __name__=="__main__":
n = Neon_Engine()
l = Get_UserData()
print l[0]
print l[1]
n.getdata_and_train(l[0])
print(n.predict_delay(l[1]))
Binary file modified HintApp/predictor/NEO.pyc
Binary file not shown.

0 comments on commit e12d643

Please sign in to comment.