ORA-40273: invalid model type string for Adaptive Bayes Network algorithm

文档解释

ORA-40273: invalid model type string for Adaptive Bayes Network algorithm

Cause: The valid values for the abns_model_type settings are: abns_multi_feature, abns_single_feature, abns_naive_bayes.

Action: Use a valid value for the abns_model_type setting.

官方解释

常见案例

在使用DBMS_DATA_MINING.CREATE_MODEL()创建模型时,传入了一个不正确的字符传参数model_type,可能会出现ORA-40273错误提示。

一般处理方法及步骤

1.确定model_type参数传入的模型类型是否正确;

2.确定参数传入的模型类型是否被可以支持,在Oracle中模型类型支持:DECISION_TREE、NAIVE_BAYES、FACTOR_ANALYSIS、NEURAL_NETWORKS、SVM、ASSOCIATION_RULES、KMEANS、GLM、ABN;

3.确定该模型(model_type)是否运行了DBMS_DATA_MINING.ALTER_MODEL()。

你可能感兴趣的