From 28f81c9a636297ab9c488e20e3ac8a928a842eb7 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Sat, 26 Nov 2022 10:51:14 -0800 Subject: [PATCH] Change minimum use count to 5 --- compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.py b/compile.py index cc43853..716209b 100755 --- a/compile.py +++ b/compile.py @@ -29,7 +29,7 @@ raw_model = [ with open("model.gptc", "w+b") as f: f.write( - gptc.compile(raw_model, max_ngram_length=3, min_count=3).serialize() + gptc.compile(raw_model, max_ngram_length=3, min_count=5).serialize() ) con.commit()