From 83d1a1ab5547f1af8b28876ac3bb1fd8fd5408f6 Mon Sep 17 00:00:00 2001 From: Patrick Devine Date: Tue, 18 Feb 2025 12:47:34 -0800 Subject: [PATCH] cleanup --- model/process_text.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/model/process_text.go b/model/process_text.go index 6c60bf2e0..2d5b0f162 100644 --- a/model/process_text.go +++ b/model/process_text.go @@ -2,7 +2,6 @@ package model import ( "cmp" - "fmt" "iter" "log/slog" "strings" @@ -181,7 +180,6 @@ func (bpe BytePairEncoding) Encode(s string) ([]int32, error) { fragments = append(fragments[:i], append(middle, fragments[i+1:]...)...) } } - fmt.Printf("frags = %#v\n", fragments) var ids []int32 for _, frag := range fragments {