kenlm init

This commit is contained in:
adnovac 2022-04-23 10:07:45 +02:00
parent 1673116cf1
commit 2535098bfb
4 changed files with 26 additions and 17999 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@
.token .token
geval geval
*in.tsv *in.tsv
train_file.txt

File diff suppressed because it is too large Load Diff

89
run.py
View File

@ -1,80 +1,39 @@
#%% #%%
import pandas as pd import pandas as pd
from collections import defaultdict, Counter import kenlm
from sqlalchemy import true
from nltk import trigrams, word_tokenize, bigrams
import csv import csv
#%% #%%
class Model: def clean(text):
def __init__(self): text = str(text).lower().strip().replace("", "'").replace('\\n', " ").replace("'t", " not").replace("'s", " is").replace("'ll", " will").replace("'m", " am").replace("'ve", " have").replace(",", "").replace("-", "")
self.model = defaultdict(lambda: defaultdict(lambda: 0)) return text
self.model_bi = defaultdict(lambda: defaultdict(lambda: 0))
train_in = pd.read_csv("train/in.tsv.xz", sep='\t', header=None, encoding="UTF-8", on_bad_lines="skip", quoting=csv.QUOTE_NONE, nrows=300000)[[6, 7]]
train_expected = pd.read_csv("train/expected.tsv", sep='\t', header=None, encoding="UTF-8", on_bad_lines="skip", quoting=csv.QUOTE_NONE, nrows=300000)
data = pd.concat([train_in, train_expected], axis=1)
self.data = data[6] + data[0] + data[7]
self.data = self.data.apply(self.clean)
train_in = pd.read_csv("train/in.tsv.xz", sep='\t', header=None, encoding="UTF-8", on_bad_lines="skip", quoting=csv.QUOTE_NONE, nrows=300000)[[6, 7]]
train_expected = pd.read_csv("train/expected.tsv", sep='\t', header=None, encoding="UTF-8", on_bad_lines="skip", quoting=csv.QUOTE_NONE, nrows=300000)
data = pd.concat([train_in, train_expected], axis=1)
data = data[6] + data[0] + data[7]
data = data.apply(clean)
def clean(self, text): with open("train_file.txt", "w+") as f:
text = str(text).lower().strip().replace("", "'").replace('\\n', " ").replace("'t", " not").replace("'s", " is").replace("'ll", " will").replace("'m", " am").replace("'ve", " have").replace(",", "").replace("-", "") for text in data:
return text f.write(text + "\n")
def train(self):
alpha = 0.6
vocab = set()
for text in model.data:
words = word_tokenize(text)
for w1, w2, w3 in trigrams(words):
self.model[w1, w2][w3] += 1
vocab.add(w1)
vocab.add(w2)
vocab.add(w3)
for w1, w2 in bigrams(words):
self.model_bi[w1][w2] +=1
for w1, w2 in self.model:
total_count = float(sum(self.model[w1, w2].values()))
for w in self.model[w1, w2]:
self.model[w1, w2][w] = (self.model[w1, w2][w] / total_count) * alpha
for w1 in self.model_bi:
total_count = float(sum(self.model_bi[w1].values()))
for w in self.model_bi[w1]:
self.model_bi[w1][w] = (self.model_bi[w1][w] / total_count) * (1-alpha)
def predict(self, words):
trigrams = Counter(dict(self.model[words]))
bigrams = Counter(dict(self.model_bi[words[-1]]))
predictions = dict((trigrams + bigrams).most_common(6))
total_prob = 0
result = ""
for word, prob in predictions.items():
total_prob += prob
result += f"{word}:{prob} "
if len(result) == 0:
return "a:0.2 the:0.2 to:0.2 of:0.1 and:0.1 of:0.1 :0.1"
return result + f":{max(1-total_prob, 0.01)}"
model = Model()
#%% #%%
model.data KENLM_BUILD_PATH='../kenlm/build'
model.train() !$KENLM_BUILD_PATH/bin/lmplz -o 4 < train_file.txt > model.arpa
!rm train_file.txt
#%% #%%
def predict(model, path, result_path): model = kenlm.Model("model.arpa")
#%%
def predict(path, result_path):
data = pd.read_csv(path, sep='\t', header=None, encoding="UTF-8", on_bad_lines="skip", quoting=csv.QUOTE_NONE)[7] data = pd.read_csv(path, sep='\t', header=None, encoding="UTF-8", on_bad_lines="skip", quoting=csv.QUOTE_NONE)[7]
with open(result_path, "w+", encoding="UTF-8") as f: with open(result_path, "w+", encoding="UTF-8") as f:
for text in data: for text in data:
words = word_tokenize(model.clean(text)) #test
if len(words) < 2: print(model.score(text, bos = True, eos = True))
prediction = "a:0.2 the:0.2 to:0.2 of:0.1 and:0.1 of:0.1 :0.1" break
else:
prediction = model.predict((words[-2], words[-1]))
f.write(prediction + "\n")
predict(model, "dev-0/in.tsv.xz", "dev-0/out.tsv") predict("dev-0/in.tsv.xz", "dev-0/out.tsv")
predict(model, "test-A/in.tsv.xz", "test-A/out.tsv") predict("test-A/in.tsv.xz", "test-A/out.tsv")

File diff suppressed because it is too large Load Diff