Skip to content

devleifr/openvino_workshop

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Jupyter Notebook 94.2%
  • Python 5.8%