fmasterpro27 commited on
Commit
63f191d
·
verified ·
1 Parent(s): 93925ad

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +92 -3
README.md CHANGED
@@ -1,3 +1,92 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ size_categories:
6
+ - n<1K
7
+ tags:
8
+ - art
9
+ ---
10
+ # Nexora Vision Dataset v1
11
+
12
+ A high-quality, multi-genre image dataset created for training and research in generative AI and computer vision.
13
+ Developed and curated by **ArkDevelopmentLabs / ArkAiLab (ADL)**.
14
+
15
+ ---
16
+
17
+ ## Overview
18
+ Nexora Vision Dataset v1 contains a diverse collection of AI-generated cinematic, realistic, anime, sci-fi, and artistic images.
19
+ Each entry is paired with prompt metadata and a structured Parquet file for efficient machine learning pipeline integration.
20
+
21
+ This dataset is intended for:
22
+ - Training diffusion models (LoRA, DreamBooth, SDXL, etc.)
23
+ - Fine-tuning multimodal models
24
+ - Research in vision representation learning
25
+ - Benchmarking generative models
26
+
27
+ ---
28
+
29
+ ## Key Features
30
+ - High-resolution images (up to 8K)
31
+ - Multiple artistic and realistic categories
32
+ - Structured `prompts.json` and Parquet metadata
33
+ - Dataset licensed under MIT for open usage
34
+ - Organized for scalable and repeatable training
35
+ - Consistent naming and category structure
36
+
37
+ ---
38
+
39
+ ## Dataset Structure
40
+ ```
41
+ Nexora-vision-dataset-v1/
42
+ ├─ images/
43
+ │ ├─ anime/
44
+ │ ├─ cinematic/
45
+ │ ├─ realistic/
46
+ │ ├─ sci-fi/
47
+ │ └─ artistic/
48
+ ├─ metadata/
49
+ │ ├─ prompts.json
50
+ │ ├─ prompts.parquet
51
+ ├─ previews/
52
+ ├─ LICENSE
53
+ └─ README.md
54
+ ```
55
+ ```json
56
+ {
57
+ "id": "00001",
58
+ "file_name": "anime/00001.png",
59
+ "prompt": "anime girl cherry blossoms, soft lighting, 4k highly detailed",
60
+ "negative_prompt": "blurry, watermark, distorted face",
61
+ }
62
+ ```
63
+ ## License
64
+
65
+ The dataset is released under the MIT License, permitting academic, research, and commercial usage.
66
+ Attribution is appreciated where possible.
67
+
68
+ ## How to Use (Hugging Face Example)
69
+ ```python
70
+ from datasets import load_dataset
71
+
72
+ dataset = load_dataset("ArkAiLab-Adl/Nexora-vision-dataset-v1")
73
+ print(dataset)
74
+ ```
75
+ ## Download
76
+
77
+ **Hugging Face**
78
+ https://huggingface.co/datasets/ArkAiLab-Adl/Nexora-vision-dataset-v1
79
+
80
+ **GitHub**
81
+ https://github.com/ArkDevelopmentLabs/Nexora-vision-dataset-v1
82
+
83
+ ## Credits
84
+
85
+ Developed by **ArkDevelopmentLabs (ADL)**
86
+ Dataset creator: **JackMa and Ari (ArkDevelopmentLab / ArkAiLab)**
87
+
88
+ If you build a model using this dataset, citing **Nexora Vision Dataset v1** is appreciated.
89
+
90
+ ## Future Releases
91
+ - v2 Coming soon with additional 50K+ curated high-resolution images
92
+ - Planned support for COCO-style annotations