TORCS  1.3.9
The Open Racing Car Simulator
Connection_ Struct Reference

A linear connection between two neural elements. More...

#include <ANN.h>

Public Attributes

int c
 connected? More...
 
real w
 weight More...
 
real dw
 Weight-change. More...
 
real e
 eligibility; More...
 
real v
 variance estimate More...
 

Detailed Description

A linear connection between two neural elements.

It is used to express the sum weights in \(y = \sum_i w_i f_i (x)\). This type of connection currently also supports eligibility traces gradient descent updates, batch updates and variance estimates.

Definition at line 48 of file ANN.h.

Member Data Documentation

◆ c

int Connection_::c

connected?

Definition at line 49 of file ANN.h.

◆ dw

real Connection_::dw

Weight-change.

Definition at line 51 of file ANN.h.

◆ e

real Connection_::e

eligibility;

Definition at line 52 of file ANN.h.

◆ v

real Connection_::v

variance estimate

Definition at line 53 of file ANN.h.

◆ w

real Connection_::w

weight

Definition at line 50 of file ANN.h.


The documentation for this struct was generated from the following file: