File size: 1,165 Bytes
406a8a0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Benchmark Hugging Face Release

This directory contains the current benchmark release split into question JSON files and per-community data archives.

- `datasets/codabench.json`: full benchmark questions.
- `datasets/codabench-hard.json`: hard subset questions.
- `archives/community_*.tar.zst`: compressed data archives for Hugging Face Git LFS upload.
- `archives_manifest.json`: archive size, SHA256, and extraction target metadata.
- `release_manifest.json`: source-to-release community mapping and copy statistics.
- `scripts/extract_archives.py`: verifies archive SHA256 values and extracts data.

Each question row has `release_community` and `data_path`. After extracting an archive, its contents land at that `data_path`, for example:

```bash
python scripts/extract_archives.py --community community_0
```

For all archives:

```bash
python scripts/extract_archives.py
```

The data copy dereferences the symlinks produced by `stage1_setup`, so the archives contain actual file contents rather than symlink placeholders.

Recommended Hugging Face layout:

```text
datasets/
archives/
archives_manifest.json
release_manifest.json
README.md
scripts/
```