Computer Hope

Other => Computer News => Topic started by: Computer Hope Admin on March 31, 2009, 11:32:30 AM

Title: Building a Brain on a Silicon Chip
Post by: Computer Hope Admin on March 31, 2009, 11:32:30 AM

An international team of scientists in Europe has created a silicon chip designed to function like a human brain. With 200,000 neurons linked up by 50 million synaptic connections, the chip is able to mimic the brain's ability to learn more closely than any other machine.

Although the chip has a fraction of the number of neurons or connections found in a brain, its design allows it to be scaled up, says Karlheinz Meier, a physicist at Heidelberg University, in Germany, who has coordinated the Fast Analog Computing with Emergent Transient States project, or FACETS.

Link (http://www.technologyreview.com/computing/22339/?a=f)

Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on March 31, 2009, 11:36:22 AM
Dang....That's mind boggling

But the hard part is, the AI for it.

They may be able to recreate the human brain as an electronic microprocessor but the AI has to control it.

Like saying, you may have the brains, but do you have the knowledge.
Title: Re: Building a Brain on a Silicon Chip
Post by: Computer Hope Admin on March 31, 2009, 12:55:42 PM
You're totally correct. But I'd imagine the hardware part would be a lot more difficult that the software.
Title: Re: Building a Brain on a Silicon Chip
Post by: BC_Programmer on March 31, 2009, 02:20:44 PM
Dang....That's mind boggling

But the hard part is, the AI for it.

They may be able to recreate the human brain as an electronic microprocessor but the AI has to control it.

Like saying, you may have the brains, but do you have the knowledge.

You have it backwards. the idea of a neural network is to allow for AI without requiring explicit programming that would be required in software- it allows for fuzzy logic decisions to be made- for example, people make fuzzy logic decisions all the time,
if we ask a person, "is this colour red" they don't internally compare the colour to equal red exactly, they apply learned fuzzy logic that essentially boils down to, "is this colour closer to red then any other colour I know". with sufficient learning, (which I might add is how a neural network gets "knowledge", and learns patterns much like the human brain does).

Some people think neural networks are a waste of time- however, they can provide far more intuitive work with computers- take for example OCR, which as it stands now is fairly strong. by programming a neural network one could acquire virtually limitless and flawless. recognition of any character to a standard unicode character.

"Training", much as with a human brain, is a necessary part of creating a neural network with the proper "connections" and, as you say, "knowledge". Training is similar to that used with people- by asking a neural network, for example "is this face male or female", it will basically need to provide a complete guess the first time. However- no matter wether the guess was right or wrong, it can then save that "knowledge" about that particular face so that it may provide more accurate "guesses" in future queries. By training the network in this way with a variety of different faces, it can achieve over a 99% accuracy on something as complex as recognizing a human face.

Some might say, 99% accuracy isn't 100%. And that, of course, is true. But as much as we hate to admit it sometimes- even we have trouble distinguishing genders- which results in some uncomfortable situations, to say the least  ;D
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on March 31, 2009, 05:35:22 PM
True but still like the article said, the chip is serial not parallel like the brain.

This could still be a limit on thinking capabilities, take Trivalent Logic:
Jan Łukasiewicz showed that the thinking of AI cannot be limited to just true and
false as shown in human thinking, that there is a third value or more that could extend
the thought capabilities to create that "fuzzy logic" that you said BC.

The chip is still just limited to TRUE/FALSE, On/Off thinking which limits it to not be able to have that "fuzzy logic" capability.

Analog computing is probably the way, to have more values than just On and Off but to have more than two values with different voltage levels or amount of current passing through. 

Even in the TRUE/FALSE computing limit, AI can be developed through sub-dividing the values beyond TRUE/FALSE with say numbers, words, characters.
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 01, 2009, 10:08:30 AM
 ;D  Glad that you had posted this, will be useful for my paper.
Title: Re: Building a Brain on a Silicon Chip
Post by: Helpmeh on April 01, 2009, 06:07:02 PM
Next thing you know, people are being harvested for energy in massive fields while they unknowinly are in a virtual universe.
Title: Re: Building a Brain on a Silicon Chip
Post by: BC_Programmer on April 01, 2009, 06:13:33 PM
Next thing you know, people are being harvested for energy in massive fields while they unknowinly are in a virtual universe.

I hear that happens every fourth year in november in the U.S.

Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 01, 2009, 06:44:30 PM
Next thing you know, people are being harvested for energy in massive fields while they unknowinly are in a virtual universe.

NetNavi's?
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 03, 2009, 09:55:44 AM
 It's about that time then.
Title: Re: Building a Brain on a Silicon Chip
Post by: BC_Programmer on April 03, 2009, 10:24:28 AM
The chip is still just limited to TRUE/FALSE, On/Off thinking which limits it to not be able to have that "fuzzy logic" capability.

With the proper algorithm, anything is possible.

A Neuron is, after all, simply a concrete object that reacts to electricity coming through it's axons by sending electricity through it's Axons. Electricity either flows through a neuron, or doesn't. there is no "fuzzy" middle ground with the signal. a Nueral network is simply a giant conglomeration of these neurons-. stimulate one here or there and whatnot for the input, and then read the outputs of particular axons of neurons on the opposite site to get the output.
The trick is of course how to pass in data such as a human face and how to parse the output.

This inevitably makes one wonder exactly how the human brain works in such a mysterious way- images can essentially be recalled on demand, or even invented- it's even able to create Virtual worlds (dreams) that are manipulated by thoughts and feelings. neurons are constantly firing- new axons are generated between neurons to form the process of learning.


I would imagine that something being learned such as "hand eye coordination" (obviously learned through various activities), would involve adding connections between the cerebellum and the Visual cortex (ack, I think that was it's name is...)
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 03, 2009, 11:11:19 AM
pretty much have specialized chips for different functions.
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 04, 2009, 05:46:49 PM
isnt that no real differnt then a cpu almost?
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 04, 2009, 08:19:10 PM
Well if you wanted to sub divide a chip into specialized functions(Speak, Voice Reg, Core, I/O) you would have to use different CPU's or just a Quad-Core Intel  ;)
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 06, 2009, 09:16:15 AM
I suppose???  But dont most do four functions?
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 06, 2009, 09:32:47 AM
I know...I'm saying if you used a Quad-core for a real AI then you could split up each function to the different cores, like the first core gets speech, the second gets speech reg, and so on and so forth..
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 06, 2009, 09:39:05 AM
I didnt mean quad I ment like a single cpu.  Atucally it does two functions I think so in sense that the quad would preforme better any way.
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 06, 2009, 09:42:56 AM
Oh...
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 06, 2009, 09:45:04 AM
like it has a math funtion and the other funtiction.....  ::) I dont recall too much.....  but I am sure of this more or less.
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 06, 2009, 09:46:36 AM
to many functions that we cannot think of to add-in...like a Drawing, Blogging, Video Watching, Fedding Dog, etc...

My head hurts... :P
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 06, 2009, 09:48:43 AM
That wouldnt be a feature of the chip unless you wanted to be like solid state.
Title: Re: Building a Brain on a Silicon Chip
Post by: BC_Programmer on April 06, 2009, 05:06:05 PM
Exactly- that would be learned bahaviour in the neural network.

a conventional processor can't "Learn", for example, if that were the case it would learn quickly not to deference a null pointer, since it will crash if it tries to do so.

Also it would probably refuse to execute the HALT instruction.


Additionally diagnosing CPU problems will be more difficult, since each processor will have had different learned behaviours, which essentially invalidate previous experience with other processors.


Title: Re: Building a Brain on a Silicon Chip
Post by: Helpmeh on April 07, 2009, 05:51:53 PM
NetNavi's?

The Matrix
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 08, 2009, 10:54:02 AM
have you been?
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 08, 2009, 12:50:50 PM
The Matrix

Nope, Megaman  :D
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 08, 2009, 12:54:10 PM
admin save you know.
Title: Re: Building a Brain on a Silicon Chip
Post by: patio on April 08, 2009, 06:55:04 PM
admin save you know.

What does this mean ? ?
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 08, 2009, 07:11:31 PM
G-Man - Admin (Half Life)

Or is he talking about Nathan?
Title: Re: Building a Brain on a Silicon Chip
Post by: patio on April 08, 2009, 07:30:29 PM
That wouldnt be a feature of the chip unless you wanted to be like solid state.

I'm still working on this one so i can't say at the moment...
Title: Re: Building a Brain on a Silicon Chip
Post by: BC_Programmer on April 08, 2009, 07:31:43 PM
G-Man - Admin (Half Life)


Except the admin is Wallace Breen....
Title: Re: Building a Brain on a Silicon Chip
Post by: macdad- on April 09, 2009, 08:31:14 AM
Ahh..So you know  ;D
Title: Re: Building a Brain on a Silicon Chip
Post by: squall_01 on April 15, 2009, 09:17:46 AM
yeah I ment him.  he probably has been.