摘要:
archlinux iso文件下载站点这个iso文件需要保证较新,否则其中的比如libcap的验证密钥过时无法在系统里安装软件包。比如2022年10月7日安装0601版本iso无法通过linux等软件包的验证。 制作启动盘。装一个电脑新的arch系统时,重新制作一个启动盘吧。2022年10月7日安装 阅读全文
摘要:
语音问答助手 from multiprocessing import Process from threading import Thread import os import json import whisper import zhconv from pyaudio import PyAudio 阅读全文
摘要:
import sys import os from collections import OrderedDict from docx import Document import win32com.client # https://zhuanlan.zhihu.com/p/317074324,Pyt 阅读全文
摘要:
模型的命名方式:模型名称_用户名称_仓库名称.gguf DeepSeek-R1-Distill-Llama-8B-Q2_K_L_unsloth_DeepSeek-R1-Distill-Llama-8B-GGUF.gguf 问他问题,他一直回复:“请告诉我问题和需求,请给我细节”,教我怎么使用,却不告 阅读全文
摘要:
跟官方示例相同的操作内容 根据https://github.com/vikhyat/moondream/tree/main \ 的样例程序,从https://hf-mirror.com/vikhyatk/moondream2/blob/onnx/moondream-2b-int8.mf.gz \ 下 阅读全文
摘要:
https://hf-mirror.com/PramaLLC/BEN/tree/main 下载模型和代码,能抠出三次元和二次元的人像 创建于2501281429,修改于2501281429 阅读全文
摘要:
来自项目https://gitee.com/mirrors_nagadomi/lbpcascade_animeface import cv2 import sys import os.path def detect(filename, cascade_file = "./lbpcascade_ani 阅读全文
摘要:
项目地址:https://gitee.com/ailemon/ASRT_SpeechRecognition 通过观察evaluate_speech_model.py的代码,知道DataLoader加载asrt_config.json配置项,进而加载数据内容。复制json配置文件,在数据类“dev”下 阅读全文
摘要:
文本预处理 with open('C:/Users/tellw/Desktop/假面山庄杀人事件.txt',encoding='utf8') as f: contents=f.read() contents=''.join(contents.split('\n')) import re import 阅读全文
摘要:
下载SakuraLLM模型 鉴于显存为6G,下载20241012-Qwen2.5-1.5B-v1.0模型,去https://hf-mirror.com/SakuraLLM/Sakura-1.5B-Qwen2.5-v1.0-GGUF/tree/main下载gguf文件。set CUDA_VISIBLE 阅读全文
摘要:
import subprocess import os import whisper import zhconv import json def time2ffmpeg_time(ti): h=int(ti//3600) ti%=3600 m=int(ti//60) ti%=60 s=int(ti) 阅读全文