File size: 989 Bytes
a5ad68e
82bad89
a5ad68e
 
 
 
 
82bad89
a5ad68e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

---
license: mit
tags:
- imdb
- sentiment
- subset
---
This dataset contains the original IMDB train split plus balanced dev and test splits derived from the IMDB test set.

### Generation Command
```bash
python take_split.py --target_dataset imdb-dev-test-split --dev_size 15000 --test_size 10000 --seed 42 --private
```

## Dataset Splits

- Train: 25000 samples (label distribution: {0: 12500, 1: 12500})
- Dev: 15000 samples (label distribution: {0: 7500, 1: 7500})
- Test: 10000 samples (label distribution: {0: 5000, 1: 5000})
- Seed: 42

## Notes

- Source: [imdb](https://huggingface.co/datasets/imdb)
- Train split is the original unmodified IMDB train set (25k samples)
- Dev and test are carved from the original IMDB test set (25k samples)
- Dev and test are both label-balanced (50% positive / 50% negative)
- Each document has a unique MD5 hash ID derived from its text content
- Dataset passed determinism sanity check before upload

## License

See original dataset (MIT)