0%

这是一个临时添加中文或其他字体的方式,永久添加可能会有各种问题,这个是一定有效的。
代码:

1
2
3
4
5
6
7
8
9
10
import matplotlib  
from matplotlib.font_manager import *
import matplotlib.pyplot as plt
myfont = FontProperties(fname='/home/h/Downloads/SimHei.ttf',size=10)
matplotlib.rcParams['axes.unicode_minus']=False

x=[*range(10)]
y=[*range(10,20)]
plt.title("中国",fontproperties=myfont)
plt.scatter(x,y)
阅读全文 »

Python中的解包符号是要配合列表使用的,此外也可以在print里直接使用。

pic

Python字典合并,直接使用解包号就可以合并,且有相同key时后面的会覆盖前面的。

pic

在处理少量数据时不会察觉,字符串拼接的速度是比较慢的。
在使用golang处理百万级别的数据时,每拼接一万条大约需要1~2秒。
还有就是在写循环时,可以先把循环里要处理的较复杂内容去掉感受一下,再逐步加进来。
而文件写缓冲之后一次或分多次更新到硬盘上瞬间完成。
所以能写缓冲的一定要避免拼接后一次性写入。

阅读全文 »

退出

直接右上角或者其他显示图标的位置退出

打开

alt + f2
搜fcitx
运行即可

网上很多方法不可用,这个有效

在测试一些nn的方法时,比如Embedding,是不能接收cuda上的数据的,所以只能用来测试不在显存中的数据。
测试通过后,只需在出具传入网络前加载在显存,同时将网络转到gpu类型:

1
testnet.to(torch.device("cuda:0"))

也可以不断用小的模型去测试,但是不太方便,不建议。

linux打开无线网卡

查看

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
h@h-B360M-D2VX-SI:~/Downloads/wicd$ lshw -C network
WARNING: you should run this program as super-user.
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: enp2s0
version: 16
serial: e0:d5:5e:ca:e7:d7
size: 100Mbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=192.168.2.38 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
resources: irq:16 ioport:3000(size=256) memory:a5204000-a5204fff memory:a5200000-a5203fff
*-network DISABLED
description: Wireless interface
physical id: 1
bus info: usb@1:3
logical name: wlx983f9f1816c5
serial: 98:3f:9f:18:16:c5
capabilities: ethernet physical wireless
configuration: broadcast=yes driver=rt2800usb driverversion=5.4.0-54-generic firmware=N/A link=no multicast=yes wireless=IEEE 802.11
WARNING: output may be incomplete or inaccurate, you should run this program as super-user.
阅读全文 »