本文整理匯總了Python中rllab.misc.ext.sliced_fun方法的典型用法代碼示例。如果您正苦於以下問題:Python ext.sliced_fun方法的具體用法?Python ext.sliced_fun怎麽用?Python ext.sliced_fun使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類rllab.misc.ext
的用法示例。
在下文中一共展示了ext.sliced_fun方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: build_eval
# 需要導入模塊: from rllab.misc import ext [as 別名]
# 或者: from rllab.misc.ext import sliced_fun [as 別名]
def build_eval(self, inputs):
def eval(x):
xs = tuple(self.target.flat_to_params(x, trainable=True))
ret = sliced_fun(self.opt_fun["f_Hx_plain"], self._num_slices)(
inputs, xs) + self.reg_coeff * x
return ret
return eval
示例2: loss
# 需要導入模塊: from rllab.misc import ext [as 別名]
# 或者: from rllab.misc.ext import sliced_fun [as 別名]
def loss(self, inputs, extra_inputs=None):
inputs = tuple(inputs)
if extra_inputs is None:
extra_inputs = tuple()
return sliced_fun(self._opt_fun["f_loss"], self._num_slices)(inputs, extra_inputs)
示例3: constraint_val
# 需要導入模塊: from rllab.misc import ext [as 別名]
# 或者: from rllab.misc.ext import sliced_fun [as 別名]
def constraint_val(self, inputs, extra_inputs=None):
inputs = tuple(inputs)
if extra_inputs is None:
extra_inputs = tuple()
return sliced_fun(self._opt_fun["f_constraint"], self._num_slices)(inputs, extra_inputs)
示例4: build_eval
# 需要導入模塊: from rllab.misc import ext [as 別名]
# 或者: from rllab.misc.ext import sliced_fun [as 別名]
def build_eval(self, inputs):
def eval(x):
xs = tuple(self.target.flat_to_params(x, trainable=True))
ret = sliced_fun(self.opt_fun["f_Hx_plain"], self._num_slices)(inputs, xs) + self.reg_coeff * x
return ret
return eval