N950 / depthai-model-zoo

DepthAI Model Zoo is a collection of open-source neural network models and datasets created and maintained by DepthAI developers and community

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DepthAI - Model ZOO

GitHub stars maintained web-interface

DepthAI-Model-Zoo

DepthAI Model Zoo is a collection of open-source neural network models and datasets created and maintained by DepthAI developers and the community. A web interface for easier navigation is available at zoo.luxonis.com.

We try to provide already converted latest state-of-the-art models ready for use with DepthAI and our OAK cameras. Most models are accompanied by additional metadata (FPS, accuracy, number of parameters, and FLOPs) and links to the experiments that show the example usage of each model.

Usage

You can download each model from our web interface. Alternatively, you can use the blobconverter API:

  1. install blobconverter using pip:
    pip install blobconverter
    
  2. use the following snippet to download the YOLOP model and get its blob path:
    model_path = blobconverter.from_zoo(name="yolop_320x320",
                                        zoo_type="depthai",
                                        shaves=6)
    model_path = str(model_path)
    

In the example above we use the YOLOP model from the DepthAI Model ZOO. In case you wish to download the model from the OpenVINO ZOO, you can omit the zoo_type flag.

Additional information

For more information please visit:

Contribute

We invite the community to help out by uploading their models via Pull Requests. Help with performance estimation of the models on our devices is also appreciated.

Thanks to everyone who has already contributed!

Contributors

Contributors

About

DepthAI Model Zoo is a collection of open-source neural network models and datasets created and maintained by DepthAI developers and community

License:MIT License


Languages

Language:SCSS 36.9%Language:JavaScript 28.4%Language:HTML 17.4%Language:CSS 14.2%Language:Python 3.0%