This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Creates a ModelMesh InferenceService with auth in the given namespace. | |
| # Self-contained — no external manifest files needed. | |
| # Uses S3 storage with a MNIST ONNX model. | |
| # Model: MNIST-8 (handwritten digit classification, ONNX format) | |
| # - Storage: S3 bucket (requires AWS credentials via env vars) | |
| # - Runtime: OpenVINO Model Server (OVMS) in multi-model mode | |
| # | |
| # Prerequisites: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Creates a serverless InferenceService with auth in the given namespace. | |
| # Self-contained — no external manifest files needed. | |
| # Uses OCI (ModelCar) storage with a public MNIST ONNX model. | |
| # Model: MNIST-8.1 (handwritten digit classification, ONNX format) | |
| # - Image: quay.io/mwaykole/test (public, no auth required) | |
| # - Input: 1x1x28x28 FP32 tensor (28x28 grayscale image) | |
| # - Output: 1x10 FP32 tensor (digit probabilities 0-9) | |
| # - Runtime: OpenVINO Model Server (OVMS) |