<?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-get-bit-fail-limit.php',
    1 => 'fann_get_bit_fail_limit',
    2 => 'Returns the bit fail limit used during training',
  ),
  'up' => 
  array (
    0 => 'ref.fann.php',
    1 => 'Fann İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.fann-get-bit-fail.php',
    1 => 'fann_get_bit_fail',
  ),
  'next' => 
  array (
    0 => 'function.fann-get-cascade-activation-functions.php',
    1 => 'fann_get_cascade_activation_functions',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/fann/functions/fann-get-bit-fail-limit.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.fann-get-bit-fail-limit" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">fann_get_bit_fail_limit</h1>
  <p class="verinfo">(PECL fann &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">fann_get_bit_fail_limit</span> &mdash; <span class="dc-title">Returns the bit fail limit used during training</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.fann-get-bit-fail-limit-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>fann_get_bit_fail_limit</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">
   Returns the bit fail limit used during training.
  </p>
  <p class="para">
   The bit fail limit is used during training where the <a href="fann.constants.php#constants.fann-stopfunc" class="link">stop function</a>
   is set to <strong><code><a href="fann.constants.php#constant.fann-stopfunc-bit">FANN_STOPFUNC_BIT</a></code></strong>.
  </p>
  <p class="para">
   The limit is the maximum accepted difference between the desired output and the actual output during training.
   Each output that diverges more than this limit is counted as an error bit. This difference is divided by two
   when dealing with symmetric activation functions, so that symmetric and not symmetric activation functions
   can use the same limit.
  </p>
  <p class="para">
   The default bit fail limit is 0.35.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.fann-get-bit-fail-limit-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>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.fann-get-bit-fail-limit-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   The bit fail limit, 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-bit-fail-limit-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.fann-set-bit-fail-limit.php" class="function" rel="rdfs-seeAlso">fann_set_bit_fail_limit()</a> - Set the bit fail limit used during training</span></li>
   </ul>
  </p>
 </div>



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