Skip to content

Commit 6cf008b

Browse files
committed
prepared for pypi
1 parent 42843f5 commit 6cf008b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+87
-63
lines changed

mltoolkit/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from mltoolkit.machine_learning import *
2+
from mltoolkit.data_analysis import *
3+
from mltoolkit.plot import *
4+
from mltoolkit.data_processing import *
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Inside of setup.cfg
2+
[metadata]
3+
description-file = README.md

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name = 'mltoolkit',
55
packages = ['mltoolkit'],
6-
version = '0.1',
6+
version = '1.0',
77
license = 'MIT',
88
description = 'Helper functions for all stages of the machine learning model building process',
99
author = 'TheBridgeMachineLearningPythonLibrary',

test/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
21
import sys
3-
sys.path.insert(1, '../toolkit')
2+
sys.path.insert(1, '../mltoolkit')

test/imports_worst_params.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
from sklearn.linear_model import LogisticRegression
44
from sklearn.ensemble import RandomForestClassifier
55
from sklearn.svm import SVC
6+
from mltoolkit.data_processing import buffdescribe
7+
from mltoolkit.data_analysis import *
8+
from mltoolkit.machine_learning import *
9+
from mltoolkit.plot import *
610

711
clf_cv_results = {'mean_fit_time': array([0.01718318, 0.0028271 , 0.38156233, 0.33234448, 0.35453713,
812
0.00439863, 0.00284553, 0.00274587, 0.00266459, 0.00200651,

test/test_Chi.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
1+
from mltoolkit.data_processing import buffdescribe
2+
from mltoolkit.data_analysis import *
3+
from mltoolkit.machine_learning import *
4+
from mltoolkit.plot import *
25

36

47
def test_chi_squared_test():

0 commit comments

Comments
 (0)