deepmage121 commited on
Commit
76a383b
·
verified ·
1 Parent(s): 3f3290a

Update dataset card

Browse files
Files changed (1) hide show
  1. README.md +33 -55
README.md CHANGED
@@ -1,60 +1,38 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: _leaderboard
5
- dtype: string
6
- - name: _developer
7
- dtype: string
8
- - name: _model
9
- dtype: string
10
- - name: _uuid
11
- dtype: string
12
- - name: schema_version
13
- dtype: string
14
- - name: evaluation_id
15
- dtype: string
16
- - name: retrieved_timestamp
17
- dtype: string
18
- - name: source_data
19
- dtype: string
20
- - name: evaluation_source_name
21
- dtype: string
22
- - name: evaluation_source_type
23
- dtype: string
24
- - name: source_organization_name
25
- dtype: string
26
- - name: source_organization_url
27
- dtype: string
28
- - name: source_organization_logo_url
29
- dtype: string
30
- - name: evaluator_relationship
31
- dtype: string
32
- - name: model_name
33
- dtype: string
34
- - name: model_id
35
- dtype: string
36
- - name: model_developer
37
- dtype: string
38
- - name: model_inference_platform
39
- dtype: string
40
- - name: evaluation_results
41
- dtype: string
42
- - name: additional_details
43
- dtype: string
44
- splits:
45
- - name: hfopenllmv2
46
- num_bytes: 8963029
47
- num_examples: 4576
48
- - name: livecodebenchpro
49
- num_bytes: 34550
50
- num_examples: 23
51
- download_size: 1350403
52
- dataset_size: 8997579
53
  configs:
54
  - config_name: default
55
  data_files:
56
- - split: hfopenllmv2
57
- path: data/hfopenllmv2-*
58
- - split: livecodebenchpro
59
- path: data/livecodebenchpro-*
60
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  configs:
3
  - config_name: default
4
  data_files:
5
+ - split: hfopenllm_v2, hfopenllm_v2/data-00000-of-00001, livecodebenchpro/data-00000-of-00001
6
+ path: data/*.parquet
 
 
7
  ---
8
+
9
+ # Every Eval Ever Dataset
10
+
11
+ Evaluation results from various AI model leaderboards.
12
+
13
+ ## Usage
14
+
15
+ ```python
16
+ from datasets import load_dataset
17
+
18
+ # Load specific leaderboard
19
+ dataset = load_dataset("deepmage121/eee_test", split="hfopenllm_v2")
20
+
21
+ # Load all
22
+ dataset = load_dataset("deepmage121/eee_test")
23
+ ```
24
+
25
+ ## Available Leaderboards (Splits)
26
+
27
+ - `hfopenllm_v2`
28
+ - `hfopenllm_v2/data-00000-of-00001`
29
+ - `livecodebenchpro/data-00000-of-00001`
30
+
31
+ ## Schema
32
+
33
+ - `model_name`, `model_id`, `model_developer`: Model information
34
+ - `evaluation_source_name`: Leaderboard name
35
+ - `evaluation_results`: JSON string with all metrics
36
+ - Additional metadata for reproducibility
37
+
38
+ Auto-updated via GitHub Actions.