ftp.nice.ch/pub/next/developer/objc/ai/NeuralNetwork.N.bs.tar.gz#/Neural-Network/BackPropEngine.h

This is BackPropEngine.h in view mode; [Download] [Up]

/* =======================================================
	Neural Network Classes for the NeXT Computer
	Written by: Ralph Zazula
					University of Arizona - Fall 1991
					zazula@pri.com (NeXT Mail)
==========================================================*/
#import <objc/Object.h>
#import <objc/List.h>

#import "Neuron.h"
#import "Random.h"

@interface BackPropEngine:Object

{
	id	inputs;
	id	hidden;
	id	outputs;
	id	random;
	
	double ETA;
	double ALPHA;
	double Error;
}

- init;
- initWithInputs:(int)Nin hidden:(int)Nhid outputs:(int)Nout;
- applyInput:(double *)input;
- correctWithTarget:(double *)target;
- inputs;
- hidden;
- outputs;
- (double)getEta;
- setEta:(double)newEta;
- (double)getError;

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.