TargetPlatform

The platform on which a model runs on an AWS IoT Greengrass core device.

Computer VisionMachine LearningManufacturingQuality InspectionAnomaly Detection

Properties

Name Type Description
Os object
Arch object
Accelerator object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-vision-target-platform-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-vision/refs/heads/main/json-schema/amazon-lookout-for-vision-target-platform-schema.json",
  "title": "TargetPlatform",
  "description": "The platform on which a model runs on an AWS IoT Greengrass core device.",
  "type": "object",
  "properties": {
    "Os": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetPlatformOs"
        },
        {
          "description": "The target operating system for the model. Linux is the only operating system that is currently supported. "
        }
      ]
    },
    "Arch": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetPlatformArch"
        },
        {
          "description": "The target architecture for the model. The currently supported architectures are X86_64 (64-bit version of the x86 instruction set) and ARM_64 (ARMv8 64-bit CPU). "
        }
      ]
    },
    "Accelerator": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TargetPlatformAccelerator"
        },
        {
          "description": "<p>The target accelerator for the model. Currently, Amazon Lookout for Vision only supports NVIDIA (Nvidia graphics processing unit) and CPU accelerators. If you specify NVIDIA as an accelerator, you must also specify the <code>gpu-code</code>, <code>trt-ver</code>, and <code>cuda-ver</code> compiler options. If you don't specify an accelerator, Lookout for Vision uses the CPU for compilation and we highly recommend that you use the <a>GreengrassConfiguration$CompilerOptions</a> field. For example, you can use the following compiler options for CPU: </p> <ul> <li> <p> <code>mcpu</code>: CPU micro-architecture. For example, <code>{'mcpu': 'skylake-avx512'}</code> </p> </li> <li> <p> <code>mattr</code>: CPU flags. For example, <code>{'mattr': ['+neon', '+vfpv4']}</code> </p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "Os",
    "Arch"
  ]
}