自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 pytorch转onnx

import MobileViT_Pytorch.models as models #从模型库导入模型。

2023-08-07 11:06:48 62

原创 网络模型—RPN

网络模型 RPN

2022-07-26 15:38:49 2246

原创 Ubuntu安装docker

ubuntu安装docker

2022-07-22 17:03:29 308

原创 ubuntu20.04安装tensorRT

ubuntu20.04安装tensorRT

2022-07-19 13:34:34 1311

原创 关于tf库的问题解决2021-11-05

AttributeError: module 'tensorflow' has no attribute 'Session'AttributeError: module 'tensorflow' has no attribute 'truncated_normal_initializer'解决办法:import tensorflow.compat.v1 as tftf.disable_v2_behavior()

2021-11-05 11:25:01 403

原创 paddle模型组网方式

两种组网方式,分别为Sequential组网与SubClass组网一、Sequential组网——顺序网络结构import paddle# Sequential形式组网mnist = paddle.nn.Sequential( paddle.nn.Flatten(), paddle.nn.Linear(784, 512), paddle.nn.ReLU(), paddle.nn.Dropout(0.2), paddle.nn.Linear(512...

2021-10-18 16:49:23 567

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除