"""This script demonstrates the implementation of the ReLU function.It's a kind of activation function defined as the positive part of its argument in thecontext of neural network.The function takes a vector of K real numbers as input and then argmax(x, 0).After through ReLU, the element of the vector always 0 or real number.Script inspired from its corresponding Wikipedia articlehttps://en.wikipedia.org/wiki/Rectifier_(neural_networks)"""from typing import Listimport numpy as npdef relu(vector: List[float]):"""Implements the relu functionParameters:vector (np.array,list,tuple): A numpy array of shape (1,n)consisting of real values or a similar list,tupleReturns:relu_vec (np.array): The input numpy array, after applyingrelu.>>> vec = np.array([-1, 0, 5])>>> relu(vec)array([0, 0, 5])"""# compare two arrays and then return element-wise maxima.return np.maximum(0, vector)if __name__ == "__main__":print(np.array(relu([-1, 0, 5]))) # --> [0, 0, 5]
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。