摘要:
tar –xvf file.tar //解压 tar包 tar -xzvf file.tar.gz //解压tar.gz tar -xjvf file.tar.bz2 //解压 tar.bz2 tar –xZvf file.tar.Z //解压tar.Z unrar e file.rar //解压r 阅读全文
摘要:
from collections import OrderedDict import torch import torch.nn as nn from nets.darknet import darknet53 yolov3的结构框图 首先是最后一层输出的特征图,经过五次卷积处理后,作为yolo预测 阅读全文