- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有这个代码:
"""Softmax."""
import math
scores = [3.0, 1.0, 0.2]
import numpy as np
def softmax(x):
"""Compute softmax values for each sets of scores in x."""
pass # TODO: Compute and return softmax(x)
sum_denominator = 0
powers = []
for item in x:
powers.append(math.e**item)
sum_denominator = sum_denominator + powers[-1]
for idx in range(len(x)):
x[idx] = powers[idx]/sum_denominator
return x
print(softmax(scores))
# Plot softmax curves
import matplotlib.pyplot as plt
x = np.arange(-2.0, 6.0, 0.1)
scores = np.vstack([x, np.ones_like(x), 0.2 * np.ones_like(x)])
plt.plot(x, softmax(scores).T, linewidth=2)
plt.show()
产生这个:
我不确定我是怎么得到那个情节的。我明白大分数应该给出大概率,但我无法理解情节。 numpy.ones_like对我也没有太大帮助,你呢? :)
编辑:
因为我得到了一个不清楚我在问什么的投票,所以我问这个,如何从 [0.8360188027814407, 0.11314284146556014, 0.050838355752999165]
的向量中应用 softmax 的结果scores
,我得到了那个情节。我的意思是这背后的逻辑是什么?
分数(在 vstack()
之后)是这样的:
[[ -2.00000000e+00 -1.90000000e+00 -1.80000000e+00 -1.70000000e+00 -1.60000000e+00 -1.50000000e+00 -1.40000000e+00 -1.30000000e+00 -1.20000000e+00 -1.10000000e+00 -1.00000000e+00 -9.00000000e-01 -8.00000000e-01 -7.00000000e-01 -6.00000000e-01 -5.00000000e-01 -4.00000000e-01 -3.00000000e-01 -2.00000000e-01 -1.00000000e-01 1.77635684e-15 1.00000000e-01 2.00000000e-01 3.00000000e-01 4.00000000e-01 5.00000000e-01 6.00000000e-01 7.00000000e-01 8.00000000e-01 9.00000000e-01 1.00000000e+00 1.10000000e+00 1.20000000e+00 1.30000000e+00 1.40000000e+00 1.50000000e+00 1.60000000e+00 1.70000000e+00 1.80000000e+00 1.90000000e+00 2.00000000e+00 2.10000000e+00 2.20000000e+00 2.30000000e+00 2.40000000e+00 2.50000000e+00 2.60000000e+00 2.70000000e+00 2.80000000e+00 2.90000000e+00 3.00000000e+00 3.10000000e+00 3.20000000e+00 3.30000000e+00 3.40000000e+00 3.50000000e+00 3.60000000e+00 3.70000000e+00 3.80000000e+00 3.90000000e+00 4.00000000e+00 4.10000000e+00 4.20000000e+00 4.30000000e+00 4.40000000e+00 4.50000000e+00 4.60000000e+00 4.70000000e+00 4.80000000e+00 4.90000000e+00 5.00000000e+00 5.10000000e+00 5.20000000e+00 5.30000000e+00 5.40000000e+00 5.50000000e+00 5.60000000e+00 5.70000000e+00 5.80000000e+00 5.90000000e+00] [ 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00 1.00000000e+00] [ 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01 2.00000000e-01]]
最佳答案
所以我不确定这是否是一个答案,但它太短不能作为评论发布,所以我将它作为答案发布。
所以当我运行上面的程序时,这就是我得到的:
In [12]: %run softmax.py
[0.8360188027814407, 0.11314284146556014, 0.050838355752999165]
所以这清楚地打印了你得到的,但是当我现在打印 scores
时,这就是我得到的(不是你上面发布的,它是 x
和 len = 80
数组)。
In [13]: scores
Out[13]:
array([[ 0.03321095, 0.03657602, 0.04026786, 0.04431519, 0.04874866,
0.05360079, 0.05890597, 0.06470033, 0.07102165, 0.07790913,
0.08540313, 0.09354484, 0.10237584, 0.11193758, 0.12227071,
0.13341442, 0.1454055 , 0.15827749, 0.17205954, 0.18677538,
0.20244208, 0.21906889, 0.23665609, 0.25519382, 0.27466117,
0.29502533, 0.31624106, 0.33825043, 0.36098289, 0.38435576,
0.40827509, 0.4326369 , 0.45732888, 0.48223232, 0.50722433,
0.53218029, 0.55697628, 0.58149154, 0.60561081, 0.62922636,
0.65223985, 0.67456369, 0.69612215, 0.71685193, 0.73670245,
0.75563572, 0.77362587, 0.79065851, 0.80672976, 0.82184522,
0.8360188 , 0.84927158, 0.86163055, 0.87312754, 0.88379809,
0.89368047, 0.90281483, 0.91124236, 0.91900464, 0.9261431 ,
0.93269849, 0.93871054, 0.94421766, 0.94925668, 0.95386276,
0.9580692 , 0.96190744, 0.96540703, 0.9685956 , 0.97149895,
0.97414105, 0.97654413, 0.97872877, 0.98071396, 0.98251718,
0.98415453, 0.98564077, 0.98698946, 0.98821298, 0.98932269],
[ 0.66705977, 0.66473796, 0.66219069, 0.65939813, 0.65633915,
0.6529913 , 0.64933087, 0.6453329 , 0.64097135, 0.63621917,
0.6310485 , 0.62543093, 0.61933776, 0.61274041, 0.60561081,
0.59792194, 0.58964839, 0.58076705, 0.57125779, 0.56110424,
0.55029462, 0.53882253, 0.52668782, 0.51389725, 0.50046528,
0.48641453, 0.47177622, 0.45659032, 0.4409055 , 0.42477881,
0.40827509, 0.39146606, 0.37442922, 0.35724649, 0.34000264,
0.32278366, 0.30567506, 0.28876015, 0.27211848, 0.25582435,
0.23994563, 0.22454275, 0.20966796, 0.19536494, 0.18166859,
0.16860512, 0.15619237, 0.14444028, 0.13335153, 0.12292225,
0.11314284, 0.10399876, 0.09547139, 0.08753876, 0.08017635,
0.07335776, 0.06705529, 0.06124051, 0.05588473, 0.05095938,
0.04643632, 0.04228816, 0.03848839, 0.03501159, 0.03183352,
0.02893118, 0.02628289, 0.02386827, 0.02166823, 0.019665 ,
0.01784202, 0.01618395, 0.0146766 , 0.01330688, 0.0120627 ,
0.01093297, 0.0099075 , 0.00897694, 0.00813274, 0.00736707],
[ 0.29972928, 0.29868602, 0.29754146, 0.29628668, 0.29491219,
0.29340791, 0.29176317, 0.28996677, 0.28800699, 0.2858717 ,
0.28354837, 0.28102423, 0.27828639, 0.27532201, 0.27211848,
0.26866364, 0.2649461 , 0.26095546, 0.25668267, 0.25212039,
0.24726331, 0.24210857, 0.23665609, 0.23090892, 0.22487355,
0.21856014, 0.21198272, 0.20515925, 0.19811161, 0.19086542,
0.18344982, 0.17589704, 0.16824189, 0.16052119, 0.15277303,
0.14503605, 0.13734866, 0.1297483 , 0.12227071, 0.11494929,
0.10781452, 0.10089356, 0.09420989, 0.08778313, 0.08162896,
0.07575916, 0.07018176, 0.0649012 , 0.05991871, 0.05523253,
0.05083836, 0.04672966, 0.04289806, 0.0393337 , 0.03602556,
0.03296177, 0.03012988, 0.02751713, 0.02511063, 0.02289752,
0.02086519, 0.0190013 , 0.01729395, 0.01573172, 0.01430372,
0.01299962, 0.01180966, 0.0107247 , 0.00973616, 0.00883605,
0.00801693, 0.00727192, 0.00659462, 0.00597916, 0.00542012,
0.0049125 , 0.00445173, 0.0040336 , 0.00365428, 0.00331024]])
所以这个 scores
显然是我们根据 x
绘制的,它从 -2.0 到 6.0
。
blue
行是第一个数组 (即 scores[0])
,它自始至终都在增加。但是剩下的两个数组从 0.29
左右开始减少。
编辑:
我们看到这个图的原因是,我们正在绘制 x
对 softmax(scores)
的图,其中 scores
是 np。 vstack([x, np.ones_like(x), 0.2 * np.ones_like(x)])
如果您只是绘制x,scores
,您将得到的只是直线,请自行尝试。
关于python - 我是怎么得到这个数字的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38014612/
我正在维护一些 Java 代码,我目前正在将它们转换为 C#。 Java 代码是这样做的: sendString(somedata + '\000'); 在 C# 中,我正在尝试做同样的事情: sen
如何确定函数中传递的参数是字符串还是字符(不确定如何正确调用它)文字? 我的函数(不正确): void check(const char* str) { // some code here }
我真的不知道如何准确地提出这个问题,但我希望标题已经说明了这一点。 我正在寻找一种方法(一个框架/库),它提供了执行 String.contains() 函数的能力,该函数告诉我给定的字符串是否与搜索
我正在尝试编写一些读取 Lambda 表达式并输出 beta 缩减版本的东西。 Lambda 的类型如下:\variable -> expression,应用程序的形式为 (表达式) (表达式)。因此
StackOverflow 上的第 1 篇文章,如果我没能把它做好,我深表歉意。我陷入了一个愚蠢的练习,我需要制作一个“刽子手游戏”,我尝试从“.txt”文件中读取单词,然后我得到了我的加密函数,它将
我想在 Groovy 中测试我的 Java 自定义注释,但由于字符问题而未能成功。 Groovyc: Expected 'a' to be an inline constant of type cha
当我尝试在单击按钮期间运行 javascript location.href 时,出现以下错误“字 rune 字中的字符过多”。 最佳答案 这应该使用 OnClientClick相反? 您可能还想停
我想要类似的东西: let a = ["v".utf8[0], 1, 2] 我想到的最接近的是: let a = [0x76, 1, 2] 和 "v".data(using: String.Encod
有没有办法在 MySQL 中指定 Unicode 字 rune 字? 我想用 Ascii 字符替换 Unicode 字符,如下所示: Update MyTbl Set MyFld = Replace(
阅读 PNG 规范后,我有点惊讶。我读过字 rune 字应该用像 0x41 这样的二进制值进行硬编码,而不是在(程序员友好的)'A' 中。问题似乎是在具有不同底层字符集的不同系统上编译期间字 rune
考虑一个具有 UTF-8 执行字符集的 C++11 编译器(并且符合要求 char 类型为有符号 8 位字节的 x86-64 ABI) . 字母 Ä(元音变音)具有 0xC4 的 unicode 代码
为什么即使有 UTF-8 字符串文字,C11 或 C++11 中也没有 UTF-8 字 rune 字?我知道,一般来说,字 rune 字表示单个 ASCII 字符,它与单字节 UTF-8 代码点相同,
我怎样才能用 Jade 做到这一点? how would I do this 我几乎可以做任何事情,除了引入一个 span 中间句子。 最佳答案 h3.blur. how would I do t
这似乎是一个非常简单的问题,但我只是想澄清我的疑问。我正在查看其他开发人员编写的代码。有一些涉及 float 的计算。 示例:Float fNotAvlbl = new Float(-99); 他为什
我想知道第 3 行“if dec:”中的“dec”是什么意思 1 def dec2bin(dec): 2 result='' 3 if dec:
我试图在字符串中查找不包含任何“a”字符的单词。我写了下面的代码,但它不起作用。我怎么能对正则表达式说“不包括”?我不能用“^”符号表示“不是”吗? import re string2 = "asfd
这个问题在这里已经有了答案: Is floating point math broken? (31 个答案) Is floating point arbitrary precision availa
我正在创建一个时尚的文本应用程序,但在某些地方出现错误(“字 rune 字中的字符太多”)。我只写了一个字母,但是当我粘贴它时,它会转换成许多这样的字母:“\uD83C\uDD89”,原始字母是“🆉
我正在尝试检查用户是否在文本框中输入了一个数字值,是否接受了小数位。非常感谢任何帮助。 Private Sub textbox1_AfterUpdate() If IsNumeric(textbox1
我知道一个 Byte 是 8 位,但其他的代表什么?我正在参加一个使用摩托罗拉 68k 架构的汇编类(class),我对目前的词汇感到困惑。 最佳答案 如 operator's manual for
我是一名优秀的程序员,十分优秀!