linux operating commands and unix operating commands

Article: Neural Networks on the NetBeans Platform

 
Thread Tools Search this Thread
# 1  
Old 03-02-2011
Article: Neural Networks on the NetBeans Platform

Neuroph Studio is an open source, Java neural network development environment built on top of the NetBeans Platform. This article shows how to create Java neural networks for classification.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Fedora

Installing netbeans

How can I install netbeans on Solaris. Is there a package manager like yum for Fedora. I have tried pkg install netbeans, doesnt find it. Already preformed pkg install slim_install and it installed the jre. However if I run the sh file downloaded for netbeans it says no compatible JDK found. Now... (2 Replies)
Discussion started by: Fingerz
2 Replies

2. HP-UX

netbeans IDE on Hp-UX

Can netbeans IDE be installed and used on hp-ux? Sorry I know this is more java specific but does anybody have any experience with this? There does not seem to be any specific installation or support from netbeans. (0 Replies)
Discussion started by: domestos
0 Replies
Login or Register to Ask a Question
FANN_SAVE(3)								 1							      FANN_SAVE(3)

fann_save - Saves the entire network to a configuration file

SYNOPSIS
bool fann_save (resource $ann, string $configuration_file) DESCRIPTION
Saves the entire network to a configuration file. The configuration file contains all information about the neural network and enables fann_create_from_file(3) to create an exact copy of the neural network and all of the parameters associated with the neural network. These three parameters (fann_set_callback(3), fann_set_error_log(3), fann_set_user_data(3)) are NOT saved to the file because they cannot safely be ported to a different location. Also temporary parameters generated during training like fann_get_MSE(3) is not saved. PARAMETERS
o $ann -Neural network resource. o $configuration_file - The configuration file path. RETURN VALUES
Returns TRUE on success, or FALSE otherwise. SEE ALSO
fann_create_from_file(3). PHP Documentation Group FANN_SAVE(3)