more notes
All checks were successful
studiorailgun/trpg/pipeline/head This commit looks good

This commit is contained in:
austin 2025-01-03 19:58:15 -05:00
parent 028a2c85bd
commit 33701b9be3
4 changed files with 17 additions and 2 deletions

View File

@ -5,7 +5,7 @@ sitting in a tavern by a fireplace
Use Machine Learning to build system to convert sentence -> behavior tree input

9
docs/design_ideas Normal file
View File

@ -0,0 +1,9 @@
notes
Create a neural net to generate human readable rules
These human readable rules are they fed into an expert system
This allows us to combine the learning ability of a neural net with the legibility of an expert system

View File

@ -2,11 +2,12 @@
- Agents that you can talk to in the world - Agents that you can talk to in the world
- Agents can execute a defined sequence of atomic actions
- Agents can learn new sequences based on natural language processing
- Agents have task sequences that they are responsible for which they pursue - Agents have task sequences that they are responsible for which they pursue
- Agents can move from location to location - Agents can move from location to location
- Agents can pick up items - Agents can pick up items
- Agents can place items - Agents can place items
- Agents can use items - Agents can use items
- Agents can

View File

@ -20,3 +20,8 @@ This lets you not constantly scan a huge repertoire of information when you want
Thus, I want to create an information heirarchy to mimic this and make engineering potentially easier. Thus, I want to create an information heirarchy to mimic this and make engineering potentially easier.
Generic Action Sequences
In order to be able to command the ai to do something, have to have some way to represent chains of atomic actions for the ai to persue.
Want to build complexity over time