↓ 1 callersFunctionTrain(cost=None, params=None, inputs=None, outputs=None, rho=.9, givens={}, clip=False, updates={},learning_rate=.9
deep_learning_model/clf.py:157
↓ 1 callersFunctiongetBigram Input: a list of words, e.g., ['I', 'am', 'Denny'] Output: a list of bigram, e.g., ['I_am', 'am_Denny'] I use _ as join_string for this e
tree_model/ngram.py:26
↓ 1 callersFunctiongetBiterm Input: a list of words, e.g., ['I', 'am', 'Denny', 'boy'] Output: a list of biterm, e.g., ['I_am', 'I_Denny', 'I_boy', 'am_Denny', 'a
tree_model/ngram.py:84
Method__init__(self, n_in=1, n_out=1, width=1, pad=1, stride=1, dilate=1, act=T.nnet.relu)
deep_learning_model/clf.py:25
Method__init__(self, n_in=1, n_out=1, width=1, pad=1, stride=1, act=T.nnet.relu,rng=None,drop_prob=.5)
deep_learning_model/clf.py:57
FunctiongetFourgram Input: a list of words, e.g., ['I', 'am', 'Denny', 'boy'] Output: a list of trigram, e.g., ['I_am_Denny_boy'] I use _ as join
tree_model/ngram.py:67
FunctiongetTriterm Input: a list of words, e.g., ['I', 'am', 'Denny'] Output: a list of triterm, e.g., ['I_am_Denny', 'I_Denny_am', 'am_I_Denny',
tree_model/ngram.py:102