Datasets:
Tasks:
Text Classification
Formats:
parquet
Sub-tasks:
sentiment-analysis
Languages:
English
Size:
< 1K
License:
File size: 1,545 Bytes
74d3496 3b5afc9 74d3496 3b5afc9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | ---
language:
- en
license: apache-2.0
task_categories:
- text-classification
task_ids:
- sentiment-analysis
tags:
- mlops
- devops
- sentiment
- domain-specific
size_categories:
- n<1K
---
# MLOps & DevOps Sentiment Dataset
## Dataset description
A domain-specific sentiment dataset containing real-world MLOps and DevOps
scenarios labeled as POSITIVE or NEGATIVE. Built to fine-tune sentiment
classifiers for technical operations contexts where general-purpose models
(trained on movie reviews) underperform.
## Why this dataset exists
General sentiment models misclassify technical sentences. For example:
- "The pipeline failed silently" → general models often miss the negativity
- "Terraform rollback was effortless" → domain context needed for high confidence
## Dataset structure
| Split | Examples |
|-------|----------|
| Train | 24 |
| Test | 6 |
### Fields
- `text` — sentence describing an MLOps/DevOps scenario
- `label` — 0 (NEGATIVE) or 1 (POSITIVE)
- `domain` — `mlops` or `devops`
- `text_length` — word count (added during preprocessing)
## Source
Manually curated by [@atulkrs](https://huggingface.co/atulkrs) based on
real-world MLOps and DevOps engineering experience.
## Usage
\`\`\`python
from datasets import load_dataset
ds = load_dataset("atulkrs/mlops-devops-sentiment")
print(ds["train"][0])
\`\`\`
## Intended use
- Fine-tuning sentiment classifiers for MLOps/DevOps tooling feedback
- Benchmarking domain adaptation of general NLP models
- Curriculum data for MLOps-aware LLM fine-tuning
|