感知器分类和 R
我有四个点: a=(-0.5, -0.5) b=(-0.5, 0.5) c=(0.3, -0.5) d=(0.0, 1.0)
我需要对这些点进行分类,首先是 a,b ,然后是c, d
第一步是定义感知器,但是,在 R 中定义感知器的方法是什么?
谢谢
I have four points: a=(-0.5, -0.5) b=(-0.5, 0.5) c=(0.3, -0.5) d=(0.0, 1.0)
I need to classificate these points, first a,b and after c, d
The first step is to define the perceptron, but, What is the way to define a perceptron in R?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将有助于表明您已经完成了一些作业...
在 http://rseek.org 中搜索“perceptron”
还可以在 StackOverflow 中搜索
[r] perceptron
,尽管搜索的内容不多;你也可以尝试[r] 神经网络
...It would help to show that you've done some homework ...
Search "perceptron" at http://rseek.org
Also search StackOverflow for
[r] perceptron
, although that doesn't get much; you might try[r] neural net
too ...