上一页 1 ··· 139 140 141 142 143 144 145 146 147 ··· 311 下一页
摘要: lsmod-查看内核模块信息 lsmod——显示已载入系统的模块 lsmod 其实就是list modules的缩写,即 列出所有模块. 功能说明:显示已载入系统的模块。 # lsmod Module Size Used by iptable_nat 5923 0 nf_nat 22676 1 ip 阅读全文
posted @ 2021-02-15 22:33 emanlee 阅读(1027) 评论(0) 推荐(0)
摘要: 先查看自己的linux上显卡型号: # lspci | grep -i nvidia04:00.0 VGA compatible controller: NVIDIA Corporation GP102 [GeForce GTX 1080 Ti] (rev a1)04:00.1 Audio devi 阅读全文
posted @ 2021-02-15 20:16 emanlee 阅读(580) 评论(0) 推荐(0)
摘要: 当py文件的编码为 utf-8 的时候。代码中需要添加 #coding:utf-8 。脚本中的中文,在运行过程不会报错。 # -*-coding: utf-8 -*- 当py文件设置为 utf-8,而显示设置代码编码为 #coding:936。则会出现ncoding problem: cp936 w 阅读全文
posted @ 2021-02-15 13:56 emanlee 阅读(462) 评论(0) 推荐(0)
摘要: pylab_examples example code: boxplot_demo2.py https://matplotlib.org/2.0.2/examples/pylab_examples/boxplot_demo2.html https://www.geeksforgeeks.org/bo 阅读全文
posted @ 2021-02-15 10:36 emanlee 阅读(108) 评论(0) 推荐(0)
摘要: The number of epochs is not that significant. More important is the the validation and training error. As long as it keeps dropping training should co 阅读全文
posted @ 2021-02-15 09:48 emanlee 阅读(256) 评论(0) 推荐(0)
摘要: nvidia-smi Failed to initialize NVML: Driver/library version mismatch 原因:NVIDIA 内核驱动版本与系统驱动不一致, # sudo rmmod nvidiarmmod: ERROR: Module nvidia is in u 阅读全文
posted @ 2021-02-14 23:08 emanlee 阅读(1290) 评论(0) 推荐(0)
摘要: # ./conda activate py38CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.To initialize your shell, run $ conda 阅读全文
posted @ 2021-02-14 22:44 emanlee 阅读(4419) 评论(0) 推荐(0)
摘要: GOOD POST https://towardsdatascience.com/epoch-vs-iterations-vs-batch-size-4dfb9c7ce9c9 Epoch 英 /ˈiːpɒk/ 美 /ˈepək/ n. 时代,纪元;值得纪念的事件(或日期);世(地质年代,纪下分世); 阅读全文
posted @ 2021-02-14 22:26 emanlee 阅读(9275) 评论(0) 推荐(0)
摘要: figure语法说明 figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True) num: 图像编号或名称,数字为编号 ,字符串为名称 figsize: 指定figure的宽和高,单位为 阅读全文
posted @ 2021-02-14 10:07 emanlee 阅读(12674) 评论(0) 推荐(0)
摘要: 在绘图的标题、坐标轴的文字中用上标或下标 格式:$正常文字^上标$ import matplotlib.pyplot as plt fig, ax = plt.subplots() ax.set(title=r'This is an expression $e^{\sin(\omega\phi)}$ 阅读全文
posted @ 2021-02-13 21:21 emanlee 阅读(668) 评论(0) 推荐(0)
上一页 1 ··· 139 140 141 142 143 144 145 146 147 ··· 311 下一页