在Theano实施序数回归

时间:2017-06-21 02:56:01

标签: python machine-learning deep-learning theano

我想在Theano中实施ordinal regression。但我不知道如何实现中间部分:阈值定义和使用。

例如(简单地说):

X = T.matrix('X', dtype='float32') # Feature matrix
y = T.vector('y', dtype='int32') # labels

w = T.vector('w', dtype='float32')
threshold = T.vector('threshold', dtype='float32')

p = T.nnet.sigmoid(threshold - T.dot(X, w))
p_y_x = theano.ifelse.ifelse(T.eq(y, 0), p[y], (p[y] - p[y-1]))

loss = -T.sum(T.log(p_y_x))

我注意到p_y_x以及p的定义会出现问题。但我不知道如何修改它。有人可以帮忙吗?

0 个答案:

没有答案