Ali-C137 commited on
Commit
2515d71
1 Parent(s): ce89f2a

Update README.md

Browse files

Add a Dataset Card

Files changed (1) hide show
  1. README.md +85 -41
README.md CHANGED
@@ -1,41 +1,85 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: model
5
- dtype: string
6
- - name: base_model
7
- dtype: string
8
- - name: revision
9
- dtype: string
10
- - name: private
11
- dtype: bool
12
- - name: precision
13
- dtype: string
14
- - name: weight_type
15
- dtype: string
16
- - name: status
17
- dtype: string
18
- - name: submitted_time
19
- dtype: timestamp[s]
20
- - name: model_type
21
- dtype: string
22
- - name: likes
23
- dtype: float64
24
- - name: params
25
- dtype: float64
26
- - name: license
27
- dtype: string
28
- - name: '0'
29
- dtype: string
30
- splits:
31
- - name: train
32
- num_bytes: 811
33
- num_examples: 6
34
- download_size: 6526
35
- dataset_size: 811
36
- configs:
37
- - config_name: default
38
- data_files:
39
- - split: train
40
- path: data/train-*
41
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: model
5
+ dtype: string
6
+ - name: base_model
7
+ dtype: string
8
+ - name: revision
9
+ dtype: string
10
+ - name: private
11
+ dtype: bool
12
+ - name: precision
13
+ dtype: string
14
+ - name: weight_type
15
+ dtype: string
16
+ - name: status
17
+ dtype: string
18
+ - name: submitted_time
19
+ dtype: timestamp[s]
20
+ - name: model_type
21
+ dtype: string
22
+ - name: likes
23
+ dtype: float64
24
+ - name: params
25
+ dtype: float64
26
+ - name: license
27
+ dtype: string
28
+ - name: '0'
29
+ dtype: string
30
+ splits:
31
+ - name: train
32
+ num_bytes: 811
33
+ num_examples: 6
34
+ download_size: 6526
35
+ dataset_size: 811
36
+ configs:
37
+ - config_name: default
38
+ data_files:
39
+ - split: train
40
+ path: data/train-*
41
+ license: apache-2.0
42
+ ---
43
+
44
+ ## Requests Dataset
45
+
46
+ ### Open Arabic LLM Leaderboard Requests
47
+ This dataset contains community queries and the running status of models submitted to the Open Arabic LLM Leaderboard. The models are organized in folders, with JSON files providing detailed information about each model's evaluation status.
48
+
49
+ **Example JSON Structure (Pending):**
50
+ ```json
51
+ {
52
+ "model": "FreedomIntelligence/AceGPT-7B-chat",
53
+ "base_model": "",
54
+ "revision": "main",
55
+ "precision": "float16",
56
+ "weight_type": "Original",
57
+ "status": "PENDING",
58
+ "submitted_time": "2024-05-11T20:51:37Z",
59
+ "model_type": "💬 : chat models (RLHF, DPO, IFT, ...)",
60
+ "likes": 8,
61
+ "params": 0,
62
+ "license": "apache-2.0",
63
+ "private": false
64
+ }
65
+ ```
66
+
67
+ **Example JSON Structure (Finished):**
68
+ ```json
69
+ {
70
+ "model": "FreedomIntelligence/AceGPT-7B-chat",
71
+ "base_model": "",
72
+ "revision": "main",
73
+ "precision": "float16",
74
+ "weight_type": "Original",
75
+ "status": "FINISHED",
76
+ "submitted_time": "2024-05-11T20:51:37Z",
77
+ "model_type": "💬 : chat models (RLHF, DPO, IFT, ...)",
78
+ "likes": 8,
79
+ "params": 0,
80
+ "license": "apache-2.0",
81
+ "private": false,
82
+ "job_id": null,
83
+ "job_start_time": "2024-05-13T19:42:21.942278"
84
+ }
85
+ ```