框架:koishi
颜值评分,百度智能云
##自建服务端教程
- 安装并配置conda
全网最完美Conda安装及使用教程 --by 吕强强学生信
关闭自动启动虚拟环境
conda config --set auto_activate_base false
- 创建虚拟环境
conda create -n face python=3.10
- 启动虚拟环境
conda activate face
- 安装opencv-python
pip install opencv-python
- 安装dlib
conda install -c conda-forge dlib
- 安装 pillow
pip install pillow
- 安装 joblib
pip install joblib
- 安装 scikit-learn
pip install scikit-learn
- 安装 fastapi
pip install fastapi
- 安装 uvicorn
pip install uvicorn
- 安装 requests
pip install requests
- 克隆项目
git clone https://github.com/initialencounter/beauty-predict-server.git
- 下载模型
将shape_predictor_68_face_landmarks.dat放到beauty-predict-server/model目录
将features_ALL.txt放到beauty-predict-server/data目录
- 启动服务
cd beauty-predict-server
uvicorn main:app --host '0.0.0.0' --port 8080 --reload
Distributed under the MIT License. See LICENSE.txt
for more information.
反馈群399899914