当前位置: 首页>>代码示例>>Python>>正文


Python scopes._current_arg_scope方法代码示例

本文整理汇总了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(), {}) 
开发者ID:ringringyi,项目名称:DOTA_models,代码行数:5,代码来源:scopes_test.py

示例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) 
开发者ID:ringringyi,项目名称:DOTA_models,代码行数:17,代码来源:scopes_test.py


注:本文中的inception.slim.scopes._current_arg_scope方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。