10 2016 档案

Softmax回归(使用tensorflow)
摘要:1 # coding:utf8 2 import numpy as np 3 import cPickle 4 import os 5 import tensorflow as tf 6 7 class SoftMax: 8 def __init__(self,MAXT=30,step=0.0025): 9 self.MAXT = MAXT 10 ... 阅读全文

posted @ 2016-10-14 22:56 1357 阅读(1800) 评论(0) 推荐(0)

Softmax回归(使用theano)
摘要:1 # coding:utf8 2 import numpy as np 3 import cPickle 4 import theano 5 import os 6 import theano.tensor as T 7 8 class SoftMax: 9 def __init__(self,MAXT=50,step=0.15,landa=0):... 阅读全文

posted @ 2016-10-06 23:31 1357 阅读(1135) 评论(0) 推荐(0)

导航