Update
Browse files- .pre-commit-config.yaml +59 -34
- .style.yapf +0 -5
- .vscode/settings.json +30 -0
- README.md +1 -1
- app.py +35 -33
- requirements.txt +2 -2
- style.css +8 -0
.pre-commit-config.yaml
CHANGED
@@ -1,35 +1,60 @@
|
|
1 |
repos:
|
2 |
-
- repo: https://github.com/pre-commit/pre-commit-hooks
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
- repo: https://github.com/pre-commit/mirrors-mypy
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
repos:
|
2 |
+
- repo: https://github.com/pre-commit/pre-commit-hooks
|
3 |
+
rev: v4.5.0
|
4 |
+
hooks:
|
5 |
+
- id: check-executables-have-shebangs
|
6 |
+
- id: check-json
|
7 |
+
- id: check-merge-conflict
|
8 |
+
- id: check-shebang-scripts-are-executable
|
9 |
+
- id: check-toml
|
10 |
+
- id: check-yaml
|
11 |
+
- id: end-of-file-fixer
|
12 |
+
- id: mixed-line-ending
|
13 |
+
args: ["--fix=lf"]
|
14 |
+
- id: requirements-txt-fixer
|
15 |
+
- id: trailing-whitespace
|
16 |
+
- repo: https://github.com/myint/docformatter
|
17 |
+
rev: v1.7.5
|
18 |
+
hooks:
|
19 |
+
- id: docformatter
|
20 |
+
args: ["--in-place"]
|
21 |
+
- repo: https://github.com/pycqa/isort
|
22 |
+
rev: 5.13.2
|
23 |
+
hooks:
|
24 |
+
- id: isort
|
25 |
+
args: ["--profile", "black"]
|
26 |
+
- repo: https://github.com/pre-commit/mirrors-mypy
|
27 |
+
rev: v1.8.0
|
28 |
+
hooks:
|
29 |
+
- id: mypy
|
30 |
+
args: ["--ignore-missing-imports"]
|
31 |
+
additional_dependencies:
|
32 |
+
[
|
33 |
+
"types-python-slugify",
|
34 |
+
"types-requests",
|
35 |
+
"types-PyYAML",
|
36 |
+
"types-pytz",
|
37 |
+
]
|
38 |
+
- repo: https://github.com/psf/black
|
39 |
+
rev: 24.2.0
|
40 |
+
hooks:
|
41 |
+
- id: black
|
42 |
+
language_version: python3.10
|
43 |
+
args: ["--line-length", "119"]
|
44 |
+
- repo: https://github.com/kynan/nbstripout
|
45 |
+
rev: 0.7.1
|
46 |
+
hooks:
|
47 |
+
- id: nbstripout
|
48 |
+
args:
|
49 |
+
[
|
50 |
+
"--extra-keys",
|
51 |
+
"metadata.interpreter metadata.kernelspec cell.metadata.pycharm",
|
52 |
+
]
|
53 |
+
- repo: https://github.com/nbQA-dev/nbQA
|
54 |
+
rev: 1.7.1
|
55 |
+
hooks:
|
56 |
+
- id: nbqa-black
|
57 |
+
- id: nbqa-pyupgrade
|
58 |
+
args: ["--py37-plus"]
|
59 |
+
- id: nbqa-isort
|
60 |
+
args: ["--float-to-top"]
|
.style.yapf
DELETED
@@ -1,5 +0,0 @@
|
|
1 |
-
[style]
|
2 |
-
based_on_style = pep8
|
3 |
-
blank_line_before_nested_class_or_def = false
|
4 |
-
spaces_before_comment = 2
|
5 |
-
split_before_logical_operator = true
|
|
|
|
|
|
|
|
|
|
|
|
.vscode/settings.json
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"editor.formatOnSave": true,
|
3 |
+
"files.insertFinalNewline": false,
|
4 |
+
"[python]": {
|
5 |
+
"editor.defaultFormatter": "ms-python.black-formatter",
|
6 |
+
"editor.formatOnType": true,
|
7 |
+
"editor.codeActionsOnSave": {
|
8 |
+
"source.organizeImports": "explicit"
|
9 |
+
}
|
10 |
+
},
|
11 |
+
"[jupyter]": {
|
12 |
+
"files.insertFinalNewline": false
|
13 |
+
},
|
14 |
+
"black-formatter.args": [
|
15 |
+
"--line-length=119"
|
16 |
+
],
|
17 |
+
"isort.args": ["--profile", "black"],
|
18 |
+
"flake8.args": [
|
19 |
+
"--max-line-length=119"
|
20 |
+
],
|
21 |
+
"ruff.lint.args": [
|
22 |
+
"--line-length=119"
|
23 |
+
],
|
24 |
+
"notebook.output.scrolling": true,
|
25 |
+
"notebook.formatOnCellExecution": true,
|
26 |
+
"notebook.formatOnSave.enabled": true,
|
27 |
+
"notebook.codeActionsOnSave": {
|
28 |
+
"source.organizeImports": "explicit"
|
29 |
+
}
|
30 |
+
}
|
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 🏃
|
|
4 |
colorFrom: red
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
|
|
4 |
colorFrom: red
|
5 |
colorTo: green
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.19.2
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
app.py
CHANGED
@@ -14,29 +14,27 @@ import PIL.Image
|
|
14 |
import torch
|
15 |
import torchvision
|
16 |
|
17 |
-
sys.path.insert(0,
|
18 |
|
19 |
from _util.twodee_v0 import I as ImageWrapper
|
20 |
|
21 |
-
DESCRIPTION =
|
22 |
|
23 |
-
MODEL_REPO =
|
24 |
|
25 |
|
26 |
def load_sample_image_paths() -> list[pathlib.Path]:
|
27 |
-
image_dir = pathlib.Path(
|
28 |
if not image_dir.exists():
|
29 |
-
dataset_repo =
|
30 |
-
path = huggingface_hub.hf_hub_download(dataset_repo,
|
31 |
-
'images.tar.gz',
|
32 |
-
repo_type='dataset')
|
33 |
with tarfile.open(path) as f:
|
34 |
f.extractall()
|
35 |
-
return sorted(image_dir.glob(
|
36 |
|
37 |
|
38 |
def load_model(device: torch.device) -> torch.nn.Module:
|
39 |
-
path = huggingface_hub.hf_hub_download(MODEL_REPO,
|
40 |
state_dict = torch.load(path)
|
41 |
model = torchvision.models.resnet50(num_classes=1062)
|
42 |
model.load_state_dict(state_dict)
|
@@ -46,18 +44,17 @@ def load_model(device: torch.device) -> torch.nn.Module:
|
|
46 |
|
47 |
|
48 |
def load_labels() -> list[str]:
|
49 |
-
label_path = huggingface_hub.hf_hub_download(MODEL_REPO,
|
50 |
with open(label_path) as f:
|
51 |
labels = [line.strip() for line in f.readlines()]
|
52 |
return labels
|
53 |
|
54 |
|
55 |
@torch.inference_mode()
|
56 |
-
def predict(
|
57 |
-
|
58 |
-
|
59 |
-
data = ImageWrapper(image).resize_square(256).alpha_bg(
|
60 |
-
c='w').convert('RGB').tensor()
|
61 |
data = data.to(device).unsqueeze(0)
|
62 |
|
63 |
preds = model(data)[0]
|
@@ -75,31 +72,36 @@ def predict(image: PIL.Image.Image, score_threshold: float,
|
|
75 |
image_paths = load_sample_image_paths()
|
76 |
examples = [[path.as_posix(), 0.5] for path in image_paths]
|
77 |
|
78 |
-
device = torch.device(
|
79 |
model = load_model(device)
|
80 |
labels = load_labels()
|
81 |
|
82 |
fn = functools.partial(predict, device=device, model=model, labels=labels)
|
83 |
|
84 |
-
with gr.Blocks(css=
|
85 |
gr.Markdown(DESCRIPTION)
|
86 |
with gr.Row():
|
87 |
with gr.Column():
|
88 |
-
image = gr.Image(label=
|
89 |
-
threshold = gr.Slider(label=
|
90 |
-
|
91 |
-
maximum=1,
|
92 |
-
step=0.05,
|
93 |
-
value=0.5)
|
94 |
-
run_button = gr.Button('Run')
|
95 |
with gr.Column():
|
96 |
-
result = gr.Label(label=
|
97 |
|
98 |
inputs = [image, threshold]
|
99 |
-
gr.Examples(
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
import torch
|
15 |
import torchvision
|
16 |
|
17 |
+
sys.path.insert(0, "bizarre-pose-estimator")
|
18 |
|
19 |
from _util.twodee_v0 import I as ImageWrapper
|
20 |
|
21 |
+
DESCRIPTION = "# [ShuhongChen/bizarre-pose-estimator (tagger)](https://github.com/ShuhongChen/bizarre-pose-estimator)"
|
22 |
|
23 |
+
MODEL_REPO = "public-data/bizarre-pose-estimator-models"
|
24 |
|
25 |
|
26 |
def load_sample_image_paths() -> list[pathlib.Path]:
|
27 |
+
image_dir = pathlib.Path("images")
|
28 |
if not image_dir.exists():
|
29 |
+
dataset_repo = "hysts/sample-images-TADNE"
|
30 |
+
path = huggingface_hub.hf_hub_download(dataset_repo, "images.tar.gz", repo_type="dataset")
|
|
|
|
|
31 |
with tarfile.open(path) as f:
|
32 |
f.extractall()
|
33 |
+
return sorted(image_dir.glob("*"))
|
34 |
|
35 |
|
36 |
def load_model(device: torch.device) -> torch.nn.Module:
|
37 |
+
path = huggingface_hub.hf_hub_download(MODEL_REPO, "tagger.pth")
|
38 |
state_dict = torch.load(path)
|
39 |
model = torchvision.models.resnet50(num_classes=1062)
|
40 |
model.load_state_dict(state_dict)
|
|
|
44 |
|
45 |
|
46 |
def load_labels() -> list[str]:
|
47 |
+
label_path = huggingface_hub.hf_hub_download(MODEL_REPO, "tags.txt")
|
48 |
with open(label_path) as f:
|
49 |
labels = [line.strip() for line in f.readlines()]
|
50 |
return labels
|
51 |
|
52 |
|
53 |
@torch.inference_mode()
|
54 |
+
def predict(
|
55 |
+
image: PIL.Image.Image, score_threshold: float, device: torch.device, model: torch.nn.Module, labels: list[str]
|
56 |
+
) -> dict[str, float]:
|
57 |
+
data = ImageWrapper(image).resize_square(256).alpha_bg(c="w").convert("RGB").tensor()
|
|
|
58 |
data = data.to(device).unsqueeze(0)
|
59 |
|
60 |
preds = model(data)[0]
|
|
|
72 |
image_paths = load_sample_image_paths()
|
73 |
examples = [[path.as_posix(), 0.5] for path in image_paths]
|
74 |
|
75 |
+
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
|
76 |
model = load_model(device)
|
77 |
labels = load_labels()
|
78 |
|
79 |
fn = functools.partial(predict, device=device, model=model, labels=labels)
|
80 |
|
81 |
+
with gr.Blocks(css="style.css") as demo:
|
82 |
gr.Markdown(DESCRIPTION)
|
83 |
with gr.Row():
|
84 |
with gr.Column():
|
85 |
+
image = gr.Image(label="Input", type="pil")
|
86 |
+
threshold = gr.Slider(label="Score Threshold", minimum=0, maximum=1, step=0.05, value=0.5)
|
87 |
+
run_button = gr.Button("Run")
|
|
|
|
|
|
|
|
|
88 |
with gr.Column():
|
89 |
+
result = gr.Label(label="Output")
|
90 |
|
91 |
inputs = [image, threshold]
|
92 |
+
gr.Examples(
|
93 |
+
examples=examples,
|
94 |
+
inputs=inputs,
|
95 |
+
outputs=result,
|
96 |
+
fn=fn,
|
97 |
+
cache_examples=os.getenv("CACHE_EXAMPLES") == "1",
|
98 |
+
)
|
99 |
+
run_button.click(
|
100 |
+
fn=fn,
|
101 |
+
inputs=inputs,
|
102 |
+
outputs=result,
|
103 |
+
api_name="predict",
|
104 |
+
)
|
105 |
+
|
106 |
+
if __name__ == "__main__":
|
107 |
+
demo.queue(max_size=15).launch()
|
requirements.txt
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
numpy==1.23.5
|
2 |
-
torch==
|
3 |
-
torchvision==0.
|
|
|
1 |
numpy==1.23.5
|
2 |
+
torch==2.0.1
|
3 |
+
torchvision==0.15.2
|
style.css
CHANGED
@@ -1,3 +1,11 @@
|
|
1 |
h1 {
|
2 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
}
|
|
|
1 |
h1 {
|
2 |
text-align: center;
|
3 |
+
display: block;
|
4 |
+
}
|
5 |
+
|
6 |
+
#duplicate-button {
|
7 |
+
margin: auto;
|
8 |
+
color: #fff;
|
9 |
+
background: #1565c0;
|
10 |
+
border-radius: 100vh;
|
11 |
}
|