1 #ifndef CAFFE_UTIL_HDF5_H_     2 #define CAFFE_UTIL_HDF5_H_     9 #include "caffe/blob.hpp"    13 template <
typename Dtype>
    14 void hdf5_load_nd_dataset_helper(
    15     hid_t file_id, 
const char* dataset_name_, 
int min_dim, 
int max_dim,
    16     Blob<Dtype>* blob, 
bool reshape);
    18 template <
typename Dtype>
    19 void hdf5_load_nd_dataset(
    20     hid_t file_id, 
const char* dataset_name_, 
int min_dim, 
int max_dim,
    21     Blob<Dtype>* blob, 
bool reshape = 
false);
    23 template <
typename Dtype>
    24 void hdf5_save_nd_dataset(
    25     const hid_t file_id, 
const string& dataset_name, 
const Blob<Dtype>& blob,
    26     bool write_diff = 
false);
    28 int hdf5_load_int(hid_t loc_id, 
const string& dataset_name);
    29 void hdf5_save_int(hid_t loc_id, 
const string& dataset_name, 
int i);
    30 string hdf5_load_string(hid_t loc_id, 
const string& dataset_name);
    31 void hdf5_save_string(hid_t loc_id, 
const string& dataset_name,
    34 int hdf5_get_num_links(hid_t loc_id);
    35 string hdf5_get_name_by_idx(hid_t loc_id, 
int idx);
    39 #endif   // CAFFE_UTIL_HDF5_H_ A layer factory that allows one to register layers. During runtime, registered layers can be called b...
Definition: blob.hpp:14