亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? javascript

?? MATLAB,VB做成的神經網絡計算程序
??
?? 第 1 頁 / 共 4 頁
字號:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>JavaScript版本人工智能 編程無限整理</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312"><!-- 24feb01A.html developmental version --><!-- There is no warranty for what this software does. --><!-- This software is in the public domain and may be  --><!-- adapted for any legitimate purpose on any Web site. -->
<META content="AI in JavaScript for MSIE 4.01+" name=description>
<SCRIPT language=JavaScript>
var act = 0; // act(ivation) for STM() and stringEffect().
var attn = 1; // "attention" as opposed to reentrant thinking.
var auddata = "pho act pov beg ctu utg"; // for use in audShow().
var beg = 0; // beg(inning) of a word? (1 = "yes").
var blankt = 0; // a "blank-time" of no input.
var bulge = 0; // for Activate() and spreadAct().
var c = ""; // used in Audition()
var clue = "Tutorial is the default mode of the AI.";
// DIY AI:  You may CAREFULLY modify the CNS value:
var cns = 1024; // Central Nervous System array size limit
var conversing = false; // flag for Audition(); CR(); cutOut();
var ctu = 1; // continuation?  (1 = "yes").
var death = false; // for use in halting the AI.
var dialog = ""; // for use in Transcript()
var endata = "nen act fin g fex rv"; // for use in enShow().
var enx = 0; // for transfers from psi to En(glish) lexical array.
var en4 = 0; // declare en4 here to make it a global variable.
var eot = 0; // end-of-transmission for use in CR() and Audition().
var etc = 0; // for use in Activate() etc.
var f = 0; // concept fiber in oldConcept, etc.
var fex = 0; // f(iber)-ex or fiber-out (from psi to English).
var fin = 0; // f(iber)-in or fiber-in (from English into psi).
var g = 0; // grammar category for newConcept().
var gram1 = ""; // first of six variables in "audRecall()" function
var html = ""; // Hyper Text Markup Language
var i = 0; // i(ndex) of loops.
var inbuffer = ""; // build-up of user input in Audition()
var j = 0; // index for a loop nested inside an i-loop.
var len = 0; // word-length for Audition() and Retro().
var meme = 0; // for use in psiDamp, etc.
var message = "Message from the Artificial Mind"; // for Say()
var midway = 0; // for use in Comparator().
var motjuste = ""; // best word for selection as component of thought
var msg = 0; // for counting in tutorial PhD() mode.
var mt = 0; // "move-tag" for Comparator().
var nen = 0; // n(umber of) En(glish) lexical concept after Bootstrap().
var nlt = 5; // "not-later-than" for Audition() and CR().
var nonce = 1; // time "for the nonce" in Troubleshoot mode
var onset = 0; // for Retro() etc.
var output = "";  // for use with Speech() and Say().
var par = 1; // par(se) flag for newConcept().
var pho = ""; // pho(neme) for use in STM().
var pov = "*"; // point-of-view default "internal" value.
var pre = 0; // previous associand for Instantiate().
var prevg = 0; // previous-grammar-category for newConcept().
var psi1 = 0; // first of six elements in a Psi concept panel.
var psidata = "f/mt act pre pos seq enx"; // for use in psiShow().
var rv = 0; // recall-vector for Retro() etc.
var t = 0; // time "t" incremented in Audition() and CR().
var talk = false; // flag for toggling eventual "Speech" mode.
var tdec = 0; // "time-decrement" for Comparator().
var tov = 1; // time-of-voice for use in CR().
var trouble = true; // for use in Security().
var tse = 0; // time-(in)-stringEffect.
var tsml = ""; // troubleshoot-ml for use in audShow().
var tutor = true; // flag for Tutorial mode.
var unk = ""; // general variable for "unknown" items
var userline = "" // from CR() for Transcribe()
var utg = 0; // ultimate-tag of a word for STM().
var zone = 0; // time-zone for Activate() and spreadAct()

// Initialize the mindcore Psi I.A.W. AI Standards:
Psi = new Array(cns);
for (i = 0; i < cns; i++) {
Psi[i] = new psiNode(" ",0," "," "," "," ");
}

// Initialize the English Lexicon I.A.W. AI Standards, e.g.,
// could also include French frLexicon or Japanese jpLexicon
// for purposes of polyglot robot and/or machine translation:
enLexicon = new Array(cns);
for (i = 0; i < cns; i++) {
enLexicon[i] = new enNode(" ",0," "," "," "," ");
}

