摘要:
word 无法显示该图片, 这个bug 怎么解决? 在word中贴了大量图,现在都无法显示了。 https://support.microsoft.com/en-us/office/support-for-pict-images-is-being-turned-off-in-office-for-w 阅读全文
摘要:
当使用python的matplotlib包的时候, 我们可以使用legend命令来绘制图示. legend命令的可配置参数具体可见此处(https://matplotlib.org/3.3.2/api/_as_gen/matplotlib.pyplot.legend.html):这里, 讨论是否将图 阅读全文
摘要:
from PIL import ImageFont, ImageDraw# 导入中文字体,指定字体大小font = ImageFont.truetype('SimHei.ttf', 50) OSError Traceback (most recent call last) /tmp/ipykerne 阅读全文
摘要:
绝对路径1、os.path 方法import osimport syscurrent_directory = os.path.dirname(os.path.abspath(__file__))print(current_directory) 2、os.path.abspath 方法import o 阅读全文
摘要:
matplotlib 中文字体测试 wget https://zihao-openmmlab.obs.cn-east-3.myhuaweicloud.com/20220716-mmclassification/dataset/SimHei.ttf # /home/software/anaconda3 阅读全文
摘要:
AttributeError Traceback (most recent call last)/tmp/ipykernel_13758/2975874631.py in <module> > 1 ft_model.load_weights('./saved_models/D8.v8.h5') 2 阅读全文
摘要:
The purpose of loss functions is to compute the quantity that a model should seek to minimize during training. https://tensorflow.google.cn/api_docs/p 阅读全文
摘要:
一个坑:pybedtools 使用和不用saveas 会导致结果不同,有时saveas 或 count 就会清空数据。 It looks like filter function doesn't return a BedTool object ready to use. a = pybedtools 阅读全文
摘要:
读写bin文件 ndarray.tofile(fid, sep="", format="%s") 将数组作为txt或bin(默认)写入文件, 不保存数组形状和元素类型 fid: 文件对象/文件名 sep: 分隔符 format: 格式化字符串 ndarray.fromfile(file, dtype 阅读全文
摘要:
Linux快速搭建tensorflow-gpu 1.15.0环境&Keras conda create -n tf115 -c conda-forge tensorflow-gpu=1.15 conda install keras==2.3.1 激活虚拟环境tf115 之后做以下操作: conda 阅读全文