CoolFace
Datasetpublic

trpfrog/trpfrog-icons

trpfrog-icons Dataset This is a dataset of TrpFrog's icons. By the way, what do you use this for? ๐Ÿค” How to use from datasets import load_dataset dataset = load_dataset("TrpFrog/trpfrog-icons") # print all data for data in dataset["train"]: print(data) # remove not green icons dataset = dataset.filter(lambda x: x["label"] == 0) License MIT License

sourceHugging Facemitupdated 4y agoView on Hugging Face
1likes19downloads
Dataset Card

trpfrog-icons Dataset

This is a dataset of TrpFrog's icons. By the way, what do you use this for? ๐Ÿค”

How to use

py
from datasets import load_dataset

dataset = load_dataset("TrpFrog/trpfrog-icons")
py
# print all data
for data in dataset["train"]:
    print(data)

# remove not green icons
dataset = dataset.filter(lambda x: x["label"] == 0)

License

MIT License