摘要: From: http://liudongdong1.github.io/ Millimeter wave (mmWave) is a special class of radar technology that uses shortwavelength electromagnetic waves. 阅读全文
posted @ 2021-08-26 19:23 liudongdong19 阅读(285) 评论(0) 推荐(0) 编辑
摘要: From: https://liudongdong1.github.io/ All datasets are subclasses of torch.utils.data.Dataset i.e, they have __getitem__ and __len__ methods implement 阅读全文
posted @ 2021-08-26 15:04 liudongdong19 阅读(99) 评论(0) 推荐(0) 编辑
摘要: From: https://liudongdong1.github.io/ 有序调整:等间隔调整(Step),按需调整学习率(MultiStep),指数衰减调整(Exponential)和 余弦退火CosineAnnealing。 自适应调整:自适应调整学习率 ReduceLROnPlateau。 阅读全文
posted @ 2021-08-26 15:02 liudongdong19 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 1. 模型下载 import re import os import glob import torch from torch.hub import download_url_to_file from torch.hub import urlparse import torchvision.mode 阅读全文
posted @ 2021-08-26 15:00 liudongdong19 阅读(367) 评论(0) 推荐(1) 编辑
摘要: From: https://liudongdong1.github.io/ 0. 基础配置 0.1. 设置随机种子 def set_seeds(seed, cuda): """ Set Numpy and PyTorch seeds. """ np.random.seed(seed) torch.m 阅读全文
posted @ 2021-08-26 14:59 liudongdong19 阅读(64) 评论(0) 推荐(0) 编辑