会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
巴蜀秀才
博客园
首页
新随笔
联系
订阅
管理
2024年6月28日
sphinx创建python项目文档
摘要: 本地构建文档 1、安装sphinx 2、初始化项目 sphinx-quickstart 中文:zh_CN 主题:html_theme = 'sphinx_rtd_theme' 3、配置config 在source下设置配置文件: # Configuration file for the Sphinx
阅读全文
posted @ 2024-06-28 16:52 巴蜀秀才
阅读(94)
评论(0)
推荐(0)
2024年5月17日
docker debug记录
摘要: Error1: failed to register layer: open /data1/Installer/dockerInstallDir/docker/overlay2/5ee088aebf668f13b34c528c8009e67fe6aec5592f692dc5425c3e0d32bc4
阅读全文
posted @ 2024-05-17 14:28 巴蜀秀才
阅读(28)
评论(0)
推荐(0)
2024年4月2日
YOLO v9
摘要: YOLO v9的工作重点是可编程梯度信息和GELAN。后者好像没啥用,核心点事PGI(可编程梯度信息),这个trick即为添加浅层的任务分支辅助模型优化浅层特征。根据代码绘制了模型框架图(基于yolov9-c.yaml): 其中输出全部交由检测头处理,检测头的处理示意图为: 其中黄色部分即为PGI部
阅读全文
posted @ 2024-04-02 09:05 巴蜀秀才
阅读(260)
评论(0)
推荐(1)
2024年2月18日
使用python启动一个web服务
摘要: 问题描述 有时我们需要使用文件URL链接的方式读取文件,测试时要么用非结构化平台,要么就得将本地资源进行映射 解决方案 激活pyhton环境,进入资源目录,运行:python3 -m http.server [PORT] 如:python3 -m http.server 10120 输出: Serv
阅读全文
posted @ 2024-02-18 16:57 巴蜀秀才
阅读(193)
评论(0)
推荐(0)
2024年1月31日
设置ubuntu22.04开机自启任务
摘要: 参考: https://blog.csdn.net/qq_54529791/article/details/135826187
阅读全文
posted @ 2024-01-31 11:21 巴蜀秀才
阅读(131)
评论(0)
推荐(0)
2024年1月23日
Bug: Failed to initialize NVML: Driver/library version mismatch; NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver.
摘要: 在docker的使用过程中,出现:nvidia-container-cli: initialization error: nvml error: driver/library version mismatch: unknown. 在终端输入nvidia-smi查看显卡驱动,结果提示:Failed t
阅读全文
posted @ 2024-01-23 16:51 巴蜀秀才
阅读(2512)
评论(0)
推荐(0)
2023年12月8日
基于barrier的跨系统、多机键鼠协同
摘要: 1、Windows与MAC安装 直接基于github安装 https://github.com/debauchee/barrier#distro-specific-packages 2、ubuntu安装 2.1 环境准备 sudo apt install flatpak sudo apt insta
阅读全文
posted @ 2023-12-08 09:14 巴蜀秀才
阅读(177)
评论(0)
推荐(0)
2023年11月22日
linux 设置远程免密登陆
摘要: 生成公钥 ssh-keygen -t rsa -P '' 拷贝公钥到目标主机 ssh-copy-id username@remote_host
阅读全文
posted @ 2023-11-22 15:33 巴蜀秀才
阅读(21)
评论(0)
推荐(0)
2023年5月10日
linux 设置定时任务
摘要: 这里我们定时清理缓存(AI训练经常导致缓存没有及时清理,后面的读写操作就很慢) 书写启动文件 sudo vim cleanBuff.sh #!/bin/bash echo "开始清理缓存" # 写入硬盘,防止数据丢失 sync;sync;sync; # 延迟10S sleep 10 echo 1 >
阅读全文
posted @ 2023-05-10 12:03 巴蜀秀才
阅读(164)
评论(0)
推荐(0)
2023年5月6日
SAM:SegMent Anything万物分割论文解读
摘要: SAM: SegMent Anything 作者:elfin 资料来源:SAM论文 论文:https://ai.facebook.com/research/publications/segment-anything/ 代码:https://github.com/facebookresearch/se
阅读全文
posted @ 2023-05-06 18:47 巴蜀秀才
阅读(5550)
评论(0)
推荐(1)
下一页
公告