regina9607 commited on
Commit
a824af3
1 Parent(s): 34f1b85

Update Readme.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -1,3 +1,23 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # Steps to download the data
6
+
7
+ 1. Installing necessary library
8
+
9
+ ```shell
10
+ poetry add huggingface_hub
11
+ ```
12
+
13
+
14
+ 2. Using the library to download the data into desired directory
15
+
16
+ ```python
17
+ from huggingface_hub import snapshot_download
18
+ path = "./data" # path you want to store your data
19
+ snapshot_download("Pulsifi/job_embedding", repo_type="dataset", local_dir=path)
20
+ ```
21
+
22
+
23
+