Browse Source
Merge pull request #2 from laserscout/float64_error
avoid sklern.scale() error for converting float32 to float64
master
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
classifier/preprocessing/data_preprocessing.py
|
|
@ -68,7 +68,7 @@ def standardization(dataset): |
|
|
|
|
|
|
|
print(bcolors.YELLOW + 'Running standardization' + bcolors.ENDC) |
|
|
|
# Standardization |
|
|
|
scaledDataset = preprocessing.scale(dataset) |
|
|
|
scaledDataset = preprocessing.scale(np.float64(dataset)) |
|
|
|
|
|
|
|
return scaledDataset |
|
|
|
|
|
|
|