atulkrs commited on
Commit
3b5afc9
·
verified ·
1 Parent(s): 74d3496

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +55 -26
README.md CHANGED
@@ -1,28 +1,57 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: label
7
- dtype: int64
8
- - name: domain
9
- dtype: string
10
- - name: text_length
11
- dtype: int64
12
- splits:
13
- - name: train
14
- num_bytes: 2454.4
15
- num_examples: 24
16
- - name: test
17
- num_bytes: 613.6
18
- num_examples: 6
19
- download_size: 6208
20
- dataset_size: 3068.0
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: test
27
- path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ task_categories:
6
+ - text-classification
7
+ task_ids:
8
+ - sentiment-analysis
9
+ tags:
10
+ - mlops
11
+ - devops
12
+ - sentiment
13
+ - domain-specific
14
+ size_categories:
15
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
+
18
+ # MLOps & DevOps Sentiment Dataset
19
+
20
+ ## Dataset description
21
+ A domain-specific sentiment dataset containing real-world MLOps and DevOps
22
+ scenarios labeled as POSITIVE or NEGATIVE. Built to fine-tune sentiment
23
+ classifiers for technical operations contexts where general-purpose models
24
+ (trained on movie reviews) underperform.
25
+
26
+ ## Why this dataset exists
27
+ General sentiment models misclassify technical sentences. For example:
28
+ - "The pipeline failed silently" → general models often miss the negativity
29
+ - "Terraform rollback was effortless" → domain context needed for high confidence
30
+
31
+ ## Dataset structure
32
+ | Split | Examples |
33
+ |-------|----------|
34
+ | Train | 24 |
35
+ | Test | 6 |
36
+
37
+ ### Fields
38
+ - `text` — sentence describing an MLOps/DevOps scenario
39
+ - `label` — 0 (NEGATIVE) or 1 (POSITIVE)
40
+ - `domain` — `mlops` or `devops`
41
+ - `text_length` — word count (added during preprocessing)
42
+
43
+ ## Source
44
+ Manually curated by [@atulkrs](https://huggingface.co/atulkrs) based on
45
+ real-world MLOps and DevOps engineering experience.
46
+
47
+ ## Usage
48
+ \`\`\`python
49
+ from datasets import load_dataset
50
+ ds = load_dataset("atulkrs/mlops-devops-sentiment")
51
+ print(ds["train"][0])
52
+ \`\`\`
53
+
54
+ ## Intended use
55
+ - Fine-tuning sentiment classifiers for MLOps/DevOps tooling feedback
56
+ - Benchmarking domain adaptation of general NLP models
57
+ - Curriculum data for MLOps-aware LLM fine-tuning