异常类 simple_ml.base.base_error


异常:不匹配 (MisMatchError)

class MisMatchError(Exception):

    def __init__(self, err="不匹配"):
        super(MisMatchError, self).__init__(err)

特征数目不匹配 (FeatureNumberMismatchError)

class FeatureNumberMismatchError(MisMatchError):

    def __init__(self, err="特征数目不匹配"):
        super(FeatureNumberMismatchError, self).__init__(err)

标签长度不匹配 (LabelLengthMismatchError)

class LabelLengthMismatchError(MisMatchError):

    def __init__(self, err="标签长度不匹配"):
        super(LabelLengthMismatchError, self).__init__(err)

树数目不匹配 (TreeNumberMismatchError)

class TreeNumberMismatchError(MisMatchError):

    def __init__(self, err="树数目不匹配"):
        super(TreeNumberMismatchError, self).__init__(err)

样本数目不匹配 (SampleNumberMismatchError)

class SampleNumberMismatchError(MisMatchError):

    def __init__(self, err="样本数目不匹配"):
        super(SampleNumberMismatchError, self).__init__(err)

损失矩阵维度不匹配 (CostMatMismatchError)

class CostMatMismatchError(MisMatchError):

    def __init__(self, err="损失矩阵维度不匹配"):
        super(CostMatMismatchError, self).__init__(err)

前N大数目越界 (TopNTooLargeError)

class TopNTooLargeError(MisMatchError):

    def __init__(self, err="top n数目超过可选择的最大数目"):
        super(TopNTooLargeError, self).__init__(err)

异常:类型错误 (TypeError)

特征类型错误 (FeatureTypeError)

分类器类型错误 (ClassifierTypeError)

距离类型错误 (DistanceTypeError)

交叉验证类型错误 (CrossValidationTypeError)

特征选择方法类型错误 (FilterTypeError)

特征选择方法类型错误 (EmbeddedTypeError)

标签类型错误 (LabelTypeError)

核函数类型错误 (KernelTypeError)

核函数缺失参数 (KernelMissParameterError)

标签数组类型错误 (LabelArrayTypeError)

缺失值处理类型错误 (MissingHandleTypeError)

异常:值错误 (ValueError)

值越界 (ValueBoundaryError)

样本不够 (NeedMoreSampleError)

空输入 (EmptyInputError)

其他异常

ModelNotFittedError 模型未训练

返回主页