<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.fann.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'fr',
  ),
  'this' => 
  array (
    0 => 'fann.constants.php',
    1 => 'Constantes pr&eacute;-d&eacute;finies',
    2 => 'Constantes pr&eacute;-d&eacute;finies',
  ),
  'up' => 
  array (
    0 => 'book.fann.php',
    1 => 'FANN',
  ),
  'prev' => 
  array (
    0 => 'fann.resources.php',
    1 => 'Types de ressources',
  ),
  'next' => 
  array (
    0 => 'fann.examples.php',
    1 => 'Exemples',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'fr',
    'path' => 'reference/fann/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="fann.constants" class="appendix">
 <h1 class="title">Constantes pré-définies</h1>

 <p class="simpara">Ces constantes sont définies par cette
extension, et ne sont disponibles que si cette extension a été compilée avec
PHP, ou bien chargée au moment de l&#039;exécution.</p>
 <p class="para">
  <dl id="constants.fann-train">
   <strong class="title">Training algorithms</strong>
   
    <dt id="constant.fann-train-incremental">
     <strong><code><a href="fann.constants.php#constant.fann-train-incremental">FANN_TRAIN_INCREMENTAL</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      L&#039;algorithme standard de rétropropagation, où les poids sont mis à jour après chaque motif d&#039;entraînement.
      Cela signifie que les poids sont mis à jour de nombreuses fois pendant une seule époque. Pour cette raison,
      certains problèmes se formeront très rapidement avec cet algorithme, tandis que d&#039;autres problèmes plus avancés
      ne se formeront pas très bien.
     </span>
    </dd>
   
   
    <dt id="constant.fann-train-batch">
     <strong><code><a href="fann.constants.php#constant.fann-train-batch">FANN_TRAIN_BATCH</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      L&#039;algorithme standard de rétropropagation, où les poids sont mis à jour après avoir calculé l&#039;erreur quadratique
      moyenne pour l&#039;ensemble d&#039;entraînement. Cela signifie que les poids ne sont mis à jour qu&#039;une seule fois pendant
      une époque. Pour cette raison, certains problèmes se formeront plus lentement avec cet algorithme. Mais comme
      l&#039;erreur quadratique moyenne est calculée plus correctement que dans l&#039;entraînement incrémentiel, certains problèmes
      atteindront de meilleures solutions avec cet algorithme.
     </span>
    </dd>
   
   
    <dt id="constant.fann-train-rprop">
     <strong><code><a href="fann.constants.php#constant.fann-train-rprop">FANN_TRAIN_RPROP</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Un algorithme d&#039;entraînement par lots plus avancé qui donne de bons résultats pour de nombreux problèmes. L&#039;algorithme
      d&#039;entraînement RPROP est adaptatif, et n&#039;utilise donc pas le paramètre learning_rate. Cependant, certains autres paramètres
      peuvent être définis pour changer la façon dont l&#039;algorithme d&#039;entraînement RPROP fonctionne, mais il est uniquement recommandé
      pour les utilisateurs ayant une connaissance de la façon dont l&#039;algorithme d&#039;entraînement RPROP fonctionne. L&#039;algorithme
      d&#039;entraînement RPROP est décrit par [Riedmiller et Braun, 1993], mais l&#039;algorithme d&#039;apprentissage réel utilisé ici est
      l&#039;algorithme d&#039;entraînement iRPROP décrit par [Igel et Husken, 2000] qui est une variété de l&#039;algorithme d&#039;entraînement RPROP standard.
     </span>
    </dd>
   
   
    <dt id="constant.fann-train-quickprop">
     <strong><code><a href="fann.constants.php#constant.fann-train-quickprop">FANN_TRAIN_QUICKPROP</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Un algorithme d&#039;entraînement par lots plus avancé qui donne de bons résultats pour de nombreux problèmes. L&#039;algorithme
      d&#039;entraînement Quickprop utilise le paramètre learning_rate, ainsi que d&#039;autres paramètres plus avancés, mais il est uniquement
      recommandé de changer ces paramètres avancés pour les utilisateurs ayant une connaissance de la façon dont l&#039;algorithme
      d&#039;entraînement Quickprop fonctionne. L&#039;algorithme d&#039;entraînement Quickprop est décrit par [Fahlman, 1988].
     </span>
    </dd>
   
   
    <dt id="constant.fann-train-sarprop">
     <strong><code><a href="fann.constants.php#constant.fann-train-sarprop">FANN_TRAIN_SARPROP</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Un algorithme d&#039;entraînement encore plus avancé. Seulement pour la version 2.2. 
     </span>
    </dd>
   
  </dl>
  <dl id="constants.fann-activation-funcs">
   <strong class="title">Activation functions</strong>
   
    <dt id="constant.fann-linear">
     <strong><code><a href="fann.constants.php#constant.fann-linear">FANN_LINEAR</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation linéaire.
     </span>
    </dd>
   
   
    <dt id="constant.fann-threshold">
     <strong><code><a href="fann.constants.php#constant.fann-threshold">FANN_THRESHOLD</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation de seuil.
     </span>
    </dd>
   
   
    <dt id="constant.fann-threshold-symmetric">
     <strong><code><a href="fann.constants.php#constant.fann-threshold-symmetric">FANN_THRESHOLD_SYMMETRIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation de seuil.
     </span>
    </dd>
   
   
    <dt id="constant.fann-sigmoid">
     <strong><code><a href="fann.constants.php#constant.fann-sigmoid">FANN_SIGMOID</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation sigmoïde.
     </span>
    </dd>
   
   
    <dt id="constant.fann-sigmoid-stepwise">
     <strong><code><a href="fann.constants.php#constant.fann-sigmoid-stepwise">FANN_SIGMOID_STEPWISE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Approximation linéaire par étapes de la sigmoïde.
     </span>
    </dd>
   
   
    <dt id="constant.fann-sigmoid-symmetric">
     <strong><code><a href="fann.constants.php#constant.fann-sigmoid-symmetric">FANN_SIGMOID_SYMMETRIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation sigmoïde symétrique, alias tanh.
     </span>
    </dd>
   
   
    <dt id="constant.fann-sigmoid-symmetric-stepwise">
     <strong><code><a href="fann.constants.php#constant.fann-sigmoid-symmetric-stepwise">FANN_SIGMOID_SYMMETRIC_STEPWISE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Approximation linéaire par étapes de la sigmoïde symétrique.
     </span>
    </dd>
   
   
    <dt id="constant.fann-gaussian">
     <strong><code><a href="fann.constants.php#constant.fann-gaussian">FANN_GAUSSIAN</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation gaussienne.
     </span>
    </dd>
   
   
    <dt id="constant.fann-gaussian-symmetric">
     <strong><code><a href="fann.constants.php#constant.fann-gaussian-symmetric">FANN_GAUSSIAN_SYMMETRIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation gaussienne symétrique.
     </span>
    </dd>
   
   
    <dt id="constant.fann-gaussian-stepwise">
     <strong><code><a href="fann.constants.php#constant.fann-gaussian-stepwise">FANN_GAUSSIAN_STEPWISE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation gaussienne par étapes.
     </span>
    </dd>
   
   
    <dt id="constant.fann-elliot">
     <strong><code><a href="fann.constants.php#constant.fann-elliot">FANN_ELLIOT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation rapide (sigmoïde) définie par David Elliott.
     </span>
    </dd>
   
   
    <dt id="constant.fann-elliot-symmetric">
     <strong><code><a href="fann.constants.php#constant.fann-elliot-symmetric">FANN_ELLIOT_SYMMETRIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation rapide (sigmoïde symétrique) définie par David Elliott.
     </span>
    </dd>
   
   
    <dt id="constant.fann-linear-piece">
     <strong><code><a href="fann.constants.php#constant.fann-linear-piece">FANN_LINEAR_PIECE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation linéaire bornée.
     </span>
    </dd>
   
   
    <dt id="constant.fann-linear-piece-symmetric">
     <strong><code><a href="fann.constants.php#constant.fann-linear-piece-symmetric">FANN_LINEAR_PIECE_SYMMETRIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation linéaire bornée symétrique.
     </span>
    </dd>
   
   
    <dt id="constant.fann-sin-symmetric">
     <strong><code><a href="fann.constants.php#constant.fann-sin-symmetric">FANN_SIN_SYMMETRIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation sinus symétrique périodique.
     </span>
    </dd>
   
   
    <dt id="constant.fann-cos-symmetric">
     <strong><code><a href="fann.constants.php#constant.fann-cos-symmetric">FANN_COS_SYMMETRIC</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation cosinus symétrique périodique.
     </span>
    </dd>
   
   
    <dt id="constant.fann-sin">
     <strong><code><a href="fann.constants.php#constant.fann-sin">FANN_SIN</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation sinus périodique.
     </span>
    </dd>
   
   
    <dt id="constant.fann-cos">
     <strong><code><a href="fann.constants.php#constant.fann-cos">FANN_COS</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;activation cosinus périodique.
     </span>
    </dd>
   
  </dl>
  <dl id="constants.fann-errorfunc">
   <strong class="title">Fonction d&#039;erreur utilisée pendant l&#039;entraînement</strong>
   
    <dt id="constant.fann-errorfunc-linear">
     <strong><code><a href="fann.constants.php#constant.fann-errorfunc-linear">FANN_ERRORFUNC_LINEAR</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Fonction d&#039;erreur linéaire standard.
     </span>
    </dd>
   
   
    <dt id="constant.fann-errorfunc-tanh">
     <strong><code><a href="fann.constants.php#constant.fann-errorfunc-tanh">FANN_ERRORFUNC_TANH</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      La fonction d&#039;erreur tanh ; généralement meilleure mais peut nécessiter un taux d&#039;apprentissage plus bas. Cette fonction
      d&#039;erreur cible agressivement les sorties qui diffèrent beaucoup de la sortie désirée, sans cibler les sorties qui ne diffèrent
      que légèrement. Non recommandé pour l&#039;entraînement en cascade ou incrémentiel.
     </span>
    </dd>
   
  </dl>
  <dl id="constants.fann-stopfunc">
   <strong class="title">Critères d&#039;arrêt utilisés lors de l&#039;entraînement</strong>
   
    <dt id="constant.fann-stopfunc-mse">
     <strong><code><a href="fann.constants.php#constant.fann-stopfunc-mse">FANN_STOPFUNC_MSE</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Les critères d&#039;arrêt de la valeur de l&#039;erreur quadratique moyenne (MSE).
     </span>
    </dd>
   
   
    <dt id="constant.fann-stopfunc-bit">
     <strong><code><a href="fann.constants.php#constant.fann-stopfunc-bit">FANN_STOPFUNC_BIT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Les critères d&#039;arrêt du nombre de bits qui échouent. Le nombre de bits signifie le nombre de neurones de sortie qui diffèrent
      de plus que la limite de défaillance de bits (voir fann_get_bit_fail_limit, fann_set_bit_fail_limit). Les bits sont comptés
      dans tous les données d&#039;entraînement, donc ce nombre peut être plus élevé que le nombre de données d&#039;entraînement.
     </span>
    </dd>
   
  </dl>
  <dl id="constants.fann-nettype">
   <strong class="title">Définition des types de réseau utilisés par <span class="function"><a href="function.fann-get-network-type.php" class="function">fann_get_network_type()</a></span></strong>
   
    <dt id="constant.fann-nettype-layer">
     <strong><code><a href="fann.constants.php#constant.fann-nettype-layer">FANN_NETTYPE_LAYER</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Chaque couche n&#039;a de connexions qu&#039;à la couche suivante.
     </span>
    </dd>
   
   
    <dt id="constant.fann-nettype-shortcut">
     <strong><code><a href="fann.constants.php#constant.fann-nettype-shortcut">FANN_NETTYPE_SHORTCUT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Chaque couche a des connexions à toutes les couches suivantes.
     </span>
    </dd>
   
   </dl>
  <dl id="constants.fann-e">
   <strong class="title">Errors</strong>
   
    <dt id="constant.fann-e-no-error">
     <strong><code><a href="fann.constants.php#constant.fann-e-no-error">FANN_E_NO_ERROR</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Pas d&#039;erreur.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-open-config-r">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-open-config-r">FANN_E_CANT_OPEN_CONFIG_R</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;ouvrir le fichier de configuration en lecture.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-open-config-w">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-open-config-w">FANN_E_CANT_OPEN_CONFIG_W</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;ouvrir le fichier de configuration en écriture.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-wrong-config-version">
     <strong><code><a href="fann.constants.php#constant.fann-e-wrong-config-version">FANN_E_WRONG_CONFIG_VERSION</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Mauvaise version du fichier de configuration.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-read-config">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-read-config">FANN_E_CANT_READ_CONFIG</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Erreur de lecture des informations du fichier de configuration.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-read-neuron">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-read-neuron">FANN_E_CANT_READ_NEURON</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Erreur de lecture des informations du neurone du fichier de configuration.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-read-connections">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-read-connections">FANN_E_CANT_READ_CONNECTIONS</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Erreur de lecture des connexions du fichier de configuration.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-wrong-num-connections">
     <strong><code><a href="fann.constants.php#constant.fann-e-wrong-num-connections">FANN_E_WRONG_NUM_CONNECTIONS</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Le nombre de connexions n&#039;est pas égal au nombre attendu.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-open-td-w">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-open-td-w">FANN_E_CANT_OPEN_TD_W</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;ouvrir le fichier de données d&#039;entraînement en écriture.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-open-td-r">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-open-td-r">FANN_E_CANT_OPEN_TD_R</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;ouvrir le fichier de données d&#039;entraînement en lecture.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-read-td">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-read-td">FANN_E_CANT_READ_TD</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Erreur de lecture des données d&#039;entraînement du fichier.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-allocate-mem">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-allocate-mem">FANN_E_CANT_ALLOCATE_MEM</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;allouer de la mémoire.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-train-activation">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-train-activation">FANN_E_CANT_TRAIN_ACTIVATION</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;entraîner avec la fonction d&#039;activation sélectionnée.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-use-activation">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-use-activation">FANN_E_CANT_USE_ACTIVATION</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;utiliser la fonction d&#039;activation sélectionnée.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-train-data-mismatch">
     <strong><code><a href="fann.constants.php#constant.fann-e-train-data-mismatch">FANN_E_TRAIN_DATA_MISMATCH</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Différences irréconciliables entre deux structures fann_train_data.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-cant-use-train-alg">
     <strong><code><a href="fann.constants.php#constant.fann-e-cant-use-train-alg">FANN_E_CANT_USE_TRAIN_ALG</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Impossible d&#039;utiliser l&#039;algorithme d&#039;entraînement sélectionné.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-train-data-subset">
     <strong><code><a href="fann.constants.php#constant.fann-e-train-data-subset">FANN_E_TRAIN_DATA_SUBSET</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Tentative de prendre un sous-ensemble qui n&#039;est pas dans l&#039;ensemble d&#039;entraînement.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-index-out-of-bound">
     <strong><code><a href="fann.constants.php#constant.fann-e-index-out-of-bound">FANN_E_INDEX_OUT_OF_BOUND</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      L&#039;index est hors limite.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-scale-not-present">
     <strong><code><a href="fann.constants.php#constant.fann-e-scale-not-present">FANN_E_SCALE_NOT_PRESENT</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Les paramètres de mise à l&#039;échelle ne sont pas présents.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-input-no-match">
     <strong><code><a href="fann.constants.php#constant.fann-e-input-no-match">FANN_E_INPUT_NO_MATCH</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Le nombre de neurones d&#039;entrée dans l&#039;ann et les données ne correspondent pas.
     </span>
    </dd>
   
   
    <dt id="constant.fann-e-output-no-match">
     <strong><code><a href="fann.constants.php#constant.fann-e-output-no-match">FANN_E_OUTPUT_NO_MATCH</a></code></strong>
     (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
    </dt>
    <dd>
     <span class="simpara">
      Le nombre de neurones de sortie dans l&#039;ann et les données ne correspondent pas.
     </span>
    </dd>
   
  </dl>
 </p>
</div>
<?php manual_footer($setup); ?>