davanstrien HF Staff commited on
Commit
0dd5d28
Β·
verified Β·
1 Parent(s): 571b640

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -1
README.md CHANGED
@@ -7,4 +7,37 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ # UV Scripts
11
+
12
+ **Ready-to-run data processing scripts for the ML community**
13
+
14
+ Run powerful ML workflows with a single command - no setup required.
15
+
16
+ ## What are UV scripts?
17
+
18
+ UV scripts are self-contained Python scripts that use [inline metadata](https://docs.astral.sh/uv/guides/scripts/) to specify dependencies. Just `uv run script.py` and everything installs automatically.
19
+
20
+ Perfect for:
21
+ - πŸš€ **GPU workflows** on [HF Jobs](https://huggingface.co/docs/hub/spaces-gpu-jobs)
22
+ - πŸ’» **Local processing** on your machine
23
+ - πŸ”„ **Reproducible pipelines** that work anywhere
24
+
25
+ ## Example
26
+
27
+ ```bash
28
+ # Generate training data for embeddings
29
+ uv run https://huggingface.co/datasets/uv-scripts/sentence-transformers/raw/main/generate-queries.py \
30
+ your-dataset \
31
+ output-queries
32
+
33
+ # Deploy on GPU with HF Jobs
34
+ hfjobs run --gpu a10 uv run <script-url>
35
+ ```
36
+
37
+ ## Browse Scripts
38
+
39
+ | Script | Description | GPU Recommended |
40
+ |--------|-------------|-----------------|
41
+ | [dataset-creation](https://huggingface.co/datasets/uv-scripts/dataset-creation) | Create datasets from PDFs, images, text | βœ… |
42
+ | [sentence-transformers](https://huggingface.co/datasets/uv-scripts/sentence-transformers) | Generate embedding training data | βœ… |
43
+ | More coming soon... | | |