Ruby编写的易于使用的神经网络库:rb-brain
rb-brain
是一个采用Ruby开发,易于使用于的神经网络库。Here's an example of using it to approximate the XOR function:
require 'brain' net = Brain::NeuralNetwork.new net.train([{input: [0, 0], output: [0]}, {input: [0, 1], output: [1]}, {input: [1, 0], output: [1]}, {input: [1, 1], output: [0]}]) output = net.run([1, 0]) # [0.948]
本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!