05 2020 档案

摘要:Windows10 安装相应模块 pip install pydot-ng pip install graphviz pip install pydot 安装graphviz-2.38.msi https://www.softpedia.com/get/Others/Miscellaneous/Gr 阅读全文
posted @ 2020-05-29 13:50 DuanYongchun 阅读(868) 评论(0) 推荐(0)
摘要:(1)查看history字典包含哪些值 # 报错语句:accuracy = history_record.history["acc"] # dyc history_dict = history_record.history print(" history_dict.keys() :", histor 阅读全文
posted @ 2020-05-29 13:27 DuanYongchun 阅读(3761) 评论(2) 推荐(0)
摘要:Pytorch # 1: torch.cuda.set_device(1) # 2: device = torch.device("cuda:1") # 3:(官方推荐) import os os.environ["CUDA_VISIBLE_DEVICES"] = '1' # 4:(同时调用两块GP 阅读全文
posted @ 2020-05-29 00:23 DuanYongchun 阅读(1612) 评论(0) 推荐(1)
摘要:背景 图像分割领域有时会用到条件随机场(CRF)做后处理,如果直接从源码安装【pip install git+https://github.com/lucasb-eyer/pydensecrf.git】会报错,那就从【.whl】文件安装吧。 详细过程 (1)下载链接:https://www.lfd. 阅读全文
posted @ 2020-05-28 10:05 DuanYongchun 阅读(4299) 评论(0) 推荐(1)
摘要:问题描述: 利用Pycharm远程连接服务器调用Matplotlib绘图时无法在本地显示图形,但单独在本地和服务器都可以很好的显示图像。 前期准备: 1、Windows需要安装的软件: Xshell;Xming。 2、百度网盘链接: 链接:https://pan.baidu.com/s/1g8ZKK 阅读全文
posted @ 2020-05-22 11:20 DuanYongchun 阅读(4878) 评论(0) 推荐(1)