blob: 31f12c117ced36ca9b3ee93d388eebf88db9a643 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
ann: Artificial Neural Networks
Authors:
forum::für::umläute
Davide Morelli - info@davidemorelli.it
this software is under the GnuGPL that is provided with these files
ann_som: self-organized maps
ann_mlp: multi layer perceptrons
ann_td: time delay
FANN libraries are required for ann_mlp and ann_td, see
http://fann.sourceforge.net/
---------- Windows users (MSVC):
go to http://fann.sourceforge.net/ and download fann libs
(current is http://prdownloads.sourceforge.net/fann/fann-1.2.0.zip?download)
go to MSVC++ folder and open all.dsw
compile everything
go in the ann/src folder
edit makefile.msvc with the correct PATHs
run the visual studio command prompt and execute:
nmake makefile.msvc
---------- Linux users:
go to http://fann.sourceforge.net/ and download fann libs
compile fann libs from source
if you don't compile from source edit ann/src/makefile.linux
and set correct PATHs
read ann/src/makefile.linux for more info and edit PATHs
ann_mlp and ann_td have never been compiled on linux
---------- Irix users:
ann_mlp and ann_td have never been compiled on irix
---------- OsX users:
ann_mlp and ann_td have never been compiled on OsX and a Makefile is not provided, sorry.
|