摘要:
原文:http://pytorch.org/tutorials/beginner/blitz/tensor_tutorial.html 声明一个张量 x = torch.Tensor(5,3) 生成一个5*3的为初始化的张量 x = torch.rand(5,3) 生成一个5*3的全部元素随机的张量 阅读全文
摘要:
本次也是用processing3.0+写的,其官方网站https://processing.org/,建议直接看reference的例子进行学习。 感知器算法用的是我们老师给的ppt,实现的是二维的感知器,为了方便看,实际上多维的也是一样的: 运行效果是: 为了试验方便,我这是用了点击取点,键盘按一 阅读全文