File size: 3,117 Bytes
be83b19
63e8fa4
 
 
 
 
be83b19
 
 
 
 
63e8fa4
800ff82
 
63e8fa4
25a6ca5
a0c3f5d
be83b19
 
63e8fa4
be83b19
800ff82
a0c3f5d
800ff82
be83b19
800ff82
63e8fa4
800ff82
63e8fa4
800ff82
63e8fa4
800ff82
 
 
 
 
63e8fa4
a0c3f5d
63e8fa4
800ff82
63e8fa4
800ff82
63e8fa4
800ff82
be83b19
a0c3f5d
63e8fa4
800ff82
63e8fa4
a0c3f5d
 
 
 
 
 
 
 
800ff82
 
 
a0c3f5d
63e8fa4
800ff82
 
63e8fa4
a0c3f5d
63e8fa4
800ff82
63e8fa4
800ff82
63e8fa4
 
 
 
800ff82
 
63e8fa4
 
a0c3f5d
 
800ff82
63e8fa4
 
 
800ff82
a0c3f5d
 
 
 
 
 
 
 
 
 
 
 
800ff82
63e8fa4
800ff82
 
 
 
a0c3f5d
800ff82
63e8fa4
a0c3f5d
63e8fa4
800ff82
a0c3f5d
800ff82
 
63e8fa4
a0c3f5d
 
 
63e8fa4
 
c9d63e3
800ff82
 
 
 
 
 
63e8fa4
 
be83b19
800ff82
 
be83b19
25a6ca5
800ff82
63e8fa4
800ff82
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
---
license: cc-by-4.0
task_categories:
- other
language:
- en
tags:
- cs2
- counter-strike
- esports
- demos
- sports-analytics
- game-theory
- esports-research
pretty_name: CounterQuant CS2 Demos
size_categories:
- n>1T
---

# CounterQuant CS2 Demos

**The largest open collection of professional CS2 demo files (.dem)**

Raw competitive Counter-Strike 2 demos collected from HLTV.org — focused on Tier 1 & Tier 2 matches.

Curated and maintained by **[Eimantas Kulbe (KEDevO)](https://cs2quant.kedevo.com)** as part of the **CounterQuant** esports analytics project.

---

## 📊 Dataset Overview

- **Total Size**: **3.74 TB+** (and continuously growing)
- **Time Period**: January 2024 – Present
- **Focus**: Tier 1 & Tier 2 professional matches
- **Update Frequency**: New demos added within 24–48 hours after matches
- **Last Updated**: May 20, 2026

---

## 🎯 Goal & Philosophy

To provide the global research, analytics, and esports community with **unrestricted access** to high-quality professional CS2 demo files.

**Philosophy**: Raw data only. No gatekeeping. Parse it, analyze it, and build whatever you want.

---

## 📁 File Structure

```bash
data/
├── 2024/
│   ├── tier1/
│   └── tier2/
├── 2025/
│   ├── tier1/
│   └── tier2/
└── 2026/
    ├── tier1/
    └── tier2/
```

**Example filepath**:
`data/2025/tier1/2401337/vitality-vs-g2-inferno.dem`

---

## 🚀 Quick Start

### Download specific year + tier (Recommended)

```python
from huggingface_hub import snapshot_download

# Example: Download all 2025 Tier 1 demos
snapshot_download(
    repo_id="KEDevO/CounterQuant-CS2-Demos",
    repo_type="dataset",
    allow_patterns="data/2025/tier1/**",
    local_dir="./cs2_demos",
    resume_download=True
)
```

### Parse a demo

```python
from demoparser2 import DemoParser

parser = DemoParser("data/2025/tier1/2401337/vitality-vs-g2-inferno.dem")

kills = parser.parse_event("player_death")
rounds = parser.parse_ticks(["total_rounds_played", "cash_spent_t", "cash_spent_ct"])
```

---

## What You Can Build

- Advanced win probability & clutch models
- Player chemistry & synergy analysis
- Utility usage and trade efficiency metrics
- New generation rating systems
- Tactical & game-theory research
- ML models for movement, positioning, and decision making

---

## Related Projects

- **[CounterQuant Bronze](https://huggingface.co/datasets/KEDevO/CounterQuant-CS2-Bronze)** — Structured & parsed version (Parquet/JSON)
- **[CounterQuant Platform](https://counterquant.com)** — Live analytics dashboard & API

---

## Citation

```bibtex
@dataset{kulbe2026counterquant,
  author       = {Eimantas Kulbe},
  title        = {CounterQuant CS2 Demos},
  year         = {2026},
  publisher    = {Hugging Face},
  url          = {https://huggingface.co/datasets/KEDevO/CounterQuant-CS2-Demos},
  note         = {Continuously updated professional CS2 demo collection}
}
```

---

## License

This dataset is licensed under **CC BY 4.0** — you are free to use, modify, and build upon it with proper attribution.

---