// Initialize the Auditory Memory Channel:
audMemChan = new Array(cns);
for (i = 0; i < cns; i++) {
audMemChan[i] = new audEngram(" ",0," "," "," "," ");
}

// Bootstrap() is called by BODY onLoad
// and should run only once in each session.
// It should therefore be outside of the main loop.
// Here any given expert knowledge can be loaded --
// chessplayer, physicist, programmer -- whatever.
function Bootstrap() {
HCI(); // run HCI so that only CHECKED items appear.

// The next line sets up the concept fiber for "I":
t=1;  mt=50; act=0; pre=0;  pos=5; seq=61; enx=50; Instantiate();
// We establish the mindcore fiber of "know":
t=6;  mt=61; act=0; pre=50; pos=8; seq=56; enx=61; Instantiate();
// We establish the mindcore fiber of "you" ("other"):
t=10; mt=56; act=0; pre=61; pos=5; seq=0;  enx=56; Instantiate();

// "I" ("self") is mindcore octave seven, overall concept #50:
t=1;  mt=50; act=0; fin=56; g=5; fex=50; rv=1; Attach();
// "know" is mindcore octave eight, concept #61:
t=6;  mt=61; act=0; fin=61; g=8; fex=61; rv=3; Attach();
// "you" ("other") is mindcore octave seven, concept #56:
t=10; mt=56; act=0; fin=50; g=5; fex=56; rv=8; Attach();


t=1;  pho="I"; act=0; pov="*"; beg=1; ctu=0; utg=50; STM(); // "I"

t=3;  pho="K"; act=0; pov="*"; beg=1; ctu=1; utg=0;  STM(); // "K"
t=4;  pho="N"; act=0; pov="*"; beg=0; ctu=1; utg=0;  STM(); // "N"
t=5;  pho="O"; act=0; pov="*"; beg=0; ctu=1; utg=0;  STM(); // "O"
t=6;  pho="W"; act=0; pov="*"; beg=0; ctu=0; utg=61; STM(); // "W"

t=8;  pho="Y"; act=0; pov="*"; beg=1; ctu=1; utg=0;  STM(); // "Y"
t=9;  pho="O"; act=0; pov="*"; beg=0; ctu=1; utg=0;  STM(); // "O"
t=10; pho="U"; act=0; pov="*"; beg=0; ctu=0; utg=56; STM(); // "U"

// you ... ... [ creation of the deep mindcore Psi nodes ]
t=14; mt=56; act=0; pre=0;  pos=5; seq=62; enx=56; Instantiate();
// ... see ...
t=18; mt=62; act=0; pre=56; pos=8; seq=65; enx=62; Instantiate();
// ... ... me.
t=21; mt=50; act=0; pre=62; pos=5; seq=0;  enx=65; Instantiate();

// you ... ... [ creation of the mid-level English lexical nodes ]
t=14; mt=56; act=0; fin=50; g=5; fex=56; rv=12; Attach();
// ... see ...
t=18; mt=62; act=0; fin=62; g=8; fex=62; rv=16; Attach();
// ... ... me
t=21; mt=65; act=0; fin=56; g=5; fex=50; rv=20; Attach();

t=12; pho="Y"; act=0; pov="*"; beg=1; ctu=1; utg=0; STM(); // "Y"
t=13; pho="O"; act=0; pov="*"; beg=0; ctu=1; utg=0; STM(); // "O"
t=14; pho="U"; act=0; pov="*"; beg=0; ctu=0; utg=56; STM(); // "U"

t=16; pho="S"; act=0; pov="*"; beg=1; ctu=1; utg=0; STM(); // "S"
t=17; pho="E"; act=0; pov="*"; beg=0; ctu=1; utg=0; STM(); // "E"
t=18; pho="E"; act=0; pov="*"; beg=0; ctu=0; utg=62; STM(); // "E"

t=20; pho="M"; act=0; pov="*"; beg=1; ctu=1; utg=0; STM(); // "M"
t=21; pho="E"; act=0; pov="*"; beg=0; ctu=0; utg=65; STM(); // "E"

mt = 0; // reset for safety.
pre = 0; // reset for safety.
utg=0; // reset for safety.
t = (t+1); // create a gap of time.
blankt = t; // henceforward to be calculated
nlt = t;
pho=" "; // reset to prevent reduplication.
nen = 65;  // or higher if any irregular forms intervene.
output = "Bootstrap has loaded.";
Voice();
// 24feb2001: loop for sake of Tutorial display.
TID=window.setTimeout("Security();",59000);
} // end of Bootstrap() sequence with supernumerary "me" (65).


