52 This function save result of nn working in .hdf5 file
53 :param output_path: you specify directory to store your result
54 :param output_data: information that you write to .hdf5 file
57 with open(output_path +
'responce.txt',
'w+')
as f:
58 f.write(str(output_data))
59 f = h5py.File(output_path +
'responce.hdf5',
'w')
60 f.create_dataset(
'out', dtype=
'float32', data=output_data)