Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.71 KB

File metadata and controls

33 lines (24 loc) · 1.71 KB

BaseFeatureExtractorModelOutput

Minimum feature extractor definition.

Properties

Name Type Description Notes
feature_extractor_name str Name of the feature extractor
version str Version of the feature extractor (e.g., 'v1', 'v2')
params Dict[str, object] Optional extractor parameters that affect vector index configuration. Parameters set here are locked at namespace creation and determine vector dimensions in Qdrant. Collections using this extractor must use compatible params. Example: {'model': 'siglip_base'} [optional]
feature_extractor_id str Construct unique identifier for the feature extractor instance (name + version). [readonly]

Example

from mixpeek.models.base_feature_extractor_model_output import BaseFeatureExtractorModelOutput

# TODO update the JSON string below
json = "{}"
# create an instance of BaseFeatureExtractorModelOutput from a JSON string
base_feature_extractor_model_output_instance = BaseFeatureExtractorModelOutput.from_json(json)
# print the JSON string representation of the object
print(BaseFeatureExtractorModelOutput.to_json())

# convert the object into a dict
base_feature_extractor_model_output_dict = base_feature_extractor_model_output_instance.to_dict()
# create an instance of BaseFeatureExtractorModelOutput from a dict
base_feature_extractor_model_output_from_dict = BaseFeatureExtractorModelOutput.from_dict(base_feature_extractor_model_output_dict)

[Back to Model list] [Back to API list] [Back to README]