Skip to content

Commit 03b8de3

Browse files
committed
tensorflow added
1 parent 242de2b commit 03b8de3

File tree

7 files changed

+53
-2
lines changed

7 files changed

+53
-2
lines changed

dist/ds11mltoolkit-1.4.tar.gz

19.4 KB
Binary file not shown.

ds11mltoolkit.egg-info/PKG-INFO

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Metadata-Version: 2.1
2+
Name: ds11mltoolkit
3+
Version: 1.4
4+
Summary: Helper functions for all stages of the machine learning model building process
5+
Home-page: https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit
6+
Download-URL: https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit/archive/refs/tags/v_1_4.tar.gz
7+
Author: TheBridgeMachineLearningPythonLibrary
8+
Author-email: seenstevol@protonmail.com
9+
License: MIT
10+
Keywords: machine learning,data visualization,data processing,sklearn,pandas
11+
Classifier: Development Status :: 3 - Alpha
12+
Classifier: Intended Audience :: Developers
13+
Classifier: Intended Audience :: Education
14+
Classifier: Intended Audience :: Science/Research
15+
Classifier: Topic :: Scientific/Engineering
16+
Classifier: License :: OSI Approved :: MIT License
17+
Classifier: Programming Language :: Python :: 3.7
18+
License-File: LICENSE.txt

ds11mltoolkit.egg-info/SOURCES.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
LICENSE.txt
2+
README.md
3+
setup.cfg
4+
setup.py
5+
ds11mltoolkit/__init__.py
6+
ds11mltoolkit/data_analysis.py
7+
ds11mltoolkit/data_processing.py
8+
ds11mltoolkit/machine_learning.py
9+
ds11mltoolkit/plot.py
10+
ds11mltoolkit.egg-info/PKG-INFO
11+
ds11mltoolkit.egg-info/SOURCES.txt
12+
ds11mltoolkit.egg-info/dependency_links.txt
13+
ds11mltoolkit.egg-info/requires.txt
14+
ds11mltoolkit.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
pandas
2+
scipy
3+
nltk
4+
opencv-python-headless
5+
scikit-image
6+
keras
7+
imblearn
8+
scikit-learn
9+
selenium
10+
requests
11+
beautifulsoup4
12+
Pillow
13+
matplotlib
14+
seaborn
15+
plotly
16+
wordcloud
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ds11mltoolkit

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,20 @@
33
setup(
44
name = 'ds11mltoolkit',
55
packages = ['ds11mltoolkit'],
6-
version = '1.2',
6+
version = '1.4',
77
license = 'MIT',
88
description = 'Helper functions for all stages of the machine learning model building process',
99
author = 'TheBridgeMachineLearningPythonLibrary',
1010
author_email = 'seenstevol@protonmail.com',
1111
url = 'https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit',
12-
download_url = 'https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit/archive/refs/tags/v_1_2.tar.gz',
12+
download_url = 'https://github.com/TheBridgeMachineLearningPythonLibrary/MachineLearningToolKit/archive/refs/tags/v_1_4.tar.gz',
1313
keywords = ['machine learning', 'data visualization', 'data processing', 'sklearn', 'pandas'],
1414
install_requires=['pandas',
1515
'scipy',
1616
'nltk',
1717
'opencv-python-headless',
1818
'scikit-image',
19+
'tensorflow',
1920
'keras',
2021
'imblearn',
2122
'scikit-learn',

0 commit comments

Comments
 (0)