本文整理匯總了Python中rllab.misc.ext.iscanr方法的典型用法代碼示例。如果您正苦於以下問題:Python ext.iscanr方法的具體用法?Python ext.iscanr怎麽用?Python ext.iscanr使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類rllab.misc.ext
的用法示例。
在下文中一共展示了ext.iscanr方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: locate_with_hint
# 需要導入模塊: from rllab.misc import ext [as 別名]
# 或者: from rllab.misc.ext import iscanr [as 別名]
def locate_with_hint(class_path, prefix_hints=[]):
module_or_class = locate(class_path)
if module_or_class is None:
# for hint in iscanr(lambda x, y: x + "." + y, prefix_hints):
# module_or_class = locate(hint + "." + class_path)
# if module_or_class:
# break
hint = ".".join(prefix_hints)
module_or_class = locate(hint + "." + class_path)
return module_or_class