Packages

  • package root
    Definition Classes
    root
  • package com
    Definition Classes
    root
  • package nvidia
    Definition Classes
    com
  • package mdx

    this is the base transform for mdx analytics SDK, the transform comprise of

    this is the base transform for mdx analytics SDK, the transform comprise of


    core : mdx streaming core classes
    xapp : comprise of sample applications

    Definition Classes
    nvidia
  • package core

    this is the core transform for mdx SDK, contains transform and classes for the core mdx functionality

    this is the core transform for mdx SDK, contains transform and classes for the core mdx functionality

    Definition Classes
    mdx
  • package milvus
    Definition Classes
    core
  • RecordCache
  • ServiceClient
  • package schema

    please see nv.schema , which is used @since v1.0

    please see nv.schema , which is used @since v1.0

    this is kept for backward compatibility and is used for json based pipeline

    the key classes representing the json schema

    Calibration
    Message
    Frame and
    Behavior

    There are two schema for sending messages perception layer to Message broker (kafka or IOT hub), The two schema are represented by Message and Frame. Frame is concise in terms amount of bytes sent over the network

    User can configure to use either of the Messaging schema

    jBehavior is specific to the domain we are dealing with, represent object movement & state over period of times

    Definition Classes
    core
  • package stream
    Definition Classes
    core
  • package transform

    transform used for any message transformation, image coordinates to real world coordinates

    transform used for any message transformation, image coordinates to real world coordinates

    Definition Classes
    core
  • package triton
    Definition Classes
    core
  • package util
    Definition Classes
    core

package milvus

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Value Members

  1. object RecordCache

    Milvus does not have update capabilities, as the pipeline continuously process Behavior and new embeddings are needed to be inserted, this record cache holds all the IDs of embeddings inserted corresponding to a behavior.

    Milvus does not have update capabilities, as the pipeline continuously process Behavior and new embeddings are needed to be inserted, this record cache holds all the IDs of embeddings inserted corresponding to a behavior. during the subsequent update all the IDs are deleted before set of embeddings are inserted

  2. object ServiceClient

    interface to interact with the Milvus vector database the ServiceClient.config needs to be set before use

    interface to interact with the Milvus vector database the ServiceClient.config needs to be set before use

     //use api
     ServiceClient.config = Util.readConfig(...path to config...)
    
     ServiceClient.createCollection
     ServiceClient.createIndex
     ServiceClient.createPartition(...name...)
    
     ServiceClient.insert(...data...)
    
    
     //example config below
     "milvus": {
         "host": "localhost",
         "port": "19530",
         "collection": "mdxBehavior",
         "indexType": "IVF_FLAT",
         "metricType": "IP",
         "vectorDim": "256",
         "sensorIdMaxLength": "100",
         "indexParam": "{\"nlist\":128}",
         "partitioningStrategy": "day",
         "clusterThreshold": "0.9",
         "triggerInterval": "60 seconds"
    }

Ungrouped