Skip to content

Commit

Permalink
cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
hlin117 committed Dec 30, 2014
1 parent 4598939 commit 92ce236
Show file tree
Hide file tree
Showing 8 changed files with 48,720 additions and 98,853 deletions.
48,708 changes: 0 additions & 48,708 deletions demo/lemondetection/finished.csv

This file was deleted.

48,708 changes: 0 additions & 48,708 deletions demo/lemondetection/finished2.csv

This file was deleted.

1,437 changes: 0 additions & 1,437 deletions demo/lemondetection/weights.json

This file was deleted.

12 changes: 12 additions & 0 deletions demo/load_NN/combine.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/python
import csv

with open('results.txt', 'r') as nnFile:
with open('raw_testing.csv', 'r') as testingFile:
predictionsNN = csv.reader(nnFile)
testingData = csv.reader(testingFile)
for lineNN, lineTest in zip(predictionsNN, testingData):
if lineTest[0] == "RefId":
print lineTest[0]+","+lineNN[0]
else:
print lineTest[0]+","+lineNN[0]
File renamed without changes.
File renamed without changes.
48,708 changes: 48,708 additions & 0 deletions demo/load_NN/raw_testing.csv

Large diffs are not rendered by default.

File renamed without changes.

0 comments on commit 92ce236

Please sign in to comment.