// HCI() is the Human-Computer Interface
// between the user and the AI as a program.
// HCI() is called from buttons and checkboxes.
function HCI() {

if (document.all["cb3"].checked == true) {
  document.all["cb2"].checked = false; // turn off Transcript
  trouble = true;
  msg = 9; // for a cluster of Troubleshoot messages in PhD().
} // end of if-clause to see if "Troubleshoot" is checked.
if (document.all["cb3"].checked == false) {
  trouble = false;
} // end of if-clause to see if Troubleshoot is NOT checked.

if (document.all["cb2"].checked == true) {
  document.all["cb3"].checked = false; // turn off Troubleshoot
  hardcopy = true;
  msg = 4; // for cluster of Transcript messages in PhD().
  now = new Date(); 
adcopy=
("<font size='+2'>Transcript of " + now + "<\/b><\/font>");
document.all.souvenir.innerHTML = adcopy;
} // end of if-clause to see if "Transcript" is checked.
if (document.all["cb2"].checked == false) {
   hardcopy = false;
} // end of if-clause to see if Transcript is NOT checked.
// DIY AI:  Always return control to user:
document.forms[0].ear.focus(); // await user input.
} // end of HCI() function


// PhD() ("Philosophiae Doctor") is called by the Tutorial
// checkbox and stands in isolation from HCI() so that
// unique events may happen in the Tutorial mode.
function PhD() {

if (document.all["cb4"].checked == true) {
  tutor = true; // a flag for Homunculus(), etc.
  document.all["teacher"].style.visibility='visible';

msg++;
if (msg==1)  clue="Tutorial mode will cycle through its messages.";
if (msg==2)  clue="Special messages may appear for special modes.";
if (msg==3)  clue="Entry of user input will stall Tutorial messages.";
if (msg==4)  clue="Please use no punctuation or case-shifting.";
if (msg==5)  clue="Transcript: Aim for a dialog that shows reasoning.";
if (msg==6)  clue="As the Mind advances, test it psychologically.";
if (msg==7)  clue="With transcripts we may measure the IQ of the AI.";
if (msg==8)  clue="You may give away transcripts as demo souvenirs.";
if (msg==9)  clue="Transcript paper may carry advertisements.";
if (msg==10) clue="(Troubleshoot): Three columns show three arrays.";
if (msg==11) clue="The left column shows fibers in the Psi mindcore.";
if (msg==12) clue="There can be only one mindcore of Psi concepts.";
if (msg==13) clue="A list is in Standards in Artificial Intelligence.";
if (msg==14) clue="Note the residual Psi activations during reentry.";
if (msg==15) clue="Residual activation maintains the chain of thought.";
if (msg==16) clue="The ego-concept may need increments of activation.";
if (msg==17) clue="Incrementing ego may restart a chain of thought.";
if (msg==18) clue="The middle column shows the English lexicon.";
if (msg==19) clue="Lexical nodes do not contain the actual words.";
if (msg==20) clue="Lexical nodes control words in auditory memory.";
if (msg==21) clue="The lexical array may contain multiple languages.";
if (msg==22) clue="For each language there must be its own syntax.";
if (msg==23) clue="Syntax is hand-coded into the early AI minds.";
if (msg==24) clue="The AI may learn new syntax in a looping spiral.";
if (msg==25) clue="The right column shows auditory memory engrams.";
if (msg==26) clue="The lexical rv number localizes the audEngram.";
if (msg==27) clue="User input is shown in red for maximum effect.";
if (msg==28) clue="Reentry is the output of the AI reentering the AI.";
if (msg==29) clue="You may handcode bootstraps based on Troubleshoot.";
if (msg==30) clue="To click Transcript, first unclick Troubleshoot.";

clueplus = ("<font size='+3' color='navy'>" + clue + "<\/b><\/font>");
document.all.teacher.innerHTML = clueplus;

 if (msg>29) msg = 0; // loop back through the Tutorial messages.

} // end of if-clause to see if Tutorial is checked.
if (document.all["cb4"].checked == false) {
   document.all["teacher"].style.visibility='hidden';
   tutor = false;
} // end of if-clause to see if Tutorial is NOT checked.
} // end of PhD() function


// psiDamp() is called from nounPhrase() or Predicate()
// to de-activate a concept that was briefly activated.
function psiDamp() {
// 7feb2001 -- we use tov to avoid damping reentered thoughts.
for (i = tov; i>midway; --i) {
Psi[i].psiExam(); // cycle through recent Psi nodes
if (psi1 == meme) Psi[i] = new psiNode(psi1,0,psi3,psi4,psi5,psi6);
} // end of backwards loop
} // psiDamp returns to nounPhrase, Predicate, etc.

