
笔记
HiJack¹
jialin_wang@foxmail.com
展开
-
Linux——杀死“僵尸”进程及解决无进程但显存占用问题
Linux进程PID变为短横线以及解决无进程但显存占用问题原创 2023-05-12 11:46:46 · 2558 阅读 · 1 评论 -
Could not load dynamic library ‘cudnn64_8.dll‘; dlerror: cudnn64_8.dll not found
Could not load dynamic library ‘cudnn64_8.dll‘; dlerror: cudnn64_8.dll not found原创 2022-07-21 12:49:03 · 2106 阅读 · 0 评论 -
VScode——代码、文件改动无法保存
VScode原创 2022-07-21 12:33:41 · 5281 阅读 · 0 评论 -
keras——accuracy_score公式
keras中accuracy_score原创 2022-07-21 12:25:00 · 646 阅读 · 0 评论 -
Python ——保存字典到文件
在 Python 中使用 pickle 模块的 dump 函数将字典保存到文件中import picklemy_dict = { 'Apple': 4, 'Banana': 2, 'Orange': 6, 'Grapes': 11}# 保存文件with open("myDictionary.pkl", "wb") as tf: pickle.dump(my_dict,tf)# 读取文件with open("myDictionary.pkl", "wb") as tf: new_原创 2022-01-23 19:18:48 · 24457 阅读 · 3 评论