摘要:
class ResItemLiveness(BaseModel): resCode: int = 0 resMsg: str = "" resData: dict = dict() def status_check(self, cpu_thresh, memory_thresh, gpu_memor 阅读全文
摘要:
本地构建文档 1、安装sphinx 2、初始化项目 sphinx-quickstart 中文:zh_CN 主题:html_theme = 'sphinx_rtd_theme' 3、配置config 在source下设置配置文件: # Configuration file for the Sphinx 阅读全文
摘要:
Error1: failed to register layer: open /data1/Installer/dockerInstallDir/docker/overlay2/5ee088aebf668f13b34c528c8009e67fe6aec5592f692dc5425c3e0d32bc4 阅读全文
摘要:
YOLO v9的工作重点是可编程梯度信息和GELAN。后者好像没啥用,核心点事PGI(可编程梯度信息),这个trick即为添加浅层的任务分支辅助模型优化浅层特征。根据代码绘制了模型框架图(基于yolov9-c.yaml): 其中输出全部交由检测头处理,检测头的处理示意图为: 其中黄色部分即为PGI部 阅读全文
摘要:
问题描述 有时我们需要使用文件URL链接的方式读取文件,测试时要么用非结构化平台,要么就得将本地资源进行映射 解决方案 激活pyhton环境,进入资源目录,运行:python3 -m http.server [PORT] 如:python3 -m http.server 10120 输出: Serv 阅读全文
摘要:
参考: https://blog.csdn.net/qq_54529791/article/details/135826187 阅读全文
摘要:
在docker的使用过程中,出现:nvidia-container-cli: initialization error: nvml error: driver/library version mismatch: unknown. 在终端输入nvidia-smi查看显卡驱动,结果提示:Failed t 阅读全文
摘要:
1、Windows与MAC安装 直接基于github安装 https://github.com/debauchee/barrier#distro-specific-packages 2、ubuntu安装 2.1 环境准备 sudo apt install flatpak sudo apt insta 阅读全文
摘要:
生成公钥 ssh-keygen -t rsa -P '' 拷贝公钥到目标主机 ssh-copy-id username@remote_host 阅读全文
摘要:
这里我们定时清理缓存(AI训练经常导致缓存没有及时清理,后面的读写操作就很慢) 书写启动文件 sudo vim cleanBuff.sh #!/bin/bash echo "开始清理缓存" # 写入硬盘,防止数据丢失 sync;sync;sync; # 延迟10S sleep 10 echo 1 > 阅读全文