// enDamp() is called from nounPhrase() or Predicate()
// to de-activate all concepts in the English lexicon.
function enDamp() {
for (i = (t + 1); i>midway; --i) {
  enLexicon[i].enExam(); // gain access to each node
  enLexicon[i] = new enNode(en1,0,en3,en4,en5,en6);
} // end of backwards loop
} // enDamp returns to nounPhrase and Predicate. 


// audDamp() is called from Retro() upon recognition of
// a known word, and resets auditory engram activations
// to zero so that additional words can be recognized.
function audDamp() {
 for (i = t; i > midway; --i) {  // loop backwards through time
  audMemChan[i].audRecall(); // activate the audEngrams
  audMemChan[i] = new audEngram(gram1,0,gram3,gram4,gram5,gram6);
  }
return;
}  // end of audDamp()

// Shutdown() is called by clicking the "Halt"
// button or by pressing the [ESCAPE] key, 
// and is supposed to stop the AI program.
function Shutdown() {

if (document.all["cb5"].checked == true) {
  death = true; // a flag to halt the alife
  message = "AI halted by user.";
  Voice();
} // end of if-clause to see if HALT is checked.
if (document.all["cb5"].checked == false) {
  death = false; // so that unchecking revives the AI.
} // end of if-clause to see if HALT is NOT checked.
  Security();
} // end of Shutdown()

// Destroy() is called from the Control Panel
// and is meant to provide extreme security
// at all stages of the creation of the AI.
function Destroy() {
  death = true;
  output = "Closing the window will destroy the AI.";
  Voice();
  TID=window.setTimeout("window.close();",500);
} // end of Destroy()


