@tuned-tensor/cli 0.4.14 → 0.4.16
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 +8 -2
- package/dist/index.js +597 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,12 @@ tt runs start <spec-id>
|
|
|
38
38
|
tt runs watch <run-id>
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
+
To continue training from a completed fine-tuned model artifact:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
tt runs start <spec-id> --parent-model <model-id>
|
|
45
|
+
```
|
|
46
|
+
|
|
41
47
|
Useful discovery commands:
|
|
42
48
|
|
|
43
49
|
```bash
|
|
@@ -49,8 +55,8 @@ tt models base
|
|
|
49
55
|
tt balance
|
|
50
56
|
```
|
|
51
57
|
|
|
52
|
-
For the full command reference, including dataset-backed runs,
|
|
53
|
-
local model serving, configuration, and billing, see the
|
|
58
|
+
For the full command reference, including dataset-backed runs, continued
|
|
59
|
+
fine-tuning, evaluation caps, local model serving, configuration, and billing, see the
|
|
54
60
|
[CLI docs](https://tunedtensor.com/docs/cli).
|
|
55
61
|
|
|
56
62
|
## Development
|