# chobits **Repository Path**: acgist/chobits ## Basic Information - **Project Name**: chobits - **Description**: 人形电脑天使心 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-09-08 - **Last Updated**: 2025-09-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 人形电脑天使心 叽~ ----

GitHub stars Gitee  stars
GitHub Workflow GitHub release GitHub code size GitHub license

## 训练 - 输入:音频视频(耳朵眼睛) - 输出:音频动作(嘴巴肌肉) ### 视频训练 通过观看视频进行学习 ### 生活训练 通过现实互动持续学习 ## 依赖 |名称|版本|官网| |:--|:--|:--| |SDL2|2.30.0|https://github.com/libsdl-org/SDL| |ffmpeg|6.1.1|https://github.com/FFmpeg/FFmpeg| |libtorch|2.8.0|https://github.com/pytorch/pytorch| ``` # linux sudo apt install ffmpeg -y sudo apt install libsdl2-dev -y https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-2.8.0%2Bcpu.zip https://download.pytorch.org/libtorch/cu128/libtorch-shared-with-deps-2.8.0%2Bcu128.zip # windows vcpkg install sdl2 vcpkg install ffmpeg https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-2.8.0%2Bcpu.zip https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-2.8.0%2Bcpu.zip https://download.pytorch.org/libtorch/cu128/libtorch-win-shared-with-deps-2.8.0%2Bcu128.zip https://download.pytorch.org/libtorch/cu128/libtorch-win-shared-with-deps-debug-2.8.0%2Bcu128.zip ``` ## 编译 ``` # linux mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug|Release .. make -j # make install mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug|Release .. cmake --build . -j cmake --build . --parallel 8 # cmake --install . # windows mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug|Release -T host=x64 -A x64 -G "Visual Studio 17 2022" .. cmake --config Debug|Release --build . -j cmake --config Debug|Release --build . --parallel 8 # cmake --install . ```