logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

学习笔记--目标检测3 SSD

文章目录1、保存设置1、保存设置def zipdir(path, ziph):files = os.listdir(path)for file in files:if file.endswith(".py") or file.endswith("cfg"):ziph.write(os.path.join(path, file))if file.endswith("cfg"):os.

pytorch--输出模型每一层的结构

首先定义一个模型的类,例如class Resnet()然后实例化这个类,例如resnet = Resnet()再在主程序中print(resnet.层名称)即可输出,一般层名称会自己跳出来

pytorch--自适应池化Adaptive Pooling

MaxPool1d(kernel_size=math.ceil(inputsize / outputsize), stride=math.floor(inputsize / outputsize), padding=0)只要给输入和输出,黑箱操作自动得出结果举个栗子:如果输入是9,想输出4MaxPool1d(kernel_size=math.ceil(9 / 4), stride=math.flo

FATAL:gpu_data_manager_impl_private.cc(439)] GPU process isn‘t usable. Goodbye

文章目录1、保存设置1、保存设置def zipdir(path, ziph):files = os.listdir(path)for file in files:if file.endswith(".py") or file.endswith("cfg"):ziph.write(os.path.join(path, file))if file.endswith("cfg"):os.

pytorch--模型训练细节、数据格式、预训练模型、张量

1、支持的数据格式: batch_size,input_channel,input_h,input_w2、input_tensor = torch.rand(4, 4, 128, 128)随机生成一个4维张量,将其输入到模型内3、https://blog.csdn.net/weixin_42118374/article/details/103761795–修改预训练模型4、variable是tor

GStreamer-CRITICAL **: gst_element_make_from_uri: assertion `gst_uri_is_valid (uri)‘ failed

文章目录1、保存设置1、保存设置def zipdir(path, ziph):files = os.listdir(path)for file in files:if file.endswith(".py") or file.endswith("cfg"):ziph.write(os.path.join(path, file))if file.endswith("cfg"):os.

#c++
    共 41 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 请选择