Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does this neural network model exist?

I'm looking for a neural network model with specific characteristics. This model may not exist...

I need a network which doesn't use "layers" as traditional artificial neural networks do. Instead, I want [what I believe to be] a more biological model.

This model will house a large cluster of interconnected neurons, like the image below. A few neurons (at bottom of diagram) will receive input signals, and a cascade effect will cause successive, connected neurons to possibly fire depending on signal strength and connection weight. This is nothing new, but, there are no explicit layers...just more and more distant, indirect connections.

As you can see, I also have the network divided into sections (circles). Each circle represents a semantic domain (a linguistics concept) which is the core information surrounding a concept; essentially a semantic domain is a concept.

Connections between nodes within a section have higher weights than connections between nodes of different sections. So the nodes for "car" are more connected to one another than nodes connecting "English" to "car". Thus, when a neuron in a single section fires (is activated), it is likely that the entire (or most of) the section will also be activated.

All in all, I need output patterns to be used as input for further output, and so on. A cascade effect is what I am after.

I hope this makes sense. Please ask for clarification where needed.

Are there any suitable models in existence that model what I've described, already?

enter image description here

like image 283
Chad Johnson Avatar asked Nov 14 '12 20:11

Chad Johnson


1 Answers

Your neural network resembles a neural network which is created using Evolutionary Algorithms for example genetic algorithm.

See following articles for details.

  • Han - Evolutionary neural networks for anomaly detection based on the behavior of a program
  • WHITLEY - Genetic Algorithms and Neural Networks

For a summary in this type of neural network. Neurons and their connections are created using evolutionary techniques. Therefore they do not have strict layer approach. Hans uses following technique:

"Genetic Operations:

The crossover operator produces a new descendant by exchanging partial sections between two neural networks. It selects two distinct neural networks randomly and chooses one hidden node as the pivot point.Then, they exchange the connection links and the corresponding weight based on the selected pivot point.

The mutation operator changes a connection link and the corresponding weight of a randomly selected neural network. It performs one of two operations: addition of a new connection or deletion of an existing connection.

The mutation operator selects two nodes of a neural network randomly. If there is no connection between them, it connects two nodes with random weights.
Otherwise, it removes the connection link and weight information. "

Following figure from Whitley's article.

Neural Network Back Propogation vs Genetic Algorithm

@ARTICLE{Han2005Evolutionary,
  author = {Sang-Jun Han and Sung-Bae Cho},
  title = {Evolutionary neural networks for anomaly detection based on the behavior
of a program},
  journal = {Systems, Man, and Cybernetics, Part B: Cybernetics, IEEE Transactions
on},
  year = {2005},
  volume = {36},
  pages = {559 -570},
  number = {3},
  month = {june },

}

@article{whitley1995genetic,
  title={Genetic algorithms and neural networks},
  author={Whitley, D.},
  journal={Genetic algorithms in engineering and computer science},
  pages={203--216},
  year={1995},
  publisher={Citeseer}
}
like image 192
Atilla Ozgur Avatar answered Nov 15 '22 07:11

Atilla Ozgur