-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #468 from isl-org/dev_to_master_0.15
dev to master for 0.15
- Loading branch information
Showing
39 changed files
with
1,795 additions
and
1,101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# OpenVINO backend | ||
|
||
Open3D-ML allows to use [Intel | ||
OpenVINO](https://github.com/openvinotoolkit/openvino) as an optional backend for deep learning models inference. | ||
|
||
## Install | ||
|
||
Install a compatible version of OpenVINO with: | ||
|
||
```sh | ||
pip install -r requirements-openvino.txt | ||
``` | ||
|
||
## Usage | ||
|
||
To enable OpenVINO, wrap a model in `ml3d.models.OpenVINOModel` class. In example, | ||
|
||
```python | ||
net = ml3d.models.PointPillars(**cfg.model, device='cpu') | ||
net = ml3d.models.OpenVINOModel(net) | ||
``` | ||
|
||
Then use `net` as usual. | ||
|
||
## Supported hardware | ||
|
||
OpenVINO supports Intel CPUs, GPUs and VPUs. By default, model is executed on CPU. | ||
To switch between devices, use `net.to` option: | ||
|
||
```python | ||
net.to("cpu") # CPU device (default) | ||
net.to("gpu") # GPU device | ||
net.to("myriad") # VPU device | ||
``` | ||
|
||
## Supported models | ||
|
||
* `RandLA-Net` (tf, torch) | ||
* `KPConv` (tf, torch) | ||
* `PointPillars` (torch) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.