Update README.md
Browse files
README.md
CHANGED
@@ -16,4 +16,19 @@ configs:
|
|
16 |
data_files:
|
17 |
- split: train
|
18 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
data_files:
|
17 |
- split: train
|
18 |
path: data/train-*
|
19 |
+
task_categories:
|
20 |
+
- text-to-image
|
21 |
+
- image-to-image
|
22 |
+
language:
|
23 |
+
- en
|
24 |
+
pretty_name: CC3M
|
25 |
+
size_categories:
|
26 |
+
- 1M<n<10M
|
27 |
---
|
28 |
+
|
29 |
+
This repo is CC3M's unofficial huggingface repo.
|
30 |
+
However, for the large picture, we process it as follow and then upload:
|
31 |
+
```python
|
32 |
+
if pil_image.width > 1024 or pil_image.height > 1024:
|
33 |
+
pil_image = pil_image.resize((1024, 1024), Image.BICUBIC)
|
34 |
+
```
|