示例#1
0
文件: units.py 项目: OwaJawa/morb
 def probabilities_from_activation(self, vmap):
     return activation_functions.softmax_with_zero(vmap[self])
示例#2
0
文件: units.py 项目: pbrakel/morb
 def sample_from_activation(self, vmap):
     p0 = activation_functions.softmax_with_zero(vmap[self])
     s0 = samplers.multinomial(p0)
     s = s0[:, :, :-1]  # chop off the last state (zero state)
     return s
示例#3
0
 def probabilities_from_activation(self, vmap):
     return activation_functions.softmax_with_zero(vmap[self])
示例#4
0
文件: units.py 项目: pbrakel/morb
 def sample_from_activation(self, vmap):
     p0 = activation_functions.softmax_with_zero(vmap[self])
     s0 = samplers.multinomial(p0)
     s = s0[:, :, :-1]  # chop off the last state (zero state)
     return s