我希望示例可以使您更清楚(这是一个Logistic回归对象,Theano Tensor库被导入为T)
def __init__(self, input, n_in, n_out):
#Other code...
self.p_y_given_x = T.nnet.softmax(T.dot(input, self.W) + self.b)
在主目录中被称为...
def main():
x = T.matrix()
classifier = LogisticRegression(input=x, n_in=28 * 28, n_out=10)
如果这些snippits是不够的,得到理解,代码此页上的“全部放在一起”下- http://deeplearning.net/tutorial/logreg.html#logreg
慕后森
BIG阳
相关分类