用pycharm输出relu激活函数导数的图像
时间: 2024-05-06 08:18:23 浏览: 108
你可以使用以下代码在PyCharm中绘制ReLU函数的导数图像:
```python
import numpy as np
import matplotlib.pyplot as plt
def relu(x):
return np.maximum(0, x)
def derivative_relu(x):
return np.where(x > 0, 1, 0)
x = np.linspace(-5, 5, 100)
y = relu(x)
dy = derivative_relu(x)
plt.plot(x, y, label='ReLU')
plt.plot(x, dy, label='Derivative of ReLU')
plt.legend()
plt.show()
```
运行该代码后,会绘制出ReLU函数及其导数的图像。
阅读全文