Commit 3b5a487de871166efef86bab60586cbd7d0ff82e

Authored by Quillot Mathias
1 parent 9a2c6b4d02
Exists in master

Just tried to change float to np.float64 to have larger float

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -64,7 +64,7 @@
64 64  
65 65 Returns a dictionary with id as key and a list of values as associated values
66 66 '''
67   - return read_id_values(file_path, float)
  67 + return read_id_values(file_path, np.float64)
68 68  
69 69  
70 70 def read_labels(file_path: str) -> KeyToLabels: