自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 问答 (3)
  • 收藏
  • 关注

原创 Tensorflow1.15-gpu 安装镜像

Tensorflow 1.15 gpu 安装镜像pip install tensorflow-gpu==1.15.0 -i https://pypi.tuna.tsinghua.edu.cn/simple/

2020-09-18 17:46:08 2682

原创 ResNet implement with Pytroch and Tensorflow

ResNet*本文实现的是resnet34 residual网络结构Resnet( (conv): Conv2d(3, 64, kernel_size=(7, 7), stride=(2, 2), padding=(3, 3), bias=False) (relu): ReLU(inplace=True) (pool): MaxPool2d(kernel_size=3, stride=2, padding=1, dilation=1, ceil_mode=False) (layer1

2020-09-16 10:44:38 98

原创 LeNet implement with Pytroch

LeNet网络具体结构源代码import torchimport torch.nn as nnimport torchvisionfrom torchvision import transformsclass Lenet(nn.Module): def __init__(self,num_class): super(Lenet, self).__init__() self.conv1 = nn.Conv2d(3,6,kernel_size=(5,5

2020-09-16 10:38:17 71

原创 VGG11 implement with Pytroch

VGG 11网络具体结构其中超参数均来自https://blog.csdn.net/qq_34108714/article/details/90400177源代码import torchimport torch.nn as nnimport torchvisionfrom torchvision import transformsclass VGG(nn.Module): def __init__(self): super(VGG, self).__init__

2020-09-15 16:06:24 128

空空如也

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

TA关注的人

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