Beispiel #1
0
 def probabilities_from_activation(self, vmap):
     return activation_functions.softmax_with_zero(vmap[self])
Beispiel #2
0
 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
Beispiel #3
0
 def probabilities_from_activation(self, vmap):
     return activation_functions.softmax_with_zero(vmap[self])
Beispiel #4
0
 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