Skip to content
Snippets Groups Projects
Commit 0b05f33b authored by Patrick Godwin's avatar Patrick Godwin
Browse files

utils.py: switch dtype for features from numpy.float32 to float

parent fe63c6f1
Branches master
No related tags found
No related merge requests found
Pipeline #67722 passed with warnings
......@@ -273,7 +273,7 @@ class HDF5TimeseriesFeatureData(FeatureData):
self.sample_rate = kwargs['sample_rate']
self.waveform = kwargs['waveform']
self.metadata = dict(**kwargs)
self.dtype = [(column, numpy.float32) for column in self.columns]
self.dtype = [(column, 'float') for column in self.columns]
self.feature_data = {key: numpy.empty((self.cadence * self.sample_rate,), dtype = self.dtype) for key in keys}
self.last_save_time = 0
self.clear()
......@@ -322,7 +322,7 @@ class HDF5ETGFeatureData(FeatureData):
self.cadence = kwargs['cadence']
self.waveform = kwargs['waveform']
self.metadata = dict(**kwargs)
self.dtype = [(column, numpy.float32) for column in self.columns]
self.dtype = [(column, 'float') for column in self.columns]
self.feature_data = {key: [] for key in keys}
self.clear()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment