houlei0324 / EasyDML

An Easy programming tool for Distributed Machine Learning
2 stars 1 forks source link

Use panda for local data loading #16

Closed houlei0324 closed 6 years ago

houlei0324 commented 6 years ago

pandas will solve the problem about loading of mixed type data, for example, if there are both string and float in the data, such like a, 2, b, 3, c, 5 in one data file, then panda will return ['a', 2, 'b', 3, 'c', 5].

houlei0324 commented 6 years ago

This issue has been solved by pr #17