本文整理汇总了Python中inception.slim.scopes._current_arg_scope方法的典型用法代码示例。如果您正苦于以下问题:Python scopes._current_arg_scope方法的具体用法?Python scopes._current_arg_scope怎么用?Python scopes._current_arg_scope使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类inception.slim.scopes
的用法示例。
在下文中一共展示了scopes._current_arg_scope方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testEmptyArgScope
# 需要导入模块: from inception.slim import scopes [as 别名]
# 或者: from inception.slim.scopes import _current_arg_scope [as 别名]
def testEmptyArgScope(self):
with self.test_session():
self.assertEqual(scopes._current_arg_scope(), {})
示例2: testReuseArgScopeNested
# 需要导入模块: from inception.slim import scopes [as 别名]
# 或者: from inception.slim.scopes import _current_arg_scope [as 别名]
def testReuseArgScopeNested(self):
func1_kwargs = {'a': 1, 'b': None, 'c': [1]}
func2_kwargs = {'b': 2, 'd': [2]}
key = lambda f: (f.__module__, f.__name__)
current_scope1 = {key(func1): func1_kwargs.copy()}
current_scope2 = {key(func1): func1_kwargs.copy(),
key(func2): func2_kwargs.copy()}
with self.test_session():
with scopes.arg_scope([func1], a=1, b=None, c=[1]) as scope1:
with scopes.arg_scope([func2], b=2, d=[2]) as scope2:
pass
with scopes.arg_scope(scope1):
self.assertDictEqual(scopes._current_arg_scope(), current_scope1)
with scopes.arg_scope(scope2):
self.assertDictEqual(scopes._current_arg_scope(), current_scope2)