Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 449 Bytes

File metadata and controls

28 lines (18 loc) · 449 Bytes

Real World ML Project

Create your new environment or just use the base environment of conda

conda create -p venv python==3.9 -y

Install the requirement libraries in the requirements.txt

pip install -r requirements.txt

Run the ingestion.py file to test the predection

python src\components\data_ingestion.py

Create a flask application for our model

Run the application

python app.py