Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaCholak authored Oct 27, 2023
1 parent 17fff3f commit dc655b7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/knowledge_representation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ title: Knowledge Representation
layout: default
nav_order: "70"
---
# Hierarchical Relation
# Work In Progress

# Knowledge Representation

## Hierarchical Relation
Information like `apples are fruits` is stored in the knowledge base with `parents` relation between two concepts:
![](../assets/images/img1.png)

This relation tells the agent that everything that is known about the concept `Fruit` is also applicable for the concept `Apple`.



2 changes: 2 additions & 0 deletions docs/world_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ nav_order: "50"

# World Model

## Entity
To effectively process incoming events, generate novel knowledge, and reason about the environment, an agent requires a robust internal representation of the world. Within the present framework, the agent's world model encompasses entities, each resembling a class instance from Object-Oriented Programming (OOP). Each entity comprises a concept and an assortment of fields. The concept defines which fields it can have and their default value if it's predent. For instance, a conceptualization of a human might incorporate fields such as "name", "age", and "gender". Entities don't have to provide values for all fields.

## Representation
Entities are represented in the following format:
```python
CID {
Expand Down

0 comments on commit dc655b7

Please sign in to comment.