BruceYuan commited on
Commit
8674147
·
verified ·
1 Parent(s): c1cb04e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -11
README.md CHANGED
@@ -48,8 +48,8 @@ data/
48
  ### 1. Clone the code from GitHub
49
 
50
  ```bash
51
- git clone https://github.com/<your-username>/irp-test-framework.git
52
- cd irp-test-framework
53
  ```
54
 
55
  This already populates `data/` with the small files tracked in Git (e.g. generation scripts).
@@ -65,16 +65,10 @@ pip install -U huggingface_hub
65
 
66
  ### 3. Pull the large data files from Hugging Face into `data/`
67
 
68
- Authenticate once (only needed if this dataset is private; skip for public datasets):
69
 
70
  ```bash
71
- hf auth login
72
- ```
73
-
74
- Then download into the existing `data/` folder — files from GitHub are not affected:
75
-
76
- ```bash
77
- hf download <your-username>/<your-dataset-name> \
78
  --repo-type dataset \
79
  --local-dir ./data
80
  ```
@@ -84,7 +78,7 @@ Equivalent Python call:
84
  ```python
85
  from huggingface_hub import snapshot_download
86
  snapshot_download(
87
- repo_id="<your-username>/<your-dataset-name>",
88
  repo_type="dataset",
89
  local_dir="./data",
90
  )
 
48
  ### 1. Clone the code from GitHub
49
 
50
  ```bash
51
+ git clone https://github.com/Wenxuan52/KoopmanDA.git
52
+ cd KoopmanDA
53
  ```
54
 
55
  This already populates `data/` with the small files tracked in Git (e.g. generation scripts).
 
65
 
66
  ### 3. Pull the large data files from Hugging Face into `data/`
67
 
68
+ Download into the existing `data/` folder files from GitHub are not affected:
69
 
70
  ```bash
71
+ hf download BruceYuan/KoopmanDA \
 
 
 
 
 
 
72
  --repo-type dataset \
73
  --local-dir ./data
74
  ```
 
78
  ```python
79
  from huggingface_hub import snapshot_download
80
  snapshot_download(
81
+ repo_id="BruceYuan/KoopmanDA",
82
  repo_type="dataset",
83
  local_dir="./data",
84
  )