Parameters for training an encrypted vector index.
type TrainParams struct { BatchSize *int32 `json:"batch_size,omitempty"` // Number of vectors per training batch MaxIters *int32 `json:"max_iters,omitempty"` // Maximum training iterations Tolerance *float64 `json:"tolerance,omitempty"` // Convergence tolerance MaxMemory *int32 `json:"max_memory,omitempty"` // Maximum memory usage in MB NLists *int32 `json:"n_lists,omitempty"` // Number of IVF clusters}