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

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? javascript

?? MATLAB,VB做成的神經(jīng)網(wǎng)絡(luò)計(jì)算程序
??
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
pov = "*"; // point-of-view "internal" symbol
t = (t + 1); // increment time "t"
onset = (blankt + 1); // 23jan2001: from Mind.Forth AI.
  if (onset == t) beg = 1; // ...if a word is beginning...
  else beg = 0; // i.e., not a word-beginning
if (pho != 32) {
  len = (len +1); // as in Audition()
  STM(); // as if user were typing in characters.
  }
if (pho == 32) Retro();
} // end of reEntry()

// Voice() is called by Speech() etc.
function Voice() {
document.all.nuntius.innerHTML = message;
outputplus = ("<font size='+3' color='navy'>" + output + "<\/b><\/font>");
document.all.mouth.innerHTML = outputplus;
return;
}


// Speech() is called by nounPhrase() or Predicate().
function Speech() {
ctu = 1; // as every words starts, continuation = 1.
onset = rv; // the onset of a word is its recall-vector
do { // Moncur p. 98: test only at end of loop.
audMemChan[rv].audRecall(); // a series of recall-vectors
pho = gram1; // pho(neme) is the stored ASCII character
output += gram1; // build up the string of a word
ctu = gram5; // panel item #5 is "continuation?"
reEntry(); // output of the mind reenters the mind.
rv = (rv + 1); // read audEngrams one by one.
}
while (ctu == 1); // and one final loop while _not_
if (ctu == 0) { // immediately after a zero "ctu"
  pho = 32; // ASCII 32 for SPACE-BAR
  reEntry(); // send a blank space to reEntry()
  }
output += " "; // for one space after any word
Voice(); // speak the output
} // end of Speech()


// nounPhrase() is called beneath English()
// by either Subject() or Predicate().
function nounPhrase() {
opt = 5; // look for option five (a noun)
unk = 0;
mt = 0;
motjuste = 0;
rv = 0;
act = 0;
flushVector();
for (i = t; i>midway; --i) {
 enLexicon[i].enExam(); // inspect English nodes
   if (en2 > 0) act = en2; // obtain "act" if positive
   if (en4 == 5) { // if grammar category is "noun"
     if (act > unk) {
       mt = en1; // get move-tag of the noun
       rv = en6; // get the auditory recall-vector
       unk = act; // to test for an even higher activation
       motjuste = mt; // select a tentative motjuste
     } // end of if-clause      
   } // end of if-clause    
 } // end of loop
 meme = mt; // for use in psiDamp
 psiDamp(); // to de-activate Psi concepts
 enDamp(); // to de-activate English concepts
 Speech(); // 1feb2001:  without time-delay
psiDamp(); // to de-activate Psi concepts
// Say a SPACE-BAR 32 ?
act = 0;
} // end of nounPhrase()


// Subject is called from English()
// to find and express a subject.
function Subject() {
nounPhrase();
pho = " ";
return;
} // end of Subject()


// Predicate is called from English()
// to find and express a verb +/- object.
function Predicate() {
opt = 8; // look for option eight (a verb)
unk = 0;
mt = 0;
motjuste = 0;
par = 2;
flushVector(); // to move deep Psi concepts up to English
en4 = 0; // 3feb2001 -- a safety measure before looping.
for (i = t; i>midway; i--) {
enLexicon[i].enExam(); // inspect English nodes
  if (en4 == 8) { // only look at verbs, for Predicate()
    if (en2 > unk) {
    mt = en1; // store move-tag of verb
    rv = en6; // auditory recall-vector
    unk = en2; // to test for higher "act(ivation)"
    motjuste = mt;
    } // end of if-clause looking for high activation
  } // end of if-clause checking for verb-8's
  else continue; // try to avoid looking at non-verbs.
} // end of loop cycling back through English lexicon
meme = mt;
psiDamp(); // to de-activate Psi concepts
Speech();
psiDamp(); // to de-activate Psi concepts
mt = motjuste;
enDamp(); // to de-activate English concepts
 pho = " ";
// Audition(); // 23feb2001: removing for sake of cutOut()
par = 3;
// make a SPACE-BAR 32?
nounPhrase();
} // end of Predicate()


// English() is called by Think() and is
// the structure of an English sentence.
function English() {
 html = "";
 output = ""; // 1feb2001:  initial precaution
 attn = 1; // turn attention low and inwards.
 tov = t; // time-of-voice for echoing input.
Subject();
Predicate();
t = (t+1); // advance time to separate reentered words.
blankt = (blankt + 1); // 21feb2001: a timid bug-fix?

enDamp(); // 7feb2001:  deactivate the English lexicon.
audDamp(); // 11feb2001 -- protect Comparator()?

// 28jan2001:  The next line turns attention back on
// after the AI has responded to a line of user input.
// The line of code may belong properly in Think().
attn = 3;
}

