JayLL13 commited on
Commit
0460e39
·
verified ·
1 Parent(s): 9b31bd6

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: vi
3
+ license: cc-by-4.0
4
+ size_categories:
5
+ - 1K<n<10K
6
+ task_categories:
7
+ - image-classification
8
+ tags:
9
+ - ceramic
10
+ - pattern
11
+ - vietnamese-ceramic
12
+ - image-dataset
13
+ ---
14
+
15
+ # Ceramic Pattern Dataset
16
+
17
+ Dataset hình ảnh gốm sứ (ceramic pattern) phục vụ nghiên cứu.
18
+
19
+ ## Cấu trúc
20
+
21
+ | Folder | Mô tả | Số lượng | Định dạng |
22
+ |--------|--------|----------|-----------|
23
+ | `dataset_org/` | Ảnh gốc crawl được | 700 | JPG |
24
+ | `data_final_org/` | Pattern đã crop từ ảnh gốc | 4,132 | PNG |
25
+
26
+ ## Sử dụng
27
+
28
+ ```python
29
+ from huggingface_hub import snapshot_download
30
+
31
+ # Download toàn bộ dataset
32
+ snapshot_download(repo_id="JayLL13/ceramic-pattern-dataset", repo_type="dataset")
33
+
34
+ # Hoặc chỉ download folder cụ thể
35
+ snapshot_download(repo_id="JayLL13/ceramic-pattern-dataset", repo_type="dataset", allow_patterns="dataset_org/*")
36
+ snapshot_download(repo_id="JayLL13/ceramic-pattern-dataset", repo_type="dataset", allow_patterns="data_final_org/*")
37
+ ```