I am starting a Python project that implements PyAIML , and I wrote the following code to create the brain for my project:
import aiml k=aiml.Kernel() k.learn("std-startup.xml") k.respond("LOAD AIML B") k.saveBrain("jarvis.brn")
When I run the program, I get this error: WARNING: No match found for input: LOAD AIML B
I understand that I needed to download the AIML suite to start development. So I did, but I was stuck there.
Please, help. I am a noob programmer, so don't be rude to me for this dumb mistake.
Thanks in advance!
source share