LiuDongdong

爱好由来落笔难,一诗千改心始安。

Pytorch_预训练模型

1. 模型下载 import re import os import glob import torch from torch.hub import download_url_to_file from torch.hub import urlparse import torchvision.models as models def download_model(url, dst_path): parts = urlparse(url) filename = os.path.basename(parts.path) HASH_REGEX = re.compile(r'-([a-f0-9]*)\.') hash_prefix = HASH_REGEX.search(filename).group(1) if os.path.exists(os.path.join(dst_path, filename)): return filename download_url_to_file(url, os.path.join(dst_path, filename), hash_prefix, True) return filename def saveToFolder(path): #其他各种模型可以在这个目录下进

SpringAnnotation

1. @SpringBootApplication @SpringBootApplication public class SpringSecurityJwtGuideApplication { public static void main(java.lang.String[] args) { SpringApplication.run(SpringSecurityJwtGuideApplication.class, args); } } 我们可以把 @SpringBootApplication看作是 @Configuration、@EnableA

Gradle

常见的 Java 构建工具包括 Ant、Gant 和 Maven 等,Gradle 结合了以上工具的优点,基于约定大于配置,通用灵活,是 Android 的官方构建工具。 1. 搭建环境 确保

Transaction

1. 事务特性 你的程序是否支持事务首先取决于数据库 ,比如使用 MySQL 的话,如果你选择的是 innodb 引擎,那么恭喜你,是可以支持事务的。但是,如果你的 MySQL 数据库使
0%