Earth observation
modcix
Dataset Card for MODCiX - Mowing Detection Intercomparison Exercise
Dataset Summary
The MODCiX (Mowing detection intercomparison exercise) dataset is an unprecedented, independent reference dataset designed to evaluate and benchmark grassland mowing detection algorithms across Europe.
Compiled by multiple European research groups, it contains information on approximately 5,600 grassland mowing events collected between 2017 and 2021 across more than 3,000 parcels… See the full description on the dataset page: https://huggingface.co/datasets/thunen-earth-observation/modcix.earth-observation
usage
from datasets import load_dataset
data = load_dataset("nigo1973/earth-observation")
data
DatasetDict({
train: Dataset({
features: ['task_id', 'input', 'output'],
num_rows: 101
})
})
data["train"][0]
{'task_id': 0,
'input': '地球観測衛星「だいち2号」(ALOS-2)の主な観測目的は何ですか?',
'output': 'だいち2号の主な観測目的は以下の通りです:\n1. 災害状況の把握\n2. 森林や植生の監視\n3. 海氷の監視\n4. 資源探査\n5. 地殻変動の観測'}
