Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Library: nn
See also: nnrnet nnrpredict

Macro: ann
Description: is a tool to run a feed-forward neural network

Link:
Usage: ann (x, y, t {, vn})
Input:
x n x p matrix input variables
y n x q matrix output variables
t n x 1 vector of sets (0=training, 1=test, 2=validation)
vn p x 1 vector of variable names (unused)

Example:
x = read("kredit1")
t = read("tkredit")
y = x[,1]
x = x[,2:21]
x = (x-min(x))./(max(x)-min(x))
ANN (x, y, t)
Result:
runs a user specified neural network for the kredit data of 
Fahrmeier and Hammerle.

Library: nn
See also: nnrnet nnrpredict

Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Author: Sigbert Klinke, Janet Grassmann, 951231; Sigbert Klinke, 961121
(C) MD*TECH Method and Data Technologies, 17.8.2000