marjandl/UCM-HMLC
收藏Hugging Face2024-07-02 更新2024-07-06 收录
下载链接:
https://hf-mirror.com/datasets/marjandl/UCM-HMLC
下载链接
链接失效反馈官方服务:
资源简介:
该数据集包含UC Merced原始标签集的扩展版本,用于层次多标签分类。数据集的创建基于2018年的CORINE土地覆盖数据库(CLC 2018),该数据库提供了多层次的土地覆盖类别的详细信息。
This dataset contains an extended version of the original label set of UC Merced for Hierarchical Multi-Label Classification. It was created based on the CORINE Land Cover database of the year 2018 (CLC 2018), which provides detailed information about the land cover classes at multiple levels of the hierarchy.
提供机构:
marjandl
原始信息汇总
Extended label set of UC Merced for Hierarchical Multi-Label Classification
数据集概述
- 数据集名称: Extended label set of UC Merced for Hierarchical Multi-Label Classification
- 任务类别:
- 图像分类
- 零样本图像分类
- 许可证: MIT
数据集创建
- 创建依据: 基于2018年的CORINE Land Cover数据库(CLC 2018),该数据库提供了关于土地覆盖类别的详细信息,具有多层次的层次结构。
数据集加载
- 加载方法: 使用Hugging Face的
load_dataset函数加载数据集,并将其转换为Pandas DataFrame格式。 python import pandas as pd from datasets import load_dataset
加载数据集
dataset = load_dataset( "marjandl/UCM-HMLC", split=train )
data = [line.split( )[1:] for line in dataset[text]] df = pd.DataFrame(data)
设置第一行为表头并删除该行
df.columns = df.iloc[0] df = df.drop(0).reset_index(drop=True)



