Datasets:

License:
File size: 1,952 Bytes
2515d71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---

dataset_info:
  features:
  - name: model
    dtype: string
  - name: base_model
    dtype: string
  - name: revision
    dtype: string
  - name: private
    dtype: bool
  - name: precision
    dtype: string
  - name: weight_type
    dtype: string
  - name: status
    dtype: string
  - name: submitted_time
    dtype: timestamp[s]
  - name: model_type
    dtype: string
  - name: likes
    dtype: float64
  - name: params
    dtype: float64
  - name: license
    dtype: string
  - name: '0'
    dtype: string
  splits:
  - name: train
    num_bytes: 811
    num_examples: 6
  download_size: 6526
  dataset_size: 811
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
license: apache-2.0
---


## Requests Dataset

### Open Arabic LLM Leaderboard Requests
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.

**Example JSON Structure (Pending):**
```json
{
  "model": "FreedomIntelligence/AceGPT-7B-chat",
  "base_model": "",
  "revision": "main",
  "precision": "float16",
  "weight_type": "Original",
  "status": "PENDING",
  "submitted_time": "2024-05-11T20:51:37Z",
  "model_type": "💬 : chat models (RLHF, DPO, IFT, ...)",
  "likes": 8,
  "params": 0,
  "license": "apache-2.0",
  "private": false
}
```

**Example JSON Structure (Finished):**
```json
{
  "model": "FreedomIntelligence/AceGPT-7B-chat",
  "base_model": "",
  "revision": "main",
  "precision": "float16",
  "weight_type": "Original",
  "status": "FINISHED",
  "submitted_time": "2024-05-11T20:51:37Z",
  "model_type": "💬 : chat models (RLHF, DPO, IFT, ...)",
  "likes": 8,
  "params": 0,
  "license": "apache-2.0",
  "private": false,
  "job_id": null,
  "job_start_time": "2024-05-13T19:42:21.942278"
}
```