The Complete SPRLIB & ANNLIB

WEIGHT_VALUE

- connection weight value datatype

SYNOPSIS

typedef struct weight_value

{

double Weight; The current weight value.

struct weight_value *Hist; A pointer to previous values.

} WEIGHT_VALUE;

DESCRIPTION

If the history flag HISTW (see HIST-flags) is set during training, the WEIGHT structure points to the first WEIGHT_VALUE structure of a linked list. This first structure contains the last value and points through the Hist field to its predecessor. In this way, walking down the linked list from the WEIGHT gives a reverse chronological list of its values. The last entry has a Hist = NULL. The same goes for the Theta field in the UNIT structure, holding the UNIT 's bias.

SEE ALSO

UNIT, WEIGHT

This document was generated using api2html on Thu Mar 5 09:00:00 MET DST 1998