41.2 ALL_MINING_MODEL_ATTRIBUTES
ALL_MINING_MODEL_ATTRIBUTES
describes the attributes of the machine learning models accessible to the current user.
Only the attributes in the model signature are included in this view. The attributes in the model signature correspond to the columns in the training data that were used to build the model.
Machine learning models are schema objects created by Oracle Machine Learning for SQL.
Related Views
-
DBA_MINING_MODEL_ATTRIBUTES
describes the attributes of all machine learning models in the database. -
USER_MINING_MODEL_ATTRIBUTES
describes the attributes of the machine learning models owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the machine learning model |
|
|
|
Name of the machine learning model |
|
|
|
Name of the attribute |
|
|
– |
Logical type of the attribute. The type is identified during the model build or apply process:
|
|
|
– |
Data type of the attribute |
|
|
– |
Length of the data type |
|
|
– |
Precision of a fixed point number. Precision, which is the total number of significant decimal digits, is represented as p in the data type |
|
|
– |
Scale of a fixed point number. Scale, which is the number of digits from the decimal to the least significant digit, is represented as s in the data type |
|
|
– |
Indicates whether the attribute was used to construct the model ( |
|
|
– |
Indicates whether the attribute is the target of a predictive model ( |
|
|
– |
One or more keywords that identify special treatment for the attribute during model build. Values are:
|
See Also:
Oracle Machine Learning for SQL API Guide for more information about the attributes of machine learning models
Related Topics