1
0
mirror of https://github.com/php/doc-ru.git synced 2026-03-26 08:42:13 +01:00
Files
archived-doc-ru/reference/fann/functions/fann-create-sparse-array.xml
Sergey Panteleev 300ffa98fb Исправление форматирования (#362)
[skip-spellcheck]
[skip-lint]
2021-10-21 09:47:52 +03:00

95 lines
3.5 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: e41806c30bf6975e452c0d4ce35ab0984c2fa68c Maintainer: sergey Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.fann-create-sparse-array" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>fann_create_sparse_array</refname>
<refpurpose>Создаёт стандартную нейронную сеть обратного распространения, которая не полностью подключена, используя массив размеров слоёв</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>resource</type><methodname>fann_create_sparse_array</methodname>
<methodparam><type>float</type><parameter>connection_rate</parameter></methodparam>
<methodparam><type>int</type><parameter>num_layers</parameter></methodparam>
<methodparam><type>array</type><parameter>layers</parameter></methodparam>
</methodsynopsis>
<para>
Создаёт стандартную нейронную сеть обратного распространения, которая не полностью подключена, используя массив размеров слоёв.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<variablelist>
<varlistentry>
<term><parameter>connection_rate</parameter></term>
<listitem>
<para>
Скорость соединения определяет, сколько соединений будет в сети. Если скорость соединения
установлена на 1, сеть будет полностью подключена, но если она установлена на 0,5, будет установлена только половина соединений.
Скорость соединения 1 даст тот же результат, что и <function>fann_create_standard</function>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>num_layers</parameter></term>
<listitem>
<para>
Общее количество слоёв, включая входной и выходной слой.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>layers</parameter></term>
<listitem>
<para>
Массив размеров слоёв.
</para>
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
Возвращает ресурс нейронной сети в случае успешного выполнения или &false; в случае возникновения ошибки.
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>fann_create_sparse</function></member>
<member><function>fann_create_standard</function></member>
<member><function>fann_create_shortcut</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
-->