Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.6 KB

File metadata and controls

32 lines (23 loc) · 1.6 KB

SharedNamespacesMigrationsModelsFeatureExtractorConfig

Configuration for a feature extractor in migration.

Properties

Name Type Description Notes
feature_extractor_name str Name of the extractor
version str Version to use [optional]
parameters Dict[str, object] Extractor parameters [optional]

Example

from mixpeek.models.shared_namespaces_migrations_models_feature_extractor_config import SharedNamespacesMigrationsModelsFeatureExtractorConfig

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

# convert the object into a dict
shared_namespaces_migrations_models_feature_extractor_config_dict = shared_namespaces_migrations_models_feature_extractor_config_instance.to_dict()
# create an instance of SharedNamespacesMigrationsModelsFeatureExtractorConfig from a dict
shared_namespaces_migrations_models_feature_extractor_config_from_dict = SharedNamespacesMigrationsModelsFeatureExtractorConfig.from_dict(shared_namespaces_migrations_models_feature_extractor_config_dict)

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