mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-18 03:49:49 +00:00
refine
This commit is contained in:
parent
dc3d9d7720
commit
8132b4e177
3 changed files with 34 additions and 31 deletions
|
|
@ -5,6 +5,7 @@
|
|||
# the root directory of this source tree.
|
||||
|
||||
from datetime import datetime
|
||||
from typing import Optional
|
||||
|
||||
from llama_models.schema_utils import json_schema_type
|
||||
from pydantic import BaseModel
|
||||
|
|
@ -25,4 +26,4 @@ class Checkpoint(BaseModel):
|
|||
epoch: int
|
||||
post_training_job_id: str
|
||||
path: str
|
||||
training_metric: PostTrainingMetric
|
||||
training_metric: Optional[PostTrainingMetric] = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue