Click here to Skip to main content
15,899,026 members

Articles by Gonzales Cenelia (Articles: 2, Tip/Trick: 1)

Articles: 2, Tip/Trick: 1

RSS Feed

Average article rating: 4.56

Artificial Intelligence
20 Feb 2006   Updated: 29 Mar 2006   Rating: 4.28/5    Votes: 33   Popularity: 6.32
Licence: Not specified    Views: 146,343     Bookmarked: 45   Downloaded: 10,405
Please Sign up or sign in to vote.
This is an Eliza like chatterbot.
Web Development
HTML
1 May 2009   Updated: 24 Apr 2019   Rating: 4.85/5    Votes: 88   Popularity: 9.25
Licence: CPOL    Views: 736,903     Bookmarked: 178   Downloaded: 217
Please Sign up or sign in to vote.
Tutorial on making an artificial intelligence chatbot

Average blogs rating:

No blogs have been submitted.

Average tips rating: 2.50

Programming Languages
VC++
14 Jun 2014   Updated: 14 Jun 2014   Rating: 2.50/5    Votes: 9   Popularity: 2.39
Licence: CPOL    Views: 127,586     Bookmarked: 14   Downloaded: 0
Please Sign up or sign in to vote.
Simple Speech Recognition using C++

Average reference rating:

No reference articles have been posted.

Average project rating:

No projects have been posted.
Help desk / Support Gexel Telecom
Canada Canada
I have been programming in C and C++ for more than four years, the first time that i had learn programming was in 1999 in college. However it was only by the year 2000 when i have buy my first computer that i had truly started to do some more interesting things in programming. As a programmer,my main interest is A.I programming. So i'm really captivated by all that is related to N.L.U (Natural Language Understanding), N.L.P (Natural Language Processing), Artificial Neural Networks etc. Currently i'm learning to program in Prolog and Lisp. Also,i'm really fascinated with the original chatterbot program named: Eliza,that program was wrote by Joseph Weizenbaum. Everytime i run this program,it makes me really think that A.I could be solve one day. A lot of interesting stuff has been accomplish in the domain of Artificial Intelligence in the past years. A very good example of those accomplishments is: Logic Programming,which makes it possible to manipulate logic statements and also to make some inferences about those statements. A classical example would be: given the fact that "Every man is mortal" and that Socrates is a man,than logically we can deduce that Socrates is mortal. Such simple logical statements can be wrote in Prolog by using just a few lines of code:

prolog code sample:

mortal(X):- man(X). % rule
man(socrates). % declaring a fact

the preceding prolog rule can be read: for every variable X,if X is a man than X is mortal. these last Prolog code sample can be easily extented by adding more facts or rules,example:
mortal(X):- man(X). % rule
mortal(X):- woman(X). % rule
man(socrates). % fact 1
man(adam). % fact 2
woman(eve). % fact 3

for more, check: https://cenelia7.wixsite.com/programming
ai-programming.blogspot.com