Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.py 751 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. from setuptools import setup, find_packages
  2. setup(
  3. name="MLOps_CreditScore",
  4. version="0.3.0",
  5. description="MLOps pipeline to predict credit scores (Poor, Standard, Good) using a RandomForestClassifier with automated preprocessing, training, evaluation, deployment, and interactive visualization.",
  6. author="Jorge Luis Garcia",
  7. author_email="jorgeluisdatascientist@gmail.com",
  8. packages=find_packages(),
  9. install_requires=[
  10. "hydra-core>=1.3.2",
  11. "bentoml>=1.4.7",
  12. "scikit-learn>=1.6.1",
  13. "streamlit>=1.0.0",
  14. "mlflow>=2.21.3",
  15. "dvc>=3.59.1",
  16. "pandas>=2.2.3",
  17. "numpy>=2.2.4",
  18. "pytest>=8.3.5",
  19. "omegaconf>=2.3.0",
  20. ],
  21. python_requires=">=3.8",
  22. )
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...