Datasets:

JoyCountMost commited on
Commit
755aa2c
·
verified ·
1 Parent(s): 65d0673

Create README

Browse files
Files changed (1) hide show
  1. README +51 -0
README ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "Pokemon BLIP Captions"
3
+ license: "cc-by-nc-sa-4.0"
4
+ language:
5
+ - en
6
+ tags:
7
+ - image
8
+ - text
9
+ - captioning
10
+ - text-to-image
11
+ task_categories:
12
+ - text-to-image
13
+ - image-to-text
14
+ ---
15
+
16
+ # Pokemon BLIP Captions
17
+
18
+ This repository hosts a copy of the **Pokemon BLIP Captions** dataset (when available),
19
+ a small image–text dataset commonly used for experimenting with text-to-image fine-tuning and captioning.
20
+
21
+ It contains Pokemon-style images paired with automatically generated captions (e.g., produced by BLIP-style captioning models).
22
+
23
+ ## Contents
24
+ Typical files include:
25
+
26
+ - Image files (or packaged archives/shards)
27
+ - Captions / metadata (commonly as JSON/CSV/Parquet)
28
+
29
+ A common entry conceptually looks like:
30
+ ```json
31
+ {
32
+ "image": "<image>",
33
+ "text": "..."
34
+ }
35
+ ```
36
+
37
+ ## Usage
38
+ ```python
39
+ from datasets import load_dataset
40
+ ds = load_dataset("lambdalabs/pokemon-blip-captions")
41
+ ```
42
+
43
+ ## Source
44
+ This dataset is taken from the Hugging Face dataset repository:
45
+ https://huggingface.co/datasets/lambdalabs/pokemon-blip-captions
46
+
47
+ ## License
48
+ The Hugging Face dataset card lists the license as **CC BY-NC-SA 4.0**.
49
+
50
+ **Note:** The Hugging Face repository currently shows a **DMCA takedown notice** from The Pokémon Company International, Inc.
51
+ Please review the dataset page and any applicable legal requirements before using or redistributing any content.