requests / README.md
Ali-C137's picture
Update README.md
2515d71 verified
|
raw
history blame
1.95 kB
metadata
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):

{
  "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):

{
  "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"
}