摘要: 1. 编写compose.yaml启动文件 version: '3.8' services: xinference: image: xprobe/xinference:v3.2.1-cpu container_name: xinference restart: unless-stopped port 阅读全文
posted @ 2026-08-28 20:29 不夹心饼干 阅读(28) 评论(0) 推荐(0)
摘要: 1. docker拉取镜像registry.cn-hangzhou.aliyuncs.com/funasr_repo/funasr:funasr-runtime-sdk-online-cpu-0.1.13 2. 运行镜像 sudo docker run -p 33005:10095 -it \ -- 阅读全文
posted @ 2026-07-13 14:02 不夹心饼干 阅读(40) 评论(0) 推荐(0)
摘要: 现在Docker镜像仓库已经没有cpu低版本的vllm来部署大语言模型,我用源码来重新构建了一个docker镜像,然后部署了Qwen3:0.6B的模型,在cpu上部署的。 1. 拉取vllm源码:https://github.com/vllm-project/vllm.git 2. 用git命令切换 阅读全文
posted @ 2026-07-11 10:30 不夹心饼干 阅读(44) 评论(0) 推荐(0)
摘要: # 1. 连接ftp,会自动提示输入用户名和密码,加入-i参数,后面复制的时候就不会有确认询问 ftp -i 172.26.253.114 # 2. pwd看一下当前的位置 pwd # 3. 进入到ftp目的路径,这是文件要传到的位置 cd /profile/upload/2025/04/26/ # 阅读全文
posted @ 2025-04-25 15:40 不夹心饼干 阅读(105) 评论(0) 推荐(0)
摘要: 命令如下: ffmpeg -i url -vf fps=1/10 thumb%04d.jpg 视频流的url1/10表示每10秒截一张thumb%04d.jpg:指定输出文件名格式,%04d 表示按照 4 位数字编号,例如 thumb0001.jpg, thumb0002.jpg 等等 阅读全文
posted @ 2023-11-24 11:30 不夹心饼干 阅读(372) 评论(0) 推荐(0)
摘要: #我们可以通过修改注册表来给鼠标右键添加菜单,添加的位置与修改注册表的位置有关系: **空白处右键(或者桌面空白处):** HKEY_CLASSES_ROOT/Directory/background/shell **文件夹右键:** HKEY_CLASSES_ROOT/Directory/shel 阅读全文
posted @ 2023-09-07 10:29 不夹心饼干 阅读(488) 评论(0) 推荐(0)
摘要: 问题:当在.gitignore中配置了忽略文件后,发现git status仍然能把它们列出来,是因为在此之前已经将这些文件加入到了index,导致它们为tracked文件。 解决办法: git rm -r --cached . // r选项可以遍历文件夹 git add . git commit - 阅读全文
posted @ 2023-03-30 09:08 不夹心饼干 阅读(32) 评论(0) 推荐(0)
摘要: 更新源:sudo apt-get -y update 阅读全文
posted @ 2023-01-02 17:06 不夹心饼干 阅读(38) 评论(0) 推荐(0)
摘要: 第4章 git restore 文件名:当还没有提交到Index时,撤销当前做的修改,working directory, index, object database当前一样;想象与git add相反 git restore --staged 文件名:当把修改提交到Index后,撤销所做的修改,i 阅读全文
posted @ 2022-12-18 14:28 不夹心饼干 阅读(206) 评论(0) 推荐(0)
摘要: 1. 打开Git命令行窗口; 2. 执行如下命令: git update-git-for-windows 3. 如果报错,尝试在hosts(C:\Windows\System32\drivers\etc)中加入如下内容,我是在https://ip.tool.chinaz.com/查的 curl: ( 阅读全文
posted @ 2022-12-05 15:17 不夹心饼干 阅读(415) 评论(0) 推荐(0)