PHP 8.4.6 Released!

fann_create_train

(PECL fann >= 1.0.0)

fann_create_trainCreates an empty training data struct

Açıklama

fann_create_train(int $num_data, int $num_input, int $num_output): resource

Creates an empty training data struct.

Bağımsız Değişkenler

num_data

The number of training data

num_input

The number of inputs per training data

num_output

The number of ouputs per training data

Dönen Değerler

Başarı durumunda eğitim verisi özkaynağı, on success, hata durumunda false döner.

Notlar

Bilginize:

Bu işlev sadece fann eklentisi libfann >= 2.2 ile derlenmişse kullanılabilir.

Ayrıca Bakınız

add a note

User Contributed Notes 1 note

up
3
geekgirl dot joy at gmail dot com
6 years ago
The result of fann_create_train() is a "blank" or "empty" training data resource which can be saved to a file using fann_save_train().

<?php

$num_data
= 4;
$num_input = 2;
$num_output = 1;

/ Create an empty 'template' training resource in memory
$empty_training_resource = fann_create_train ($num_data , $num_input , $num_output);

/ Save template.data
fann_save_train($empty_training_resource, 'template.data');

?>

File Saved (template.data):
4 2 1
0 0
0
0 0
0
0 0
0
0 0
0
To Top

Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!

Check out: eBank.nz (Art Generator) | Netwrck.com (AI Tools) | Text-Generator.io (AI API) | BitBank.nz (Crypto AI) | ReadingTime (Kids Reading) | RewordGame | BigMultiplayerChess | WebFiddle | How.nz | Helix AI Assistant