mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
model layer stuff
This commit is contained in:
parent
16ac332880
commit
fa22bf58d1
4 changed files with 131 additions and 1 deletions
|
|
@ -154,6 +154,13 @@ class TrainingConfig(BaseModel):
|
|||
"If None, defaults to ['q_proj', 'v_proj'] for most models."
|
||||
),
|
||||
)
|
||||
lora_layer_indices: Optional[List[int]] = Field(
|
||||
None,
|
||||
description=(
|
||||
"Optional list of transformer layer indices to apply LoRA to. "
|
||||
"If None, applies LoRA to all matching layers."
|
||||
),
|
||||
)
|
||||
|
||||
# === Single-Copy Mode Configuration ===
|
||||
single_copy: bool = Field(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue