Fix string parsing and style in LR

This commit is contained in:
Matei Zaharia 2013-07-31 23:12:30 -07:00
Родитель 01f94931d5
Коммит 5ac548397d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,7 @@ def readPointBatch(iterator):
strs = list(iterator)
matrix = np.zeros((len(strs), D + 1))
for i in xrange(len(strs)):
matrix[i] = np.fromstring(strs[i], dtype=np.float32, sep = ' ')
matrix[i] = np.fromstring(strs[i].replace(',', ' '), dtype=np.float32, sep=' ')
return [matrix]
if __name__ == "__main__":