Source code for ads.feature_engineering.feature_type.object
#!/usr/bin/env python# -*- coding: utf-8 -*--# Copyright (c) 2021 Oracle and/or its affiliates.# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/"""The module that represents an Object feature type.Classes: Object The Object feature type."""fromads.feature_engineering.feature_type.baseimportFeatureType
[docs]classObject(FeatureType):""" Type representing object. Attributes ---------- description: str The feature type description. name: str The feature type name. warning: FeatureWarning Provides functionality to register warnings and invoke them. validator Provides functionality to register validators and invoke them. """description="Type representing object."