Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,39 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-nd-4.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-nd-4.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# 简介 Intro
|
6 |
+
基于内容的图像检索数据集是一个专门用于图像识别和检索技术的集合,它包含了以内容为特征的多种图像类别。该数据集涵盖了“Tribe”(部落)、“Beach”(海滩)、“Architecture”(建筑)、“Bus”(公交车)、“Dinosaur”(恐龙)、“Elephant”(大象)、“Flower”(花卉)、“Horse”(马)、“Mountain”(山)和“Food”(食物)共10个类别的图像,为计算机视觉领域的研究和应用提供了丰富的资源。
|
7 |
+
|
8 |
+
The content-based image retrieval dataset is a collection specifically designed for image recognition and retrieval technology, encompassing a variety of image categories characterized by their content. This dataset includes images from 10 categories: "Tribe" (tribal), "Beach" (beach), "Architecture" (architecture), "Bus" (bus), "Dinosaur" (dinosaur), "Elephant" (elephant), "Flower" (flower), "Horse" (horse), "Mountain" (mountain), and "Food" (food), providing a rich resource for research and applications in the field of computer vision.
|
9 |
+
|
10 |
+
## 数据预览 Viewer
|
11 |
+
<https://www.modelscope.cn/datasets/Genius-Society/CBIR/dataPeview>
|
12 |
+
| image | label (10-class) |
|
13 |
+
| :---: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
|
14 |
+
| .jpg | 部落(0 Tribe) / 海滩(1 Beach) / 建筑(2 Architecture) / 公交车(3 Bus) / 恐龙(4 Dinosaur) / 大象(5 Elephant) / 花卉(6 Flower) / 马(7 Horse) / 山(8 Mountain) / 食物(9 Food) |
|
15 |
+
|
16 |
+
|
17 |
+
## 维护 Maintenance
|
18 |
+
```bash
|
19 |
+
git clone git@hf.co:datasets/Genius-Society/CBIR
|
20 |
+
cd CBIR
|
21 |
+
```
|
22 |
+
|
23 |
+
## 使用 Usage
|
24 |
+
```python
|
25 |
+
from modelscope.msdatasets import MsDataset
|
26 |
+
|
27 |
+
ds = MsDataset.load("Genius-Society/CBIR", subset_name="default")
|
28 |
+
for item in ds["train"]:
|
29 |
+
print(item)
|
30 |
+
|
31 |
+
for item in ds["validation"]:
|
32 |
+
print(item)
|
33 |
+
|
34 |
+
for item in ds["test"]:
|
35 |
+
print(item)
|
36 |
+
```
|
37 |
+
|
38 |
+
## 镜像 Mirror
|
39 |
+
<https://www.modelscope.cn/datasets/Genius-Society/CBIR>
|