├── LICENSE ├── README.md ├── index.html ├── lib ├── math.js ├── planck-with-testbed.js ├── tf.js └── utils.js ├── main.js ├── neat ├── neat.js ├── pretrained.js └── robot_neat.js ├── robot.js ├── ss.gif └── vanilla_ne ├── ga.js ├── nn.js ├── pretrained.js └── robot_vne.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/index.html -------------------------------------------------------------------------------- /lib/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/lib/math.js -------------------------------------------------------------------------------- /lib/planck-with-testbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/lib/planck-with-testbed.js -------------------------------------------------------------------------------- /lib/tf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/lib/tf.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/lib/utils.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/main.js -------------------------------------------------------------------------------- /neat/neat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/neat/neat.js -------------------------------------------------------------------------------- /neat/pretrained.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/neat/pretrained.js -------------------------------------------------------------------------------- /neat/robot_neat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/neat/robot_neat.js -------------------------------------------------------------------------------- /robot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/robot.js -------------------------------------------------------------------------------- /ss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/ss.gif -------------------------------------------------------------------------------- /vanilla_ne/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/vanilla_ne/ga.js -------------------------------------------------------------------------------- /vanilla_ne/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/vanilla_ne/nn.js -------------------------------------------------------------------------------- /vanilla_ne/pretrained.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/vanilla_ne/pretrained.js -------------------------------------------------------------------------------- /vanilla_ne/robot_vne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishig25/neuroevolution-robots/HEAD/vanilla_ne/robot_vne.js --------------------------------------------------------------------------------