Datasets:
Kannada-LLM-Labs
commited on
Commit
•
645af5c
1
Parent(s):
18f4472
Update README.md
Browse files
README.md
CHANGED
@@ -27,4 +27,31 @@ configs:
|
|
27 |
path: data/test-*
|
28 |
- split: train
|
29 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
path: data/test-*
|
28 |
- split: train
|
29 |
path: data/train-*
|
30 |
+
license: mit
|
31 |
+
task_categories:
|
32 |
+
- visual-question-answering
|
33 |
+
language:
|
34 |
+
- kn
|
35 |
+
- en
|
36 |
+
size_categories:
|
37 |
+
- 100K<n<1M
|
38 |
---
|
39 |
+
|
40 |
+
[laion-coco](https://huggingface.co/datasets/laion/laion-coco) dataset with captions translated to Kannada language. The dataset contains 733604 training and
|
41 |
+
14906 test samples. Images can be downloaded directly from Coco page.
|
42 |
+
|
43 |
+
### Data Sample:
|
44 |
+
```python
|
45 |
+
{'id': 'dde3bdc5-36b7-4340-b2ae-d9564c0d213a',
|
46 |
+
'url': 'https://i.pinimg.com/236x/ca/84/a1/ca84a1d6f83c88c94452a94e320f024c--lens.jpg',
|
47 |
+
'eng_caption': 'Black and white photograph of woman in hat leaning against tree.',
|
48 |
+
'score': 5.8029,
|
49 |
+
'kn_caption': 'ಮರದ ವಿರುದ್ಧ ಒರಗಿರುವ ಟೋಪಿ ಹೊಂದಿರುವ ಮಹಿಳೆಯ ಕಪ್ಪು ಮತ್ತು ಬಿಳಿ ಛಾಯಾಚಿತ್ರ.'}
|
50 |
+
```
|
51 |
+
|
52 |
+
### Use with Datasets:
|
53 |
+
```python
|
54 |
+
from datasets import load_dataset
|
55 |
+
|
56 |
+
ds = load_dataset("Kannada-LLM-Labs/Laion-Coco-Kn")
|
57 |
+
```
|