當前位置: 首頁>>代碼示例>>Python>>正文


Python logging.error方法代碼示例

本文整理匯總了Python中tensorflow.logging.error方法的典型用法代碼示例。如果您正苦於以下問題:Python logging.error方法的具體用法?Python logging.error怎麽用?Python logging.error使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tensorflow.logging的用法示例。


在下文中一共展示了logging.error方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: GetListOfFeatureNamesAndSizes

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [as 別名]
def GetListOfFeatureNamesAndSizes(feature_names, feature_sizes):
  """Extract the list of feature names and the dimensionality of each feature
     from string of comma separated values.

  Args:
    feature_names: string containing comma separated list of feature names
    feature_sizes: string containing comma separated list of feature sizes

  Returns:
    List of the feature names and list of the dimensionality of each feature.
    Elements in the first/second list are strings/integers.
  """
  list_of_feature_names = [
      feature_names.strip() for feature_names in feature_names.split(',')]
  list_of_feature_sizes = [
      int(feature_sizes) for feature_sizes in feature_sizes.split(',')]
  if len(list_of_feature_names) != len(list_of_feature_sizes):
    logging.error("length of the feature names (=" +
                  str(len(list_of_feature_names)) + ") != length of feature "
                  "sizes (=" + str(len(list_of_feature_sizes)) + ")")

  return list_of_feature_names, list_of_feature_sizes 
開發者ID:antoine77340,項目名稱:Youtube-8M-WILLOW,代碼行數:24,代碼來源:utils.py

示例2: GetListOfFeatureNamesAndSizes

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [as 別名]
def GetListOfFeatureNamesAndSizes(feature_names, feature_sizes):
  """Extract the list of feature names and the dimensionality of each feature

     from string of comma separated values.

  Args:
    feature_names: string containing comma separated list of feature names
    feature_sizes: string containing comma separated list of feature sizes

  Returns:
    List of the feature names and list of the dimensionality of each feature.
    Elements in the first/second list are strings/integers.
  """
  list_of_feature_names = [
      feature_names.strip() for feature_names in feature_names.split(",")
  ]
  list_of_feature_sizes = [
      int(feature_sizes) for feature_sizes in feature_sizes.split(",")
  ]
  if len(list_of_feature_names) != len(list_of_feature_sizes):
    logging.error("length of the feature names (=" +
                  str(len(list_of_feature_names)) + ") != length of feature "
                  "sizes (=" + str(len(list_of_feature_sizes)) + ")")

  return list_of_feature_names, list_of_feature_sizes 
開發者ID:google,項目名稱:youtube-8m,代碼行數:27,代碼來源:utils.py

示例3: GetListOfFeatureNamesAndSizes

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [as 別名]
def GetListOfFeatureNamesAndSizes(feature_names, feature_sizes):
    """Extract the list of feature names and the dimensionality of each feature
         from string of comma separated values.

      Args:
        feature_names: string containing comma separated list of feature names
        feature_sizes: string containing comma separated list of feature sizes

      Returns:
        List of the feature names and list of the dimensionality of each feature.
        Elements in the first/second list are strings/integers.
    """
    list_of_feature_names = [
        feature_names.strip() for feature_names in feature_names.split(',')]
    list_of_feature_sizes = [
        int(feature_sizes) for feature_sizes in feature_sizes.split(',')]
    if len(list_of_feature_names) != len(list_of_feature_sizes):
        logging.error("length of the feature names (=" +
                      str(len(list_of_feature_names)) + ") != length of feature "
                                                        "sizes (=" + str(len(list_of_feature_sizes)) + ")")

    return list_of_feature_names, list_of_feature_sizes 
開發者ID:pomonam,項目名稱:AttentionCluster,代碼行數:24,代碼來源:utils.py

示例4: validate_class_name

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [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

示例5: validate_class_name

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [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

示例6: remove_training_directory

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [as 別名]
def remove_training_directory(self, train_dir):
    """Removes the training directory."""
    try:
      logging.info(
          "%s: Removing existing train directory.",
          task_as_string(self.task))
      gfile.DeleteRecursively(train_dir)
    except:
      logging.error(
          "%s: Failed to delete directory " + train_dir +
          " when starting a new model. Please delete it manually and" +
          " try again.", task_as_string(self.task)) 
開發者ID:antoine77340,項目名稱:Youtube-8M-WILLOW,代碼行數:14,代碼來源:train.py

示例7: remove_training_directory

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [as 別名]
def remove_training_directory(self, train_dir):
        """Removes the training directory."""
        try:
            logging.info(
                "%s: Removing existing train directory.",
                task_as_string(self.task))
            gfile.DeleteRecursively(train_dir)
        except:
            logging.error(
                "%s: Failed to delete directory " + train_dir +
                " when starting a new model. Please delete it manually and" +
                " try again.", task_as_string(self.task)) 
開發者ID:wangheda,項目名稱:youtube-8m,代碼行數:14,代碼來源:train-with-rebuild.py

示例8: validate_class_name

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [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

示例9: remove_training_directory

# 需要導入模塊: from tensorflow import logging [as 別名]
# 或者: from tensorflow.logging import error [as 別名]
def remove_training_directory(self, train_dir):
    """Removes the training directory."""
    try:
      logging.info("%s: Removing existing train directory.",
                   task_as_string(self.task))
      gfile.DeleteRecursively(train_dir)
    except:
      logging.error(
          "%s: Failed to delete directory " + train_dir +
          " when starting a new model. Please delete it manually and" +
          " try again.", task_as_string(self.task)) 
開發者ID:google,項目名稱:youtube-8m,代碼行數:13,代碼來源:train.py


注:本文中的tensorflow.logging.error方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。