本文整理匯總了Python中pytorch_pretrained_bert.file_utils.CONFIG_NAME屬性的典型用法代碼示例。如果您正苦於以下問題:Python file_utils.CONFIG_NAME屬性的具體用法?Python file_utils.CONFIG_NAME怎麽用?Python file_utils.CONFIG_NAME使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類pytorch_pretrained_bert.file_utils
的用法示例。
在下文中一共展示了file_utils.CONFIG_NAME屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: save_model
# 需要導入模塊: from pytorch_pretrained_bert import file_utils [as 別名]
# 或者: from pytorch_pretrained_bert.file_utils import CONFIG_NAME [as 別名]
def save_model(args, model, tokenizer):
model_to_save = model.module if hasattr(model, 'module') else model # Only save the model it-self
# If we save using the predefined names, we can load using `from_pretrained`
output_model_file = os.path.join(args.output_dir, WEIGHTS_NAME)
output_config_file = os.path.join(args.output_dir, CONFIG_NAME)
torch.save(model_to_save.state_dict(), output_model_file)
logger.info("save model")
model_to_save.config.to_json_file(output_config_file)
tokenizer.save_vocabulary(args.output_dir)