--- license: apache-2.0 task_categories: - text-generation language: - en tags: - art - ascii-art - visual - SFT size_categories: - 100K 3: # check whether there's prev and after 2 lines isolation_from_previous = True for prev_i in range(max(0, i-3), i): if not all(c == " " for c in lines[prev_i]): isolation_from_previous = False break if isolation_from_previous: return True return False ``` **Bilingual Version** Apart from the English dataset, we add a Chinese-English bilingual version dataset, where 50% of the image captions are changed to Chinese (thanks to the translations from laion-coco-nllb). ```{'zh': 69777, 'en': 69164}``` Note that the total number of training samples are always 138,941. ## Limitations - Color: Current implementation only supports black and white ascii art generation (Although there're inevitably color descriptions in training samples, we have no choice but ignore them for now.). Adding additional prediction head for RGB colors could be worth trying. You can find colored ascii art examples in [ascii-image-converter](https://github.com/TheZoraiz/ascii-image-converter).