- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正尝试在 Keras 中编写自定义损失函数,来自 this paper .即,我要创建的损失是这样的:
这是一种针对多类多标签问题的排名损失。以下是详细信息:
Y_i = set of positive labels for sample i
Y_i^bar = set of negative labels for sample i (complement of Y_i)
c_j^i = prediction on i^th sample at label j
在下文中,y_true
和 y_pred
都是 18 维的。
def multilabel_loss(y_true, y_pred):
""" Multi-label loss function.
More complete description here...
"""
zero = K.tf.constant(0, dtype=tf.float32)
where_one = K.tf.not_equal(y_true, zero)
where_zero = K.tf.equal(y_true, zero)
Y_p = K.tf.where(where_one)
Y_n = K.tf.where(where_zero)
n = K.tf.shape(y_true)[0]
loss = 0
for i in range(n):
# Here i is the ith sample; for a specific i, I find all locations
# where Y_p, Y_n belong to the ith sample; axis 0 denotes
# the sample index space
Y_p_i = K.tf.equal(Y_p[:,0], K.tf.constant(i, dtype=tf.int64))
Y_n_i = K.tf.equal(Y_n[:,0], K.tf.constant(i, dtype=tf.int64))
# Here I plug in those locations to get the values
Y_p_i = K.tf.where(Y_p_i)
Y_n_i = K.tf.where(Y_n_i)
# Here I get the indices of the values above
Y_p_ind = K.tf.gather(Y_p[:,1], Y_p_i)
Y_n_ind = K.tf.gather(Y_n[:,1], Y_n_i)
# Here I compute Y_i and its complement
yi = K.tf.shape(Y_p_ind)[0]
yi_not = K.tf.shape(Y_n_ind)[0]
# The value to normalize the inner summation
normalizer = K.tf.divide(1, K.tf.multiply(yi, yi_not))
# This creates a matrix of all combinations of indices k, l from the
# above equation; then it is reshaped
prod = K.tf.map_fn(lambda x: K.tf.map_fn(lambda y: K.tf.stack( [ x, y ] ), Y_n_ind ), Y_p_ind )
prod = K.tf.reshape(prod, [-1, 2, 1])
prod = K.tf.squeeze(prod)
# Next, the indices are fed into the corresponding prediction
# matrix, where the values are then exponentiated and summed
y_pred_gather = K.tf.gather(y_pred[i,:].T, prod)
s = K.tf.cast(K.sum(K.tf.exp(K.tf.subtract(y_pred_gather[:,0], y_pred_gather[:,1]))), tf.float64)
loss = loss + K.tf.multiply(normalizer, s)
return loss
我的问题如下:
n
的错误。即,TypeError: 'Tensor' object cannot be interpreted as an integer
。我环顾四周,但找不到阻止这种情况的方法。我的直觉是我需要完全避免 for 循环,这让我想到了Y_i
及其补集对于每个 i
可以采用不同的大小。如果您希望我详细说明我的代码,请告诉我。很高兴这样做。
更新 3
根据@Parag S. Chandakkar 的建议,我有以下几点:
def multi_label_loss(y_true, y_pred):
# set consistent casting
y_true = tf.cast(y_true, dtype=tf.float64)
y_pred = tf.cast(y_pred, dtype=tf.float64)
# this get all positive predictions and negative predictions
# it also exponentiates them in their respective Y_i classes
PT = K.tf.multiply(y_true, tf.exp(-y_pred))
PT_complement = K.tf.multiply((1-y_true), tf.exp(y_pred))
# this step gets the weight vector that we'll normalize by
m = K.shape(y_true)[0]
W = K.tf.multiply(K.sum(y_true, axis=1), K.sum(1-y_true, axis=1))
W_inv = 1./W
W_inv = K.reshape(W_inv, (m,1))
# this step computes the outer product of two tensors
def outer_product(inputs):
"""
inputs: list of two tensors (of equal dimensions,
for which you need to compute the outer product
"""
x, y = inputs
batchSize = K.shape(x)[0]
outerProduct = x[:,:, np.newaxis] * y[:,np.newaxis,:]
outerProduct = K.reshape(outerProduct, (batchSize, -1))
# returns a flattened batch-wise set of tensors
return outerProduct
# set up inputs to outer product
inputs = [PT, PT_complement]
# compute final loss
loss = K.sum(K.tf.multiply(W_inv, outer_product(inputs)))
return loss
最佳答案
这不是答案,更像是我的思考过程,应该可以帮助您编写简洁的代码。
首先,我认为您现在不应该担心这个错误,因为当您消除 for 循环时,您的代码可能看起来非常不同。
现在,我还没有看过这篇论文,但预测 c_j^i
应该是来自最后一个非 softmax 层的原始值(这是我的假设)。
因此您可以添加一个额外的 exp
层并为每个预测计算 exp(c_j^i)
。现在,for 循环是由于求和而出现的。如果你仔细观察,它所做的就是首先将所有标签成对,然后减去它们对应的预测。现在,首先将减法表示为 exp(c_l^i) * exp(-c_k^i)
。要了解发生了什么,请举一个简单的例子。
import numpy as np
a = [1, 2, 3]
a = np.reshape(a, (3,1))
按照上面的解释,你想要下面的结果。
r1 = sum([1 * 2, 1 * 3, 2 * 3]) = sum([2, 3, 6]) = 11
您可以通过矩阵乘法得到相同的结果,这是一种消除循环的方法。
r2 = a * a.T
# r2 = array([[1, 2, 3],
# [2, 4, 6],
# [3, 6, 9]])
Extract the upper triangular part ,即 2, 3, 6
并对数组求和得到 11
,这就是你想要的结果。现在,可能会有一些不同,例如,您可能需要详尽地形成所有对。您应该能够将其转换为矩阵乘法的形式。
处理好求和项后,如果预先计算量 |Y_i|
和 \bar{Y_i}
,就可以轻松计算归一化项对于每个样本 i
。将它们作为输入数组传递,并将它们作为 y_pred
的一部分传递给 loss。 i
的最终求和将由 Keras 完成。
编辑 1:即使 |Y_i|
和 \bar{Y_i}
取不同的值,您也应该能够构建一个预先计算 |Y_i|
和 \bar{Y_i}
后,无论矩阵大小如何,都可以使用通用公式提取上三角部分。
编辑 2:我认为您没有完全理解我的意思。在我看来,NumPy 根本不应该用在损失函数中。这(大部分)仅使用 Tensorflow 是可行的。我将再次解释,同时保留我之前的解释。
我现在知道正标签和负标签之间存在笛卡尔积(即分别为 |Y_i|
和 \bar{Y_i}
) .所以首先,放一个 layer of exp
在原始预测之后(在 TF 中,而不是在 Numpy 中)。
现在,您需要知道 y_true
的 18 个维度中哪些索引对应正值,哪些对应负值。如果您使用的是一种热编码,则可以使用 tf.where
和 tf.gather
即时发现这一点(参见 here )。
到现在为止,您应该知道对应于正标签和负标签的索引 j
(在 c_j^i
中)。您需要做的就是为 (k, l) 对计算
。您需要做的就是形成一个由 \sum_(k, l) {exp(c_k^i) * (1/exp(c_l^i))}
exp(c_k^i) for all k
组成的张量(称之为 A
)和另一个由 exp(c_l ^i) 对所有 l
(称之为 B
)。然后计算 sum(A * B^T)
。如果您使用的是笛卡尔积,则也无需提取上三角部分。至此,你应该得到了最内层求和的结果。
与我之前所说的相反,我认为您还可以根据 y_true
即时计算归一化因子。
您只需要弄清楚如何将其扩展到三个维度即可处理多个样本。
注:Numpy的用法是probably possible通过使用 tf.py_func
但在这里似乎没有必要。只需使用 TF 的功能即可。
关于python - 在 Keras 中构建自定义损失函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51794398/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!