#include "shark/Core/utility/ScopedHandle.h"
#include "shark/Data/Dataset.h"
#include <hdf5.h>
#include <hdf5_hl.h>
#include <boost/array.hpp>
#include <boost/format.hpp>
#include <boost/range/algorithm/fill.hpp>
#include <boost/range/algorithm/max_element.hpp>
#include <boost/smart_ptr/scoped_array.hpp>
#include <type_traits>
Go to the source code of this file.
|
template<typename VectorType > |
void | shark::importHDF5 (Data< VectorType > &data, const std::string &fileName, const std::string &datasetName) |
| Import data from a HDF5 file. More...
|
|
template<typename VectorType , typename LabelType > |
void | shark::importHDF5 (LabeledData< VectorType, LabelType > &labeledData, const std::string &fileName, const std::string &data, const std::string &label) |
| Import data to a LabeledData object from a HDF5 file. More...
|
|
template<typename VectorType > |
void | shark::importHDF5 (Data< VectorType > &data, const std::string &fileName, const std::vector< std::string > &cscDatasetName) |
| Import data from HDF5 dataset of compressed sparse column format. More...
|
|
template<typename VectorType , typename LabelType > |
void | shark::importHDF5 (LabeledData< VectorType, LabelType > &labeledData, const std::string &fileName, const std::vector< std::string > &cscDatasetName, const std::string &label) |
| Import data from HDF5 dataset of compressed sparse column format. More...
|
|