a802f59f55
- cmd/fn/doctor.go - cmd/fn/main.go - cpp/apps/primitives_gallery/playground/tables/CMakeLists.txt - cpp/apps/primitives_gallery/playground/tables/data_table.cpp - cpp/apps/primitives_gallery/playground/tables/data_table_logic.cpp - cpp/apps/primitives_gallery/playground/tables/data_table_logic.h - cpp/apps/primitives_gallery/playground/tables/self_test.cpp - cpp/apps/primitives_gallery/playground/tables/tql.cpp - cpp/apps/primitives_gallery/playground/tables/viz.cpp - cpp/apps/primitives_gallery/playground/tables/viz.h - ... Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
9 lines
224 B
Go
9 lines
224 B
Go
package ml
|
|
|
|
// LoraRef referencia un adaptador LoRA con su peso de fusión y escala opcional.
|
|
type LoraRef struct {
|
|
Path string `json:"path"`
|
|
Weight float64 `json:"weight"`
|
|
Scale *float64 `json:"scale,omitempty"`
|
|
}
|