OpenANN
1.1.0
An open source library for artificial neural networks.
|
#include <Eigen/Core>
#include <iostream>
Go to the source code of this file.
Namespaces | |
OpenANN | |
OpenANN::LibSVM | |
Functions | |
int | OpenANN::LibSVM::load (Eigen::MatrixXd &in, Eigen::MatrixXd &out, const char *filename, int min_inputs=0) |
Read a libsvm-encoded dataset from the filesystem and load its values into given in- and output matrices. More... | |
int | OpenANN::LibSVM::load (Eigen::MatrixXd &in, Eigen::MatrixXd &out, std::istream &stream, int min_inputs=0) |
Read a libsvm-encoded dataset from any input stream and load its values into given in- and output matrices. More... | |
void | OpenANN::LibSVM::save (const Eigen::MatrixXd &in, const Eigen::MatrixXd &out, const char *filename) |
Export a given dataset represented by in- and output matrices into a libsvm file. More... | |
void | OpenANN::LibSVM::save (const Eigen::MatrixXd &in, const Eigen::MatrixXd &out, std::ostream &stream) |
Write a given dataset from in- and output matrices to an output stream in libsvm format. More... | |