Update parquet files
Browse files- README.md +0 -51
- data/dart_llm_tasks.jsonl +0 -0
- dataset_infos.json +0 -51
- default/train/0000.parquet +0 -0
README.md
DELETED
@@ -1,51 +0,0 @@
|
|
1 |
-
---
|
2 |
-
language:
|
3 |
-
- en
|
4 |
-
tags:
|
5 |
-
- text-generation
|
6 |
-
- machine-learning
|
7 |
-
license: mit
|
8 |
-
datasets:
|
9 |
-
- dart_llm_tasks
|
10 |
-
---
|
11 |
-
# DART-LLM Tasks Dataset
|
12 |
-
|
13 |
-
## Description
|
14 |
-
DART-LLM Tasks is a dataset designed for evaluating language models in robotic task planning and coordination through few-shot learning. It contains 102 natural language instructions paired with their corresponding structured task decompositions and execution plans.
|
15 |
-
|
16 |
-
## Dataset Structure
|
17 |
-
- Total examples: 102
|
18 |
-
- Complexity levels:
|
19 |
-
- L1 (Basic): 47 examples
|
20 |
-
- L2 (Medium): 33 examples
|
21 |
-
- L3 (Complex): 22 examples
|
22 |
-
|
23 |
-
## Features
|
24 |
-
- task_id: Unique identifier for each instruction
|
25 |
-
- text: Natural language instruction
|
26 |
-
- output: Structured task decomposition and execution plan
|
27 |
-
- tasks: List of sub-tasks
|
28 |
-
- task: Task name/identifier
|
29 |
-
- instruction_function: Function specification
|
30 |
-
- name: Function name
|
31 |
-
- robot_ids: Involved robots
|
32 |
-
- dependencies: Task dependencies
|
33 |
-
- object_keywords: Relevant objects/locations
|
34 |
-
|
35 |
-
## Task Categories
|
36 |
-
1. Movement Tasks: Navigation to specific areas
|
37 |
-
2. Excavation Tasks: Digging operations
|
38 |
-
3. Loading/Unloading: Material transfer
|
39 |
-
4. Avoidance Tasks: Obstacle and hazard avoidance
|
40 |
-
5. Coordination Tasks: Multi-robot operations
|
41 |
-
|
42 |
-
## Usage
|
43 |
-
```python
|
44 |
-
# Using the dataset for few-shot evaluation
|
45 |
-
from datasets import load_dataset
|
46 |
-
|
47 |
-
# Load the dataset
|
48 |
-
dataset = load_dataset("path/to/dart_llm_tasks")
|
49 |
-
|
50 |
-
# Access examples
|
51 |
-
print(dataset[0]) # First example
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data/dart_llm_tasks.jsonl
DELETED
The diff for this file is too large to render.
See raw diff
|
|
dataset_infos.json
DELETED
@@ -1,51 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"name": "dart_llm_tasks",
|
3 |
-
"version": "1.0.0",
|
4 |
-
"description": "A dataset of natural language instructions for robotic task planning and coordination, designed for few-shot learning evaluation",
|
5 |
-
"size": 102,
|
6 |
-
"features": {
|
7 |
-
"task_id": {
|
8 |
-
"_type": "string",
|
9 |
-
"description": "Unique identifier for the task in format 'dart_llm-{level}-{type}-{number}'"
|
10 |
-
},
|
11 |
-
"text": {
|
12 |
-
"_type": "string",
|
13 |
-
"description": "Natural language instruction for the robotic task"
|
14 |
-
},
|
15 |
-
"output": {
|
16 |
-
"_type": "dict",
|
17 |
-
"description": "Structured task decomposition and execution plan"
|
18 |
-
}
|
19 |
-
},
|
20 |
-
"task_types": {
|
21 |
-
"L1": {
|
22 |
-
"description": "Basic tasks (single robot operations or simple commands)",
|
23 |
-
"count": 47,
|
24 |
-
"examples": ["Move robot to location", "Perform single excavation", "Simple avoidance"]
|
25 |
-
},
|
26 |
-
"L2": {
|
27 |
-
"description": "Medium complexity tasks (two-robot coordination)",
|
28 |
-
"count": 33,
|
29 |
-
"examples": ["Coordinated excavation and transport", "Sequential operations"]
|
30 |
-
},
|
31 |
-
"L3": {
|
32 |
-
"description": "Complex tasks (multi-robot coordination and complex sequences)",
|
33 |
-
"count": 22,
|
34 |
-
"examples": ["Multi-robot simultaneous operations", "Complex area coverage"]
|
35 |
-
}
|
36 |
-
},
|
37 |
-
"available_robots": {
|
38 |
-
"excavators": ["excavator_01", "excavator_02", "excavator_03"],
|
39 |
-
"dump_trucks": ["dump_truck_01", "dump_truck_02", "dump_truck_03"]
|
40 |
-
},
|
41 |
-
"instruction_functions": {
|
42 |
-
"target_area_for_specific_robots": "Move specific robots to target area",
|
43 |
-
"target_area_for_all_robots": "Move all robots to target area",
|
44 |
-
"avoid_areas_for_specific_robots": "Make specific robots avoid areas",
|
45 |
-
"avoid_areas_for_all_robots": "Make all robots avoid areas",
|
46 |
-
"Excavation": "Perform excavation operation",
|
47 |
-
"ExcavatorUnloading": "Unload excavator materials",
|
48 |
-
"DumpLoading": "Load dump truck with materials",
|
49 |
-
"DumpUnloading": "Unload dump truck materials"
|
50 |
-
}
|
51 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
default/train/0000.parquet
ADDED
Binary file (16.9 kB). View file
|
|