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


Python flags.FlagsError方法代码示例

本文整理汇总了Python中tensorflow.flags.FlagsError方法的典型用法代码示例。如果您正苦于以下问题:Python flags.FlagsError方法的具体用法?Python flags.FlagsError怎么用?Python flags.FlagsError使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tensorflow.flags的用法示例。


在下文中一共展示了flags.FlagsError方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: validate_class_name

# 需要导入模块: from tensorflow import flags [as 别名]
# 或者: from tensorflow.flags import FlagsError [as 别名]
def validate_class_name(flag_value, category, modules, expected_superclass):
    """Checks that the given string matches a class of the expected type.
      Args:
        flag_value: A string naming the class to instantiate.
        category: A string used further describe the class in error messages
                  (e.g. 'model', 'reader', 'loss').
        modules: A list of modules to search for the given class.
        expected_superclass: A class that the given class should inherit from.
      Raises:
        FlagsError: If the given class could not be found or if the first class
        found with that name doesn't inherit from the expected superclass.
      Returns:
        True if a class was found that matches the given constraints.
      """
    candidates = [getattr(module, flag_value, None) for module in modules]
    for candidate in candidates:
        if not candidate:
            continue
        if not issubclass(candidate, expected_superclass):
            raise flags.FlagsError("%s '%s' doesn't inherit from %s." %
                                   (category, flag_value,
                                    expected_superclass.__name__))
        return True
    raise flags.FlagsError("Unable to find %s '%s'." % (category, flag_value)) 
开发者ID:pomonam,项目名称:AttentionCluster,代码行数:26,代码来源:train.py

示例2: validate_class_name

# 需要导入模块: from tensorflow import flags [as 别名]
# 或者: from tensorflow.flags import FlagsError [as 别名]
def validate_class_name(flag_value, category, modules, expected_superclass):
  """Checks that the given string matches a class of the expected type.

  Args:
    flag_value: A string naming the class to instantiate.
    category: A string used further describe the class in error messages
              (e.g. 'model', 'reader', 'loss').
    modules: A list of modules to search for the given class.
    expected_superclass: A class that the given class should inherit from.

  Raises:
    FlagsError: If the given class could not be found or if the first class
    found with that name doesn't inherit from the expected superclass.

  Returns:
    True if a class was found that matches the given constraints.
  """
  candidates = [getattr(module, flag_value, None) for module in modules]
  for candidate in candidates:
    if not candidate:
      continue
    if not issubclass(candidate, expected_superclass):
      raise flags.FlagsError("%s '%s' doesn't inherit from %s." %
                             (category, flag_value,
                              expected_superclass.__name__))
    return True
  raise flags.FlagsError("Unable to find %s '%s'." % (category, flag_value)) 
开发者ID:antoine77340,项目名称:Youtube-8M-WILLOW,代码行数:29,代码来源:train.py

示例3: validate_class_name

# 需要导入模块: from tensorflow import flags [as 别名]
# 或者: from tensorflow.flags import FlagsError [as 别名]
def validate_class_name(flag_value, category, modules, expected_superclass):
    """Checks that the given string matches a class of the expected type.

    Args:
      flag_value: A string naming the class to instantiate.
      category: A string used further describe the class in error messages
                (e.g. 'model', 'reader', 'loss').
      modules: A list of modules to search for the given class.
      expected_superclass: A class that the given class should inherit from.

    Raises:
      FlagsError: If the given class could not be found or if the first class
      found with that name doesn't inherit from the expected superclass.

    Returns:
      True if a class was found that matches the given constraints.
    """
    candidates = [getattr(module, flag_value, None) for module in modules]
    for candidate in candidates:
        if not candidate:
            continue
        if not issubclass(candidate, expected_superclass):
            raise flags.FlagsError("%s '%s' doesn't inherit from %s." %
                                   (category, flag_value,
                                    expected_superclass.__name__))
        return True
    raise flags.FlagsError("Unable to find %s '%s'." % (category, flag_value)) 
开发者ID:wangheda,项目名称:youtube-8m,代码行数:29,代码来源:train-with-rebuild.py

示例4: validate_class_name

# 需要导入模块: from tensorflow import flags [as 别名]
# 或者: from tensorflow.flags import FlagsError [as 别名]
def validate_class_name(flag_value, category, modules, expected_superclass):
  """Checks that the given string matches a class of the expected type.

  Args:
    flag_value: A string naming the class to instantiate.
    category: A string used further describe the class in error messages (e.g.
      'model', 'reader', 'loss').
    modules: A list of modules to search for the given class.
    expected_superclass: A class that the given class should inherit from.

  Raises:
    FlagsError: If the given class could not be found or if the first class
    found with that name doesn't inherit from the expected superclass.

  Returns:
    True if a class was found that matches the given constraints.
  """
  candidates = [getattr(module, flag_value, None) for module in modules]
  for candidate in candidates:
    if not candidate:
      continue
    if not issubclass(candidate, expected_superclass):
      raise flags.FlagsError(
          "%s '%s' doesn't inherit from %s." %
          (category, flag_value, expected_superclass.__name__))
    return True
  raise flags.FlagsError("Unable to find %s '%s'." % (category, flag_value)) 
开发者ID:google,项目名称:youtube-8m,代码行数:29,代码来源:train.py


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