Commit e3fcf8b6 authored by Davis King's avatar Davis King

Filled out spec file.

parent 80295a59
// Copyright (C) 2012 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#undef DLIB_GRAPH_LaBELER_ABSTRACT_H__
#ifdef DLIB_GRAPH_LaBELER_ABSTRACT_H__
#include "../graph_cuts/find_max_factor_graph_potts_abstract.h"
#include "../graph/graph_kernel_abstract.h"
#include "../matrix/matrix_abstract.h"
#include <vector>
namespace dlib
{
// ----------------------------------------------------------------------------------------
template <
typename vector_type
>
class graph_labeler
{
/*!
REQUIREMENTS ON vector_type
- vector_type is a dlib::matrix capable of representing column
vectors or it is a sparse vector type as defined in dlib/svm/sparse_vector_abstract.h.
WHAT THIS OBJECT REPRESENTS
This object is a tool for labeling each node in a graph with a value
of true or false, subject to a labeling consistency constraint between
nodes that share an edge. In particular, this object is useful for
representing a graph labeling model learned via some machine learning
method.
To elaborate, suppose we have a graph we want to label. Moreover,
suppose we can assign a score to each node which represents how much
we want to label the node as true, and we also have scores for each
edge which represent how much we wanted the nodes sharing the edge to
have the same label. If we could do this then we could find the optimal
labeling using the find_max_factor_graph_potts() routine. Therefore,
the graph_labeler is just an object which contains the necessary data
to compute these score functions and then call find_max_factor_graph_potts().
In particular, this object uses linear functions to represent these score
functions.
!*/
public:
typedef std::vector<node_label> label_type;
typedef label_type result_type;
graph_labeler(
);
/*!
ensures
- this object is properly initialized
!*/
graph_labeler(
const vector_type& edge_weights,
const vector_type& node_weights
);
/*!
requires
- min(edge_weights) >= 0
ensures
- #get_edge_weights() == edge_weights
- #get_node_weights() == node_weights
!*/
const vector_type& get_node_weights (
) const;
/*!
ensures
- Recall that the score function for a node is a linear function of
the vector stored in that node in the graph. This means there is some
vector W which we dot product with the vector in the graph to compute
the score. Therefore, this function returns that W vector which defines
the node score function.
!*/
const vector_type& get_edge_weights (
) const;
/*!
ensures
- Recall that the score function for an edge is a linear function of
the vector stored at that edge in the graph. This means there is some
vector E which we dot product with the vector in the graph to compute
the score. Therefore, this function returns that E vector which defines
the edge score function.
!*/
template <typename graph_type>
void operator() (
const graph_type& sample,
result_type& labels
) const;
/*!
requires
- graph_type is an implementation of dlib/graph/graph_kernel_abstract.h
- graph_type::edge_type and graph_type::type must be vector types. Moreover,
it must be valid to dot product one of these types with a vector_type
using the dlib::dot() routine.
- graph_contains_length_one_cycle(sample) == false
- for all valid i and j:
- min(edge(sample,i,j)) >= 0
ensures
- Computes a labeling for each node in the given graph and stores the result
in #labels.
- #labels.size() == sample.number_of_nodes()
- for all valid i:
- if (sample.node(i) is predicted to have a label of true) then
- #labels[i] != 0
- else
- #labels[i] == 0
- The labels are computed by creating a graph, G, with scalar values on each node
and edge. The scalar values are calculated according to the following:
- for all valid i:
- G.node(i).data == dot(get_node_weights(), sample.node(i).data)
- for all valid i and j:
- edge(G,i,j) == dot(get_edge_weights(), edge(sample,i,j))
Then the labels are computed by calling find_max_factor_graph_potts(G,#labels).
!*/
template <typename graph_type>
result_type operator() (
const graph_type& sample
) const;
/*!
requires
- graph_type is an implementation of dlib/graph/graph_kernel_abstract.h
- graph_type::edge_type and graph_type::type must be vector types. Moreover,
it must be valid to dot product one of these types with a vector_type
using the dlib::dot() routine.
- graph_contains_length_one_cycle(sample) == false
- for all valid i and j:
- min(edge(sample,i,j)) >= 0
ensures
- Performs (*this)(sample, labels); return labels;
(i.e. This is just another version of the above operator() routine
but instead of returning the labels via the second argument, it
returns them as the normal return value).
!*/
};
// ----------------------------------------------------------------------------------------
template <
typename vector_type
>
void serialize (
const graph_labeler<vector_type>& item,
std::ostream& out
);
/*!
provides serialization support
!*/
// ----------------------------------------------------------------------------------------
template <
typename vector_type
>
void deserialize (
graph_labeler<vector_type>& item,
std::istream& in
);
/*!
provides deserialization support
!*/
// ----------------------------------------------------------------------------------------
}
#endif // DLIB_GRAPH_LaBELER_ABSTRACT_H__
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