DiSMEC++
slice.h
Go to the documentation of this file.
1 // Copyright (c) 2021, Aalto University, developed by Erik Schultheis
2 // All rights reserved.
3 //
4 // SPDX-License-Identifier: MIT
5 
6 #ifndef DISMEC_SLICE_H
7 #define DISMEC_SLICE_H
8 
9 #include <filesystem>
10 #include <iosfwd>
11 #include "fwd.h"
12 
13 
19 namespace dismec::io {
28  MultiLabelData read_slice_dataset(std::istream& features, std::istream& labels);
29 
30  MultiLabelData read_slice_dataset(const std::filesystem::path& features, const std::filesystem::path& labels);
31 }
32 
33 #endif //DISMEC_SLICE_H
Forward-declares types.
MultiLabelData read_slice_dataset(std::istream &features, std::istream &labels)
reads a dataset given in slice format.
Definition: slice.cpp:36