first commit
This commit is contained in:
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
# Python-generated files
|
||||||
|
__pycache__/
|
||||||
|
*.py[oc]
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
wheels/
|
||||||
|
*.egg-info
|
||||||
|
|
||||||
|
# Virtual environments
|
||||||
|
.venv
|
||||||
21
README.md
Normal file
21
README.md
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<img src="./quickdraw_bot/assets/favicon.png" alt="cat" width="180" /><br>
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
## 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
37
pyproject.toml
Normal 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"
|
||||||
BIN
quickdraw_bot/assets/favicon.png
Normal file
BIN
quickdraw_bot/assets/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 47 KiB |
0
quickdraw_bot/deploy.py
Normal file
0
quickdraw_bot/deploy.py
Normal file
0
quickdraw_bot/eval.py
Normal file
0
quickdraw_bot/eval.py
Normal file
0
quickdraw_bot/prepare.py
Normal file
0
quickdraw_bot/prepare.py
Normal file
0
quickdraw_bot/train.py
Normal file
0
quickdraw_bot/train.py
Normal file
Reference in New Issue
Block a user