Commit 31765e6b authored by Davis King's avatar Davis King

Added documentation for the other overload of is_graph_labeling_problem().

parent 30caa801
......@@ -55,6 +55,20 @@ namespace dlib
- All vectors have non-zero size. That is, they have more than 0 dimensions.
!*/
template <
typename graph_type
>
bool is_graph_labeling_problem (
const dlib::array<graph_type>& samples,
const std::vector<std::vector<bool> >& labels,
std::string& reason_for_failure
);
/*!
This function is identical to the above version of is_graph_labeling_problem()
except that if it returns false it will populate reason_for_failure with a message
describing why the graph is not a valid learning problem.
!*/
// ----------------------------------------------------------------------------------------
template <
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment