зеркало из https://github.com/microsoft/spark.git
Fix string parsing and style in LR
This commit is contained in:
Родитель
01f94931d5
Коммит
5ac548397d
|
@ -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__":
|
||||
|
|
Загрузка…
Ссылка в новой задаче