Did you know ... | Search Documentation: |
![]() | Packs (add-ons) for SWI-Prolog |
Title: | SWI-Prolog for "Fast Artificial Neural Network Library" |
---|---|
Rating: | Not rated. Create the first rating! |
Latest version: | 0.0.2 |
SHA1 sum: | f0803bbead5fade60a0a72d75a2033a590f4236d |
Author: | Degski <degski@gmail.com> |
Steffen Nissen <lukesky@diku.dk> | |
Packager: | PiotrLi <piortlierr@gmail.com> |
Home page: | http://leenissen.dk/fann/wp/ |
Download URL: | https://github.com/SWI-Prolog/contrib-plfann.git |
No reviews. Create the first review!.
Version | SHA1 | #Downloads | URL |
---|---|---|---|
0.0.1 | 34057f69bc79682228b01ce88840dcf9ef84f9f5 | 1 | https://github.com/PiotrLi/plfann.git |
8ad1cd91094e7bc1f25b162ddf7ea85a7c7053a4 | 1 | https://github.com/PiotrLi/plfann.git | |
c0d2ca5b4f0ca65698c4ddbe00601e42d472d04e | 1 | https://github.com/PiotrLi/plfann.git | |
0.0.2 | 27c508f9c5de43c3437e9ef6b5359afa589da19e | 58 | https://github.com/PiotrLi/plfann.git |
f0803bbead5fade60a0a72d75a2033a590f4236d | 3 | https://github.com/PiotrLi/plfann.git |
To find out how to use this library follow Documentation of FANN.
make
and install in swipl:
?- pack_install('plfann-*.tgz').
If the installation went well, you can load the plfann library with the following command:
?- [library(plfann)].
For general help information about FANN, please go the main FANN Help page.
An ANN is normally run in two different modes, a training mode and an execution mode. Although it is possible to do this in the same program, using different programs is recommended.
There are several reasons to why it is usually a good idea to write the training and execution in two different programs, but the most obvious is the fact that a typical ANN system is only trained once, while it is executed many times.
The following is a simple program which trains an ANN with a data set and then saves the ANN to a file.
:- use_module(library(plfann)). training:- %fann_create_standard(+Num_layers,+Num_input,+Num_neurons_hidden,+Num_output,-Ann) is det fann_create_standard( 3, 2, 3, 1, Ann ), nl, fann_print_connections( Ann ), nl, fann_print_parameters( Ann ), nl, fann_set_activation_function_hidden( Ann, 'FANN_SIGMOID_SYMMETRIC' ), fann_set_activation_function_output( Ann, 'FANN_SIGMOID_SYMMETRIC' ), % Insert the proper paths below %fann_train_on_file(+Ann,+File,+Max_epochs,+Epochs_between_reports,+Desired_error) is det fann_train_on_file( Ann, "xor.data", 500000, 1000, 0.00001 ), nl, fann_save( Ann, "xor_float.net" ), fann_destroy( Ann ).
4 2 1 -1 -1 -1 -1 1 1 1 -1 1 1 1 -1
The first line consists of three numbers: The first is the number of training pairs in the file, the second is the number of inputs and the third is the number of outputs. The rest of the file is the actual training data, consisting of one line with inputs, one with outputs etc.
This example introduces several fundamental functions, namely fann_create_standard/5, fann_train_on_file/5, fann_save/2, and fann_destroy/1.
The following example shows a simple program which executes a single input on the ANN. The program introduces two new functions (fann_create_from_file/2 and fann_run/3) which were not used in the training procedure, as well as the fann_type type.
execution:- fann_create_from_file("xor_float.net",Ann), fann_run(Ann,[-1,1],Out), format('xor test (-1,1) -> ~f',Out), nl, fann_destroy(Ann).
If after reading the documentation you are still having problems, or have a question that is not covered in the documentation, please consult the FANN forum.
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Steffen Nissen Degski PiotrLi
Pack contains 10 files holding a total of 131K bytes.