File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,11 @@ $ source venv3/bin/activate
4040(venv3) $ bonito download --models --latest
4141```
4242
43+ To build with OpenVINO backend:
44+ ``` bash
45+ (venv3) $ pip install develop .[openvino]
46+ ```
47+
4348## Models
4449
4550The following pretrained models are available to download with ` bonito download ` .
Original file line number Diff line number Diff line change @@ -14,4 +14,3 @@ ont-fast5-api==3.3.0
1414fast-ctc-decode == 0.3.0
1515cupy-cuda102 == 9.6.0
1616genomeworks-cuda-10-2 == 2021.2.2
17- openvino == 2021.4.1
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ def run(self):
4343 packages = find_packages (),
4444 include_package_data = True ,
4545 install_requires = requirements ,
46+ extras_require = {
47+ 'openvino' : ['openvino==2021.4.1' ],
48+ },
4649 long_description = long_description ,
4750 long_description_content_type = 'text/markdown' ,
4851 author = 'Oxford Nanopore Technologies, Ltd' ,
You can’t perform that action at this time.
0 commit comments