@tuned-tensor/cli 0.4.19 → 0.4.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/dist/index.js +471 -42
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,6 +56,20 @@ tt models base
|
|
|
56
56
|
tt balance
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
+
Label real, unlabeled data with a teacher model (JSONL with `{"input": ...}`
|
|
60
|
+
rows, or CSV with `--input-column`; up to 50,000 rows / 50 MB). Labeling runs
|
|
61
|
+
as a managed cloud workflow — upload and disconnect; the teacher drafts
|
|
62
|
+
outputs under your spec's system prompt and you review before anything trains:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
tt label upload tickets.csv --spec <spec-id> --input-column body --watch
|
|
66
|
+
tt label watch <job-id> # re-attach to progress any time
|
|
67
|
+
tt label rows <job-id> --status labeled # review the teacher's drafts
|
|
68
|
+
tt label accept <job-id> --all # or accept/reject/edit by row
|
|
69
|
+
tt label promote <job-id> --name tickets-v1 # becomes a validated dataset
|
|
70
|
+
tt runs start <spec-id> --dataset <dataset-id>
|
|
71
|
+
```
|
|
72
|
+
|
|
59
73
|
Export a model to GGUF and package it for Ollama (so it's pluggable like any
|
|
60
74
|
other local model, e.g. in OpenClaw via Ollama's native `/api/chat`):
|
|
61
75
|
|