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

update bug report ticket with Active backend field #853

Merged
merged 29 commits into from
Mar 16, 2022
Merged
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
81c313e
backup
felixdittrich92 Jan 11, 2022
50574b5
Merge branch 'mindee:main' into main
felixdittrich92 Jan 11, 2022
5a6ed54
Merge branch 'mindee:main' into main
felixdittrich92 Jan 18, 2022
b9958a7
Merge branch 'mindee:main' into main
felixdittrich92 Jan 20, 2022
14c4651
Merge branch 'mindee:main' into main
felixdittrich92 Feb 16, 2022
779731f
Merge branch 'mindee:main' into main
felixdittrich92 Feb 18, 2022
ce2cdda
Merge branch 'mindee:main' into main
felixdittrich92 Feb 22, 2022
d13dc43
Merge branch 'mindee:main' into main
felixdittrich92 Feb 23, 2022
9a07d73
Merge branch 'mindee:main' into main
felixdittrich92 Feb 24, 2022
a002a70
Merge branch 'mindee:main' into main
felixdittrich92 Feb 24, 2022
6ad096e
Merge branch 'mindee:main' into main
felixdittrich92 Feb 25, 2022
1e77fd4
Merge branch 'mindee:main' into main
felixdittrich92 Mar 8, 2022
2be762c
Merge branch 'mindee:main' into main
felixdittrich92 Mar 10, 2022
e2f2055
Merge branch 'mindee:main' into main
felixdittrich92 Mar 11, 2022
385dec8
minor print
felixdittrich92 Mar 13, 2022
74918c7
change to logger
felixdittrich92 Mar 13, 2022
de714c1
change to logger
felixdittrich92 Mar 13, 2022
a00d651
stderr
felixdittrich92 Mar 13, 2022
945eaf0
set missing
felixdittrich92 Mar 13, 2022
f8dea80
fix test
felixdittrich92 Mar 13, 2022
bf1b6f6
update
felixdittrich92 Mar 13, 2022
f43acb3
update
felixdittrich92 Mar 13, 2022
f53bd9e
update
felixdittrich92 Mar 13, 2022
78d2355
update
felixdittrich92 Mar 13, 2022
7a9ec52
remove default logging
felixdittrich92 Mar 14, 2022
ba8e456
flake8
felixdittrich92 Mar 14, 2022
d5677de
revert
felixdittrich92 Mar 16, 2022
3272fef
update bug report ticket
felixdittrich92 Mar 16, 2022
8021129
apply changes
felixdittrich92 Mar 16, 2022
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
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,19 @@ body:
```
validations:
required: true
- type: textarea
attributes:
label: Deep Learning backend
description: |
Please run the following snippet and paste the output below.
```python
from doctr.file_utils import is_tf_available, is_torch_available

print(f"is_tf_available: {is_tf_available()}")
print(f"is_torch_available: {is_torch_available()}")
```
validations:
required: true
- type: markdown
attributes:
value: >
Expand Down