<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.fann.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.fann-cascadetrain-on-data.php',
    1 => 'fann_cascadetrain_on_data',
    2 => 'Trains on an entire dataset, for a period of time using the Cascade2 training algorithm',
  ),
  'up' => 
  array (
    0 => 'ref.fann.php',
    1 => 'Fann İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'ref.fann.php',
    1 => 'Fann İşlevleri',
  ),
  'next' => 
  array (
    0 => 'function.fann-cascadetrain-on-file.php',
    1 => 'fann_cascadetrain_on_file',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/fann/functions/fann-cascadetrain-on-data.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.fann-cascadetrain-on-data" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">fann_cascadetrain_on_data</h1>
  <p class="verinfo">(PECL fann &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">fann_cascadetrain_on_data</span> &mdash; <span class="dc-title">Trains on an entire dataset, for a period of time using the Cascade2 training algorithm</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.fann-cascadetrain-on-data-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>fann_cascadetrain_on_data</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$ann</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$data</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$max_neurons</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$neurons_between_reports</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.float.php" class="type float">float</a></span> <code class="parameter">$desired_error</code></span><br>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   The cascade output change fraction is a number between 0 and 1 determining how large a fraction
   the <span class="function"><a href="function.fann-get-mse.php" class="function">fann_get_MSE()</a></span> value should change within <span class="function"><a href="function.fann-get-cascade-output-stagnation-epochs.php" class="function">fann_get_cascade_output_stagnation_epochs()</a></span>
   during training of the output connections, in order for the training not to stagnate.  If the training stagnates,
   the training of the output connections will be ended and new candidates will be prepared.
  </p>
  <p class="para">
   This training uses the parameters set using the fann_set_cascade_..., but it also uses another training algorithm
   as it’s internal training algorithm. This algorithm can be set to either <strong><code><a href="fann.constants.php#constant.fann-train-rprop">FANN_TRAIN_RPROP</a></code></strong> or
   <strong><code><a href="fann.constants.php#constant.fann-train-quickprop">FANN_TRAIN_QUICKPROP</a></code></strong> by <span class="function"><a href="function.fann-set-training-algorithm.php" class="function">fann_set_training_algorithm()</a></span>, and the parameters
   set for these training algorithms will also affect the cascade training.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.fann-cascadetrain-on-data-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <dl>
   
    <dt><code class="parameter">ann</code></dt>
    <dd>
     <p class="para">Sinir ağı özkaynağı.</p>
    </dd>
   
   
    <dt><code class="parameter">data</code></dt>
    <dd>
     <p class="para">Sinir ağı eğitim verisi özkaynağı.
</p>
    </dd>
   
   
    <dt><code class="parameter">max_neurons</code></dt>
    <dd>
     <p class="para">
      The maximum number of neurons to be added to neural network.
     </p>
    </dd>
   
   
    <dt><code class="parameter">neurons_between_reports</code></dt>
    <dd>
     <p class="para">
      The number of neurons between printing a status report. A value of zero means no reports should be printed.
     </p>
    </dd>
   
   
    <dt><code class="parameter">desired_error</code></dt>
    <dd>
     <p class="para">
      The desired <span class="function"><a href="function.fann-get-mse.php" class="function">fann_get_MSE()</a></span> or <span class="function"><a href="function.fann-get-bit-fail.php" class="function">fann_get_bit_fail()</a></span>,
      depending on which stop function is chosen by <span class="function"><a href="function.fann-set-train-stop-function.php" class="function">fann_set_train_stop_function()</a></span>
     </p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.fann-cascadetrain-on-data-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">Başarı
durumunda <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> yoksa <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>döner.</p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.fann-cascadetrain-on-data-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.fann-train-on-data.php" class="function" rel="rdfs-seeAlso">fann_train_on_data()</a> - Trains on an entire dataset for a period of time</span></li>
    <li><span class="function"><a href="function.fann-cascadetrain-on-file.php" class="function" rel="rdfs-seeAlso">fann_cascadetrain_on_file()</a> - Trains on an entire dataset read from file, for a period of time using the Cascade2 training algorithm</span></li>
   </ul>
  </p>
 </div>



</div><?php manual_footer($setup); ?>