本文整理汇总了Python中dataset.Dataset.close方法的典型用法代码示例。如果您正苦于以下问题:Python Dataset.close方法的具体用法?Python Dataset.close怎么用?Python Dataset.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dataset.Dataset
的用法示例。
在下文中一共展示了Dataset.close方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _save_hdf5
# 需要导入模块: from dataset import Dataset [as 别名]
# 或者: from dataset.Dataset import close [as 别名]
def _save_hdf5(self, output_file_path=None):
"""
Saves the events from the binary file to an HDF5 file.
Parameters
----------
output_file_path : str
Path for HDF5 file.
"""
#save sync data
if output_file_path:
filename = output_file_path
else:
filename = self.output_path+".h5"
data = np.fromfile(self.output_path, dtype=np.uint32)
total_samples = len(data)
events = self._get_events(data)
h5_output = h5.File(filename, 'w')
h5_output.create_dataset("data", data=events)
#save meta data
meta_data = self._get_meta_data()
meta_data['total_samples'] = total_samples
meta_data_np = np.string_(str(meta_data))
h5_output.create_dataset("meta", data=meta_data_np)
h5_output.close()
#remove raw file
if not self.save_raw:
os.remove(self.output_path)
if self.verbose:
logging.info("Recorded %i events." % (len(events)-1))
logging.info("Metadata: %s" % meta_data)
logging.info("Saving to %s" % filename)
try:
ds = Dataset(filename)
ds.stats()
ds.close()
except Exception as e:
logging.warning("Failed to print quick stats: %s" % e)