analysis.py v 1.1.2.001

This commit is contained in:
art 2019-10-01 08:59:04 -05:00
parent 71a0227f8a
commit f8267e17a5
2 changed files with 7 additions and 1 deletions

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__ = "1.1.2.000" __version__ = "1.1.2.001"
# changelog should be viewed using print(analysis.__changelog__) # changelog should be viewed using print(analysis.__changelog__)
__changelog__ = """changelog: __changelog__ = """changelog:
1.1.2.001:
- readded regrression import
1.1.2.000: 1.1.2.000:
- integrated regression.py as regression class - integrated regression.py as regression class
- removed regression import - removed regression import
@ -166,6 +168,10 @@ import numba
from numba import jit from numba import jit
import numpy as np import numpy as np
import math import math
try:
from analysis import regression
except:
pass
from sklearn import metrics from sklearn import metrics
from sklearn import preprocessing from sklearn import preprocessing
import torch import torch