SamoXXX commited on
Commit
1613c1b
·
verified ·
1 Parent(s): e330423

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +131 -26
README.md CHANGED
@@ -1,28 +1,133 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: index
5
- dtype: int64
6
- - name: image
7
- dtype: image
8
- - name: base64_image
9
- dtype: string
10
- - name: dataset_name
11
- dtype: string
12
- splits:
13
- - name: sfw
14
- num_bytes: 1900025408
15
- num_examples: 10000
16
- - name: x_nsfw
17
- num_bytes: 199731659
18
- num_examples: 1000
19
- download_size: 2088419764
20
- dataset_size: 2099757067
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: sfw
25
- path: data/sfw-*
26
- - split: x_nsfw
27
- path: data/x_nsfw-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: unknown
3
+ task_categories:
4
+ - image-classification
5
+ size_categories:
6
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
+
9
+ # MV-VDB-photos-small
10
+
11
+ **Media Vault - Vector Database Photos (Small)**
12
+
13
+ A curated collection of 11,000 images from various computer vision datasets, designed for testing internal mechanisms in the Media Vault Vector Database system. This is the first small-scale dataset (targeting 10K samples, with NSFW split totaling 11K) for validation and testing purposes.
14
+
15
+ ## Dataset Structure
16
+
17
+ The dataset contains two splits:
18
+ - **`sfw`**: All non-NSFW images (~10,000 images)
19
+ - **`x_nsfw`**: Only NSFW images (~1,000 images)
20
+
21
+ Each image has the following columns:
22
+ - `index`: Image index within the dataset
23
+ - `image`: Image in JPG format (JPG bytes)
24
+ - `base64_image`: Base64 encoded image string
25
+ - `dataset_name`: Source dataset name
26
+
27
+ ## Processing
28
+
29
+ - Images resized to max 800px on longest side (preserving aspect ratio)
30
+ - Converted to JPEG format
31
+ - Quality: 90%
32
+ - Images smaller than 800px on longest side are kept at original size
33
+
34
+ ## Source Datasets and Licenses
35
+
36
+ This dataset is compiled from the following sources:
37
+
38
+ 1. **TextOCR Dataset** (`yunusserhat/TextOCR-Dataset`)
39
+ - License: CC-BY-4.0
40
+ - Source: https://huggingface.co/datasets/yunusserhat/TextOCR-Dataset
41
+
42
+ 2. **Open Images v7** (`bitmind/open-images-v7`)
43
+ - License: CC-BY-2.0
44
+ - Source: https://huggingface.co/datasets/bitmind/open-images-v7
45
+
46
+ 3. **MPII Human Pose Dataset** (`Voxel51/MPII_Human_Pose_Dataset`)
47
+ - License: BSD-2-Clause
48
+ - Source: https://huggingface.co/datasets/Voxel51/MPII_Human_Pose_Dataset
49
+
50
+ 4. **Nature Dataset** (`mertcobanov/nature-dataset`)
51
+ - License: -
52
+ - Source: https://huggingface.co/datasets/mertcobanov/nature-dataset
53
+
54
+ 5. **Describe Anything Dataset - COCOStuff** (`nvidia/describe-anything-dataset`)
55
+ - License: COCO dataset license
56
+ - Source: https://huggingface.co/datasets/nvidia/describe-anything-dataset
57
+
58
+ 6. **Describe Anything Dataset - LVIS** (`nvidia/describe-anything-dataset`)
59
+ - License: LVIS dataset license
60
+ - Source: https://huggingface.co/datasets/nvidia/describe-anything-dataset
61
+
62
+ 7. **FineVision** (`HuggingFaceM4/FineVision`)
63
+ - License: -
64
+ - Source: https://huggingface.co/datasets/HuggingFaceM4/FineVision
65
+
66
+ 8. **CreatiDesign Dataset** (`HuiZhang0812/CreatiDesign_dataset`)
67
+ - License: Apache-2.0
68
+ - Source: https://huggingface.co/datasets/HuiZhang0812/CreatiDesign_dataset
69
+
70
+ 9. **Midjourney Detailed Prompts** (`MohamedRashad/midjourney-detailed-prompts`)
71
+ - License: Apache-2.0
72
+ - Source: https://huggingface.co/datasets/MohamedRashad/midjourney-detailed-prompts
73
+
74
+ 10. **WPI Historical Image Collection** (`afrenkai/WPI-Historical-Image-Collection`)
75
+ - License: -
76
+ - Source: https://huggingface.co/datasets/afrenkai/WPI-Historical-Image-Collection
77
+
78
+ 11. **NSFW Dataset** (`amaye15/NSFW`)
79
+ - License: -
80
+ - Source: https://huggingface.co/datasets/amaye15/NSFW
81
+ - **Warning**: Contains adult content
82
+
83
+ ## Intended Use
84
+
85
+ This dataset is intended **only for testing internal mechanisms** of the Media Vault Vector Database system. It is designed for:
86
+ - Validation of vector database indexing and retrieval systems
87
+ - Testing image processing pipelines
88
+ - Performance benchmarking
89
+ - Internal development and testing purposes
90
+
91
+ **This dataset is not intended for:**
92
+ - Commercial use without proper licensing verification
93
+ - Training production models without reviewing source licenses
94
+ - Public redistribution without attribution
95
+
96
+ ## Usage
97
+
98
+ ```python
99
+ from datasets import load_dataset
100
+
101
+ # Load specific split
102
+ sfw = load_dataset("SamoXXX/MV-VDB-photos-small", split="sfw")
103
+ x_nsfw = load_dataset("SamoXXX/MV-VDB-photos-small", split="x_nsfw")
104
+
105
+ # Access images
106
+ for example in sfw:
107
+ index = example['index']
108
+ image = example['image'] # PIL Image object
109
+ base64_image = example['base64_image'] # Base64 string
110
+ source_dataset = example['dataset_name']
111
+
112
+ # Image is already a PIL Image, ready to use
113
+ image.show() # Display image
114
+ ```
115
+
116
+ ## Warning
117
+
118
+ The `x_nsfw` split contains adult content. Use responsibly and in accordance with applicable laws and regulations. This content is included for testing purposes only.
119
+
120
+ ## License
121
+
122
+ This dataset compilation is released under **unknown** license. Users are responsible for:
123
+ - Verifying individual source dataset licenses
124
+ - Complying with all applicable terms and conditions
125
+ - Ensuring proper attribution when using source datasets
126
+
127
+ ## Citation
128
+
129
+ If you use this dataset, please cite the original source datasets listed above. This compilation is for testing purposes only.
130
+
131
+ ## Disclaimer
132
+
133
+ This dataset is provided "as-is" for internal testing purposes. The creators make no warranties about the dataset's fitness for any particular purpose. Users are responsible for ensuring compliance with all applicable licenses and regulations.