Русскоязычный Искусственный Интеллект Душка
For Artificial Intelligence Dushka
RuParser Russian Parser Module of
English and Russian bilingual ghost.pl AI in Perl
1. Diagram of the RuParser Russian Parser Mind-Module
/^^^^^^^^^\ RuParser Determines Parts Of Speech /^^^^^^^^^\
/ EYE \ MINDCORE _____ / EAR \
/ \ CONCEPTS /New- \ / \
| _______ | | | | _____ (Concept)-|-------------\ |
| /old \ | | | | /Old- \ \_____/ | Audition | |
| / image \---|-----+ | (Concept)------|---|-----------\ | |
| \ recog / | | | | \_____/-------|---|---------\ | | |
| \_______/ | a| | | |________V | | | | |
| | b|C| | / RuParser \ | | | | |
| visual | s|O|f| \__________/ | | | | |
| | t|N|i| |noun? |СТУДЕНТЫ-/ | | |
| memory | r|C|b| |verb? | | | |
| | a|E|e| |adj.? |ЧИТАЮТ-----/ | |
| channel | c|P|r| |adverb? | | |
| | t|T|s| |prep.? |КНИГИ--------/ |
| _______ | | | | |conj.? | |
| /new \ | |_|_| ______V____ | |
| / percept \ | / \ / \ | |
| \ engram /---|--\ Psy /-----( InStantiate ) | |
| \_______/ | \___/ \___________/ | |
2. Purpose of the RuParser AI Mind Module
RuParser serves the purpose of not only identifying a part of speech such as a noun, preposition or verb, but also of comprehending the part of speech in context by helping to assign associative tags among concepts in the Psy conceptual array. Thus
RuParser and its English counterpart EnParser and its ancient Latin counterpart LaParser serve the purpose of Natural Language Understanding (NLU).
3. Function of RuParser
In contrast with the much simpler EnParser mind-module for English, the Russian RuParser module relies more on Russian inflectional endings than on word-order to determine the part of speech (POS) of a Russian word as part of comprehending the idea being
conveyed. The dative inflectional ending overrides word-order in Russian to indicate that a Russian word is either the indirect object of a transitive verb or the object of a Russian preposition used with the dative case.
To parse and comprehend an indirect object, RuParser tentatively fills the time-of-indirect-object $tio flag with the input-time of the first noun being input after a verb. The $tio flag is set only once by requiring that it be at zero for it to be set.
Simultaneously, the time-of-direct-object flag $tdo is filled with the same value as the $tio flag for an indirect object, because it is not yet known whether one noun or two nouns are being entered subsequent to the input of a transitive verb. If and
when a second noun comes in, the value for the time-of-direct-object $tdo flag, originally filled with the same value as the indirect-object $tio flag, is replaced or overwritten with the new time of the second post-verb noun in the input stream.
If only one noun comes in after the verb, the identifier of the direct object is set only once. If two post-verb nouns come in, the first noun becomes the indirect object and the second noun becomes the direct object.
4. Code of RuParser() from ghost298.pl First Working AGI in Perl
sub RuParser() { #
http://ai.neocities.org/RuParser.html
$act = 48; # 2016apr28: an arbitrary activation for InStantiate()
$bias = 5; # 2016feb24: Expect a noun until overruled.
if ($fyi > 2) { # 2016feb24: if mode is Diagnostic
} # 2016feb24: end of test for Diagnostic or Tutorial mode.
if ($pos == 5) { $bias = 8 } # 2016feb24: after noun, expect verb.
if ($pos == 7) { $bias = 8 } # 2016feb24: after pronoun, expect verb.
if ($pos == 8) { $bias = 5 } # 2016feb24: after verb, expect noun
if ($pos == 6) { $prepcon = 1; $tpp = $tult } # 2017-09-17: prepare for noun.
if ($pos == 5 || $pos == 7) { # 2017-09-17: if (pro)noun follows preposition...
$tsj = ($t - 1); # 2019-06-06: subject?
if ($prepcon == 1) { # 2017-09-17: if preposition-condition is on...
my @k=split(',',$psy[$tpp]); # 2017-09-17: expose flag-panel of preposition;
$pre = $k[1]; # 2017-09-17: Let $pre briefly be the preposition.
$psy[$tpp]="$k[0],$k[1],$k[2],$k[3],$k[4],$k[5],$k[6],"
. "$k[7],$k[8],$k[9],$k[10],$k[11],$psi,$k[13],$k[14]"; # 2017-09-17
@k=split(',',$psy[$tult]); # 2017-09-13: expose flag-panel of obj of prep.
$psy[$tult]="$k[0],$k[1],$k[2],$k[3],$k[4],$k[5],$k[6],"
. "4,$k[8],$k[9],$pre,$k[11],0,$k[13],$k[14]"; # 2017-09-17
$prepcon = 0; # 2017-09-17: Reset to prevent carry-over.
} # 2017-09-17: end of test for a positive $prepcon.
} # 2017-09-17: end of test for a noun or pronoun.
if ($pos == 8) { # 2019-06-06: if part of speech is Russian 8=verb...
$tvb = ($t - 1); # 2019-06-06: hold onto time-of-verb for flag-insertions.
$verbcon = 1; # 2019-06-06: verb-condition is "on" for ind. & dir. objects.
my @k=split(',',$psy[$tsj]); # 2019-06-06: expose flag-panel of subject noun
$subjpre = $k[1]; # 2019-06-06: Hold onto $subjpre for the pos=8 verb
$psy[$tsj]="$k[0],$k[1],$k[2],$k[3],$k[4],$k[5],$k[6],"
. "1,$k[8],$k[9],$k[10],$k[11],$psi,$tvb,$k[14]"; # 2019-06-06
@k=split(',',$psy[$tult]); # 2019-06-06: expose flag-panel of verb.
$psy[$tult]="$k[0],$k[1],$k[2],$k[3],$k[4],$k[5],$k[6],"
. "$k[7],$k[8],$k[9],$subjpre,$k[11],0,$k[13],$k[14]"; # 2019-06-06
$subjpre = 0; # 2019-06-06: Reset for safety.
} # 2019-06-06: end of test for a pos=8 Russian verb.
InStantiate(); # 2016feb24: for creating @psi concept-nodes
} # 2016feb24: RuParser() returns to OldConcept() or NewConcept().
5. Variables for the RuParser Russian AI Mind Module
$pos -- (part of speech) 1=adj 2=adv 3=conj 4=interj 5=noun 6=prep 7=pron 8=verb
6. Troubleshooting and Debugging for AI Mind Maintainers
6.1.a. Symptom: (Something goes wrong.)
6.1.b. Solution: (AI Mind Maintainer devises solution.)
To debug the function of assigning indirect and direct objects, the AI Mind Maintainer enters a typical sentence such as the Russian for "Students show the teacher a robot" that contains both an indirect object and a direct object, and presses Escape to
halt the AI after the input. Then the Maintainer examines the display of the conceptual array to see if $iob and $seq have been properly assigned. The AI coder may also insert diagnostic "print" messages into InStantiate() and RuParser() so as to observe
the process of assigning a tag during the input and comprehension of a sentence.
7. Future Development
Roadmap to Artificial Intelligence
8. Resources for Artificial Intelligence in Russian Language
Руководство пользователя -- Russian AI User Manual
Russian Wikipedia/Artificial Intelligence
http://ru.wikipedia.org/wiki/Искусственный_интеллект
http://ru.wikipedia.org/wiki/Поверхностная_структура
GotAI.NET - Искусственный Интеллект/Форум
http://gotai.net/forum
Искусственный Интеллект -- Системы и модели
http://www.rriai.org.ru
Исследования в области Искусственного Интеллекта
http://artin.narod.ru
Философия искусственного интеллекта
https://skillbox.ru/course/aiphil
Русскоязычный Сообщество AGI
https://siberai.blogspot.com/2020/07/agi-russia.html
https://aigents.timepad.ru/event/1412596/
Семинар русскоязычного сообщества AGI
https://aigents.com
https://ai-cluster.ru
True Brain Computing
Использование технологий мозга для создания сильного ИИ
http://truebraincomputing.com/ru/о-нас
http://truebraincomputing.com/ru/описание-модели
http://truebraincomputing.com/ru/команда
https://scmax.ru/articles/434860 -- Mentifex о концепциях
http://github.com/PriorArt/AGI/wiki/MindGrid
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/RuParser.html
for the background of your viral TikTok video.
II. In a corner of the screenshot show yourself talking about the RuParser 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/7230446065814637870
10. AiTree of Mind-Modules for Natural Language Understanding
MainLoop calling subordinate AI mind-modules
TabulaRasa -- wipe memory clean
MindBoot of English and Russian vocabulary
KbLoad -- load the Knowledge Base
ReJuvenate -- recycle memory space
Sensorium -- sensory input with associative tagging to concepts
AudInput -- auditory input
AudListen -- listen for input
AudMem -- English auditory memory
AudRecog -- auditory recognition
OldConcept -- recognize a known old concept
EnParser -- preposition? (in)direct object?
InStantiate -- create new instance of concept
RuParser -- assign part of speech
InStantiate -- create new instance of concept
NewConcept -- create a new concept
EnParser -- preposition? (in)direct object?
InStantiate -- create new instance of concept
RuParser -- assign part of speech
InStantiate -- create new instance of concept
FileInput -- read files on a server
GusRecog -- sense of taste
OlfRecog -- sense of smell
TacRecog -- sense of touch
VisRecog -- visual recognition
Volition -- free will resulting from feeling and thinking
Emotion as influence on thought and free will
EnThink -- think in English
KbRetro -- retroactively adjust knowledge base
Imperative -- mood for issuing commands
Indicative -- mood for declarative statements
InFerence -- automated reasoning
AskUser -- validate an inference
EnNounPhrase or EnPronoun -- for subject of thought
EnArticle -- use "a" or "the"
EnAdjective -- insert an adjective
ConJoin -- insert a conjunction
EnVerbPhrase -- think with a verb
EnAuxVerb -- use auxiliary verb
EnAdverb -- modifies a verb
EnAdverb -- modifies another adverb
EnVerbGen -- generates missing English verb-forms
AudBuffer -- stores English phonemes
OutBuffer -- right-justifies English verb-form
Speech -- output to screen or loudspeaker
EnNounPhrase or VisRecog -- direct-object noun
EnPrep -- use a preposition
EnNounPhrase or EnPronoun -- object of preposition
ConJoin -- insert a conjunction if two thoughts are active
Subjunctive -- mood for conditional phrases
RuThink -- think in Russian
RuImperative -- needs to be coded for commands in Russian
RuIndicative -- mood for declarative Russian statements
InFerence -- automated reasoning
AskUser -- validate an inference
RuNounPhrase or RuPronoun -- for subject of Russian thought
RuNounGen -- to generate a Russian noun-form
RuAdjective -- insert a Russian adjective
RuAdjGen -- to generate a Russian adjective-form
RuAdverb -- insert a Russian adverb
RuVerbPhrase -- think with a Russian verb
RuAdverb -- modifies a Russian verb
RuVerbGen -- generate a Russian verb-form
AudBuffer -- stores Russian phonemes
OutBuffer -- right-justifies Russian verb-form
Speech -- output to screen or loudspeaker
RuNounPhrase or VisRecog -- direct-object noun
RuPrep -- use a Russian preposition
RuNounPhrase or RuPronoun -- object of preposition
ConJoin -- insert a conjunction if two thoughts are active
PsiDecay -- lowers conceptual activation
SpreadAct -- spreading activation from concept to concept
Spawn -- AI Go FOOM
MetEmPsychosis -- AI soul travel from webserver to webserver
MindMeld -- merge two AI Minds by sharing memories
Motorium (MotorOutPut) -- for AI-Minded robots
Consciousness -- emergent property, not a module
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.
http://ai.neocities.org/mindforth.txt -- MindForth Robot AI in English.
http://ai.neocities.org/DeKi.txt -- Forth Robot AI in German.
http://ai.neocities.org/perlmind.txt -- ghost.pl Robot AI thinks in English and in Russian.
http://ai.neocities.org/Ghost.html -- JavaScript Robot AI Mind thinks in English.
http://ai.neocities.org/mens.html -- JavaScript Robot AI Mind thinks in Latin.
http://ai.neocities.org/Dushka.html -- JavaScript Robot AI Mind thinks in Russian.
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
https://redditfavorites.com/products/artificial-intelligence-in-ancient-latin
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.
https://www.ebay.com
https://galaxycon.com/search?q=Mentifex
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
Image of AI4U found at a book store
The collectible AI4U book belongs in every AI Library as an early main publication of Mentifex AI.
https://ai.neocities.org/RuParser.html
Mentifex
--
http://old.reddit.com/r/mentifex
http://github.com/PriorArt/AGI/wiki/MindGrid
http://cyborg.blogspot.com -- Mentifex weblog
https://www.tiktok.com/tag/mentifex -- TikTok
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)