Yongdong
commited on
Commit
·
f7a3803
0
Parent(s):
Initial commit
Browse files- README.md +51 -0
- data/dart_llm_tasks.jsonl +0 -0
README.md
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
ADDED
The diff for this file is too large to render.
See raw diff
|
|