Open Source OpenVINO Edge developement and deployment on Google Colab using Colab Notebooks
Step 1: Package installation on Google Colab. Ref: Demo.ipynb
Run the command in the first cell of your Google Colab to install the openvino-colab
package.
!pip install openvino-colab
Step 2: Importing openvino-colab into your notebook Ref: Demo.ipynb
Run the below command in a new cell to install the OpenVINO toolkit in Google Colab.
import openvino_colab
Step 3 (Optional): Importing server function into your notebook Ref: Demo.ipynb
from openvino_colab import server
server()
Server Function can take these optional arguments:
-
port =
enter port no.
- the port you want to run server on, default 10000 -
password =
enter password
- password to protect your server. -
mount_drive =
enter True or False
- to mount your drive. -
example of syntax:
server(port=10000, password='ali', mount_drive=True)
To Enable Copy/Paste
in server terminals:
-
Use Chrome Browser
-
visit chrome://settings/content/clipboard and add your xyz.ngork.io link there.