Type alias Multi2VecBindConfig

Multi2VecBindConfig: {
    IMUFields?: string[];
    audioFields?: string[];
    depthFields?: string[];
    imageFields?: string[];
    textFields?: string[];
    thermalFields?: string[];
    vectorizeCollectionName?: boolean;
    videoFields?: string[];
    weights?: {
        IMUFields?: number[];
        audioFields?: number[];
        depthFields?: number[];
        imageFields?: number[];
        textFields?: number[];
        thermalFields?: number[];
        videoFields?: number[];
    };
}

The configuration for multi-media vectorization using the Bind module.

See the documentation for detailed usage.

Type declaration

  • Optional IMUFields?: string[]

    The IMU fields used when vectorizing.

  • Optional audioFields?: string[]

    The audio fields used when vectorizing.

  • Optional depthFields?: string[]

    The depth fields used when vectorizing.

  • Optional imageFields?: string[]

    The image fields used when vectorizing.

  • Optional textFields?: string[]

    The text fields used when vectorizing.

  • Optional thermalFields?: string[]

    The thermal fields used when vectorizing.

  • Optional vectorizeCollectionName?: boolean

    Whether the collection name is vectorized.

  • Optional videoFields?: string[]

    The video fields used when vectorizing.

  • Optional weights?: {
        IMUFields?: number[];
        audioFields?: number[];
        depthFields?: number[];
        imageFields?: number[];
        textFields?: number[];
        thermalFields?: number[];
        videoFields?: number[];
    }

    The weights of the fields used for vectorization.

    • Optional IMUFields?: number[]

      The weights of the IMU fields.

    • Optional audioFields?: number[]

      The weights of the audio fields.

    • Optional depthFields?: number[]

      The weights of the depth fields.

    • Optional imageFields?: number[]

      The weights of the image fields.

    • Optional textFields?: number[]

      The weights of the text fields.

    • Optional thermalFields?: number[]

      The weights of the thermal fields.

    • Optional videoFields?: number[]

      The weights of the video fields.