devleifr / openvino_workshop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Openvino Workshop

How to run the workshop

  1. Install OpenVINO and activate environment:
    source ~/intel/openvino/bin/setupvars.sh
  1. Clone the repository
    git clone https://github.com/artyomtugaryov/openvino_workshop.git
  1. Create Virtual environment for python3:
    sudo -E apt-get install python3-venv
    
    python3 -m venv env

    source env/bin/activate
  1. Install OpenVINO python dependencies:

    4.1 Install Accuracy Checker

        cd ${INTEL_OPENVINO_DIR}/deployment_tools/open_model_zoo/tools/accuracy_checker/
        python setup.py install

    4.2 Install Post-Training Optimization Toolkit

        cd ${INTEL_OPENVINO_DIR}/deployment_tools/tools/post_training_optimization_toolkit
        python setup.py install

    4.3 Install dependencies for the Model Downloader

        pip install -r ${INTEL_OPENVINO_DIR}/deployment_tools/open_model_zoo/tools/downloader/requirements.in

    4.4 Install dependencies for the Model Optimizer

        pip install -r ${INTEL_OPENVINO_DIR}/deployment_tools/model_optimizer/requirements.txt
  2. Install workshop dependencies:

    pip install -r requirements.txt
  1. Install gettext-base package for using envsubst:
    apt-get install gettext-base
  1. Run the notebook:
   jupyter notebook

About


Languages

Language:Jupyter Notebook 94.2%Language:Python 5.8%