Storing logic information using neural networks

Started by
11 comments, last by Jotaf 19 years, 10 months ago
Has anyone ever tried to use neural networks to store information like "A is B" etc? I mean, like the part of our brain that stores that a cow is a mammal and a mammal is an animal, not the part that finds out that if this is true then a cow is an animal (this would be the "logic unit" - although if you know anything about that it would be great if you shared that too ). I already know everything (or most of) what I need about recognizing simple patterns, I wanted to know if this is possible, in the works, or if it has been done [edited by - Jotaf on May 27, 2004 12:19:21 PM]
Advertisement
check out 20q.net
quote:Original post by Jotaf
Has anyone ever tried to use neural networks to store information like "A is B" etc?

I mean, like the part of our brain that stores that a cow is a mammal and a mammal is an animal, not the part that finds out that if this is true then a cow is an animal (this would be the "logic unit" - although if you know anything about that it would be great if you shared that too ). I already know everything (or most of) what I need about recognizing simple patterns, I wanted to know if this is possible, in the works, or if it has been done



Yes, some things along these lines have been done. The experiments I''ve seen using MLPs (multilayer perceptrons) didn''t seem terribly promising. Some work was done at some point using SDMs (sparse distributed memory), where the network is fired multiple times, chaining one iteration off the last. AFFM (adaptive fuzzy feature maps) also represent connections among distinct items.

Frankly, though, I would imagine that this sort of operation (if I understand your meaning) would be more efficiently constructed using a relational database or Prolog.

-Predictor
http://will.dwinnell.com




I would use semantic networks...

Semantic network is sort of an array of elements,
each element has two arrays: one that stores the elements it is connected to, and the other stores the type of connection.

check out www.generation5.org
Click here to patch the mozilla IDN exploit, or click Here then type in Network.enableidn and set its value to false. Restart the browser for the patches to work.
Yes, a relational database, or semantic network, is the right tool for the job. But our brain can do it using neurons, so it should be possible to create a construct that works like a semantic network, but instead of being hard-wired, it uses artificial neurons.

Why am I not surprised that multilayer perceptrons aren't too good for this? They're easy to code but a brain doesn't work like that (this is too limiting, real neurons are much more flexible), it's more like a neuron can accept input from any other neuron and send output to any other neuron - is that the "sparse distributed memory" you're talking about? It would be great if you had some links to papers describing this (and even greater if they weren't too academic and lenghty, thanks ).

AFFM could be useful to find out what neurons in a flexible network are more likely to relate to each other, right?

[edited by - Jotaf on May 28, 2004 12:00:35 PM]
Hello...
This is an area of programming that I am very interested in, but haven't actually got around to studing yet... but..I think what you want to do(simulate human memory and knowledge) may be very difficult, or impossible with todays technology. The problem that I see right away is that our brains never turn off. therefore we have been colecting, and processing, and storing info since even before we were born. That is why I think it would be hard to do this in a computer because of the fact that sometime the computer will go off, and all the info you have stored in neurons will be lost.

That said, I still think this is something we should research, and figure out..... maybe find a way to store the info held to disk and load it next time. But there is tons of information in our brian. Would be a good challenge to overcome, that's for sure

Any other ideas or suggestions?

Mike

[edited by - mrhodes on May 28, 2004 12:20:25 PM]
Michael RhodesTiger Studios Web Designhttp://tigerstudios.net
One of the grad students I shared an office with when I was doing my PhD developed a feed-forward ANN based on constraint satisfaction nodes that could perform this sort of operation trivially. If I recall correctly it could also be trained in forward mode (no need for back-prop)! Last I heard her model was being patented but there was some opposition from some ''big wig'' members of our faculty who didn''t think what she was doing was reasonable (I don''t think they like being shown up by a grad student). I think she did publish a paper on it... or at least she was off at a conference delivering a paper when I finished up... I''ll see what I can track down for you...

Timkin
I''ve been doing some conceptuals on this and while trying to find some info about this on the net i ran into this gamedev post. I''m glad I''m not crazy enough to be the only one who thought about this while reading about how the brain stores it''s memories. My idea is to use a core module which then stores it''s information as a neural network. So if the core module can train a neuron to recognize red, then it is a memory place where the color red is stored so it doesn''t have to be stored anymore and all of the objects that the system remembers as being specifically red will be connected to this.

I don''t know where i''m going to so I''m reading about this on the net after some marihuana (jk)
I have neurons in my butt!!!
A researcher by the name of Ben Goertzel had an idea he called Hebbian Logic Networks, which he felt would work for this, but it''s never been implemented (he''s working on another method most of the time).

The paper can be found here.

Keep in mind this is way beyond the level of difficulty of usual AI''s for games (or any other purpose, for that matter).
---New infokeeps brain running;must gas up!
It''s a pretty interesting paper, it is quite high level in its content but I''m sure we can take it to much simpler terms. As the paper mentions it is only an outline of what can be the real thing. It''s great to know someone else thought about a theory you were unsure off yourself, this opens up many ideas in my head and encourages. Just gotta make it better!

THanks Flarelocke
I have neurons in my butt!!!

This topic is closed to new replies.

Advertisement