mirror of
https://github.com/php/doc-ru.git
synced 2025-08-16 18:22:04 +00:00
@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: e41806c30bf6975e452c0d4ce35ab0984c2fa68c Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-get-cascade-output-stagnation-epochs" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_get_cascade_output_stagnation_epochs</refname>
|
||||
<refpurpose>Возвращает количество каскадных периодов застоя кандидатов</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>int</type><methodname>fann_get_cascade_output_stagnation_epochs</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Количество каскадных периодов застоя кандидатов определяет количество периодов обучения,
|
||||
которое будет продолжено без изменения оценки MSE с помощью <function>fann_get_cascade_output_change_fraction</function>.
|
||||
</para>
|
||||
<para>
|
||||
Смотрите дополнительную информацию об этом параметре в <function>fann_get_cascade_output_change_fraction</function>.
|
||||
</para>
|
||||
<para>
|
||||
По умолчанию количество периодов застоя каскадного вывода равно 12.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Количество каскадных периодов застоя кандидатов или &false; в случае возникновения ошибки.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_set_cascade_output_stagnation_epochs</function></member>
|
||||
<member><function>fann_get_cascade_output_change_fraction</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-activation-steepness-hidden" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_activation_steepness_hidden</refname>
|
||||
<refpurpose>Устанавливает крутизну крутизны активации для всех нейронов во всех скрытых слоях</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_activation_steepness_hidden</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>float</type><parameter>activation_steepness</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Устанавливает крутизну крутизны активации для всех нейронов во всех скрытых слоях.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>activation_steepness</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Крутизна активации.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_set_activation_steepness</function></member>
|
||||
<member><function>fann_set_activation_steepness_layer</function></member>
|
||||
<member><function>fann_set_activation_steepness_output</function></member>
|
||||
<member><function>fann_get_activation_steepness</function></member>
|
||||
<member><function>fann_set_activation_function</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
@ -0,0 +1,93 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-activation-steepness-layer" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_activation_steepness_layer</refname>
|
||||
<refpurpose>Устанавливает крутизну активации для всех нейронов в указанном номере слоя</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_activation_steepness_layer</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>float</type><parameter>activation_steepness</parameter></methodparam>
|
||||
<methodparam><type>int</type><parameter>layer</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Установите крутизну активации для всех нейронов в слое номер <literal>layer</literal>,
|
||||
считая входной слой как слой 0.
|
||||
</para>
|
||||
<para>
|
||||
Невозможно установить крутизну активации нейронов во входном слое.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>activation_steepness</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Крутизна активации.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>layer</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Номер слоя.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_set_activation_steepness</function></member>
|
||||
<member><function>fann_set_activation_steepness_hidden</function></member>
|
||||
<member><function>fann_set_activation_steepness_output</function></member>
|
||||
<member><function>fann_get_activation_steepness</function></member>
|
||||
<member><function>fann_set_activation_function</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-activation-steepness-output" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_activation_steepness_output</refname>
|
||||
<refpurpose>Устанавливает крутизну активации в выходном слое</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_activation_steepness_output</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>float</type><parameter>activation_steepness</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Устанавливает крутизну активации в выходном слое.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>activation_steepness</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Крутизна активации.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_set_activation_steepness</function></member>
|
||||
<member><function>fann_set_activation_steepness_layer</function></member>
|
||||
<member><function>fann_set_activation_steepness_hidden</function></member>
|
||||
<member><function>fann_get_activation_steepness</function></member>
|
||||
<member><function>fann_set_activation_function</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
113
reference/fann/functions/fann-set-activation-steepness.xml
Normal file
113
reference/fann/functions/fann-set-activation-steepness.xml
Normal file
@ -0,0 +1,113 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 9ee27f088aefb55de20529000792c4deefc0226b Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-activation-steepness" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_activation_steepness</refname>
|
||||
<refpurpose>Устанавливает крутизну активации для указанного нейрона и номера слоя</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_activation_steepness</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>float</type><parameter>activation_steepness</parameter></methodparam>
|
||||
<methodparam><type>int</type><parameter>layer</parameter></methodparam>
|
||||
<methodparam><type>int</type><parameter>neuron</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Установите крутизну активации для нейрона номер <literal>neuron</literal> в слое номер <literal>layer</literal>,
|
||||
считая входной слой как слой 0.
|
||||
</para>
|
||||
<para>
|
||||
Невозможно установить крутизну активации нейронов во входном слое.
|
||||
</para>
|
||||
<para>
|
||||
Крутизна функции активации кое-что говорит о том, насколько быстро функция активации переходит от минимума к максимуму.
|
||||
Высокое значение функции активации также даст более агрессивное обучение.
|
||||
</para>
|
||||
<para>
|
||||
При обучении нейронных сетей, в которых выходные значения должны быть крайними (обычно 0 и 1, в зависимости от функции активации),
|
||||
может использоваться крутая функция активации (например, 1.0).
|
||||
</para>
|
||||
<para>
|
||||
По умолчанию крутизна активации составляет 0.5.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>activation_steepness</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Крутизна активации.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>layer</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Номер слоя.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>neuron</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Номер нейрона.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_set_activation_steepness_layer</function></member>
|
||||
<member><function>fann_set_activation_steepness_hidden</function></member>
|
||||
<member><function>fann_set_activation_steepness_output</function></member>
|
||||
<member><function>fann_get_activation_steepness</function></member>
|
||||
<member><function>fann_set_activation_function</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
92
reference/fann/functions/fann-set-callback.xml
Normal file
92
reference/fann/functions/fann-set-callback.xml
Normal file
@ -0,0 +1,92 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: 83b687a1599117968687c2606a50e8c83fe9a3f3 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-callback" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_callback</refname>
|
||||
<refpurpose>Устанавливает callback-функцию для использования во время обучения</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_callback</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>callable</type><parameter>callback</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Устанавливает callback-функцию для использования во время обучения.
|
||||
Это означает, что она вызывается из <function>fann_train_on_data</function> или <function>fann_train_on_file</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>callback</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Поставляемая callback-функция принимает следующие параметры:
|
||||
<simplelist>
|
||||
<member><literal>ann</literal> - Ресурс (<type>resource</type>) нейронной сети</member>
|
||||
<member><literal>train</literal> - Ресурс (<type>resource</type>) данных для обучения
|
||||
или &null;, если вызывается из <function>fann_train_on_file</function></member>
|
||||
<member><literal>max_epochs</literal> - Максимальное количество периодов, в которых должно продолжаться обучение</member>
|
||||
<member><literal>epochs_between_reports</literal> - Количество периодов между вызовами этой функции</member>
|
||||
<member><literal>desired_error</literal> - Желаемая функция <function>fann_get_MSE</function> или
|
||||
<function>fann_get_bit_fail</function>, в зависимости от функции остановки, выбранной
|
||||
<function>fann_set_train_stop_function</function></member>
|
||||
<member><literal>epochs</literal> - Текущий период</member>
|
||||
</simplelist>
|
||||
</para>
|
||||
<para>
|
||||
Callback-функция должна вернуть &true;. Если она вернёт &false;, обучение будет прекращено.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_train_on_data</function></member>
|
||||
<member><function>fann_train_on_file</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-cascade-activation-functions" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_cascade_activation_functions</refname>
|
||||
<refpurpose>Устанавливает массив каскадных функций активации кандидатов</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_cascade_activation_functions</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>array</type><parameter>cascade_activation_functions</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Устанавливает массив каскадных функций активации кандидатов.
|
||||
</para>
|
||||
<para>
|
||||
Смотрите <function>fann_get_cascade_num_candidates</function> для описания того,
|
||||
какие нейроны-кандидаты будут сгенерированы этим массивом.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>cascade_activation_functions</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Массив каскадных функций активации кандидатов.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_get_cascade_activation_functions_count</function></member>
|
||||
<member><function>fann_set_cascade_activation_functions</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-cascade-activation-steepnesses" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_cascade_activation_steepnesses</refname>
|
||||
<refpurpose>Устанавливает массив крутизны включения кандидатов в каскад</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_cascade_activation_steepnesses</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>array</type><parameter>cascade_activation_steepnesses_count</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Устанавливает массив крутизны включения кандидатов в каскад.
|
||||
</para>
|
||||
<para>
|
||||
Смотрите <function>fann_get_cascade_num_candidates</function> для описания того,
|
||||
какие нейроны-кандидаты будут сгенерированы этим массивом.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>cascade_activation_steepnesses_count</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Массив крутизны включения кандидатов в каскад.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_get_cascade_activation_steepnesses</function></member>
|
||||
<member><function>fann_get_cascade_activation_steepnesses_count</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-cascade-candidate-limit" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_cascade_candidate_limit</refname>
|
||||
<refpurpose>Устанавливает лимит кандидатов</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_cascade_candidate_limit</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>float</type><parameter>cascade_candidate_limit</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Устанавливает лимит кандидатов.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>cascade_candidate_limit</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Лимит кандидатов.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_get_cascade_candidate_limit</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- EN-Revision: ea7caabb165509dbf6796bbf07d697f871c462c2 Maintainer: sergey Status: ready -->
|
||||
<!-- Reviewed: no -->
|
||||
<refentry xml:id="function.fann-set-cascade-candidate-stagnation-epochs" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>fann_set_cascade_candidate_stagnation_epochs</refname>
|
||||
<refpurpose>Устанавливает количество каскадных периодов застоя кандидатов</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<type>bool</type><methodname>fann_set_cascade_candidate_stagnation_epochs</methodname>
|
||||
<methodparam><type>resource</type><parameter>ann</parameter></methodparam>
|
||||
<methodparam><type>int</type><parameter>cascade_candidate_stagnation_epochs</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
Устанавливает количество каскадных периодов застоя кандидатов.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term><parameter>ann</parameter></term>
|
||||
<listitem>
|
||||
&fann.ann.description;
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<term><parameter>cascade_candidate_stagnation_epochs</parameter></term>
|
||||
<listitem>
|
||||
<para>
|
||||
Количество каскадных периодов застоя кандидатов.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
&fann.return.bool;
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><function>fann_get_cascade_candidate_stagnation_epochs</function></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
indent-tabs-mode:nil
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
Reference in New Issue
Block a user