|
|
|
|
|
--- |
|
|
title: Image To Text App |
|
|
emoji: 📹 |
|
|
colorFrom: blue |
|
|
colorTo: red |
|
|
sdk: streamlit |
|
|
app_file: app.py |
|
|
pinned: false |
|
|
--- |
|
|
## Workflows |
|
|
|
|
|
1. Update config.yaml |
|
|
2. Update secrets.yaml [Optional] |
|
|
3. Update params.yaml |
|
|
4. Update the entity |
|
|
5. Update the configuration manager in src config |
|
|
6. Update the components |
|
|
7. Update the pipeline |
|
|
8. Update the main.py |
|
|
9. Update the dvc.yaml |
|
|
|
|
|
|
|
|
# How to run? |
|
|
### STEPS: |
|
|
|
|
|
Clone the repository |
|
|
|
|
|
```bash |
|
|
https://github.com/HAKIM-ML/Chicken-Disease-Classification-Using-Mlops |
|
|
``` |
|
|
### STEP 01- Create a conda environment after opening the repository |
|
|
|
|
|
```bash |
|
|
conda create -n cnncls python=3.8 -y |
|
|
``` |
|
|
|
|
|
```bash |
|
|
conda activate cnncls |
|
|
``` |
|
|
|
|
|
|
|
|
### STEP 02- install the requirements |
|
|
```bash |
|
|
pip install -r requirements.txt |
|
|
``` |
|
|
|
|
|
|
|
|
```bash |
|
|
# Finally run the following command |
|
|
python app.py |
|
|
``` |
|
|
|
|
|
Now, |
|
|
```bash |
|
|
open up you local host and port |
|
|
``` |
|
|
|
|
|
|
|
|
### DVC cmd |
|
|
|
|
|
1. dvc init |
|
|
2. dvc repro |
|
|
3. dvc dag |
|
|
|