File size: 4,296 Bytes
3a2e03b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
---
language:
- en
license: other
license_name: unknown
license_link: https://github.com/inflaton/llms-at-edge
task_categories:
- text-classification
task_ids:
- multi-class-classification
pretty_name: "GMRID v3: Global Maritime and Supply-Chain Risk Intelligence Dataset"
size_categories:
- 1K<n<10K
tags:
- supply-chain
- logistics
- news-classification
- disruption-detection
source_datasets: []
dataset_info:
  features:
  - name: id
    dtype: int64
  - name: Headline
    dtype: string
  - name: Details
    dtype: string
  - name: Severity
    dtype: string
  - name: Region
    dtype: string
  - name: Datetime
    dtype: string
  - name: lat
    dtype: string
  - name: lon
    dtype: string
  - name: maritime_label
    dtype: string
  - name: found_ports
    dtype: string
  - name: contains_port_info
    dtype: string
  - name: if_labeled
    dtype: string
  - name: Headline_Details
    dtype: string
  - name: Year
    dtype: int64
  - name: Month
    dtype: int64
  - name: Week
    dtype: int64
  - name: Details_cleaned
    dtype: string
  - name: Category
    dtype: string
  - name: Summarized_label
    dtype: string
  - name: gpt-4o_label
    dtype: string
  splits:
  - name: train
    num_examples: 4594
  - name: test
    num_examples: 1147
configs:
- config_name: default
  data_files:
  - split: train
    path: GMRID_v3-train.csv
  - split: test
    path: GMRID_v3-test.csv
---

# GMRID v3: Global Maritime and Supply-Chain Risk Intelligence Dataset

**All authorship and attribution belong to the original creators.** This is a mirror of the dataset from [inflaton/llms-at-edge](https://github.com/inflaton/llms-at-edge) hosted on Hugging Face for accessibility. The original repository does not specify a license; please contact the authors for licensing terms before commercial use.

## Overview

GMRID v3 is a supply-chain disruption news classification dataset. Each row is a real-world incident report (headline + details) labeled with one of 8 disruption categories. The dataset was introduced in:

> **LLMs at the Edge: Performance and Efficiency Evaluation with Ollama on Diverse Hardware**
> IJCNN 2025 (Paper ID: 1443)
> GitHub: [inflaton/llms-at-edge](https://github.com/inflaton/llms-at-edge)

## Task

Single-label classification into 8 categories:

| Category | Train | Test |
|---|---|---|
| Weather | — | 366 |
| Administrative Issue | — | 333 |
| Accident | — | 191 |
| Worker Strike | — | 178 |
| Terrorism | — | 60 |
| Human Error | — | 9 |
| Others | — | 5 |
| Cyber Attack | — | 4 |

The label column is `Summarized_label`. A finer-grained `Category` column provides subcategories (e.g., "Flooding" under Weather, "Port Congestion" under Administrative Issue). The mapping is defined in `categories.json`.

## Splits

| Split | Rows |
|---|---|
| Train | 4,594 |
| Test | 1,147 |

## Columns

| Column | Description |
|---|---|
| `id` | Unique row identifier |
| `Headline` | Short incident headline |
| `Details` | Full incident description |
| `Severity` | Severity level (Critical, Moderate, etc.) |
| `Region` | Geographic region |
| `Datetime` | Incident timestamp |
| `lat`, `lon` | Coordinates (when available) |
| `maritime_label` | Whether the incident is maritime-related |
| `found_ports` | Ports mentioned in the text |
| `contains_port_info` | Boolean: port info present |
| `if_labeled` | Whether the row was manually labeled |
| `Headline_Details` | Concatenated headline + details |
| `Year`, `Month`, `Week` | Temporal features |
| `Details_cleaned` | Preprocessed/cleaned details text |
| `Category` | Fine-grained incident category |
| `Summarized_label` | Coarse 8-class label (primary target) |
| `gpt-4o_label` | GPT-4o predicted label (for reference) |

## Evaluation Metric

Per the original paper: **weighted F1** over the 8-class `Summarized_label`. Macro-F1, exact-match, and per-class P/R/F1 are also commonly reported.

## Citation

If you use this dataset, please cite the original work:

```bibtex
@inproceedings{llms_at_edge_2025,
  title={LLMs at the Edge: Performance and Efficiency Evaluation with Ollama on Diverse Hardware},
  booktitle={International Joint Conference on Neural Networks (IJCNN)},
  year={2025},
  note={Paper ID: 1443},
  url={https://github.com/inflaton/llms-at-edge}
}
```