当前位置:网站首页>Relu function of activation function
Relu function of activation function
2022-04-23 11:40:00 【Hey, little black 15kg】
relu function
ReLU (Rectified Linear Unit) function .ReLU Function at input greater than 0 when , Output the value directly ; Enter less than or equal to 0 when , Output 0.
import matplotlib.pyplot as plt
import numpy as np
def relu(x):
return np.maximum(0,x)
if __name__ == '__main__':
x = np.arange(-5, 5, 0.1)
y = relu(x)
plt.plot(x, y)
plt.ylim(-1, 5)
plt.show()
Execution results :
版权声明
本文为[Hey, little black 15kg]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231136045965.html
边栏推荐
- 解析社交性机器人对基础科学的作用
- Yunna | how to manage the company's fixed assets and how to manage fixed assets
- Résumé de la relation entre GPU, cuda et cudnn
- C#的学习笔记【八】SQL【一】
- nacos基础(6):nacos配置管理模型
- Nacos Basics (5): getting started with Nacos configuration
- Advanced file IO of system programming (13) -- IO multiplexing - Select
- SOFA Weekly | 年度优秀 Committer 、本周 Contributor、本周 QA
- Summary of the relationship among GPU, CUDA and cudnn
- PyTorch 神经网络训练器
猜你喜欢
How to count fixed assets and how to generate an asset count report with one click
解析性能良好的机器人使用守则
微型机器人的认知和研发技术
Interpretation of biological recognition in robot programming course
简易投票系统数据库设计
GPU, CUDA,cuDNN三者的關系總結
Laravel adds custom helper functions
RebbitMQ的初步了解
系统编程之高级文件IO(十三)——IO多路复用-select
Simple construction of rebbitmq
随机推荐
Analyze the rules for the use of robots with good performance
MQ is easy to use in laravel
golang之笔试题&面试题01
Share two practical shell scripts
Laravel adds custom helper functions
Tclerror: no display name and no $display environment variable
激活函数之sigmoid函数
ThinkPHP adds image text watermark to generate promotion poster with QR code
IMEU如何与IMCU相关联(IM 5.5)
Laravel绑定钉钉群警报(php)
tensorflow常用的函数
微型机器人的认知和研发技术
The listing of saiweidian Technology Innovation Board broke: a decrease of 26% and the market value of the company was 4.4 billion
Chapter 4 specifies the attribute of the inmemory column on the no inmemory table for im enabled filling objects: examples (Part IV of im-4.4)
抓包整理————tcp 协议[八]
谁说抠图要会 PS?这个开源神器还能批量抠,效果拔群!
数据库如何填充IM表达式(IM 5.4)
The fourth chapter is about enabling and disabling the im column storage of table space for im enabled filling objects (IM 4.5)
Interpretation of biological recognition in robot programming course
PyTorch 神经网络训练器