An open API service indexing awesome lists of open source software.

https://github.com/cr21/dvc_nlp_stackoverflow_tag_predictor

AIOps Workflow implementation for Stack Overflow tag prediction task
https://github.com/cr21/dvc_nlp_stackoverflow_tag_predictor

aiops dvc-for-data-science dvc-for-experiment-management dvc-pipeline mlflow mlops mlops-workflow nlp text-classification

Last synced: 3 months ago
JSON representation

AIOps Workflow implementation for Stack Overflow tag prediction task

Awesome Lists containing this project

README

          

# DVC NLP Stackoverflow Tag Predictor
- we will build simple **binary classfication to classify Stackoverflow question into Python tags or non Python Tags.**
- This project is simple **implementation of End To End ML Pipeline using DVC Tool.**
- Using **GitHub Actions for tracking ML Workflow.**
- Used DVC to monitor end to end pipeline results.

# Project Workflow
![project_workflow](project_workflow/DVC.png)
# dvc-project-template
DVC project template

```bash
conda create --prefix ./env python=3.7 -y
```

```bash
conda activate ./env
```
OR
```bash
source activate ./env
```

### STEP 04- install the requirements
```bash
pip install -r requirements.txt
```

### STEP 05- initialize the dvc project
```bash
dvc init
```

### STEP 06- reproduce training
```bash
dvc repro
```