Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ✨ PyTorch Recognition Model Multi-GPU support #1164

Merged
merged 10 commits into from
Mar 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions doctr/models/factory/hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,7 @@
from pathlib import Path
from typing import Any

from huggingface_hub import ( # type: ignore[attr-defined]
HfApi,
HfFolder,
Repository,
hf_hub_download,
snapshot_download,
)
from huggingface_hub import HfApi, HfFolder, Repository, hf_hub_download, snapshot_download

from doctr import models
from doctr.file_utils import is_tf_available, is_torch_available
Expand Down
Loading