first commit

This commit is contained in:
deng
2026-06-16 15:29:36 +08:00
commit d4d4bb430c
9 changed files with 2755 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
# Python-generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv

21
README.md Normal file
View File

@ -0,0 +1,21 @@
<img src="./quickdraw_bot/assets/favicon.png" alt="cat" width="180" /><br>
![Python](https://img.shields.io/badge/python3.13-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)
![PyTorch](https://img.shields.io/badge/PyTorch-3670A0?style=for-the-badge&logo=pytorch&logoColor=ffdd54)
![ONNX](https://img.shields.io/badge/ONNX-3670A0?style=for-the-badge&logo=onnx&logoColor=ffdd54)
![OpenVINO](https://img.shields.io/badge/OpenVINO-3670A0?style=for-the-badge&logo=OpenVINO&logoColor=ffdd54)
## Abstract
看你到底畫瞎咪挖鴿
## Requirements
* Hardware
* MacbookPro14 2021
* Software
* Python 3.13+
* [UV](https://docs.astral.sh/uv/getting-started/installation/) 0.8.15
* [Docker](https://docs.docker.com/get-docker/) 28.1.1
## Installation
```bash
uv sync --all-groups
```

37
pyproject.toml Normal file
View File

@ -0,0 +1,37 @@
[project]
name = "quickdraw-bot"
version = "0.0.1"
description = "This is a small bot to recognize doodles with AI"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"numpy~=2.4.6",
"opencv-python-headless~=4.13.0.92",
"torch~=2.12.0",
"torchvision~=0.27.0",
"torchmetrics~=1.9.0",
"dvc~=3.67.1",
"dvclive~=3.49.1"
]
[dependency-groups]
dev = [
"pre-commit>=4.5.0",
"pytest>=9.0.1",
"ruff>=0.14.6"
]
deploy = [
"onnx~=1.22.0",
"onnxruntime~=1.27.0",
"openvino~=2026.2.0"
]
[tool.ruff]
line-length = 150
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.format]
quote-style = "single"

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

0
quickdraw_bot/deploy.py Normal file
View File

0
quickdraw_bot/eval.py Normal file
View File

0
quickdraw_bot/prepare.py Normal file
View File

0
quickdraw_bot/train.py Normal file
View File

2687
uv.lock generated Normal file

File diff suppressed because it is too large Load Diff