fabiuslongo / sw-caspar

SW-Caspar (Semantic Web-Cognitive Architecture System Planned and Reactive)

Home Page:https://github.com/fabiuslongo/sw-caspar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sw-caspar

This is the repository of the Python (3.7+) implementation of SW-CASPAR (Semantic Web-Cognitive Architecture System Planned and Reactive), which is a transposition of CASPAR able to make reasoning on the Semantic Web.

Image 1

Installation


This repository has been tested with Python 3.7.3 64 bit on Windows 10, with the following packages versions:

Phidias


> git clone https://github.com/corradosantoro/phidias
> python setup.py install
> python -m pip install pyreadline
> python -m pip install parse

spaCy


> python -m pip install spacy
> python -m spacy download en_core_web_lg

Natural Language Toolkit


from prompt:

> python -m pip install nltk

from python console:

> import nltk
> nltk.download('wordnet')

Owlready2


from prompt:

> python -m pip install owlready2

pyttsx3 (Text-to-Speech)


from prompt:

> python -m pip install pyttsx3

Testing

This cognitive architecture is designed to implement intelligent agents and also is an agent itself. Before running, Entities and Speech-To-Text Interfaces must be defined.

Entities definition


Entities involved in reasoning must be defined in the Smart Environment Interface (smart_env_int.py).

Speech-To-Text Interfaces


STT Interfaces (for both hotword and utterances) must be defined inside the Instances Sensors (sensors.py).

Starting agent


Before all, you must create the ontology. In order to do that, you must follow three preliminar steps:

  • Choose the owl file name, by setting the variable FILE_NAME (within AGENT) in the config.ini (test.owl for instance)
  • Execute sw-caspar.py
Creating new test.owl file...

Please Re-Run SW-Caspar.

Process finished with exit code 0
  • Re-execute sw-caspar
Loading existing test.owl file...

NLP engine initializing. Please wait...

	PHIDIAS Release 1.3.4.alpha (deepcopy-->clone,micropython,py3)
	Autonomous and Robotic Systems Laboratory
	Department of Mathematics and Informatics
	University of Catania, Italy (santoro@dmi.unict.it)


eShell: main > go()
eShell: main > Starting SW-Caspar...

Starting Hotword detection...

eShell: main > 

Now sw-caspar is ready for running. Unless you delete the OWL 2 file or choose to create another ontology, the agent will try to load every time the file specified in config.ini.

IoT commands and routines


For this section the developer is referred to CASPAR.

Ontology Learning


Considering the following sentences:

  • Colonel West is American
  • Cuba is a hostile nation
  • missiles are weapons
  • the Colonel West sells missiles to Cuba
  • When an American sells weapons to a hostile nation, that American is a criminal

SW-Caspar will model the ontology in order to infer the encoding of further natural language assertion:

  • Colonel West is a criminal

To let the agent model the ontology on this basis, you must execute the following lines:

eShell: main > +FEED("Colonel West is American")
eShell: main > +FEED("Cuba is a hostile nation")
eShell: main > +FEED("missiles are weapons")
eShell: main > +FEED("the Colonel West sells missiles to Cuba")
eShell: main > +FEED("When an American sells weapons to a hostile nation, that American is a criminal")

Here is all taxonomic relations (by opening the ontology file with Protégé) after the such assertions:

Image 2

Here is all individuals. The number related to each sentence will always be different depending on the timestamp:

Image 3

Here is all non-taxonomic relations related to the individual "Be.426837":

Image 4

Here's all axioms:

Image 5

Reasoning


Thanks to all relations and axioms, we can make reasoning (with Hermit/Pellet) and infer the following further relations referred to the individual "Colonel_West.791305":

Image 6

Meta-Reasoning


The IoT SW-Caspar's reasoning capabilities are utterly expressed by the production rules system in the Smart Environment Interface (smart_env_int.py). Each rule can be also subordinated by further conditions (Active beliefs), whom will make the Beliefs KB and the Ontology interact with each other through a Meta-Reasoning process. For instance, considering another ontology (changing FILE_NAME as "health.owl" in config.ini):

eShell: main > +FEED("Robinson Crusoe is a patient")
eShell: main > +FEED("Robinson Crusoe has diastolic blood pressure equal to 150")
eShell: main > +FEED("When a patient has diastolic blood pressure greater than 140, the patient is hypertensive")

Here's ontology details like seen previously:

Image 7 Image 8 Image 9 Image 10 Image 11

Considering the triggering conditions of the rule in line 21-22 of smart_env_int.py:

+INTENT(X, "Rinazina", Z, T) / (lemma_in_syn(X, "give.v.19") & eval_sem(T, "Hypertensive")) >> [show_ct(), say("I cannot execute the task. The patient is hypertensive")]
+INTENT(X, "Rinazina", Z, T) / lemma_in_syn(X, "give.v.19") >> [exec_cmd(X, "Rinazina", Z, T), show_ct(), say("execution successful")]

Let's suppose to simulate the agent awakening from its idle state with the following command:

eShell: main > +WAKE("TEST")

Then, let's suppose to give the agent the following vocal command:

eShell: main > +STT("Give Rinazina to Robinson Crusoe")]

In a such case, together with the evaluation of the ActiveBelief lemma_in_syn(X, "give.v.19") (which will check for a proper verb), the ActiveBelief eval_sem(T, "Hypertensive") will invoke the reasoner Pellet and check for the membership of Robinson Crusoe to the class Hypertensive.

Image 12

In this case, the first production rule will be triggered and the agent will not provide the drug to the patient. Otherwise, the second production rule will be triggered and the agent won't have obection to provide the drug to the patient.

About

SW-Caspar (Semantic Web-Cognitive Architecture System Planned and Reactive)

https://github.com/fabiuslongo/sw-caspar

License:GNU General Public License v3.0


Languages

Language:Python 100.0%