mirror of
https://github.com/thinking-machines-lab/tinker.git
synced 2026-04-19 12:58:01 +00:00
Sync contents
This commit is contained in:
parent
ad03d44978
commit
ca40e08bb4
12 changed files with 358 additions and 27 deletions
|
|
@ -26,7 +26,7 @@ Weight decay for the optimizer. Uses decoupled weight decay.
|
|||
|
||||
#### `grad_clip_norm`
|
||||
|
||||
Gradient clip norm for the optimizer. 0.0 means no clipping.
|
||||
Maximum global gradient norm. If the global gradient norm is greater than this value, it will be clipped to this value. 0.0 means no clipping.
|
||||
|
||||
## `SupportedModel` Objects
|
||||
|
||||
|
|
@ -159,6 +159,10 @@ The size of the checkpoint in bytes
|
|||
|
||||
Whether the checkpoint is publicly accessible
|
||||
|
||||
#### `expires_at`
|
||||
|
||||
When this checkpoint expires (None = never expires)
|
||||
|
||||
## `ParsedCheckpointTinkerPath` Objects
|
||||
|
||||
```python
|
||||
|
|
@ -725,6 +729,10 @@ class SaveWeightsRequest(StrictBase)
|
|||
|
||||
A file/directory name for the weights
|
||||
|
||||
#### `ttl_seconds`
|
||||
|
||||
TTL in seconds for this checkpoint (None = never expires)
|
||||
|
||||
## `LoraConfig` Objects
|
||||
|
||||
```python
|
||||
|
|
@ -834,6 +842,10 @@ class SaveWeightsForSamplerRequest(StrictBase)
|
|||
|
||||
A file/directory name for the weights
|
||||
|
||||
#### `ttl_seconds`
|
||||
|
||||
TTL in seconds for this checkpoint (None = never expires)
|
||||
|
||||
## `SamplingParams` Objects
|
||||
|
||||
```python
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue