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
- Host: GitHub
- URL: https://github.com/cr21/dvc_nlp_stackoverflow_tag_predictor
- Owner: cr21
- License: mit
- Created: 2022-10-24T16:42:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-28T04:44:04.000Z (almost 3 years ago)
- Last Synced: 2025-04-04T03:23:41.396Z (6 months ago)
- Topics: aiops, dvc-for-data-science, dvc-for-experiment-management, dvc-pipeline, mlflow, mlops, mlops-workflow, nlp, text-classification
- Language: Python
- Homepage:
- Size: 10.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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

# 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
```