// Think() is called by the main aLife() function
// if "attn" has dropped from 3 down to "2" --
// typically because user entry has called "CR()".
function Think() {
if (attn < 3) {
  English();
  }
}

// freeWill() is called from aLife() as a stub
// to show the future organization of advanced AI,
// and as a delaying mechanism in the aLife() loop.
function freeWill() {
if (death == false) {
  document.forms[0].ear.focus(); // await input
  message = "Free will -- waiting for user input.";
}
else {
  deadEnd(); // an extra security precaution
  } // end of else-clause
return;
}

// Motorium() is called from aLife() as a stub
// to show the future organization of advanced AI.
// AI in JavaScript is not as suitable as Mind.Forth
// for implementing a robotic "Motorium()" module.
function Motorium() {
if (death == false) {
  document.forms[0].ear.focus(); // await input
  message = "Motorium -- build me a robot.";
}
else {
  deadEnd(); // an extra security precaution
  } // end of else-clause
return;
}

// aLife() is the main loop:
function aLife() {
// Sensorium(); // basically a stub at first.
// Emotion(); // a stub, but important.
if (t > 40)  nonce = (t - 40); // for use in Troubleshoot 
if (t > (cns-32)) { // if within 32 units of "cns" capacity
 message = "WARNING!  Click Refresh.  Brain almost full!";
} // end of if-clause

if (attn < 3) {
  Think();
} // end of if-clause checking level of attention.
// freeWill(); // a stub
// Motorium(); // a stub
if (t > cns) death = true; // mindcore Psi is full
// Security(); // for a loop back to aLife()

if (hardcopy == true) {  
  Transcript(); // to make a hardcopy print-out possible
} // end of if-clause to call Transcript()

if (trouble == true) {  
  Troubleshoot(); // to show contents of arrays
} // end of if-clause to call Troubleshoot()
TID=window.setTimeout("cutOut();",59000);
} // end of aLife loop


// cutOut() is called from aLife() so that
// user input in Audition() has chance to
// prevent an automatic Tutorial display. 
function cutOut() {
 if (conversing == false) Homunculus();
}

// Homunculus() is called from aLife()
// to run a Tutorial display show.
function Homunculus() {
// alert('Now in Homunculus'); // test; remove.
 output = "Waiting for input...";
 Voice();
if (tutor == true) PhD(); // to cycle through "clues".
 Security(); // to loop around again.
} // end of Homunculus()

</SCRIPT>
<!--*********AI code is above; visible Mind is below**********-->
</HEAD>
<BODY bgColor=#fffacd onload=Bootstrap()>
<CENTER>
</CENTER>
<CENTER>
  <A title="Load the directory of archival file copies." target=_new 
href="http://www.geocities.com/mentifex/jscript.html">JavaScript版本人工智能</A> 應(yīng)用于<B>MSIE 
  4.01</B>以上版本. 
</CENTER>
<CENTER>
  要獲取詳細(xì)信息請(qǐng)通過(guò)代理連接<A title="The JSAIMIND is based on Mind.Forth AI." 
style="TEXT-DECORATION: none" target=_new 
href="http://www.geocities.com/mentifex/mind4th.html">http://www.geocities.com/mentifex/mind4th.html</A> 
</CENTER>
<CENTER>
  本頁(yè)更新于2001年2月24日 <a href="http://swnet.onchina.net" target="_blank">編程無(wú)限</a>整理 
</CENTER>
<FORM 
onsubmit="if (this.submitted) return true; else {CR(); return false;};">
  <B>輸入英文然后按[回車]</B><BR>
  <INPUT 
onkeydown=Audition() size=80 name=ear> </FORM>
<DIV id=mouth style="POSITION: static; BACKGROUND-COLOR: aqua">人工智能輸出將顯示在這里</DIV>
<DIV id=nuntius 
style="POSITION: static; BACKGROUND-COLOR: lightgreen">系統(tǒng)信息將顯示在這里</DIV>
<FIELDSET><LEGEND><FONT color=red><B>控制板</B></FONT></LEGEND>
<FORM name=modes><INPUT onclick=HCI() type=checkbox name=cb2>
  Transcript or[對(duì)話記錄] 
  <INPUT onclick=HCI() type=checkbox name=cb3>
  Troubleshoot[排除故障] 
  <INPUT onclick=PhD() 
type=checkbox CHECKED name=cb4>
  Tutorial[訓(xùn)練] 
  <INPUT onclick=Shutdown(); 
