Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
223 views

Software and Bio-Mimicry

I'm wondering if anyone knows of any software techniques taking advantage of biology? For example in the robotics world there are tons but what about software?
6
votes
3answers
408 views

Neural Network “Breeding”

I just watched a Google tech talk video covering "Polyworld" (found here) and they talk about breeding two neural networks together to form offspring. My question is, how would one go about combining ...
5
votes
6answers
524 views

Multi-purpose 3d Artificial Life Engine?

Studying emergence, it's quite useful to have a development framework to build upon to quickly test out new ideas. 3d with physics collision would be nice, and open-source would be a big plus. For ...
4
votes
2answers
508 views

XNA field of view in 2D

I'm working on a 2D game in XNA based around flocking. I've implemented Craig Reynold's flocking technique and now I want to dynamically assign a leader to the group to guide it towards a target. To ...
3
votes
2answers
73 views

Should I add a bias to an artificial neural network that is being trained by a genetic algorithm

I have an ANN that controls an artificial herbivore. The inputs are the closest plant's magnitude and direction, the closest mate's magnitude and direction, and the herbivore's health. The outputs are ...
3
votes
4answers
215 views

Flocking boids behaviour problem

Yesterday I came across Craig Reynolds' Boids, and subsequently figured that I'd give implementing a simple 2D version in Java a go. I've put together a fairly basic setup based closely on Conrad ...
3
votes
2answers
223 views

Criteria of software program being intelligent [closed]

Just out of curiosity, assuming there exists a software life form. How would you detect him/her? What are your criteria of figuring out if something/someone is intelligent or not? It seems to me that ...
3
votes
4answers
345 views

Efficient Methods for a Life Simulation

Having read up on quite a few articles on Artificial Life (A subject I find very interesting) along with several questions right here on SO, I've begun to toy with the idea of designing a (Very, very, ...
2
votes
2answers
47 views

Wa-Tor like cellular automata. In which order should the cells be updated?

Some time ago I've written a Wa-Tor like cellular automata (see Wikipedia) but with a few more species and a little smarter species. Except for a lot of fine tuning to get a stable system it was quite ...
2
votes
2answers
60 views

How to translate a set of/a chromosome/s to an attribute?

So, since the answer to this basically said that I really should look into encoding the genes of my creatures*, which I did! So, I created the following neat little (byte[]-) structure: Gene = { ...
2
votes
1answer
299 views

depth-first algorithm in python does not work

I have some project which I decide to do in Python. In brief: I have list of lists. Each of them also have lists, sometimes one-element, sometimes more. It looks like this: rules=[ ...
2
votes
2answers
122 views

How to prevent a javascript stack overflow?

I've been building Conway's Life with javascript / jquery in order to run it in a browser Here. Chrome, Firefox and Opera or Safari do this pretty fast so preferably don't use IE for this. IE9 is ok ...
1
vote
3answers
131 views

Best way to program an “Excel-like” network of influence in Ruby?

I have a network of nodes, each node influencing the state of some other nodes (imagine an Excel spreadsheet with cells values depending on other cells through formulas). I'm wondering what is the ...