-
Notifications
You must be signed in to change notification settings - Fork 150
/
csv2vw.py
64 lines (48 loc) · 1.15 KB
/
csv2vw.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
Convert CSV file to vw format. Headers can be skipped with argv[4] == true.
Use -1 for label index if there no labels in the input file
phraug2 version has an option to ignore columns:
https://github.com/zygmuntz/phraug2/blob/master/csv2vw.py
"""
import sys
import csv
def construct_line( label, line ):
new_line = []
if float( label ) == 0.0:
label = "0"
new_line.append( "%s |n " % ( label ))
for i, item in enumerate( line ):
if float( item ) == 0.0:
continue # sparse!!!
new_item = "%s:%s" % ( i + 1, item )
new_line.append( new_item )
new_line = " ".join( new_line )
new_line += "\n"
return new_line
# ---
input_file = sys.argv[1]
output_file = sys.argv[2]
try:
label_index = int( sys.argv[3] )
except IndexError:
label_index = 0
try:
skip_headers = sys.argv[4]
except IndexError:
skip_headers = 0
i = open( input_file )
o = open( output_file, 'w' )
reader = csv.reader( i )
if skip_headers:
headers = reader.next()
n = 0
for line in reader:
if label_index == -1:
label = 1
else:
label = line.pop( label_index )
new_line = construct_line( label, line )
o.write( new_line )
n += 1
if n % 10000 == 0:
print n