type=checkbox name=cb5>
  <FONT color=red><B>HALT</B></FONT>[暫停] 
  <INPUT 
onclick=Destroy(); type=checkbox name=cb6>
  Terminate[結(jié)束]<BR>
</FORM></FIELDSET> 
<NOSCRIPT>
<P>本程序需要瀏覽器JAVASCRIPT支持!<BR>
</NOSCRIPT>
<SCRIPT language=JavaScript>
 // The following code activates the INPUT FORM cursor:
 document.forms[0].ear.focus();
</SCRIPT>

<DIV id=teacher style="POSITION: static; BACKGROUND-COLOR: yellow">人工智能程序模型:(已實(shí)現(xiàn)部分)</DIV>
<FONT color=navy size=+1><B><PRE>   ___________                      _______        ___________
  /  visual   \                    /       \      / auditory  \
 /   memory    \                  / English \    /  memory     \
|      /--------|--------\        \ syntax  /---|-------------\ |
|      |  recog-|nition  |         \_______/    |   channel   | |
|   ___|___     |        |              |       |   ________  | |
|  /image  \    |     ___V__        ____V__     |  /        \ | |
| / percept \   |    / Psi  \------/English\----|-/ audEngram\| |
| \ engrams /---|---/concepts\----/ lexicon \---|-\ phonemes /  |
|  \_______/    |   \________/    \_________/   |  \________/   |</PRE></B></FONT>
<DIV id=souvenir 
style="WIDTH: 640px; POSITION: static; BACKGROUND-COLOR: lightyellow">對(duì)話記錄開始</DIV>
<DIV id=tabula 
style="WIDTH: 640px; POSITION: static; BACKGROUND-COLOR: aqua">Unclick 
Troubleshoot prior to clicking on Transcript. </DIV><!-- The Troubleshoot columns are present but invisible. -->
<DIV id=psicolumn 
style="LEFT: 10px; WIDTH: 200px; POSITION: absolute; TOP: 600px; HEIGHT: 140px"></DIV>
<DIV id=encolumn 
style="LEFT: 220px; WIDTH: 200px; POSITION: absolute; TOP: 600px; HEIGHT: 140px"></DIV>
<DIV id=audcolumn 
style="LEFT: 430px; WIDTH: 200px; POSITION: absolute; TOP: 600px; HEIGHT: 140px"></DIV><!-- comments of the HTML variety:
Wed. "21feb01A.html" fixes a "blankt" bug that was causing
gaps in thoughts generated by the Artificial Mind; precludes
Transcript() and Troubleshoot() from overwriting each other;
solves problem of cumulative laser-printer overwrites.

Fri. "23feb01A.html" removes accumulated obsolete code.
File "23feb01B.html" re-establishes a main time-delay loop.
File "23feb01C.html" separates the PhD() from HCI() module.

Sat. "24feb01A.html" introduces a Tutorial curriculum.
 (end of HTML comments) --><!-- text below generated by server. PLEASE REMOVE -->