// Transcribe() is called from Transcript()
// and serves the purpose of holding the "dialog".
function Transcribe() {
if (hardcopy == true) {  
  dialog += ("<P>Human: <b>" + userline + '<\/b>');
  dialog += ("<BR>Robot: " + output); // from the AI
  } // end of if-clause
} // end of Transcribe()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩av一区二| 亚洲一区在线观看免费| 国产精品久久久久一区二区三区共| 亚洲欧美视频在线观看视频| 蜜臀91精品一区二区三区 | 欧美不卡一二三| 樱花影视一区二区| 成人网在线免费视频| 欧美一区二区三区免费| 一区二区三区.www| 成人成人成人在线视频| 久久综合九色综合97婷婷女人| 亚洲国产综合在线| 一本久久综合亚洲鲁鲁五月天| 欧美激情一区在线| 国产自产高清不卡| 精品1区2区在线观看| 亚洲成人777| 欧美日韩在线电影| 亚洲综合丁香婷婷六月香| 成人精品小蝌蚪| 久久精品亚洲乱码伦伦中文 | 欧美丝袜自拍制服另类| 一区二区高清视频在线观看| 国产精品一区不卡| 2020国产成人综合网| 久久国产综合精品| 精品乱人伦一区二区三区| 日本午夜精品视频在线观看 | 99精品国产91久久久久久 | 亚洲国产wwwccc36天堂| 在线观看国产日韩| 亚洲国产视频网站| 欧美疯狂性受xxxxx喷水图片| 亚洲午夜精品在线| 欧美日韩精品二区第二页| 亚洲午夜久久久久久久久久久| 色94色欧美sute亚洲线路二| 亚洲一区视频在线| 欧美日韩dvd在线观看| 日韩精品一二三| 精品处破学生在线二十三| 久久99久国产精品黄毛片色诱| 欧美大黄免费观看| 国产精品夜夜嗨| 国产免费观看久久| 成人激情开心网| 最新国产精品久久精品| 日本丶国产丶欧美色综合| 亚洲一区二区黄色| 99久久精品国产麻豆演员表| 亚洲欧美二区三区| 91麻豆精品久久久久蜜臀| 美腿丝袜亚洲色图| 国产日韩欧美在线一区| bt7086福利一区国产| 亚洲久草在线视频| 日韩亚洲电影在线| 国产成人精品免费在线| 亚洲精品老司机| 6080yy午夜一二三区久久| 国产一区二区不卡在线| 自拍偷拍亚洲欧美日韩| 欧美一区二区大片| 不卡av在线网| 蜜臀久久99精品久久久久宅男| 久久一夜天堂av一区二区三区| 97精品国产露脸对白| 免费的国产精品| 一色桃子久久精品亚洲| 日韩视频免费观看高清完整版在线观看 | 99久久精品99国产精品| 日本不卡一区二区三区| 国产精品麻豆视频| 日韩一区二区三区在线| av一区二区久久| 久久99久久久久| 亚洲一区在线观看网站| 久久久国产一区二区三区四区小说| 日本丶国产丶欧美色综合| 激情六月婷婷久久| 亚洲成人资源网| 欧美激情一区二区三区蜜桃视频 | 欧美电视剧免费全集观看| 99国产精品视频免费观看| 美女视频黄频大全不卡视频在线播放| 亚洲欧洲av另类| 国产午夜亚洲精品羞羞网站| 9191成人精品久久| 91高清视频免费看| 波波电影院一区二区三区| 狠狠色丁香婷婷综合久久片| 亚洲一区中文在线| 亚洲色图欧洲色图婷婷| 国产亚洲一区二区三区四区| 日韩一区二区三| 欧美日韩精品久久久| 欧美羞羞免费网站| 色综合久久综合| 成人综合在线视频| 国产成人一区二区精品非洲| 精品一区二区三区影院在线午夜| 亚洲国产精品久久久久婷婷884 | 欧美一区二区三区喷汁尤物| 91国产成人在线| 色先锋资源久久综合| av电影天堂一区二区在线| 国产成人精品亚洲午夜麻豆| 国产一区二区伦理片| 狠狠网亚洲精品| 国产一区二区福利| 国产一区二区三区免费| 国产资源在线一区| 国产毛片精品一区| 国产福利视频一区二区三区| 激情成人综合网| 国产成人av一区二区三区在线| 国产乱一区二区| 高清在线不卡av| av高清久久久| 日本精品一区二区三区四区的功能| 91最新地址在线播放| 国产日韩视频一区二区三区| 色欧美片视频在线观看在线视频| 精品国产91洋老外米糕| 一本大道久久a久久综合婷婷| 波多野结衣中文一区| 91美女蜜桃在线| 欧美优质美女网站| 777午夜精品视频在线播放| 日韩一区二区三区在线视频| 精品理论电影在线| 亚洲国产精品99久久久久久久久| 国产精品视频观看| 亚洲一区二区三区影院| 日本vs亚洲vs韩国一区三区二区| 久久99蜜桃精品| 国产999精品久久久久久 | 午夜精品久久久久久久久久久 | 中文字幕一区二区三区在线播放| 亚洲天堂av一区| 香蕉av福利精品导航| 国产资源在线一区| 色香色香欲天天天影视综合网| 欧美精品成人一区二区三区四区| 欧美不卡视频一区| 成人高清视频在线观看| 精品一区二区影视| 成人动漫视频在线| 欧美精品在线观看一区二区| 精品国产麻豆免费人成网站| 亚洲欧洲av在线| 美女一区二区在线观看| 成人成人成人在线视频| 欧美精品国产精品| 国产精品丝袜黑色高跟| 日韩二区在线观看| 97精品超碰一区二区三区| 在线观看91av| 日韩美女精品在线| 久久精品理论片| 在线亚洲高清视频| 国产精品系列在线| 美脚の诱脚舐め脚责91 | 琪琪久久久久日韩精品| 波波电影院一区二区三区| 日韩一区二区在线看片| 性欧美疯狂xxxxbbbb| 粉嫩av一区二区三区在线播放 | 色哟哟国产精品| 国产欧美日韩精品a在线观看| 日韩影院在线观看| 色婷婷久久综合| 国产精品美女一区二区三区 | 日韩欧美一卡二卡| 亚洲宅男天堂在线观看无病毒| 国产91露脸合集magnet| 日韩免费视频一区二区| 69av一区二区三区| 国产精品一色哟哟哟| 蜜臀av性久久久久av蜜臀妖精 | 久久99在线观看| 欧美四级电影在线观看| 欧美高清在线一区| 国产剧情一区在线| 欧美电影免费观看高清完整版在线观看| 自拍偷在线精品自拍偷无码专区| 国产精品66部| 久久久欧美精品sm网站| 激情亚洲综合在线| 日韩精品一区国产麻豆| 免费一级欧美片在线观看| 欧美日韩不卡在线| 亚洲成在线观看| 欧美片在线播放| 日韩精品色哟哟| 欧美一级片免费看| 老色鬼精品视频在线观看播放| 日韩一区二区三区电影 | 日韩精品一区国产麻豆|