Usage
Arguments
Flags
Examples
Inspecting a checkpoint
Inspect a checkpoint namedmy-checkpoint
- YAML
- JSON
flexai checkpoint inspect response (formatted)
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
View detailed information about a specific checkpoint
flexai checkpoint inspect <checkpoint_name> [flags]
| Argument | Type | Required | Description |
|---|---|---|---|
checkpoint_identifier | string | Yes | The name of the Checkpoint to inspect. |
| Flag | Short | Type | Description |
|---|---|---|---|
--help | -h | boolean | Displays this help page. |
--json | -j | boolean | Displays checkpoint information in JSON format instead of the default ASCII table. |
--verbose | -v | boolean | Provides more detailed output when inspecting a Checkpoint. |
my-checkpoint
flexai checkpoint inspect my-checkpoint
name: my-checkpoint
uuid: 12345678-1234-1234-1234-123456789abc
created_at: "2024-01-15T10:30:00Z"
status: ready
size_bytes: 1073741824
files:
- path: model.safetensors
size: 1073741824
{
"name": "my-checkpoint",
"uuid": "12345678-1234-1234-1234-123456789abc",
"created_at": "2024-01-15T10:30:00Z",
"status": "ready",
"size_bytes": 1073741824,
"files": [
{
"path": "model.safetensors",
"size": 1073741824
}
]
}
Was this page helpful?