From dc2b288103b388855aca624f02765cbe2663acad Mon Sep 17 00:00:00 2001 From: Elton Cardoso do Nascimento <43186596+EltonCN@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:47:59 -0300 Subject: [PATCH] Fix questions about introduction --- examples/Introduction to CST-Python.ipynb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/Introduction to CST-Python.ipynb b/examples/Introduction to CST-Python.ipynb index 6c7439e..857941c 100644 --- a/examples/Introduction to CST-Python.ipynb +++ b/examples/Introduction to CST-Python.ipynb @@ -224,7 +224,7 @@ "source": [ "But, a agent can't do nothing with only data. `Codelets` are elements of the architecture that process data, executing the agent's cognitive processes.\n", "\n", - "Each Codelet can have some input and output memories. They can also be local or global, we will only use local inputs/outputs in this example." + "Each Codelet can have any number of inputs and outputs memories. They can also be local or global, we will only use local inputs/outputs in this example." ] }, { @@ -234,7 +234,9 @@ "For creating a codelet, we need to define the methods:\n", "- `access_memory_objects`: gets all the memories the codelet is going to use, localizable by name.\n", "- `calculate_activation`: computes the codelet's activation. We are not going to use this now.\n", - "- `proc`: the actual function that the codelet performs, reading from the inputs, processing and setting the outputs." + "- `proc`: the actual function that the codelet performs, reading from the inputs, processing and setting the outputs.\n", + "\n", + "It is important to note that the codelet should only get inputs in the `access_memory_objects`, not in `proc`. The content of the memories (info) can be accessed everywhere." ] }, {