<?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 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.fann-get-cascade-candidate-change-fraction.php',
    1 => 'fann_get_cascade_candidate_change_fraction',
    2 => 'Returns the cascade candidate change fraction',
  ),
  'up' => 
  array (
    0 => 'ref.fann.php',
    1 => 'Функції Fann',
  ),
  'prev' => 
  array (
    0 => 'function.fann-get-cascade-activation-steepnesses-count.php',
    1 => 'fann_get_cascade_activation_steepnesses_count',
  ),
  'next' => 
  array (
    0 => 'function.fann-get-cascade-candidate-limit.php',
    1 => 'fann_get_cascade_candidate_limit',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/fann/functions/fann-get-cascade-candidate-change-fraction.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.fann-get-cascade-candidate-change-fraction" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">fann_get_cascade_candidate_change_fraction</h1>
  <p class="verinfo">(PECL fann &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">fann_get_cascade_candidate_change_fraction</span> &mdash; <span class="dc-title">Returns the cascade candidate change fraction</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.fann-get-cascade-candidate-change-fraction-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>fann_get_cascade_candidate_change_fraction</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$ann</code></span>): <span class="type"><a href="language.types.float.php" class="type float">float</a></span></div>

  <p class="para rdfs-comment">
   The cascade candidate 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-candidate-stagnation-epochs.php" class="function">fann_get_cascade_candidate_stagnation_epochs()</a></span> during training of the candidate neurons,
   in order for the training not to stagnate. If the training stagnates, the training of the candidate neurons will be ended
   and the best candidate will be selected.
  </p>
  <p class="para">
   It means that if the MSE does not change by a fraction of <span class="function"><strong>fann_get_cascade_candidate_change_fraction()</strong></span> during
   a period of <span class="function"><a href="function.fann-get-cascade-candidate-stagnation-epochs.php" class="function">fann_get_cascade_candidate_stagnation_epochs()</a></span>, the training of the candidate neurons is stopped
   because the training has stagnated.
  </p>
  <p class="para">
   If the cascade candidate change fraction is low, the candidate neurons will be trained more and if the fraction is high they will be trained less.
  </p>
  <p class="para">
   The default cascade candidate change fraction is 0.01, which is equalent to a 1% change in MSE.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.fann-get-cascade-candidate-change-fraction-parameters">
  <h3 class="title">Параметри</h3>
  <dl>
   
    <dt><code class="parameter">ann</code></dt>
    <dd>
     <p class="para">Ресурс (<span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span>)
нейронної мережі.</p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.fann-get-cascade-candidate-change-fraction-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   The cascade candidate change fraction, or <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> on error.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.fann-get-cascade-candidate-change-fraction-seealso">
  <h3 class="title">Прогляньте також</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.fann-set-cascade-candidate-change-fraction.php" class="function" rel="rdfs-seeAlso">fann_set_cascade_candidate_change_fraction()</a> - Sets the cascade candidate change fraction</span></li>
    <li><span class="function"><a href="function.fann-get-mse.php" class="function" rel="rdfs-seeAlso">fann_get_MSE()</a> - Reads the mean square error from the network</span></li>
    <li><span class="function"><a href="function.fann-get-cascade-candidate-stagnation-epochs.php" class="function" rel="rdfs-seeAlso">fann_get_cascade_candidate_stagnation_epochs()</a> - Returns the number of cascade candidate stagnation epochs</span></li>
   </ul>
  </p>
 </div>



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