*****......SALUDOS!!...BIENVENIDOS.....*****

Systemkiricorp!

FORO ACTIVO

HOLA!! A TODA LA COMUNIDAD DE PROGRAMADORES
Este foro es presentado por sk
LA MATERIA DE INTELIGENCIA ARTIFICIAL

INNOVANDO Y RECREANDO IDEAS PARA LA VIDA

INICIANDO

El hombre cada dia es mejor

¿QUE ES LA INTELIGENCIA ARTIFICIAL?


Él termino "inteligencia artificial" fue acuñado formalmente en 1956 durante la conferencia de Darthmounth, más para entonces ya se había estado trabajando en ello durante cinco años en los cuales se había propuesto muchas definiciones distintas que en ningún caso habían logrado ser aceptadas totalmente por la comunidad investigadora. La AI es una de las disciplinas más nuevas que junto con la genética moderna es el campo en que la mayoría de los científicos " más les gustaría trabajar".

lunes, 26 de abril de 2010

Act 220310_2-SIMULACION DE UNA RED NEURONAL


FIG.1

FIG.2

FIG.3

GENERACION DE LAS ITERACIONES.


CODIGO FUENTE.
mport javax.swing.*;
public class neuron{
public static void main (String args[])
{

double p[]={2,0,-2,0};
double pp[] ={1,-1,1,2};

double b,c,a,w11,w12,p1,p2,t,e;
for (int i=0;i<=3;i++){ w11= 3.3; w12= -1.8; b=0.5; p1= (p[i]* w11); p2=(pp[i] *w12); c=(p1+p2+b); if(c>0){
a=1;
t=1;
e=b-b;
JOptionPane.showMessageDialog(null," Jhon Charly,kirycorp y Megan"+"\n"+" iteracion numero "+i+"\n"+" n= "+c+"\n"+
" a= "+a+"\n"+" t= "+t+"\n"+" e= "+e+"\n"+" w11= "+w11+"\n"+" w12= "+w12) ;
System.out.println("iteracion #="+i);
System.out.println("n="+c);
System.out.println("a="+a);
System.out.println("t="+t);
System.out.println("e="+e);
System.out.println("w11="+w11);
System.out.println("w12="+w12);
}else if(c<0){

a=-1;
t=-1;
e=b-b;
JOptionPane.showMessageDialog(null," Jhon Charly,kirycorp y Megan"+"\n"+" iteracion numero "+i+"\n"+" n= "+c+"\n"+
" a= "+a+"\n"+" t= "+t+"\n"+" e= "+e+"\n"+" w11= "+w11+"\n"+" w12= "+w12) ;
System.out.println("iteracion #="+i);
System.out.println("n="+c);
System.out.println("a="+a);
System.out.println("t="+t);
System.out.println("e="+e);
System.out.println("w11="+w11);
System.out.println("w12="+w12);
}
}
}
}

No hay comentarios:

Publicar un comentario