本站中文解释
ALL_MINING_MODEL_ATTRIBUTES视图是Oracle 数据挖掘中用于查看模型属性信息的视图,包括训练出来的模型的描述、模型技术和模型参数等。
以查看算法训练出的模型的属性信息为例,使用该视图的步骤如下:
1. 以用户名USER_NAME、模型名MODEL_NAME为查询条件,调出ALL_MINING_MODEL_ATTRIBUTES视图,可看到模型的各种属性信息,包括名称、类型、算法、参数等信息。
2. 调出模型的参数信息LEARN_PARAMETERS。
3. 调出模型的准确度信息ACCURACY。
以上这些就是视图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