dev3Masud commited on
Commit
54bc2c4
·
verified ·
1 Parent(s): 11c7268

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +42 -37
README.md CHANGED
@@ -1,39 +1,44 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: name
7
- dtype: string
8
- - name: common_name
9
- dtype: string
10
- - name: category
11
- dtype: string
12
- - name: category_name
13
- dtype: string
14
- - name: subcategory
15
- dtype: string
16
- - name: platform
17
- dtype: string
18
- - name: is_color
19
- dtype: bool
20
- - name: is_animated
21
- dtype: bool
22
- - name: is_explicit
23
- dtype: bool
24
- - name: author_api_code
25
- dtype: string
26
- - name: image
27
- dtype: image
28
- splits:
29
- - name: train
30
- num_bytes: 16062651
31
- num_examples: 2802
32
- download_size: 16360467
33
- dataset_size: 16062651
34
- configs:
35
- - config_name: default
36
- data_files:
37
- - split: train
38
- path: data/train-*
39
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ tags:
4
+ - icons8
5
+ - icons
6
+ - images
7
+ - computer-vision
8
+ task_categories:
9
+ - image-classification
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  ---
11
+ # Icons8 Icons Dataset
12
+
13
+ Icons scraped from the [Icons8](https://icons8.com) public catalog, organized by category.
14
+
15
+ ## Schema
16
+
17
+ | column | type | description |
18
+ |----------------|---------|------------------------------------------------|
19
+ | id | string | Icons8 icon id |
20
+ | name | string | Icon name |
21
+ | common_name | string | Common slug name |
22
+ | category | string | Category path (e.g. `Business_Ecommerce`) |
23
+ | category_name | string | Category display name |
24
+ | subcategory | string | Subcategory |
25
+ | platform | string | Style/platform (e.g. `ios7`, `color`) |
26
+ | is_color | bool | Whether icon is colored |
27
+ | is_animated | bool | Whether icon is animated |
28
+ | is_explicit | bool | Explicit content flag |
29
+ | author_api_code| string | Author API code |
30
+ | image | image | 256x256 RGBA PNG |
31
+
32
+ ## Usage
33
+
34
+ ```python
35
+ from datasets import load_dataset
36
+ ds = load_dataset("dev3Masud/icons8", split="train")
37
+ # Filter by category
38
+ business = ds.filter(lambda r: r["category"] == "Business")
39
+ ```
40
+
41
+ ## Notes
42
+
43
+ - Built from the Icons8 public search API (best-effort coverage of the catalog).
44
+ - Images are 256x256 PNG.