Posts

  • 音视频同步网络 syncnet

    https://www.robots.ox.ac.uk/~vgg/software/lipsync/ 在视频中消除音频和视觉流之间的时间延迟,以及 确定在视频中的多个面孔中谁在说话。 Dependencies git clone https://github.com/joonson/syncnet_python.git conda create -n syncnet_python python==3.10 conda activate syncnet_python pip inst...
  • DTLN 降噪

    Install git clone https://github.com/breizhn/DTLN.git conda create -n dtln python==3.10 conda activate dtln pip install soundfile librosa tensorflow wavinfo Inference python run_evaluation.py -i ./data/src/ -o ./data/target/ -m ./pretrained_mo...
  • 使用阿里源安装 docker

    https://docs.docker.com/engine/install/debian/ https://developer.aliyun.com/mirror/docker-ce?spm=a2c6h.13651102.0.0.3e221b11w2W4Vh sudo apt-get update sudo apt-get install ca-certificates curl gnupg sudo install -m 0755 -d /etc/apt/keyrings cur...
  • MacOS 系统下制作U盘镜像

    hdiutil convert -format UDRW -o ubuntu-22.04 ubuntu-22.04.4-desktop-amd64.iso diskutil list diskutil unmountDisk /dev/disk2 sudo dd if=ubuntu-22.04.dmg of=/dev/rdisk2 bs=1m diskutil eject /dev/disk2
  • 安装 flash-attention

    首先确保 pytorch 已经安装好 查看版本号选择 flash-attn 对应的版本 https://github.com/kvcache-ai/ktransformers/issues/410 $ python -c "import torch; print(torch.cuda.is_available()); print(torch.__version__); print(torch.version.cuda)" True 2.5.1+cu121 12.1 $ python ...
  • 安装 HunyuanVideo

    https://github.com/Tencent/HunyuanV https://github.com/Tencent/HunyuanVideo/blob/main/ckpts/README.md # 克隆仓库 git clone https://github.com/tencent/HunyuanVideo cd HunyuanVideo # 创建虚拟环境 python3 -m venv venv source venv/bin/activate # 安装依赖 pip inst...
  • flutter

    安装 jdk https://www.oracle.com/java/technologies/downloads/#jdk23-windows https://docs.flutter.dev/get-started/install/windows/mobile Expand-Archive ` –Path $env:USERPROFILE\Downloads\flutter_windows_3.24.5-stable.zip ` -Destination ...
  • install milvus

    Install Milvus in Docker https://milvus.io/docs/install_standalone-docker.md # Download the installation script $ curl -sfL https://raw.githubusercontent.com/milvus-io/milvus/master/scripts/standalone_embed.sh -o standalone_embed.sh # Start the...
  • 安装 GOT-OCR 2.0

    Install install dependencies git clone https://github.com/Ucas-HaoranWei/GOT-OCR2.0.git cd GOT-OCR2.0/GOT-OCR-2.0-master conda create -n got-ocr python==3.11 conda activate got-ocr pip install -e . download checkpoints pip install -U huggingf...
  • 安装 GLM-4

    Install GLM-4: https://github.com/THUDM/GLM-4 git clone https://github.com/THUDM/GLM-4.git cd GLM-4/basic_demo/ conda create -n GLM-4 python==3.11 onda activate GLM-4 pip install -r requirements.txt download checkpoints pip install modelscope...