</BODY></HTML>

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品天干天干在观线| 久久久精品国产99久久精品芒果| 奇米一区二区三区av| 久久综合久久综合亚洲| 成人手机在线视频| 一区二区三区高清| 欧美va亚洲va国产综合| 成人午夜在线免费| 午夜激情久久久| 国产欧美一区二区精品仙草咪| 色网站国产精品| 美女网站视频久久| 亚洲视频在线一区二区| 555www色欧美视频| eeuss影院一区二区三区| 亚洲成在人线免费| 中文av一区特黄| 欧美一二三区在线| 91丨九色丨尤物| 麻豆精品在线播放| 亚洲综合无码一区二区| 久久―日本道色综合久久| 色激情天天射综合网| 韩国欧美国产1区| 1024成人网| 26uuu久久天堂性欧美| 欧美在线视频日韩| 成人国产电影网| 麻豆成人免费电影| 中文字幕成人av| 欧美一区二区视频网站| 91麻豆文化传媒在线观看| 国产精品资源在线看| 午夜成人免费视频| 亚洲裸体xxx| 中文字幕电影一区| 国产拍揄自揄精品视频麻豆| 欧美日韩视频不卡| 成人av在线资源| 国产黄色成人av| 国产麻豆精品视频| 久久99精品国产91久久来源| 首页亚洲欧美制服丝腿| 亚洲成人一二三| 亚洲卡通欧美制服中文| 国产精品嫩草99a| 久久综合久久99| 欧美不卡视频一区| 欧美精品日日鲁夜夜添| 欧美性猛交xxxx乱大交退制版| 99久久精品国产导航| 成人精品小蝌蚪| 国产精品香蕉一区二区三区| 久久精品国产网站| 久久99热99| 久久精品国产99国产| 日日夜夜精品免费视频| 日日噜噜夜夜狠狠视频欧美人| 亚洲高清免费一级二级三级| 亚洲自拍偷拍图区| 日韩理论在线观看| 亚洲乱码一区二区三区在线观看| 亚洲欧美视频一区| 亚洲精品国产成人久久av盗摄| 亚洲欧洲日产国产综合网| 亚洲人成小说网站色在线| 中文字幕一区日韩精品欧美| 国产欧美日韩视频在线观看| 国产欧美精品一区二区色综合| 久久久久国产免费免费| 久久久国产午夜精品| 国产精品国产三级国产三级人妇| 中文字幕免费一区| 亚洲免费电影在线| 亚洲成人你懂的| 日韩精品一级二级| 久久国产精品无码网站| 国产一区激情在线| 成人黄色小视频在线观看| 成人黄页毛片网站| 99久久精品免费| 色诱视频网站一区| 欧美精品乱码久久久久久| 91精品国产高清一区二区三区| 精品免费99久久| 国产精品蜜臀在线观看| 亚洲精品成人精品456| 视频一区二区三区中文字幕| 狂野欧美性猛交blacked| 国产精品综合视频| 色婷婷综合激情| 欧美一区二视频| 欧美国产国产综合| 亚洲视频狠狠干| 日本麻豆一区二区三区视频| 国产在线一区观看| 91小视频在线观看| 欧美一区二区三区不卡| 国产欧美日韩另类视频免费观看| 亚洲人成电影网站色mp4| 偷拍日韩校园综合在线| 国产成人综合自拍| 欧美视频在线一区二区三区 | 欧美群妇大交群中文字幕| 日韩一级成人av| 国产精品每日更新| 日本大胆欧美人术艺术动态| 国产精品911| 欧美综合视频在线观看| 久久夜色精品一区| 一二三四社区欧美黄| 国产成人免费xxxxxxxx| 欧美精品丝袜中出| 精品久久久久久久久久久院品网 | 日本乱人伦aⅴ精品| 精品视频在线看| 国产精品久久毛片av大全日韩| 同产精品九九九| 99国产欧美久久久精品| 欧美一级免费大片| 亚洲欧美日韩电影| 国产精品正在播放| 欧美一级一级性生活免费录像| 亚洲欧美经典视频| 免费在线一区观看| 91国产精品成人| 国产欧美一区二区在线| 久久国产精品72免费观看| 99re8在线精品视频免费播放| 欧美精品一区二区精品网| 五月婷婷综合网| 在线视频欧美区| 一区二区三区欧美在线观看| 91美女在线看| 一区二区三区自拍| 91黄色在线观看| 一区二区三区鲁丝不卡| 欧美性欧美巨大黑白大战| 亚洲国产日日夜夜| 欧美视频一区二| 性感美女久久精品| 91精品国产手机| 毛片不卡一区二区| 日韩avvvv在线播放| 在线中文字幕不卡| 午夜天堂影视香蕉久久| 欧美区在线观看| 麻豆精品在线观看| 国产亚洲欧美日韩在线一区| 岛国一区二区三区| 尤物在线观看一区| 欧美乱妇15p| 另类调教123区| 日本一区二区免费在线观看视频 | 欧美人狂配大交3d怪物一区| 日本亚洲三级在线| 精品sm捆绑视频| 粉嫩av亚洲一区二区图片| 亚洲人成精品久久久久| 欧美精品一卡二卡| 国产综合久久久久久鬼色| 国产精品久久99| 色综合一区二区| 亚洲3atv精品一区二区三区| 欧美一二三四在线| 东方aⅴ免费观看久久av| 亚洲另类色综合网站| 91精品国产欧美日韩| 国产69精品久久久久毛片| 亚洲精品ww久久久久久p站| 制服丝袜中文字幕一区| 国产高清精品网站| 亚洲一二三四区| 久久色.com| 91成人网在线| 国产精品资源在线看| 亚洲精品成人a在线观看| 精品免费99久久| 99精品欧美一区二区三区小说| 免费精品视频在线| 国产精品久线在线观看| 欧美一级二级三级蜜桃| 91女人视频在线观看| 麻豆一区二区三| 一区二区三区免费网站| 亚洲精品一区二区三区福利| 色悠悠久久综合| 韩国欧美国产1区| 亚洲成a人片在线不卡一二三区| 久久久久久99久久久精品网站| 在线免费视频一区二区| 国产凹凸在线观看一区二区| 婷婷中文字幕综合| 国产精品国产三级国产aⅴ入口 | 亚洲另类色综合网站| 久久综合久久99| 91精品在线免费观看| 91网站最新地址| 国产成人自拍在线| 秋霞电影一区二区|