diff --git a/gptc/compiler.py b/gptc/compiler.py index e2ab349..7eedb15 100755 --- a/gptc/compiler.py +++ b/gptc/compiler.py @@ -53,8 +53,6 @@ def compile( else: word_counts[word] = {category: 1} - print("counted") - model: Dict[int, List[int]] = {} for word, counts in word_counts.items(): if sum(counts.values()) >= min_count: @@ -70,5 +68,4 @@ def compile( ) model[word] = new_weights - print("weighted") return gptc.model.Model(model, names, max_ngram_length)