weaviate-client
    Preparing search index...

    Type Alias Multi2VecBindConfig

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

    See the documentation for detailed usage.

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

    Properties

    audioFields?: string[]

    The audio fields used when vectorizing.

    depthFields?: string[]

    The depth fields used when vectorizing.

    imageFields?: string[]

    The image fields used when vectorizing.

    IMUFields?: string[]

    The IMU fields used when vectorizing.

    textFields?: string[]

    The text fields used when vectorizing.

    thermalFields?: string[]

    The thermal fields used when vectorizing.

    vectorizeCollectionName?: boolean

    Whether the collection name is vectorized.

    videoFields?: string[]

    The video fields used when vectorizing.

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

    The weights of the fields used for vectorization.

    Type Declaration

    • OptionalaudioFields?: number[]

      The weights of the audio fields.

    • OptionaldepthFields?: number[]

      The weights of the depth fields.

    • OptionalimageFields?: number[]

      The weights of the image fields.

    • OptionalIMUFields?: number[]

      The weights of the IMU fields.

    • OptionaltextFields?: number[]

      The weights of the text fields.

    • OptionalthermalFields?: number[]

      The weights of the thermal fields.

    • OptionalvideoFields?: number[]

      The weights of the video fields.