上一页 1 2 3 4 5 6 ··· 15 下一页

2022年5月7日

工具代码

摘要: https://web.stanford.edu/class/physics91si/2013/handouts/Pdb_Commands.pdf import ipdb; ipdb.set_trace() import argparse if __name__ == "__main__": par 阅读全文

posted @ 2022-05-07 10:56 HolaWorld 阅读(92) 评论(0) 推荐(0) 编辑

2022年4月24日

算法题速查手册

摘要: 杂 Boyer-Moore 投票算法 初始化m*n二维数组:dp = [[1]*n for _ in range(m)] 每个key的value都是list的dict:tree = collections.defaultdict(list) dict 计数:mydict[x] = mydict.ge 阅读全文

posted @ 2022-04-24 23:36 HolaWorld 阅读(56) 评论(0) 推荐(0) 编辑

2022年3月27日

Linux装cudnn

摘要: https://stackoverflow.com/questions/66977227/could-not-load-dynamic-library-libcudnn-so-8-when-running-tensorflow-on-ubun https://docs.nvidia.com/deep 阅读全文

posted @ 2022-03-27 01:08 HolaWorld 阅读(87) 评论(0) 推荐(0) 编辑

2022年3月6日

PyTorch Live get started from Windows

摘要: 〇、 PyTorch Live https://pytorch.org/live/docs/tutorials/get-started-manually/ 以下 命令 建议都用 以管理员身份运行的 Powershell. 一、 装 python 3.7 或以上 二、 装 react-native h 阅读全文

posted @ 2022-03-06 15:01 HolaWorld 阅读(140) 评论(0) 推荐(0) 编辑

2022年2月23日

改主机风扇转速

摘要: ipmitool lan print 找到 'IP Address' 那行的 ip 在浏览器输入该 ip Username:ADMIN ; Password:ADMIN Configuration - Fan Mode - Set Fan to Full Speed - Save 阅读全文

posted @ 2022-02-23 10:53 HolaWorld 阅读(48) 评论(0) 推荐(0) 编辑

2022年1月19日

摘要: ps -u -p [PID] # 查看这个pid是谁的,命令是什么 watch -n 0.1 nvidia-smi last # 查看每个用户最近登录记录 lastb # 查看所有登录失败的记录 crontab -u [username] -l # 查看自动脚本 crontab -u [userna 阅读全文

posted @ 2022-01-19 10:56 HolaWorld 阅读(55) 评论(0) 推荐(0) 编辑

2021年12月10日

read the docs

摘要: 1. 在 GitHub 新建一个repo 2. git clone git@github.com:readthedocs/tutorial-template.git 3. 把刚刚 clone 的 repo 里的 docs 文件夹整个复制到自己新建的那个repo里 4. 新建 requirements 阅读全文

posted @ 2021-12-10 20:53 HolaWorld 阅读(239) 评论(0) 推荐(0) 编辑

2021年12月9日

linux 挂载移动硬盘

摘要: fdisk -l mkdir -p /mnt/usbhd1 mount -t ntfs /dev/sdc1 /mnt/usbhd1 # 挂载 umount /mnt/usbhd1 # 解挂载 https://www.linuxprobe.com/mount-detail-parameters.htm 阅读全文

posted @ 2021-12-09 11:11 HolaWorld 阅读(230) 评论(0) 推荐(0) 编辑

2021年12月8日

无法连接NVIDIA驱动

摘要: NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running. sudo a 阅读全文

posted @ 2021-12-08 11:43 HolaWorld 阅读(426) 评论(0) 推荐(0) 编辑

2021年12月7日

nodejs

摘要: sudo apt install nodejs npm nodejs-legacy 阅读全文

posted @ 2021-12-07 00:58 HolaWorld 阅读(12) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 15 下一页

导航