Compare commits

..

2 Commits

Author SHA1 Message Date
alesad7
85b0c69124 wygladzanie 2022-04-23 17:42:28 +02:00
alesad7
bd5acac80d wygladzanie 2022-04-23 17:23:40 +02:00
3 changed files with 17997 additions and 17990 deletions

File diff suppressed because it is too large Load Diff

123
run.py
View File

@ -1,80 +1,87 @@
from collections import defaultdict, Counter
from nltk import trigrams, word_tokenize from nltk import trigrams, word_tokenize
import pandas as pd
import csv import csv
import regex as re import regex as re
from collections import Counter, defaultdict import pandas as pd
X_train = pd.read_csv(
train_set = pd.read_csv(
'train/in.tsv.xz', 'train/in.tsv.xz',
sep='\t', sep='\t',
on_bad_lines='skip',
header=None, header=None,
quoting=csv.QUOTE_NONE, quoting=csv.QUOTE_NONE,
nrows=50000) nrows=70000,
on_bad_lines='skip')
Y_train = pd.read_csv(
train_labels = pd.read_csv(
'train/expected.tsv', 'train/expected.tsv',
sep='\t', sep='\t',
on_bad_lines='skip',
header=None, header=None,
quoting=csv.QUOTE_NONE, quoting=csv.QUOTE_NONE,
nrows=50000) nrows=70000,
on_bad_lines='skip')
X_train = X_train[[6, 7]]
X_train = pd.concat([X_train, Y_train], axis=1)
X_train['row'] = X_train[6] + X_train[0] + X_train[7]
def data_preprocessing(text): def preprocess(row):
return re.sub(r'\p{P}', '', text.lower().replace('-\\n', '').replace('\\n', ' ')) return re.sub(r'\p{P}', '', row.lower().replace('-\\n', '').replace('\\n', ' '))
def predict(before, after): def train(X_train, alpha):
prediction = dict(Counter(dict(trigram[before, after])).most_common(5)) model = defaultdict(lambda: defaultdict(lambda: 0))
result = '' vocabulary = set()
prob = 0.0
for key, value in prediction.items():
prob += value
result += f'{key}:{value} '
if prob == 0.0:
return 'to:0.015 be:0.015 the:0.015 not:0.01 and:0.02 a:0.02 :0.9'
result += f':{max(1 - prob, 0.01)}'
return result
for _, (_, row) in enumerate(X_train.iterrows()):
def make_prediction(file): text = preprocess(str(row['row']))
data = pd.read_csv(f'{file}/in.tsv.xz', sep='\t', on_bad_lines='skip', header=None, quoting=csv.QUOTE_NONE)
with open(f'{file}/out.tsv', 'w', encoding='utf-8') as file_out:
for _, row in data.iterrows():
before, after = word_tokenize(data_preprocessing(str(row[6]))), word_tokenize(data_preprocessing(str(row[7])))
if len(before) < 3 or len(after) < 3:
prediction = 'to:0.015 be:0.015 the:0.015 not:0.01 and:0.02 a:0.02 :0.9'
else:
prediction = predict(before[-1], after[0])
file_out.write(prediction + '\n')
train_set = train_set[[6, 7]]
train_set = pd.concat([train_set, train_labels], axis=1)
train_set['line'] = train_set[6] + train_set[0] + train_set[7]
trigram = defaultdict(lambda: defaultdict(lambda: 0))
rows = train_set.iterrows()
rows_len = len(train_set)
for index, (_, row) in enumerate(rows):
text = data_preprocessing(str(row['line']))
words = word_tokenize(text) words = word_tokenize(text)
for word_1, word_2, word_3 in trigrams(words, pad_right=True, pad_left=True): for w1, w2, w3 in trigrams(words, pad_right=True, pad_left=True):
if word_1 and word_2 and word_3: if w1 and w2 and w3:
trigram[(word_1, word_3)][word_2] += 1 model[(w1, w3)][w2] += 1
vocabulary.add(w1)
vocabulary.add(w2)
vocabulary.add(w3)
model_len = len(trigram) for _, w13 in enumerate(model):
for index, words_1_3 in enumerate(trigram): count = float(sum(model[w13].values()))
count = sum(trigram[words_1_3].values()) denominator = count + alpha * len(vocabulary)
for word_2 in trigram[words_1_3]: for w2 in model[w13]:
trigram[words_1_3][word_2] += 0.25 nominator = model[w13][w2] + alpha
trigram[words_1_3][word_2] /= float(count + 0.25 + len(word_2)) model[w13][w2] = nominator / denominator
return model
make_prediction('test-A') def predict_word(before, after, model):
make_prediction('dev-0') output = ''
p = 0.0
Y_pred = dict(Counter(dict(model[before, after])).most_common(7))
for key, value in Y_pred.items():
p += value
output += f'{key}:{value} '
if p == 0.0:
output = 'the:0.04 be:0.04 to:0.04 and:0.02 not:0.02 or:0.02 a:0.02 :0.8'
return output
output += f':{max(1 - p, 0.01)}'
return output
def prediction(file, model):
X_test = pd.read_csv(f'{file}/in.tsv.xz', sep='\t', header=None, quoting=csv.QUOTE_NONE, on_bad_lines='skip')
with open(f'{file}/out.tsv', 'w', encoding='utf-8') as output_file:
for _, row in X_test.iterrows():
before, after = word_tokenize(preprocess(str(row[6]))), word_tokenize(preprocess(str(row[7])))
if len(before) < 2 or len(after) < 2:
output = 'the:0.04 be:0.04 to:0.04 and:0.02 not:0.02 or:0.02 a:0.02 :0.8'
else:
output = predict_word(before[-1], after[0], model)
output_file.write(output + '\n')
model = train(X_train, 0.0002)
prediction('dev-0', model)
prediction('test-A', model)

File diff suppressed because it is too large Load Diff