Tagged Questions

Artificial Intelligence Markup Language (AIML) is an XML dialect for creating natural language software agents.

learn more… | top users | synonyms

3
votes
2answers
134 views

Essential AIML responses?

What do you think are important pattern/temples to program. Like in a chatbot what does EVERY chatbot need a response for? Im just starting out making the aiml file and need some help... Heres the ...
2
votes
4answers
147 views

How to implement AIML in Prolog?

AIML files: http://www.alicebot.org/aiml/aaa/ I want to make these AIML files the knowledge base of my Prolog program. Help me. Thanks in advance. P.S. Excuse my bad english.
1
vote
1answer
415 views

How to start implementing a AIML based chattebot?

I am at he beginning of starting an AIML based chatter-bot for my final year project. It is web based and I have selected the c#.net platform. *Is there any good articles to be start with? *Any ...
1
vote
1answer
200 views

Is c# a suitable language for Chatterbot development which involve in Natural Language processing?

I am doing my final year project and at the beginning of developing a chatter-bot mostly based on ALICE techniques.I have done research comparing two main chatter-bot systems ELIZA and ALICE and ...
1
vote
2answers
438 views

AIML interpreter - objective c - gui

I want to create an objective c application that interprets a list of .aiml files then make a GUI for it. I want to do this so I can chat with the aiml files within the application. Any ideas on how ...
1
vote
2answers
511 views

AIML pattern matching - howto?

I'm having a problem trying to understand how does AIML pattern matching works. What's the difference between _ and *? And how I should use them to get the best match? I have this document only, ...
1
vote
1answer
203 views

In AIML, what's the XSD-valid way to use the element <set name=“it”>?

In file Atomic.aiml, part of the annotated ALICE AIML files, there are a lot of categories like this: <category> <pattern>ANSWER MY QUESTION</pattern> <template> ...
0
votes
0answers
35 views

Is AIML the right direction to the real AI? [closed]

We work on AIML recently. It seems the AIML is based on the current questions and answers. So how to write or extend the AIML library previously? Do you think the AIML is the right direction to the ...
0
votes
1answer
110 views

How to implement aiml using java

I was planning to make a chat bot as my project. i understood basic aiml tags but i am not getting how to implement aiml tags. Also how can we create GUI for this chatbot
0
votes
1answer
69 views

A virtual help desk using Program-O and AIML

I'm making an AI Help Desk bot(like a chatbot ). I'm using program-o and AIML which I think I will modify to my needs and add new features to them. but there is no documentation present for program-o ...
0
votes
1answer
209 views

Looking for a good AIML api in java

I'm looking for a good AIML(Artificial Intelligence Markup Language) in Java, that I could embedded in a much larger java application. It would be nice if I can use a database to store the aiml files. ...
0
votes
1answer
96 views

objective c xml compile/run

It it possible for objective c to compile xml data (aiml files for example)?? I'm looking for it to compile AIML files then be able to "chat" with the files using objective c. Is there a XMLView or ...
0
votes
1answer
88 views

aiml - wildcards between pattern terms

Is it possible to use wild cards between terms in a pattern? for example, if I want to answer the question, "How much are overdue fines on my books?" is there a way to use a wild card between the ...
0
votes
1answer
176 views

What is the Learn tag used for in AIML

I am developing a small AIML engine, and I am having difficulty understanding what the <learn> tag is for. If I understand correctly, it's merely to point to an external AIML resource that can ...