在Windows系统上部署openai-whisper模型
本文介绍如何在Windows系统上部署openai/whisper模型。除开ffmpeg的安装外,其余步骤都可参见openai/whisper: Robust Speech Recognition via Large-Scale Weak Supervision。建议使用scoop安装ffmpeg,因为Chocolatey无法更改自定义默认下载目录。 安装Scoop和ffmpeg音频处理库 12345# 安装powershellSet-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUserirm get.scoop.sh -outfile 'install.ps1'.\install.ps1 -ScoopDir 'E:\ProgramHome\Scoop' -ScoopGlobalDir 'E:\ProgramHome\GlobalScoopApps' -NoProxyscoop install ffmpeg 安装whisper 1234#...
配置Hexo+Obsidian
详细步骤见下述链接,需要注意的是需要忽略.obsidian/workspace.json。 若使用hexo-backlink,除了需要修改Github Action文件外,还需在根目录的_config.yml中添加 12backlink: enable: true More info: Obsidian+Git完美维护Hexo博客 - 知乎 Cyrusky/hexo-backlink: This plugin is for transfer Obsidian-type backlink to standard hexo in-site post link.
配置butterfly主题
本文章介绍如何使用Hexo的butterfly主题。 安装 1git submodule add -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly 应用主题 修改 Hexo 根目錄下的 _config.yml,把主題改為 butterfly 1theme: butterfly 升级建议 為了減少升級主題後帶來的不便,請使用以下方法(建議,可以不做): 在 hexo 的根目錄創建一個文件 _config.butterfly.yml,並把主題目錄的 _config.yml 內容複製到 _config.butterfly.yml 去。 安装插件 将Github Action修改为如下内容: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051# .github/workflows/pages.ymlname: Pageson: push: ...
Hello World
欢迎使用 Hexo!这是您的第一篇帖子。查看 文档 了解更多信息。如果您在使用 Hexo 时遇到任何问题,您可以在 故障排除 中找到答案,也可以在 GitHub 上向我提问。 快速入门 创建新帖子 1$ hexo new "My New Post" More info: Writing 运行服务器 1$ hexo server More info: Server 生成静态文件 1$ hexo generate More info: Generating 部署到远程站点 1$ hexo deploy More info: Deployment
配置Hexo
本文章介绍如何使用Hexo + Gtihub Action在Github Pages上进行静态博客部署。 准备工作 12345678sudo apt install curlcurl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh | bashsource ~/.bashrcnvm install nodenpm install hexo-cli -ghexo init username.github.iocd username.github.ionpm install 将 https://github.com/username/username.github.io/settings/pages 中的Source改为Github Actions 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051#...