AbstractMetric.h
Go to the documentation of this file.
1 //===========================================================================
2 /*!
3  *
4  *
5  * \brief abstract super class of all metrics
6  *
7  *
8  *
9  * \author O. Krause
10  * \date 2015
11  *
12  *
13  * \par Copyright 1995-2017 Shark Development Team
14  *
15  * <BR><HR>
16  * This file is part of Shark.
17  * <http://shark-ml.org/>
18  *
19  * Shark is free software: you can redistribute it and/or modify
20  * it under the terms of the GNU Lesser General Public License as published
21  * by the Free Software Foundation, either version 3 of the License, or
22  * (at your option) any later version.
23  *
24  * Shark is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27  * GNU Lesser General Public License for more details.
28  *
29  * You should have received a copy of the GNU Lesser General Public License
30  * along with Shark. If not, see <http://www.gnu.org/licenses/>.
31  *
32  */
33 //===========================================================================
34 
35 #ifndef SHARK_MODELS_KERNELS_ABSTRACTMETRIC_H
36 #define SHARK_MODELS_KERNELS_ABSTRACTMETRIC_H
37 
41 #include <shark/Core/INameable.h>
43 namespace shark {
44 
45 
46 template<class InputTypeT>
47 class AbstractMetric: public INameable, public IParameterizable<>, public ISerializable{
48 public:
49  /// \brief Input type of the Kernel.
50  typedef InputTypeT InputType;
51  /// \brief batch input type of the kernel
53  /// \brief Const references to InputType
54  typedef typename ConstProxyReference<InputType const>::type ConstInputReference;
55  /// \brief Const references to BatchInputType
56  typedef typename ConstProxyReference<BatchInputType const>::type ConstBatchInputReference;
57 
59  virtual ~AbstractMetric() { }
60 
61  /// \brief From ISerializable, reads a metric from an archive.
62  virtual void read( InArchive & archive ){
63  RealVector p;
64  archive & p;
66  }
67 
68  /// \brief From ISerializable, writes a metric to an archive.
69  ///
70  /// The default implementation just saves the parameters.
71  virtual void write( OutArchive & archive ) const{
72  RealVector p = parameterVector();
73  archive & p;
74  }
75 
76  /// Computes the squared distance in the kernel induced feature space.
77  virtual double featureDistanceSqr(ConstInputReference x1, ConstInputReference x2) const=0;
78 
79  virtual RealMatrix featureDistanceSqr(
80  ConstBatchInputReference batchX1,
81  ConstBatchInputReference batchX2
82  ) const = 0;
83 
84 
85  /// \brief Computes the distance in the kernel induced feature space.
86  double featureDistance(ConstInputReference x1, ConstInputReference x2) const {
87  return std::sqrt(featureDistanceSqr(x1, x2));
88  }
89 };
90 }
91 #endif