lukhsaankumar commited on
Commit
f2c511a
·
1 Parent(s): 7bd3f6d

Deploy DeepFake Detector API - 2026-04-21 00:36:12

Browse files
Files changed (1) hide show
  1. data/README.md +11 -15
data/README.md CHANGED
@@ -1,19 +1,15 @@
1
- # Backend Bucket Data
2
 
3
- This folder is the local source for bucket uploads via:
4
 
5
- - `./sync-bucket.sh`
6
- - `./sync-bucket.ps1`
7
- - automatic pre-deploy sync from `deploy-to-hf.sh`
8
 
9
- Suggested contents:
 
 
 
10
 
11
- - `models/` optional model artifacts you want persisted in the bucket
12
- - `cache-seed/` optional Hugging Face cache seeds
13
- - `metadata/` optional JSON or CSV files used by startup/runtime logic
14
-
15
- Notes:
16
-
17
- - This folder is optional. If it is empty or missing, deploy still works.
18
- - Runtime model caching primarily uses `/data/.hf_cache` and `/data/.cache/huggingface` inside the mounted Space volume.
19
- - Keep secrets out of this folder.
 
1
+ # Bucket Data
2
 
3
+ Local staging folder for persistent storage in your HF Space.
4
 
5
+ **Usage**: Files sync to the Space bucket via `./sync-bucket.sh` (auto-run on deploy).
 
 
6
 
7
+ **Optional contents**:
8
+ - `models/` – model artifacts
9
+ - `cache-seed/` – Hugging Face cache seeds
10
+ - `metadata/` – JSON/CSV files for app logic
11
 
12
+ **Notes**:
13
+ - Folder is optional; empty deploys work fine.
14
+ - Runtime caches go to `/data/.hf_cache` (mounted Space volume).
15
+ - Never commit secrets here.