PeacebinfLow commited on
Commit
1fcd0eb
·
verified ·
1 Parent(s): e13d0ee

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -18
README.md CHANGED
@@ -6,33 +6,30 @@ emoji: 🏢
6
  colorFrom: purple
7
  colorTo: blue
8
  sdk_version: "1.33.0"
9
- python_version: "3.10
10
-
 
11
  MindsEye Dataset Admin Console
12
 
13
- What this Space does
14
 
15
- Lists dataset configs and splits using HF Dataset Server
16
 
17
- Previews first rows for a chosen config/split
18
 
19
- Uploads a CSV delta file and commits it into the dataset repo under data/uploads/
20
 
21
- Validates basic CSV header structure before uploading
22
 
23
- Required Secret
24
- Set a Space Secret:
25
 
26
  Name: HF_TOKEN
27
 
28
- Value: (your Hugging Face access token)
29
 
30
- Where the token goes (exactly)
31
- Hugging Face Space → Settings → Secrets → New secret
32
- Name: HF_TOKEN
33
- Value: <PASTE TOKEN HERE>
 
34
 
35
- Notes on your dataset Parquet error
36
- Your dataset repo likely contains multiple CSVs under one config/split where columns differ (nodes vs runs).
37
- Fix is: define multiple configurations in the dataset repo (nodes, runs) OR separate into different splits.
38
- This Space helps you upload deltas safely, but the dataset repo still needs correct configuration.
 
6
  colorFrom: purple
7
  colorTo: blue
8
  sdk_version: "1.33.0"
9
+ python_version: "3.10"
10
+ app_file: app.py
11
+ ---
12
  MindsEye Dataset Admin Console
13
 
14
+ This Space:
15
 
16
+ Queries HF Dataset Server for splits/configs and first rows
17
 
18
+ Uploads a CSV delta and commits it into your dataset repo under data/uploads/
19
 
20
+ Required secret
21
 
22
+ Go to your Space:
23
 
24
+ Settings → Secrets → New secret
 
25
 
26
  Name: HF_TOKEN
27
 
28
+ Value: your Hugging Face access token
29
 
30
+ The app reads it via os.getenv("HF_TOKEN").
31
+
32
+ Notes
33
+
34
+ If your dataset is gated, your token must have access. If the dataset fails Parquet conversion, you likely need multiple configurations (e.g. nodes and runs) so HF doesn’t try to cast them into one schema.
35