codecamp

AI人工智能 基于感知器的分类器

感知器是 ANN 的基石。 如果您想了解更多关于 Perceptron 的信息,可以点击链接 - artificial_neural_network

以下是逐步执行 Python 代码,用于构建基于感知器的简单神经网络分类器 -

如下所示导入必要的软件包 -

import matplotlib.pyplot as plt
import neurolab as nl

请注意,这是一个监督学习的例子,因此您也必须提供目标值。

input = [[0, 0], [0, 1], [1, 0], [1, 1]]
target = [[0], [0], [0], [1]]

2 个输入和 1 个神经元创建网络 -

net = nl.net.newp([[0, 1],[0, 1]], 1)

现在,训练网络。 在这里使用 Delta 规则进行训练。

error_progress = net.train(input, target, epochs=100, show=10, lr=0.1)

接下来,可视化输出并绘制图表 -

plt.figure()
plt.plot(error_progress)
plt.xlabel('Number of epochs')
plt.ylabel('Training error')
plt.grid()
plt.show()

可以看到下图显示了使用错误度量标准的训练进度 -

img

AI人工智能 神经网络概述
AI人工智能 单层神经网络
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

AI人工智能监督学习(回归)

AI人工智能无监督学习:聚类

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }