Project/Framework/Nimachine_OLDWIP

Nimachines


Coding Conventions

Variable Category Variable Name Convention
Statistics statXxxYyy
Special Counters counterXxxYyy

Machines

Constants

#define ITERATIONS 10000
#define T0_LEARNING_RATE 0.10f
#define TN_LEARNING_RATE 0.01f

Machine Inheritance

@interface Machine:TangibleObject {
  InputNode **inputs;
  //int dimensions;
  int epochCount, epochLimit;
  int sweepCount, sweepSize;
  int trainingVectorDimension;
  Point3 *vrp;
  float **trainingData;
  float t0_learningRate, learningRate;
  BOOL valid;
  NSString *trainingDataFile;
  float averageError, *errors;
}

References

  • The reference MyReferenceBook1 is not available: To add this reference (book/uri) simply email <ai at autonomy dot net dot au> with details, and your book will be added. See the references page for details.

  •  <<<— REFERENCE: Do not delete this until you have completed referencing of this page —>>> 

Ancestors ☣ AgentAgent
Siblings ☣ Agent/ModelBased/UtilityBased
Opposite ☣ Agent/ModelBased/UtilityBased
Other ☣ Algorithm/Learning/TDL/QLearning