gh指令说明gh repo list kaylorchengh repo create kaylorchen/demo --privategh repo clone kaylorchen/demogh run list --repo kaylorchen/demo # 显示ci的信息gh run v ...
轨迹跟踪学习笔记
泰勒展开 一元泰勒展开$$f(x) = f(x_{k}) + (x-x_{k})f’(x_{k})+\frac{1}{2!}(x-x_{k})^{2}f’’(x_{k})+o^n$$ 二元泰勒展开$$\begin{array}{c}f(x, y)=f\left(x_{k}, y_{k}\rig ...
How to Build the Cross-Compilation Environment
BackgroundsIn most cases, we now use QEMU technology to run ARM containers on X86 platforms, employing these containers as cross-compilation tools. Ho ...
Run LLM on RK3588
Download and Convert Model download sudo apt install git-lfsgit lfs installgit clone https://huggingface.co/Qwen/Qwen-1_8B-Chat convert Update Rknp ...
rk3588's yolov8 model conversion from pt to rknn
BackgroundYolov8’s original model includes post-processing. Some shapes exceed the matrix calculation limit of 3588, so some cropping of the output la ...
aptly和GPG使用笔记
GPG生成GPG密钥对不要使用sudo,否则还有权限问题gpg --full-generate-key 导出私钥和公钥gpg --export-secret-keys --armor [email protected] > your.gpggpg --export --armor your@emai ...
Linux权限知识
权限的数值表示Linux的权限多数时候是3个数字表示r — read — 4w — write — 2x — executed — 1有时候会用4位数字表示,跟下面介绍的suid,sgid,sbit有关SUID->4SGID->2SBIT->1 UID 和 GIDUID属于us ...
cmake常用相关
find_package检查需要的包的包名╰─ dpkg -L libopencv-dev | grep 'cmake' /usr/lib/x86_64-linux-gnu/cmake/usr/lib/x86_64-linux-gnu/cmake/opencv4/usr ...
Systemd相关
本文摘抄自 阮一峰的日志 常用命令sudo systemctl enable httpdsudo systemctl disable httpdsudo systemctl start httpdsudo systemctl restart httpdsudo systemctl stop http ...