# coding: utf-8 import numpy as np def identity_function(x): return x def step_function(x): return np.array(x > 0, dtype=np.int) def sigmoid(x): return 1 / (1 + np.exp(-x)) def sigmoid_grad(x): return (1.0 - sigmoid(x)) * sigmoid(x) def relu(x): return np.maximum(0, x) def relu_grad(x): grad = np.zeros(x) grad[x>=0] = 1 return grad def softmax(x): if x.ndim == 2: x = x.T x = x - np.max(x, axis=0) y = np.exp(x) / np.sum(np.exp(x), axis=0) return y.T x = x - np.max(x) # 溢出对策 return np.exp(x) / np.sum(np.exp(x)) def mean_squared_error(y, t): return 0.5 * np.sum((y-t)**2) def cross_entropy_error(y, t): if y.ndim == 1: t = t.reshape(1, t.size) y = y.reshape(1, y.size) # 监督数据是one-hot-vector的情况下,转换为正确解标签的索引 if t.size == y.size: t = t.argmax(axis=1) batch_size = y.shape[0] return -np.sum(np.log(y[np.arange(batch_size), t] + 1e-7)) / batch_size def softmax_loss(X, t): y = softmax(X) return cross_entropy_error(y, t)
时间: 2023-12-14 11:04:06 浏览: 201
#_--_coding_UTF-8_--_import_sys,os,dlib,glob,nu_PythonFace.zip
这是一个包含各种常用神经网络函数的 Python 代码。其中 identity_function 表示恒等函数,step_function 表示阶跃函数,sigmoid 和 sigmoid_grad 表示 sigmoid 函数及其导数,relu 和 relu_grad 表示 ReLU 函数及其导数,softmax 表示 softmax 函数,mean_squared_error 和 cross_entropy_error 表示均方误差损失函数和交叉熵损失函数,softmax_loss 表示将 softmax 函数和交叉熵损失函数合并成一个层。
这些函数在神经网络的训练和测试中都有重要作用。例如,sigmoid 函数常被用于神经网络中的神经元激活函数,用于二分类任务的预测;ReLU 函数则常被用于卷积神经网络中的卷积层激活函数,用于提取图像特征;softmax 函数则常被用于神经网络中的输出层激活函数,用于多分类任务的预测。损失函数则常被用于评估神经网络的性能,用于反向传播算法的求解。
阅读全文