Table 2-3 describes the DDL operations for mining models.
Table 2-3 DDL for Mining Models
The DBMS_DATA_MINING package contains a number of functions that return information about mining models. For example, the query in Example 2-4 returns details about feature 1 of the feature extraction model named NMF_SH_Sample.
Example 2-4 Sample Model Details Query
SELECT F.feature_id,
A.attribute_name,
A.attribute_value,
A.coefficient
FROM TABLE(DBMS_DATA_MINING.GET_MODEL_DETAILS_NMF('NMF_SH_Sample')) F,
TABLE(F.attribute_set) A
WHERE feature_id = 1
AND attribute_name in ('AFFINITY_CARD','AGE','COUNTRY_NAME')
ORDER BY feature_id,attribute_name,attribute_value;
See Also:
DBMS_DATA_MINING in Oracle Database PL/SQL Packages and Types Reference