Update README.md
Browse files
README.md
CHANGED
@@ -29,3 +29,34 @@ configs:
|
|
29 |
- split: train
|
30 |
path: data/train-*
|
31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
- split: train
|
30 |
path: data/train-*
|
31 |
---
|
32 |
+
|
33 |
+
#### Dataset Card for dwb2023/crisis_prediction_competency_questions
|
34 |
+
|
35 |
+
**Purpose**
|
36 |
+
A collection of stakeholder-specific competency questions that define the requirements and capabilities of the crisis prediction system.
|
37 |
+
|
38 |
+
**Schema Description**
|
39 |
+
| Field Name | Data Type | Description |
|
40 |
+
|------------|-----------|-------------|
|
41 |
+
| cq_id | string | Unique identifier for the competency question |
|
42 |
+
| stakeholder | string | Type of user/role the question is relevant for |
|
43 |
+
| question | string | The actual competency question text |
|
44 |
+
| why | string | Business/operational context for the question |
|
45 |
+
| what | string | Essential insights to be gained from answering |
|
46 |
+
| graph_hint | string | Graph pattern used to answer the CQ |
|
47 |
+
| linked_datasets | sequence[string] | List of dataset IDs that support answering this CQ |
|
48 |
+
| created_at | timestamp[ms] | When the competency question was added |
|
49 |
+
|
50 |
+
**Example Entry**
|
51 |
+
```python
|
52 |
+
{
|
53 |
+
"cq_id": "AIRLINE_CQ1",
|
54 |
+
"stakeholder": "Airline Route Planner",
|
55 |
+
"question": "I need to reroute a cargo flight originally set to land in Hong Kong. What are the fastest alternative routes?",
|
56 |
+
"why": "Prevent excessive delays and ensure cargo integrity",
|
57 |
+
"what": "Alternative routes considering operational airports and capacity",
|
58 |
+
"graph_hint": "(Flight)-[DISRUPTED_BY]->(Policy)",
|
59 |
+
"linked_datasets": ["OPENSKY_FLIGHTS", "FAA_ASDI"],
|
60 |
+
"created_at": 1706745600000
|
61 |
+
}
|
62 |
+
```
|