From 3b5a487de871166efef86bab60586cbd7d0ff82e Mon Sep 17 00:00:00 2001 From: Quillot Mathias Date: Tue, 11 May 2021 13:56:26 +0200 Subject: [PATCH] Just tried to change float to np.float64 to have larger float --- volia/core/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volia/core/data.py b/volia/core/data.py index d22e8bc..30cabf8 100644 --- a/volia/core/data.py +++ b/volia/core/data.py @@ -64,7 +64,7 @@ def read_features(file_path: str) -> KeyToFeatures: Returns a dictionary with id as key and a list of values as associated values ''' - return read_id_values(file_path, float) + return read_id_values(file_path, np.float64) def read_labels(file_path: str) -> KeyToLabels: -- 1.8.2.3