摘要:
import numpy,math def softmax(inMatrix): m,n = numpy.shape(inMatrix) outMatrix = numpy.mat(numpy.zeros((m,n))) soft_sum = 0 for idx in range(0,n): outMatrix[0,idx] = math.exp... 阅读全文
posted @ 2019-02-06 10:37
吴裕雄
阅读(255)
评论(0)
推荐(0)
2019年2月6日