Ficheiro:Error surface of a linear neuron for a single training case.png

Error_surface_of_a_linear_neuron_for_a_single_training_case.png(468 × 372 píxeis, tamanho: 7 kB, tipo MIME: image/png)

Descrição do ficheiro

Descrição
English: On the x-axis is the output, y, of a linear neuron and on the y-axis is the error, E, of the output compared to a target output of zero. The error is calculated by squaring the difference between the actual and target output. This demonstrates that training of a neural network can be thought of as an optimization problem where the correct output involves finding the minima of the parabola.
Data
Origem Created using MatLab
Autor AI456

Source code

function [output] = Plot_Error_Surface(x, expected)
% Plots the error surface for a single output unit with the given
% expected output.
hold all
for e = expected
   y = (e - x).^2; 
   plot(x, y)
   grid on 
   title ('Error Surface for a Single Training Case');
   xlabel('y')
   ylabel('E')
end
hold off

Plot_Error_Surface(-5:0.5:5, 0)

Licenciamento

Eu, titular dos direitos de autor desta obra, publico-a com as seguintes licenças:
GNU head É concedida permissão para copiar, distribuir e/ou modificar este documento nos termos da Licença de Documentação Livre GNU, versão 1.2 ou qualquer versão posterior publicada pela Free Software Foundation; sem Secções Invariantes, sem textos de Capa e sem textos de Contra-Capa. É incluída uma cópia da licença na secção intitulada GNU Free Documentation License.
w:pt:Creative Commons
atribuição partilha nos termos da mesma licença
A utilização deste ficheiro é regulada nos termos da licença Creative Commons - Atribuição-CompartilhaIgual 3.0 Não Adaptada.
Pode:
  • partilhar – copiar, distribuir e transmitir a obra
  • recombinar – criar obras derivadas
De acordo com as seguintes condições:
  • atribuição – Tem de fazer a devida atribuição da autoria, fornecer uma hiperligação para a licença e indicar se foram feitas alterações. Pode fazê-lo de qualquer forma razoável, mas não de forma a sugerir que o licenciador o apoia ou subscreve o seu uso da obra.
  • partilha nos termos da mesma licença – Se remisturar, transformar ou ampliar o conteúdo, tem de distribuir as suas contribuições com a mesma licença ou uma licença compatível com a original.
Pode escolher a licença que quiser.

Legendas

Adicione uma explicação de uma linha do que este ficheiro representa

Elementos retratados neste ficheiro

retrata

Histórico do ficheiro

Clique uma data e hora para ver o ficheiro tal como ele se encontrava nessa altura.

Data e horaMiniaturaDimensõesUtilizadorComentário
atual15h43min de 12 de fevereiro de 2013Miniatura da versão das 15h43min de 12 de fevereiro de 2013468 × 372 (7 kB)AI456{{subst:Upload marker added by en.wp UW}} {{Information |Description = {{en|On the x-axis is the output, y, of a linear neuron and on the y-axis is the error, E, of the output compared to a target output of zero. The error is calculated by squaring the...

A seguinte página usa este ficheiro:

Utilização global do ficheiro

As seguintes wikis usam este ficheiro:

Metadados