上传者: 38610277
|
上传时间: 2021-11-15 10:06:19
|
文件大小: 48KB
|
文件类型: -
python代码如下:
import numpy as np
# Write a function that takes as input a list of numbers, and returns
# the list of values given by the softmax function.
def softmax(L):
pass
expL = np.exp(L)
sumExpL = sum(expL)
result = []
for i in expL:
result.append(i*1.0/sumExpL)
return result
python编写交叉