Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 933 Bytes

README.md

File metadata and controls

44 lines (32 loc) · 933 Bytes

NyaTagsDemo

基于 DeepDanbooru 的一个 HTTP API。

前置条件

  • 在 Linux 环境下安装了 DeepDanbooru 并能正常使用

使用方法

  1. 安装 DeepDanbooru
# 克隆仓库到本地
git clone https://github.com/KichangKim/DeepDanbooru

# 进入目录
cd DeepDanbooru

# 安装项目依赖
pip install -r requirements.txt

# 安装
python3 setup.py install
  1. DeepDanbooru/releases处下载模型并解压到一个你喜欢的地方

  2. 编辑/router/img.js第26行的模型路径

  3. 启动本项目

# 安装依赖
npm i

# 启动
node app.js
  1. 然后 POST 请求地址http://{ip}:1245/img/upload,例如:
curl --request POST \
  --url http://localhost:1245/img/upload \
  --header 'content-type: multipart/form-data' \
  --form 'img=@E:\Lazy\Pictures\test.jpg'