Datasets:
Upload folder using huggingface_hub
Browse files- README.md +90 -0
- cs2.jsonl.zst +3 -0
- csgo.jsonl.zst +3 -0
README.md
ADDED
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- found
|
4 |
+
language:
|
5 |
+
- en
|
6 |
+
license:
|
7 |
+
- cc0-1.0
|
8 |
+
multilinguality:
|
9 |
+
- multilingual
|
10 |
+
pretty_name: Fastcup.net CS2/CSGO Highlights Dataset
|
11 |
+
size_categories:
|
12 |
+
- 10K<n<100K
|
13 |
+
source_datasets:
|
14 |
+
- original
|
15 |
+
task_categories:
|
16 |
+
- video-classification
|
17 |
+
- video-text-to-text
|
18 |
+
tags:
|
19 |
+
- video
|
20 |
+
- gaming
|
21 |
+
configs:
|
22 |
+
- config_name: train
|
23 |
+
data_files:
|
24 |
+
- split: cs2
|
25 |
+
path: "cs2.jsonl.zst"
|
26 |
+
- split: csgo
|
27 |
+
path: "csgo.jsonl.zst"
|
28 |
+
default: true
|
29 |
+
---
|
30 |
+
# Dataset Card for Fastcup.net Highlights
|
31 |
+
|
32 |
+
### Dataset Summary
|
33 |
+
This dataset contains information about 85,488 video clips from the gaming platform Fastcup.net, with 78,143 clips from Counter-Strike 2 and 7,345 clips from Counter-Strike: Global Offensive. The clips showcase gameplay highlights and include detailed metadata such as player statistics, weapon information, and engagement metrics. The total size of raw video content is approximately 34 TB.
|
34 |
+
|
35 |
+
### Languages
|
36 |
+
The dataset is primarily in English (en).
|
37 |
+
|
38 |
+
## Dataset Structure
|
39 |
+
|
40 |
+
### Data Fields
|
41 |
+
This dataset includes the following fields:
|
42 |
+
- `id`: Unique identifier for the clip (integer)
|
43 |
+
- `score`: Rating score for the clip (float)
|
44 |
+
- `title`: Title of the clip (string)
|
45 |
+
- `createdAt`: Timestamp of clip creation (string)
|
46 |
+
- `uploadedAt`: Timestamp of clip upload (string)
|
47 |
+
- `likesCount`: Number of likes (integer)
|
48 |
+
- `viewsCount`: View count (integer)
|
49 |
+
- `killsCount`: Number of kills in the clip (integer)
|
50 |
+
- `clutchSize`: Size of clutch situation, if applicable (integer or null)
|
51 |
+
- `multikillSize`: Number of consecutive kills (integer)
|
52 |
+
- `clutchSuccess`: Indicates if clutch was successful (boolean or null)
|
53 |
+
- `commentsCount`: Number of comments (integer)
|
54 |
+
- `primaryWeapon`: Object containing primary weapon information:
|
55 |
+
- `id`: Weapon ID (integer)
|
56 |
+
- `name`: Weapon name (string)
|
57 |
+
- `internalName`: Internal weapon identifier (string)
|
58 |
+
- `secondaryWeapon`: Object containing secondary weapon information (same structure as primaryWeapon, or null)
|
59 |
+
- `user`: Object containing user information:
|
60 |
+
- `id`: User ID (integer)
|
61 |
+
- `link`: External profile link (string or null)
|
62 |
+
- `avatar`: Avatar filename (string)
|
63 |
+
- `nickName`: Username (string)
|
64 |
+
- `av1_url`: Direct URL to AV1-encoded video file (string)
|
65 |
+
- `h264_url`: Direct URL to H.264-encoded video file (string)
|
66 |
+
|
67 |
+
### Data Splits
|
68 |
+
The dataset is divided into two main splits:
|
69 |
+
- CS2: 78,143 clips
|
70 |
+
- CSGO: 7,345 clips
|
71 |
+
|
72 |
+
### Media Format
|
73 |
+
Each clip is available in two formats:
|
74 |
+
- AV1 encoded video (~40MB per clip)
|
75 |
+
- H.264 encoded video (~40MB per clip)
|
76 |
+
Total dataset size: approximately 34 TB per encoding format (68 TB if both formats are downloaded)
|
77 |
+
|
78 |
+
## Additional Information
|
79 |
+
|
80 |
+
### License
|
81 |
+
This dataset is dedicated to the public domain under the Creative Commons Zero (CC0) license. This means you can:
|
82 |
+
* Use it for any purpose, including commercial projects.
|
83 |
+
* Modify it however you like.
|
84 |
+
* Distribute it without asking permission.
|
85 |
+
No attribution is required, but it's always appreciated!
|
86 |
+
CC0 license: https://creativecommons.org/publicdomain/zero/1.0/deed.en
|
87 |
+
To learn more about CC0, visit the Creative Commons website: https://creativecommons.org/publicdomain/zero/1.0/
|
88 |
+
|
89 |
+
### Dataset Curators
|
90 |
+
- [nyuuzyou](https://ducks.party)
|
cs2.jsonl.zst
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc90f78fea0dff57f197a7e015735bcaa900b612acad408331bac83d61a7bad5
|
3 |
+
size 2772266
|
csgo.jsonl.zst
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d973a6dda7e3188e06388473f2e0b7fdc8ca9c8dac9ac13b9f88563e2671928d
|
3 |
+
size 279743
|