Browse Source

Change minimum use count to 5

master
Samuel Sloniker 1 year ago
parent
commit
28f81c9a63
Signed by: kj7rrv
GPG Key ID: 1BB4029E66285A62
  1. 2
      compile.py

2
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()

Loading…
Cancel
Save