Analysis v 3.0.4

This commit is contained in:
Arthur Lu 2021-05-26 07:35:53 +00:00
parent e6674e9c05
commit 8215f95706

View File

@ -7,10 +7,12 @@
# current benchmark of optimization: 1.33 times faster # current benchmark of optimization: 1.33 times faster
# setup: # setup:
__version__ = "3.0.3" __version__ = "3.0.4"
# changelog should be viewed using print(analysis.__changelog__) # changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog: __changelog__ = """changelog:
3.0.4:
- removed -_obj imports
3.0.3: 3.0.3:
- fixed spelling of deprecate - fixed spelling of deprecate
3.0.2: 3.0.2:
@ -385,13 +387,7 @@ import warnings
from .Array import Array from .Array import Array
from .ClassificationMetric import ClassificationMetric from .ClassificationMetric import ClassificationMetric
from .CorrelationTest_obj import CorrelationTest
from .KNN_obj import KNN
from .NaiveBayes_obj import NaiveBayes
from .RandomForest_obj import RandomForest
from .RegressionMetric import RegressionMetric from .RegressionMetric import RegressionMetric
from .Sort_obj import Sort
from .StatisticalTest_obj import StatisticalTest
from . import SVM from . import SVM
class error(ValueError): class error(ValueError):