|
Tapkee
|
#include <chain_interface.hpp>
Public Member Functions | |
| KernelAndFeaturesInitializedState (const ParametersSet ¶ms, const KernelCallback &k, const FeaturesCallback &f) | |
| template<class DistanceCallback > | |
| CallbacksInitializedState < KernelCallback, DistanceCallback, FeaturesCallback > | withDistance (const DistanceCallback &distance) 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 |
| FeaturesCallback | features |
Definition at line 105 of file chain_interface.hpp.
| KernelAndFeaturesInitializedState | ( | const ParametersSet & | params, |
| const KernelCallback & | k, | ||
| const FeaturesCallback & | f | ||
| ) |
Definition at line 108 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 129 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 141 of file chain_interface.hpp.
| CallbacksInitializedState<KernelCallback,DistanceCallback,FeaturesCallback> withDistance | ( | const DistanceCallback & | distance | ) | const |
Sets distance callback.
| callback | a callback that implements the |
Definition at line 119 of file chain_interface.hpp.
|
private |
Definition at line 148 of file chain_interface.hpp.
|
private |
Definition at line 147 of file chain_interface.hpp.
|
private |
Definition at line 146 of file chain_interface.hpp.