We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e303955 commit 8129274Copy full SHA for 8129274
.github/workflows/ci.yml
@@ -21,7 +21,7 @@ jobs:
21
run: |
22
python -m pip install --upgrade pip
23
pip install .
24
- pip install .[DL]
+ pip install .[modeling]
25
26
- name: Lint with flake8
27
setup.py
@@ -28,9 +28,11 @@
28
"torchvision==0.5",
29
],
30
extras_require={
31
- "GCV": ['google-cloud-vision'],
32
- "Tesseract": ['pytesseract'],
33
- "DL": [
+ "ocr": [
+ 'google-cloud-vision',
+ 'pytesseract'
34
+ ],
35
+ "modeling": [
36
"pycocotools",
37
"detectron2 @ git+https://github.com/facebookresearch/detectron2.git@v0.1.3#egg=detectron2",
38
]
0 commit comments