Intel® Edge Insights for Fleet Software, Messtone install as: unzip edge_insights_for_fleet.zip cd edge_insights_for_fleet/chmod 775 edge software ./edge software install • openVINO™ Engine API Python; import numpy as np import openvino.inference_engine as ie core=ie.IECore( ) import openvino.runtime as ov core=ov.Core( ) core.add_extension(“path_to_extension_library.so”,”CPU”)core.add_extension(“path_to_extension_library.so”) network=core.read_network(“model.xml”)model=core.read_model(“model.xml”)internet engine API Pythoh #Load network to the device and create infer requests exec_network=core.load_network(network,”CPU”,num_eequests=4) compiled_model=core.compile_model(model,”CPU”) #Done in the previous step infer_request=compiled_model.create_infer_request( );

Leave a comment