Contributors:
- Lee, Dennis
- Chua, Vui Seng
| # Openvino==2022.1.0 | |
| import sys | |
| from openvino.runtime import Core | |
| DELIMITER = ' | ' | |
| if len(sys.argv) < 3: | |
| print("Please provide path to model xml file as a first arg and" | |
| " path to output text file to dump model constants.") |
| *.pyc | |
| .pytest_cache |
| #!/bin/sh | |
| set -e | |
| # Auto-Get the latest commit sha via command line. | |
| get_latest_release() { | |
| tag=$(curl --silent "https://api.github.com/repos/${1}/releases/latest" | # Get latest release from GitHub API | |
| grep '"tag_name":' | # Get tag line | |
| sed -E 's/.*"([^"]+)".*/\1/' ) # Pluck JSON value |
| # Extended python -m http.serve with --username and --password parameters for | |
| # basic auth, based on https://gist.github.com/fxsjy/5465353 | |
| from functools import partial | |
| from http.server import SimpleHTTPRequestHandler, test | |
| import base64 | |
| import os | |
| class AuthHTTPRequestHandler(SimpleHTTPRequestHandler): |
Contributors: