发布于 2022-04-21
摘要
多尺度目标检测 %matplotlib inline from PIL import Image import numpy as …
莫贪几两钱 误了月儿圆
多尺度目标检测 %matplotlib inline from PIL import Image import numpy as …
边界框的实现与转化 # bbox是bounding box的缩写 dog_bbox, cat_bbox = [60, 45, 37 …
%matplotlib inline import torch from torch import nn, optim from …
%matplotlib inline import os import time import torch from torch …
命令式和符号式混合编程 def add(a, b): return a + b def fancy_func(a, b, c, d …
yolo的原理部分https://zhuanlan.zhihu.com/p/25236464 我们今天把目光着重在他的使用上 源码 …
优化与深度学习 优化在深度学习中的挑战 %matplotlib inline import sys sys.path.append …
长短期记忆(LSTM) 读取数据集 import numpy as np import torch from torch impo …
门控循环单元(GRU) 读取数据集 import numpy as np import torch from torch impo …
循环神经网络 import torch print(torch.__version__) 1.11.0+cu113 cuda X, …