tesseract
4.0.0-1-g2a2b
|
#include <convolve.h>
Public Member Functions | |
Convolve (const STRING &name, int ni, int half_x, int half_y) | |
virtual | ~Convolve ()=default |
STRING | spec () const override |
bool | Serialize (TFile *fp) const override |
bool | DeSerialize (TFile *fp) override |
void | Forward (bool debug, const NetworkIO &input, const TransposedArray *input_transpose, NetworkScratch *scratch, NetworkIO *output) override |
bool | Backward (bool debug, const NetworkIO &fwd_deltas, NetworkScratch *scratch, NetworkIO *back_deltas) override |
![]() | |
Network () | |
Network (NetworkType type, const STRING &name, int ni, int no) | |
virtual | ~Network ()=default |
NetworkType | type () const |
bool | IsTraining () const |
bool | needs_to_backprop () const |
int | num_weights () const |
int | NumInputs () const |
int | NumOutputs () const |
virtual StaticShape | InputShape () const |
virtual StaticShape | OutputShape (const StaticShape &input_shape) const |
const STRING & | name () const |
bool | TestFlag (NetworkFlags flag) const |
virtual bool | IsPlumbingType () const |
virtual void | SetEnableTraining (TrainingState state) |
virtual void | SetNetworkFlags (uint32_t flags) |
virtual int | InitWeights (float range, TRand *randomizer) |
virtual int | RemapOutputs (int old_no, const std::vector< int > &code_map) |
virtual void | ConvertToInt () |
virtual void | SetRandomizer (TRand *randomizer) |
virtual bool | SetupNeedsBackprop (bool needs_backprop) |
virtual int | XScaleFactor () const |
virtual void | CacheXScaleFactor (int factor) |
virtual void | DebugWeights () |
virtual void | Update (float learning_rate, float momentum, float adam_beta, int num_samples) |
virtual void | CountAlternators (const Network &other, double *same, double *changed) const |
void | DisplayForward (const NetworkIO &matrix) |
void | DisplayBackward (const NetworkIO &matrix) |
Protected Attributes | |
int32_t | half_x_ |
int32_t | half_y_ |
![]() | |
NetworkType | type_ |
TrainingState | training_ |
bool | needs_to_backprop_ |
int32_t | network_flags_ |
int32_t | ni_ |
int32_t | no_ |
int32_t | num_weights_ |
STRING | name_ |
ScrollView * | forward_win_ |
ScrollView * | backward_win_ |
TRand * | randomizer_ |
Additional Inherited Members | |
![]() | |
static Network * | CreateFromFile (TFile *fp) |
static void | ClearWindow (bool tess_coords, const char *window_name, int width, int height, ScrollView **window) |
static int | DisplayImage (Pix *pix, ScrollView *window) |
![]() | |
double | Random (double range) |
![]() | |
static char const *const | kTypeNames [NT_COUNT] |
Definition at line 33 of file convolve.h.
tesseract::Convolve::Convolve | ( | const STRING & | name, |
int | ni, | ||
int | half_x, | ||
int | half_y | ||
) |
Definition at line 28 of file convolve.cpp.
|
virtualdefault |
|
overridevirtual |
Reimplemented from tesseract::Network.
Definition at line 84 of file convolve.cpp.
|
overridevirtual |
|
overridevirtual |
Reimplemented from tesseract::Network.
Definition at line 50 of file convolve.cpp.
|
overridevirtual |
|
inlineoverridevirtual |
Reimplemented from tesseract::Network.
Definition at line 40 of file convolve.h.
|
protected |
Definition at line 66 of file convolve.h.
|
protected |
Definition at line 67 of file convolve.h.