h5Parser.h
std::vector< std::vector< std::vector< double > > > parseFilters(std::string path) const
Loads convolution layer filters from a given path inside file.
Definition: h5Parser.cpp:257
void readData(const std::string &path, double &val) const
Reads the scalar from the given path into "val".
Definition: h5Parser.cpp:62
std::vector< std::vector< double > > parseFC(std::string path) const
Loads fully-connected layer weights from a given path inside file.
Definition: h5Parser.cpp:207
H5::H5File & getFile()
Returns underlying H5File object.
Definition: h5Parser.h:93
std::vector< double > parseBias(std::string path) const
Loads fully-connected layer bias from a given path inside file.
Definition: h5Parser.cpp:165
bool objectExists(const std::string &name) const
Checks if given name exists in file.
Definition: h5Parser.cpp:38