Skip to content

Commit b0840a7

Browse files
author
“vijayg15”
committed
folder structure added
1 parent 3e4f0e0 commit b0840a7

File tree

20 files changed

+45
-0
lines changed

20 files changed

+45
-0
lines changed

.github/workflows/.gitkeep

Whitespace-only changes.

app.py

Whitespace-only changes.

config/config.yaml

Whitespace-only changes.

main.py

Whitespace-only changes.

params.yaml

Whitespace-only changes.

requirements.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
numpy
2+
pandas
3+
matplotlib
4+
scikit-learn
5+
imbalanced-learn
6+
notebook
7+
joblib
8+
tqdm
9+
mlflow==2.3.0
10+
python-box==6.0.2
11+
pyYAML
12+
ensure==1.0.2
13+
types-PyYAML
14+
Flask
15+
Flask-Cors
16+
-e

research/trials.ipynb

Whitespace-only changes.

schema.yaml

Whitespace-only changes.

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import setuptools
2+
3+
with open("README.md", "r", encoding="utf-8") as f:
4+
long_description = f.read()
5+
6+
7+
__version__ = "0.0.0"
8+
9+
REPO_NAME = "Machine-Learning-project-with-MLflow-deployment"
10+
AUTHOR_USER_NAME = "vijayg15"
11+
SRC_REPO = "mlProject"
12+
AUTHOR_EMAIL = "[email protected]"
13+
14+
15+
setuptools.setup(
16+
name=SRC_REPO,
17+
version=__version__,
18+
author=AUTHOR_USER_NAME,
19+
author_email=AUTHOR_EMAIL,
20+
description="A small python package for ml app",
21+
long_description=long_description,
22+
long_description_content="text/markdown",
23+
url=f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}",
24+
project_urls={
25+
"Bug Tracker": f"https://github.com/{AUTHOR_USER_NAME}/{REPO_NAME}/issues",
26+
},
27+
package_dir={"": "src"},
28+
packages=setuptools.find_packages(where="src")
29+
)

src/mlProject/__init__.py

Whitespace-only changes.

src/mlProject/components/__init__.py

Whitespace-only changes.

src/mlProject/config/__init__.py

Whitespace-only changes.

src/mlProject/config/configuration.py

Whitespace-only changes.

src/mlProject/constants/__init__.py

Whitespace-only changes.

src/mlProject/entity/__init__.py

Whitespace-only changes.

src/mlProject/entity/config_entity.py

Whitespace-only changes.

src/mlProject/pipeline/__init__.py

Whitespace-only changes.

src/mlProject/utils/__init__.py

Whitespace-only changes.

src/mlProject/utils/common.py

Whitespace-only changes.

templates/index.html

Whitespace-only changes.

0 commit comments

Comments
 (0)