HomeSort by relevance Sort by last modified time
    Searched full:t_power (Results 1 - 4 of 4) sorted by null

  /external/ply/ply/example/BASIC/
basiclex.py 35 t_POWER = r'\^'
  /external/tensorflow/tensorflow/contrib/bayesflow/python/ops/
csiszar_divergence.py 47 't_power',
csiszar_divergence_impl.py 464 def t_power(logu, t, self_normalized=False, name=None): function
496 with ops.name_scope(name, "t_power", [logu, t]):
    [all...]
  /external/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/
csiszar_divergence_test.py 304 self.assertAllClose(cd.t_power(0., t=-0.1).eval(), 0.)
305 self.assertAllClose(cd.t_power(0., t=0.5).eval(), 0.)
306 self.assertAllClose(cd.t_power(0., t=1.1).eval(), 0.)
308 cd.t_power(0., t=-0.1, self_normalized=True).eval(), 0.)
310 cd.t_power(0., t=0.5, self_normalized=True).eval(), 0.)
312 cd.t_power(0., t=1.1, self_normalized=True).eval(), 0.)
317 cd.t_power(self._logu, t=np.float64(-0.1)).eval(),
320 cd.t_power(self._logu, t=np.float64(0.5)).eval(),
323 cd.t_power(self._logu, t=np.float64(1.1)).eval(),
329 cd.t_power(self._logu, t=np.float64(-0.1)
    [all...]

Completed in 268 milliseconds