init solution

This commit is contained in:
Łukasz Jędyk 2022-04-09 13:07:07 +02:00
parent 9243772a86
commit d70b9ceb4c
11 changed files with 442660 additions and 1 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
*~
*.swp
*.bak
*.pyc
*.o
.DS_Store
.token

View File

@ -1,2 +1,9 @@
# challenging-america-word-gap-prediction-alpha
Challenging America word-gap prediction - s434708
===================================
Guess a word in a gap.
Evaluation metric
-----------------
LikelihoodHashed is the metric

1
config.txt Normal file
View File

@ -0,0 +1 @@
--metric PerplexityHashed --precision 2 --in-header in-header.tsv --out-header out-header.tsv

10519
dev-0/expected.tsv Normal file

File diff suppressed because it is too large Load Diff

BIN
dev-0/in.tsv.xz Normal file

Binary file not shown.

1
in-header.tsv Normal file
View File

@ -0,0 +1 @@
FileId Year LeftContext RightContext
1 FileId Year LeftContext RightContext

1
out-header.tsv Normal file
View File

@ -0,0 +1 @@
Word
1 Word

100
run_smooth.py Normal file
View File

@ -0,0 +1,100 @@
import pandas as pd
import csv
import regex as re
from collections import Counter, defaultdict
from nltk import trigrams, word_tokenize
def clean_text(text):
text = text.lower().replace('-\\n', '').replace('\\n', ' ')
text = re.sub(r'\p{P}', '', text)
return text
class Model():
def __init__(self, alpha):
self.alpha = alpha
self.probs = defaultdict(lambda: defaultdict(lambda: 0))
self.vocab = set()
def train(self, data):
for _, row in data.iterrows():
text = clean_text(str(row['text']))
words = word_tokenize(text)
for w1, w2, w3 in trigrams(words, pad_right=True, pad_left=True):
if w1 and w2 and w3:
self.vocab.add(w1)
self.vocab.add(w2)
self.vocab.add(w3)
self.probs[(w1, w3)][w2] += 1
for w1_w3 in self.probs:
total_count = float(sum(self.probs[w1_w3].values()))
denominator = total_count + self.alpha * len(self.vocab)
for w2 in self.probs[w1_w3]:
nominator = self.probs[w1_w3][w2] + self.alpha
self.probs[w1_w3][w2] = nominator / denominator
def predict(self, w1, w3):
raw_prediction = dict(self.probs[w1, w3])
prediction = dict(Counter(raw_prediction).most_common(6))
total_prob = 0.0
str_prediction = ''
for word, prob in prediction.items():
total_prob += prob
str_prediction += f'{word}:{prob} '
remaining_prob = 1 - total_prob
if remaining_prob == 0:
remaining_prob = 0.01
str_prediction += f':{remaining_prob}'
return str_prediction
# load training data
train_data = pd.read_csv('train/in.tsv.xz', sep='\t', error_bad_lines=False, warn_bad_lines=False, header=None, quoting=csv.QUOTE_NONE)
train_labels = pd.read_csv('train/expected.tsv', sep='\t', error_bad_lines=False, warn_bad_lines=False, header=None, quoting=csv.QUOTE_NONE)
train_data = train_data[[6, 7]]
train_data = pd.concat([train_data, train_labels], axis=1)
train_data['final'] = train_data[6] + train_data[0] + train_data[7]
train_data = train_data[['final']]
# init model with given aplha
model = Model(0.01)
# train model probs
model.train(train_data)
# make predictions
dev_data = pd.read_csv('dev-0/in.tsv.xz', sep='\t', error_bad_lines=False, warn_bad_lines=False, header=None, quoting=csv.QUOTE_NONE)
test_data = pd.read_csv('test-A/in.tsv.xz', sep='\t', error_bad_lines=False, warn_bad_lines=False, header=None, quoting=csv.QUOTE_NONE)
with open('dev-0/out.tsv', 'w') as file:
for index, row in dev_data.iterrows():
left_text = clean_text(str(row[6]))
right_text = clean_text(str(row[7]))
left_words = word_tokenize(left_text)
right_words = word_tokenize(right_text)
if len(left_words) < 2 or len(right_words) < 2:
prediction = ':1.0'
else:
prediction = model.predict(left_words[len(left_words) - 1], right_words[0])
file.write(prediction + '\n')
with open('test-A/out.tsv', 'w') as file:
for index, row in test_data.iterrows():
left_text = clean_text(str(row[6]))
right_text = clean_text(str(row[7]))
left_words = word_tokenize(left_text)
right_words = word_tokenize(right_text)
if len(left_words) < 2 or len(right_words) < 2:
prediction = ':1.0'
else:
prediction = model.predict(left_words[len(left_words) - 1], right_words[0])
file.write(prediction + '\n')

BIN
test-A/in.tsv.xz Normal file

Binary file not shown.

432022
train/expected.tsv Normal file

File diff suppressed because it is too large Load Diff

BIN
train/in.tsv.xz Normal file

Binary file not shown.