Artificial Intelligence
-
ihoecken wrote:
You haven't got a single "if" expression in your code? Not in a single line (including classes)?
Nope. Anytime I need to handle a specialized condition, I instantiate a derived class. ;P Marc
Some people believe what the bible says. Literally. At least [with Wikipedia] you have the chance to correct the wiki -- Jörgen Sigvardsson
People are just notoriously impossible. --DavidCrow
There's NO excuse for not commenting your code. -- John Simmons / outlaw programmerMarc Clifton wrote:
Anytime I need to handle a specialized condition, I instantiate a derived class.
Ok, you can laugh now (I missed those smilie), but I know somebody who does just that. Wired... :omg:
------------------------------ PROST Roleplaying Game War doesn't determine who's right. War determines who's left.
-
Marc Clifton wrote:
Anytime I need to handle a specialized condition, I instantiate a derived class.
Ok, you can laugh now (I missed those smilie), but I know somebody who does just that. Wired... :omg:
------------------------------ PROST Roleplaying Game War doesn't determine who's right. War determines who's left.
ihoecken wrote:
but I know somebody who does just that.
:omg: is right! Wow. Marc
Some people believe what the bible says. Literally. At least [with Wikipedia] you have the chance to correct the wiki -- Jörgen Sigvardsson
People are just notoriously impossible. --DavidCrow
There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer -
ihoecken wrote:
You haven't got a single "if" expression in your code? Not in a single line (including classes)?
Nope. Anytime I need to handle a specialized condition, I instantiate a derived class. ;P Marc
Some people believe what the bible says. Literally. At least [with Wikipedia] you have the chance to correct the wiki -- Jörgen Sigvardsson
People are just notoriously impossible. --DavidCrow
There's NO excuse for not commenting your code. -- John Simmons / outlaw programmerYou sound like a guy I work with, whom we call Mister Object. There isn't a single function in his code longer than about 5-8 lines. Everything's broken up, and the class structure tends to be fairly deep. It makes his stuff difficult to follow.
Software Zen:
delete this;
-
Question - Does an IF statement constitute artificial intelligence? This is due to be heavily debated at my university, thought some external views would be nice.
you can't forget something you never knew...
No, AS - artificial stupidity.
-
You sound like a guy I work with, whom we call Mister Object. There isn't a single function in his code longer than about 5-8 lines. Everything's broken up, and the class structure tends to be fairly deep. It makes his stuff difficult to follow.
Software Zen:
delete this;
-
Ryan Binns wrote:
What do I win?
A bunny. ;P Marc
Some people believe what the bible says. Literally. At least [with Wikipedia] you have the chance to correct the wiki -- Jörgen Sigvardsson
People are just notoriously impossible. --DavidCrow
There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer -
As I said the Turing test has no context, and hence is very limited and is no longer considered to be an accurate test of AI. For example in CL (Computational Linguistics) you will come across lots of examples of this, my favourite is the one that comes with Emacs, they essentially switch parts of sentences around, to give the impression of the intelligence. me: I feel depressed about the war zippy psychoanalyst : Why do you feel depressed about the war So for about five seconds the psychoanalyst will fool you, but if you asked the psychoanalyst falls down on statements like me : I worry people will get hurt in country X The psychoanalyst has no clue what you are talking about because its ignorant of context, i.e. the people of country X. You are correct though to certain extent, intelligence is now seen to be an emergent property of derived from several combined simpler behaviors with context. "Steele's Mars Explorer" experiment is a good example of generating complex behavior through a series of nested "if" statements, its employed in a Multi-agent System Architecture called the "Reactive Architecture", its now also debunked because the once you hit a threshold number of if statements it becomes very unwieldy and impractical. It has been superseded by the "Hybrid Architecture".
Regards Ray "Je Suis Mort De Rire" Blogging @ Keratoconus Watch
Ray Kinsella wrote:
For example in CL (Computational Linguistics) you will come across lots of examples of this, my favourite is the one that comes with Emacs, they essentially switch parts of sentences around, to give the impression of the intelligence.
That's Eliza, not emacs!
-
Hmmm. I have to shut up, otherwised I will be banned from CP forever, but a Depeche Mode song comes up my mind. :-D I'm so spoiled! Behave myself! :rolleyes:
------------------------------ PROST Roleplaying Game War doesn't determine who's right. War determines who's left.
-
Hmmm. I have to shut up, otherwised I will be banned from CP forever, but a Depeche Mode song comes up my mind. :-D I'm so spoiled! Behave myself! :rolleyes:
------------------------------ PROST Roleplaying Game War doesn't determine who's right. War determines who's left.
-
Question - Does an IF statement constitute artificial intelligence? This is due to be heavily debated at my university, thought some external views would be nice.
you can't forget something you never knew...
First you have to lay down the definition of 'intelligence'. Lots of people have mistaken ideas of how to define intelligence. If it's defined as problem-solving, or the ability to memorize (which are wrong definitions anyway), then most programs, even a simple calculator would be classified as intelligent. Most people even find it hard to distinguish between learning and intelligence. My own definition of intelligence (after having pondered on it as part of my studies too, involving lots of discussions, heated debates and programming AI....oh my miss those good ol' days... :) ) is the ability to learn with the minimal resources. And how would i define learning? It's the ability to generalise, form concepts, abstractions, from what you see around you. For e.g. you learn what car is by simply looking at two or three cars, and then form the generalisation that cars have wheels, windows, an engine, etc. Clearly all this leads to the conclusion that an 'IF' statement is not AI. Rather, it is a logic instruction that an AI process needs to use, such as in the car example: IF it has wheels/engine/windows/etc, THEN it's a car. (I hope i didn't do the assignment for you ;P )
_________________________ Kri5
-
Question - Does an IF statement constitute artificial intelligence? This is due to be heavily debated at my university, thought some external views would be nice.
you can't forget something you never knew...
Are artificially intelligent! If you provide the if statement with a significantly robust training set does it change the value of the statement for given inputs to match experience? Does the experience learned corrollate when provided with a data set that was not used in training?
A man said to the universe: "Sir I exist!" "However," replied the Universe, "The fact has not created in me A sense of obligation." -- Stephen Crane
-
First you have to lay down the definition of 'intelligence'. Lots of people have mistaken ideas of how to define intelligence. If it's defined as problem-solving, or the ability to memorize (which are wrong definitions anyway), then most programs, even a simple calculator would be classified as intelligent. Most people even find it hard to distinguish between learning and intelligence. My own definition of intelligence (after having pondered on it as part of my studies too, involving lots of discussions, heated debates and programming AI....oh my miss those good ol' days... :) ) is the ability to learn with the minimal resources. And how would i define learning? It's the ability to generalise, form concepts, abstractions, from what you see around you. For e.g. you learn what car is by simply looking at two or three cars, and then form the generalisation that cars have wheels, windows, an engine, etc. Clearly all this leads to the conclusion that an 'IF' statement is not AI. Rather, it is a logic instruction that an AI process needs to use, such as in the car example: IF it has wheels/engine/windows/etc, THEN it's a car. (I hope i didn't do the assignment for you ;P )
_________________________ Kri5
Hi, thank you for your views. You didn't do my assignment (it's not an assignment per say) but I hope you dont mind if I citate one or two of your statements. I'm taking AI for the first time this semester and it must be one of my most fascinating subject so far. (Still :zzz: in class though :laugh:, no class ever keeps me interested past the first hour)
you can't forget something you never knew...
-
ihoecken wrote:
Hmmm. I have to shut up, otherwised I will be banned from CP forever, but a Depeche Mode song comes up my mind.
Have you heard the kinda freaky Rammstien cover of it?
dan neely wrote:
Have you heard the kinda freaky Rammstien cover of it?
Yes, I still favor Depeche Mode's version, but it's pretty cool for a cover version. It has it's own style. :)
------------------------------ PROST Roleplaying Game War doesn't determine who's right. War determines who's left.
-
Question - Does an IF statement constitute artificial intelligence? This is due to be heavily debated at my university, thought some external views would be nice.
you can't forget something you never knew...
evilnoodle wrote:
Question - Does an IF statement constitute artificial intelligence?
The world is not black and white... when the computer can look at an "if" statement and decide that neither answer is "completely true" then it will have AI. An if statement is a double bind, a rigid construct with no escape... it is a cage. When the computer can decide that the conditional no longer applies and that a new decision has to be made, then that is AI.
_________________________ Asu no koto o ieba, tenjo de nezumi ga warau. Talk about things of tomorrow and the mice in the ceiling laugh. (Japanese Proverb)
-
According to Turing, If a interrogator were to ask identical questions to a human and a "computer" without knowing which one provided which answer and cannot distinguish by the answers which is is the human's and which is the computers, that computer or software qualifies as AI. Can we assume that the human would think rationally? If so, I can't see why IF statements cant be structured (with the right variables or environmental variables) as qualified AI.
you can't forget something you never knew...
Turing's test is for strong AI, there is also weak AI such as we find in games. But, no, if is a logical switch in paths of choice. So it would utilized as a mechanism by AI but isn't on its own.
This statement is false.
-
Question - Does an IF statement constitute artificial intelligence? This is due to be heavily debated at my university, thought some external views would be nice.
you can't forget something you never knew...
evilnoodle wrote:
Does an IF statement constitute artificial intelligence?
If we are marketing the product then yes. However, if you can ask the system why it choose the case, it choose then I would argue it quasi - intelligent, maybe in the goldfish or slug catagory :P
do you need to investigate an online backup[^] company
-
Hi, thank you for your views. You didn't do my assignment (it's not an assignment per say) but I hope you dont mind if I citate one or two of your statements. I'm taking AI for the first time this semester and it must be one of my most fascinating subject so far. (Still :zzz: in class though :laugh:, no class ever keeps me interested past the first hour)
you can't forget something you never knew...
You can use any statements you wish....i don't hold any copyright over what i said; however if one day you get your degree and make millions, remember that i like Ferraris :) I love AI myself, i guess you'll end up addicted :)
_________________________ Kri5
-
You can use any statements you wish....i don't hold any copyright over what i said; however if one day you get your degree and make millions, remember that i like Ferraris :) I love AI myself, i guess you'll end up addicted :)
_________________________ Kri5