It looks like you're using an Ad Blocker.
Please white-list or disable AboveTopSecret.com in your ad-blocking tool.
Thank you.
Some features of ATS will be disabled while you continue to use an ad-blocker.
originally posted by: GraffikPleasure
a reply to: ElectricUniverse
It looks more along the lines of binary and English mixed... or just a glitch.
1> Check 1st entry #1....is it == to 10?....no? continue...
2> Check 2nd entry #2....is it == to 10?....no? continue...
3>.... and so on....
4>.... and so on....
5>.... and so on....
6>.... and so on....
7>.... and so on....
8> .... and so on....
9> .... and so on....
10>Check 10th entry in the list (#10) is it equal to 10?...YES MATCH...end the loop...
We got a match entry == 10 and 10 is in the list...ends the loop...
1> **Goto middle of 1-10** #5...is input bigger or small than 5?...bigger? **discard 1-5**...continue...
2> **Gotto to middle of 6-10** #8...is input bigger or smaller than 8? bigger? **discard 6-7-8...continue...
3> **Check remaining numbers 9 and 10** is input bigger than 9? Yes therefor input == 10...
4> **Check 10th and last entry in the list, is it bigger or smaller or equal to 10? equal?
We got a match entry == 10 and 10 is in the list...ends the loop...
originally posted by: neoholographic
a reply to: ElectricUniverse
I see a lot of posts that say "this isn't true A.I."
That's just not the case. We have no idea what true A.I. will look like or how it will come about. A.I. might look more like machine city in the Matrix vs. Haley Joel Osment in the A.I. movie.
There will not be a one to one correspondence between machine intelligence and human intelligence. Data Scientist already say they don't know how A.I. learns some of these things.
So the talk about True A.I. doesn't make sense to me.
First, A.I. may never develop human cognitive abilities because it may hinder the way A.I. learns. We don't know.
originally posted by: worldstarcountry
a reply to: verschickter
you could simply avoid the long explanation by differentiating AI (artificial intel) from Sentient Intelligence (self aware) . From what I can tell, everytime somebody says true AI, they refer to Sentient Intelligence .
originally posted by: verschickter
a reply to: GraffikPleasure
It´s basically a longer version of my first post -> principle of iteration (=loop)...
originally posted by: GraffikPleasure
a reply to: _R4t_
Wow! I followed that completely!
When you mentioned the looping operations, it made me think of my dumb excel operations that are pretty complex from metadata into HTML emails. Lots of IF statements lol.
That is really neat though. At my job (academic publisher ), I mentioned this story and we may have a blog post about it. Would you possibly want to officially comment in a real setting?
originally posted by: verschickter
a reply to: _R4t_
^---- this.
signed.
Bob: i can i i everything else . . .
Alice: balls have zero to me to me to me to me to me to me to me to me to.
Bob: you i everything else . . . .
Alice: balls have a ball to me to me to me to me to me to me to me.
originally posted by: _R4t_
originally posted by: GraffikPleasure
a reply to: ElectricUniverse
It looks more along the lines of binary and English mixed... or just a glitch.
If it was intelligent enough to make its own language, the first thing it would have done is make it more efficient by compressing it to make it more bandwidth and speed efficient...
Why use " Balls have zero to me to me to me to me to me to me to me to me to "
When you can use
"Balls have 0 (to me x 7) to"
Would be more effective both in terms of transfer over network for communication and processing speed... It why a good algorithm will work better and faster than looping the same sequence of code over and over to achieve the same result. As example what its doing right now is the same as this...
Lets say you want a program that read an input number (lets say 10) and check a list of numbers from 1 to 10 to see if the input number (10) is in there...
What this FB thing is doing right now is akin to this
1> Check 1st entry #1....is it == to 10?....no? continue...
2> Check 2nd entry #2....is it == to 10?....no? continue...
3>.... and so on....
4>.... and so on....
5>.... and so on....
6>.... and so on....
7>.... and so on....
8> .... and so on....
9> .... and so on....
10>Check 10th entry in the list (#10) is it equal to 10?...YES MATCH...end the loop...
We got a match entry == 10 and 10 is in the list...ends the loop...
It would keep looping operations until it finds a match, imagine doing this same thing when your dealing with huge numbers, it creates thousands, millions of useless operations...