测试感知器

计算错误

添加一个计数器来统计错误的数量:

实例

// 针对未知数据进行测试
const counter = 500;
let errors = 0;
for (let i = 0; i < counter; i++) {
  let x = Math.random() * xMax;
  let y = Math.random() * yMax;
  let guess = ptron.activate([x, y, ptron.bias]);
  let color = "black";
  if (guess == 0) color = "blue";
  plotter.plotPoint(x, y, color);
  if (y > f(x) &amp; guess == 0) {errors++}
}

亲自试一试 »


调整感知器

如何调整感知器?

以下是一些建议:

  • 调整学习率
  • 增加训练数据的数量
  • 增加训练迭代次数