<?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 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.fann-get-bit-fail.php',
    1 => 'fann_get_bit_fail',
    2 => 'The number of fail bits',
  ),
  'up' => 
  array (
    0 => 'ref.fann.php',
    1 => 'Fann 関数',
  ),
  'prev' => 
  array (
    0 => 'function.fann-get-bias-array.php',
    1 => 'fann_get_bias_array',
  ),
  'next' => 
  array (
    0 => 'function.fann-get-bit-fail-limit.php',
    1 => 'fann_get_bit_fail_limit',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/fann/functions/fann-get-bit-fail.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" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">fann_get_bit_fail</h1>
  <p class="verinfo">(PECL fann &gt;= 1.0.0)</p><p class="refpurpose"><span class="refname">fann_get_bit_fail</span> &mdash; <span class="dc-title">The number of fail bits</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.fann-get-bit-fail-description">
  <h3 class="title">説明</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>fann_get_bit_fail</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.integer.php" class="type int">int</a></span></div>

  <p class="para rdfs-comment">
   The number of fail bits; means the number of output neurons which differ more than the bit fail limit
   (see <span class="function"><a href="function.fann-get-bit-fail-limit.php" class="function">fann_get_bit_fail_limit()</a></span>, <span class="function"><a href="function.fann-set-bit-fail-limit.php" class="function">fann_set_bit_fail_limit()</a></span>).
   The bits are counted in all of the training data, so this number can be higher than the number of training data.
  </p>
  <p class="para">
   This value is reset by <span class="function"><a href="function.fann-reset-mse.php" class="function">fann_reset_MSE()</a></span> and updated by all the same functions
   which also updates the MSE value (e.g. <span class="function"><a href="function.fann-test-data.php" class="function">fann_test_data()</a></span>, <span class="function"><a href="function.fann-train-epoch.php" class="function">fann_train_epoch()</a></span>)
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.fann-get-bit-fail-parameters">
  <h3 class="title">パラメータ</h3>
  <dl>
   
    <dt><code class="parameter">ann</code></dt>
    <dd>
     <p class="para">ニューラルネットワークリソース。</p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.fann-get-bit-fail-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="para">
   The number of bits fail, 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-seealso">
  <h3 class="title">参考</h3>
  <p class="para">
   <ul class="simplelist">
    <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-reset-mse.php" class="function" rel="rdfs-seeAlso">fann_reset_MSE()</a> - Resets the mean square error from the network</span></li>
    <li><span class="function"><a href="function.fann-test-data.php" class="function" rel="rdfs-seeAlso">fann_test_data()</a> - Test a set of training data and calculates the MSE for the training data</span></li>
    <li><span class="function"><a href="function.fann-train-epoch.php" class="function" rel="rdfs-seeAlso">fann_train_epoch()</a> - Train one epoch with a set of training data</span></li>
    <li><span class="function"><a href="function.fann-get-bit-fail-limit.php" class="function" rel="rdfs-seeAlso">fann_get_bit_fail_limit()</a> - Returns the bit fail limit used during training</span></li>
    <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); ?>