|
Tapkee
|
#include <chain_interface.hpp>
Public Member Functions | |
| KernelFirstInitializedState (const ParametersSet ¶ms, const KernelCallback &callback) | |
| template<class DistanceCallback > | |
| KernelAndDistanceInitializedState < KernelCallback, DistanceCallback > | withDistance (const DistanceCallback &callback) const |
| template<class FeaturesCallback > | |
| KernelAndFeaturesInitializedState < KernelCallback, FeaturesCallback > | withFeatures (const FeaturesCallback &callback) const |
| template<class RandomAccessIterator > | |
| TapkeeOutput | embedRange (RandomAccessIterator begin, RandomAccessIterator end) const |
| template<class Container > | |
| TapkeeOutput | embedUsing (const Container &container) const |
Private Attributes | |
| ParametersSet | parameters |
| KernelCallback | kernel |
Definition at line 204 of file chain_interface.hpp.
| KernelFirstInitializedState | ( | const ParametersSet & | params, |
| const KernelCallback & | callback | ||
| ) |
Definition at line 207 of file chain_interface.hpp.
| TapkeeOutput embedRange | ( | RandomAccessIterator | begin, |
| RandomAccessIterator | end | ||
| ) | const |
Constructs an embedding using the data represented by the begin and end iterators.
| begin | an iterator that points to the beginning of data container |
| end | an iterator that points to the end of data container |
Definition at line 239 of file chain_interface.hpp.
| TapkeeOutput embedUsing | ( | const Container & | container | ) | const |
Constructs an embedding using the data represented by the container.
| container | a container that supports begin() and end() methods to get corresponding iterators |
Definition at line 252 of file chain_interface.hpp.
| KernelAndDistanceInitializedState<KernelCallback,DistanceCallback> withDistance | ( | const DistanceCallback & | callback | ) | const |
Sets distance callback.
| callback | a callback that implements the |
Definition at line 218 of file chain_interface.hpp.
| KernelAndFeaturesInitializedState<KernelCallback,FeaturesCallback> withFeatures | ( | const FeaturesCallback & | callback | ) | const |
Sets features callback.
| callback | a callback that implements the vector(const RandomAccessIterator::value_type&, DenseVector&)
|
Definition at line 229 of file chain_interface.hpp.
|
private |
Definition at line 258 of file chain_interface.hpp.
|
private |
Definition at line 257 of file chain_interface.hpp.