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
119
![]()
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
