1. Cognitive architecture
Diagram of the KbRetro Mind-Module
/^^^^^^^^^\ KbRetro handles yes-or-no answers /^^^^^^^^^\ / EYE \ QUERY-IDEA _________ / EAR \ / \ |A| | | | / KbRetro \ / \ | _______ | |N| | | | / \ | Y | | /old \ | |N| | | | / affirm \ | E | | / image \ | |A| | | | | query-idea |---|----S | | \ fetch / | | | | | | | | | | | \_______/ | d| |N|h| | | attach | | N | | | o| |O|a| | | 250=NOT |---|---O | | visual | e| |T|v| | | flag | | | | | s| | |e| | | | | M | | memory | | | | | | | remove | | A | | | | | | |c| | associative | | Y | | reactivation | | | | |h| | tags | | B | | | | | | |i| | from |---|------E | | channel | | | | |l| | query | | | | _______ | | | | |d| | idea |---|-(no response) | | /old \ | |_|_|_|_|_ \___________/ | | | / image \ | / Psy \ | | | \ store /---|-\ Concepts / | | | \_______/ | \________/ | |
2. Purpose of the
AI4U Textbook KbRetro Mind-Module
The KbRetro module retroactively zaps the knowledge-base (KB) of the AI Mind where a silent inference must wait for confirmation or negation by a human user.
3. Function of the
AI4U Textbook KbRetro Mind-Module
From its MindBoot() sequence, an open-source AI Mind may know a general fact such as, "Women have a child," which would serve as a premise for a logical inference about any particular woman. You could also teach the AI Mind any number of other general facts such as, "Boys play games" or "Birds have wings." Once the AI knows the general fact, at some future time you may input a specific fact such as "Anna is a woman" or "John is a boy", and the AI will not only make a silent inference but also use the AskUser mind-module to ask for confirmation or refutation of the inference.
Netizens may try it out with an English-thinking AI Mind by using Internet Explorer to input "anna is a woman". Then the AI may ask, "Does Anna have a child?" There are four possible answers anticipated by the AI software: Yes; No; maybe; or no answer at all. Then the KbRetro() module adjusts the knowledge base (KB) with the answer. If the answer is "Yes", the KbRetro() module sets a positive value on the tru(th) flag for the inference being confirmed as true.
4. Code of KbRetro() from ghost327.pl AI
source code in
Perl
sub KbRetro() { # http://ai.neocities.org/KbRetro.html if ($kbzap == 432 || $kbzap == 404) { # 2018-06-26: if 432=YES or 404=NO... if ($kbzap == 404) { # 2018-06-26: 404=NO; my @k=split(',',$psy[$tkbn]); # 2018-07-01: adjust noun of silent inference; $psy[$tkbn]="8,$k[1],1,$k[3],$k[4],$k[5],$k[6]," # 2019-08-01: enhance $tru. . "$k[7],$k[8],$k[9],$k[10],$k[11],$k[12],$k[13]," . "$k[14],$k[15],$k[16],$k[17],$k[18],$k[19],$k[20]"; # 2019-08-01 @k=split(',',$psy[$tkbv]); # 2018-07-01: at time of KB-verb adjustment; $psy[$tkbv]="0,$quverb,1,32,$k[4],250,8," # 2019-08-01: jux=250 for "NO". . "$k[7],0,0,$qusub,$quobj,$k[12],$k[13]," . "$tkbo,$k[15],$k[16],$k[17],$k[18],$k[19],$k[20]"; # 2019-08-01 } # 2018-06-26: end of test for a no-answer. if ($kbzap == 432) { # 2018-06-26: 432=YES; my @k=split(',',$psy[$tkbn]); # 2018-07-01: adjust noun of silent inference; $psy[$tkbn]="8,$k[1],1,$k[3],$k[4],$k[5],$k[6]," # 2019-08-01: enhance $tru. . "$k[7],$k[8],$k[9],$k[10],$k[11],$k[12],$k[13]," ." $k[14],$k[15],$k[16],$k[17],$k[18],$k[19],$k[20]"; # 2019-08-01 @k=split(',',$psy[$tkbv]); # 2018-06-26: at time of KB-verb adjustment; $k[7] = 3; # 2018-10-08: assume dba=3 third person... $psy[$tkbv]="0,$quverb,1,32,$k[4],$k[5],8," . "$k[7],0,0,$qusub,$quobj,$k[12],$k[13]," . "$tkbo,$k[15],$k[16],$k[17],$k[18],$k[19],$k[20]"; # 2019-08-01 } # 2018-06-26: end of test for a yes-answer. } else { # 2018-06-26: if neither yes nor no answer comes in... my @k=split(',',$psy[$tkbn]); # 2018-06-26: remove pre and seq tags from noun; $psy[$tkbn]="$k[0],$k[1],1,$k[3],$k[4],$k[5],$k[6]," . "$k[7],$k[8],$k[9],0,0,$k[12],$k[13]," . "0,$k[15],$k[16],$k[17],$k[18],$k[19],$k[20]"; # 2019-08-01: no pre, seq or tkb. @k=split(',',$psy[$tkbv]); # 2018-06-26: remove pre and seq tags from verb; $psy[$tkbv]="$k[0],$k[1],1,$k[3],$k[4],$k[5],$k[6]," . "$k[7],$k[8],$k[9],0,0,$k[12],$k[13]," . "0,$k[15],$k[16],$k[17],$k[18],$k[19],$k[20]"; # 2019-08-01: no pre, seq or tkb. } # 2018-06-26: end of test for either yes or no. $quobj = 0; # 2018-06-26: reset for safety. $tkbn = 0; # 2018-06-26: reset for safety; $tkbv = 0; # 2018-06-26: reset for safety; } # 2019-08-01: KbRetro() returns to EnThink()
5.
Variables for the KbRetro module of the AI Mind
$kbzap --
ZAP the knowledge base -- is a variable that holds the oldpsi word "YES" or "NO" when the
InFerence() module has caused the
AskUser() module to seek confirmation or denial of a silent inference
from a human user engaged in a conceptual conversation with the AI Mind.
KbRetro() uses the YES-value kbzap to confirm an inference, or the NO-value
of kbzap to negate an inference.
$quobj -- query object – holds onto the psi identifier of a word chosen by the InFerence() module to be the direct object of a query created by the AskUser() module.
$qusub -- query subject – is a transfer-vehicle of the subject-identifier from any module prompting a question into the specific module that will ask the question.
$quverb -- query verb – is set in the InFerence() module with the identifier of a verb concept serving as part of an InFerence being made about user input. Then the AskUser() module transforms the quverb identifier into the yes-or-no-verb identifier ynverb so that AskUser() can use the query-verb to ask a question expecting a yes-or-no answer.
$tkbn -- time-in-knowledge-base-noun -- is set in the InFerence() module as the concept-array time-point of the subject-noun in a yes-or-no question to be asked of the human user by AskUser() to confirm or negate an InFerence being made by the logical InFerence module.
$tkbo -- time-in-knowledge-base-object -- is set in the InFerence() module as the concept-array time-point of the direct-object-noun in a silent InFerence to be confirmed or negated retroactively by the KbRetro() module after a human user has responded to a question posed by the AskUser() module. May be similar to tdo in the EnParser() module, but tkbo is the last of three consecutive time-points in the silent InFerence created by the InFerence() module for automated reasoning.
$tkbv -- time-in-knowledge-base-verb -- is the time-point of a verb-concept in an AskUser() question for a human user to confirm or deny the truth of a logical InFerence made by the AI.
$tru -- tru(th) variable serving as a flag-panel tag to hold dynamically the believed reliability or truth-value of an idea. Since the truth-value is the first item in the conceptual flag-panel, a positive value in the first slot of the code above responding to a "YES" input represents the "tru" variable without actually naming the variable in the pertinent code.
6. Troubleshooting and Debugging for
AI Mind Maintainers
6.1.a. Symptom: (Something goes wrong.)
6.1.b. Solution: (AI Mind
Maintainer devises solution.)
9. Spread the News on TikTok and Other Venues
Are you on TikTok? Are you eager to be a ThoughtLeader and Influencer?
Create a
TikTok video in the following easy steps.
I. Capture a screenshot of
https://ai.neocities.org/KbRetro.html
for the background of your viral TikTok video.
II. In a corner of the screenshot show yourself talking about the KbRetro module.
III. Upload the video to TikTok with a caption including all-important hash-tags
which will force governments and corporations to evaluate your work
because of FOMO -- Fear Of Missing Out:
#AI
#ИИ
#brain
#мозг
#ArtificialIntelligence
#ИскусственныйИнтеллект
#consciousness
#сознание
#Dushka
#Душка
#psychology
#психология
#subconscious
#подсознание
#AGI #AiMind #Alexa #ChatAGI #chatbot #ChatGPT #cognition #cyborg #Eureka #evolution
#FOMO #FreeWill #futurism #GOFAI #HAL #immortality #JAIC
#JavaScript #linguistics #metempsychosis #Mentifex #mindmaker #mindgrid
#ML #neuroscience #NLP #NLU #OpenAI #OpenCog #philosophy #robotics #Singularity #Siri #Skynet
#StrongAI #transhumanism #Turing #TuringTest #volition
A sample video is at
https://www.tiktok.com/@sullenjoy/video/7233051561679916334
10.
AiTree of Mind-Modules for
Natural Language Understanding
Nota Bene: This webpage is subject to change without notice. Any Netizen may copy, host or monetize this webpage to earn a stream of income by means of an affiliate program where the links to Amazon or other booksellers have code embedded which generates a payment to the person whose link brings a paying customer to the website of the bookseller.
This page was created by an
independent scholar in artificial intelligence
who created the following True AI Minds with sentience and with limited
consciousness/a>.
The following books describe the free, open-source True AI Minds.
AI4U -- https://www.iuniverse.com/BookStore/BookDetails/137162-AI4U
AI4U (paperback) -- http://www.amazon.com/dp/0595259227
AI4U (hardbound) -- http://www.amazon.com/dp/0595654371
The Art of the Meme (Kindle eBook) -- http://www.amazon.com/dp/B007ZI66FS
Artificial Intelligence in Ancient Latin (paperback) --
https://www.amazon.com/dp/B08NRQ3HVW
Artificial Intelligence in Ancient Latin (Kindle eBook) --
https://www.amazon.com/dp/B08NGMK3PN
Artificial Intelligence in German (Kindle eBook) -- http://www.amazon.com/dp/B00GX2B8F0
InFerence at Amazon USA (Kindle eBook) -- http://www.amazon.com/dp/B00FKJY1WY
563
Mentifex Autograph Postcards were mailed in 2022 primarily to
autograph collector customers at used bookstores to press the issue of
whether or not the Mentifex oeuvre and therefore the autograph is valuable.
These artwork-postcards with collectible stamps may be bought and sold at
various on-line venues.
See
AI 101
AI 102
AI 103 year-long community college course curriculum for AI in English.
See
Classics Course in Latin AI for Community Colleges or Universities.
See
College Course in Russian AI for Community Colleges or Universities.
Collect one signed
Mentifex Autograph Postcard from 563 in circulation.
See
Attn: Autograph Collectors about collecting
Mentifex Autograph Postcards.
Return to top; or to
The collectible
AI4U book belongs in every AI Library as an early main publication of Mentifex AI.