ML-games
ML-games copied to clipboard
Cool game.
Hi, cool game indeed. I am wondering:
- Can the trained network be saved and restored later?
- Can a deep network be used?
- Is it possible to put some additional obstacles on the road?
- Is it possible to decrease variation rate with longer path?
Hi, thanks. It's still an early version, so I'm open to suggestions. Right now I'm working on my engineering thesis, so I'm not planning on making any changes right now, but I will add these suggestions to my back list. But in more details:
- Right now it's not possible. I actually don't think that it's so necessary, as the learning process is quite fast. But maybe in the future.
- You can define multiple hidden layers in the config. For example:
{ "inputs": 8, "hiddenLayers": [10,30,15] }
It will define a network with 3 hidden layers with 10, 30 and 15 nodes respectively. You can also change the activation funstion for each node in "Activation function" section. You can teach them only by using genetic algorithm tho. - It's not possible on the website, but it can be easly added by editing the source code. There are already redy components just wating to be used in scenarios like that.
- The map genarator is fixed within the source code. It can be altered there, but the website doesn't allow that (at this point).
I'm sorry for the long response time, but I was on a short vacations.