|
Tapkee
|
#include <chain_interface.hpp>
Public Member Functions | |
| FeaturesFirstInitializedState (const ParametersSet ¶ms, const FeaturesCallback &callback) | |
| template<class KernelCallback > | |
| KernelAndFeaturesInitializedState < KernelCallback, FeaturesCallback > | withKernel (const KernelCallback &callback) const |
| template<class DistanceCallback > | |
| DistanceAndFeaturesInitializedState < DistanceCallback, FeaturesCallback > | withDistance (const DistanceCallback &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 |
| FeaturesCallback | features |
Definition at line 320 of file chain_interface.hpp.
| FeaturesFirstInitializedState | ( | const ParametersSet & | params, |
| const FeaturesCallback & | callback | ||
| ) |
Definition at line 323 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 355 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 368 of file chain_interface.hpp.
| DistanceAndFeaturesInitializedState<DistanceCallback,FeaturesCallback> withDistance | ( | const DistanceCallback & | callback | ) | const |
Sets distance callback.
| callback | a callback that implements the |
Definition at line 345 of file chain_interface.hpp.
| KernelAndFeaturesInitializedState<KernelCallback,FeaturesCallback> withKernel | ( | const KernelCallback & | callback | ) | const |
Sets kernel callback.
| callback | a callback that implements the kernel(const RandomAccessIterator::value_type&, const RandomAccessIterator::value_type&)
|
Definition at line 334 of file chain_interface.hpp.
|
private |
Definition at line 374 of file chain_interface.hpp.
|
private |
Definition at line 373 of file chain_interface.hpp.