博客园 首页 新随笔 联系 订阅 管理

2021年2月25日 #

摘要: Unet论文:http://www.arxiv.org/pdf/1505.04597.pdf Unet源代码:https://github.com/jakeret/tf_unet 发表于:2015年的MICCAI 一、基本介绍 1.1历史背景 卷积神经网络(CNN)不仅对图像识别有所帮助,也对语义分 阅读全文
posted @ 2021-02-25 21:25 Slientsake 阅读(1425) 评论(0) 推荐(0) 编辑

2020年11月1日 #

摘要: import torch import torchvision import torchvision.transforms as transforms import matplotlib.pyplot as plt import time import sys sys.path.append(".. 阅读全文
posted @ 2020-11-01 19:58 Slientsake 阅读(819) 评论(0) 推荐(0) 编辑

2020年9月29日 #

摘要: int x=10; do { System.out.println("value of x:"+x); x++; } while(x<20); //do while循环 1 int x=10; 2 while(x<20) { 3 System.out.println("value of x:"+x) 阅读全文
posted @ 2020-09-29 14:57 Slientsake 阅读(109) 评论(0) 推荐(0) 编辑