File size: 804 Bytes
90bab53 bc0fcdc ca07387 bc0fcdc 90bab53 950773c 412bd60 950773c eb71eaf 950773c ca07387 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
---
license: mit
dataset_info:
features:
- name: image
dtype: image
- name: label
dtype:
class_label:
names:
'0': green
'1': others
splits:
- name: train
num_bytes: 3106612.0
num_examples: 50
download_size: 2598455
dataset_size: 3106612.0
---
![](https://huggingface.co/datasets/TrpFrog/trpfrog-icons/resolve/main/logo.jpg)
# trpfrog-icons Dataset
This is a dataset of [TrpFrog](https://trpfrog.net)'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 |