2022-01-22 00:04:56 +01:00
|
|
|
{
|
|
|
|
"cells": [
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": null,
|
|
|
|
"outputs": [],
|
|
|
|
"source": [
|
2022-01-22 01:20:20 +01:00
|
|
|
"\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"import nltk\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
"import pandas as pd\n",
|
|
|
|
"import rapidfuzz\n",
|
|
|
|
"import time\n",
|
|
|
|
"\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"from nltk.stem import WordNetLemmatizer\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
"from rapidfuzz.fuzz import partial_ratio\n",
|
|
|
|
"from rapidfuzz.utils import default_process\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
|
|
|
"\n",
|
|
|
|
"wl = WordNetLemmatizer()\n",
|
|
|
|
"\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
"glossary = pd.read_csv('mt-summit-corpora/glossary.tsv', sep='\\t', header=None, names=['source', 'result'])\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
|
|
|
"source_lemmatized = []\n",
|
|
|
|
"for word in glossary['source']:\n",
|
|
|
|
" word = nltk.word_tokenize(word)\n",
|
|
|
|
" source_lemmatized.append(' '.join([wl.lemmatize(x) for x in word]))\n",
|
|
|
|
"\n",
|
|
|
|
"glossary['source_lem'] = source_lemmatized\n",
|
|
|
|
"glossary = glossary[['source', 'source_lem', 'result']]\n",
|
|
|
|
"glossary.set_index('source_lem')\n",
|
|
|
|
"\n"
|
|
|
|
],
|
|
|
|
"metadata": {
|
|
|
|
"collapsed": false,
|
|
|
|
"pycharm": {
|
|
|
|
"name": "#%%\n",
|
|
|
|
"is_executing": true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2022-01-22 01:20:20 +01:00
|
|
|
"execution_count": 36,
|
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "stdout",
|
|
|
|
"output_type": "stream",
|
|
|
|
"text": [
|
|
|
|
"0.194806501\n"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
2022-01-22 00:04:56 +01:00
|
|
|
"source": [
|
2022-01-22 01:20:20 +01:00
|
|
|
"# train_in_path = 'mt-summit-corpora/train/in.tsv'\n",
|
|
|
|
"# train_expected_path = 'mt-summit-corpora/train/expected.tsv'\n",
|
|
|
|
"\n",
|
|
|
|
"train_in_path = 'mt-summit-corpora/dev-0/in.tsv'\n",
|
|
|
|
"train_expected_path = 'mt-summit-corpora/dev-0/expected.tsv'\n",
|
|
|
|
"\n",
|
|
|
|
"\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"start_time = time.time_ns()\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
"file_lemmatized = []\n",
|
|
|
|
"with open(train_in_path, 'r') as file:\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" for line in file:\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
" if len(file_lemmatized) % 50000 == 0:\n",
|
|
|
|
" print(len(file_lemmatized), end='\\r')\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" line = nltk.word_tokenize(line)\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
" file_lemmatized.append(' '.join([wl.lemmatize(x) for x in line]))\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
|
|
|
"stop = time.time_ns()\n",
|
|
|
|
"timex = (stop - start_time) / 1000000000\n",
|
|
|
|
"print(timex)\n"
|
|
|
|
],
|
|
|
|
"metadata": {
|
|
|
|
"collapsed": false,
|
|
|
|
"pycharm": {
|
2022-01-22 01:20:20 +01:00
|
|
|
"name": "#%%\n"
|
2022-01-22 00:04:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2022-01-22 01:50:09 +01:00
|
|
|
"execution_count": 64,
|
2022-01-22 00:04:56 +01:00
|
|
|
"outputs": [
|
|
|
|
{
|
|
|
|
"name": "stdout",
|
|
|
|
"output_type": "stream",
|
|
|
|
"text": [
|
2022-01-22 01:50:09 +01:00
|
|
|
"6.915366953\n"
|
2022-01-22 00:04:56 +01:00
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"source": [
|
|
|
|
"\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
"THRESHOLD = 70\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
|
|
|
"def is_injectable(sentence_pl, sequence):\n",
|
|
|
|
" sen = sentence_pl.split()\n",
|
|
|
|
" window_size = len(sequence.split())\n",
|
|
|
|
" maxx = 0\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" for i in range(len(sen) - window_size + 1):\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" current = rapidfuzz.fuzz.ratio(' '.join(sen[i:i + window_size]), sequence)\n",
|
|
|
|
" if current > maxx:\n",
|
|
|
|
" maxx = current\n",
|
|
|
|
" if maxx >= THRESHOLD:\n",
|
|
|
|
" return True\n",
|
|
|
|
" else:\n",
|
|
|
|
" return False\n",
|
|
|
|
"\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
"def get_injected(sentence, sentence_en, sequence, inject):\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" sen = sentence.split()\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" sen_en = sentence_en.split()\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" window_size = len(sequence.split())\n",
|
|
|
|
" maxx = 0\n",
|
|
|
|
" maxxi = 0\n",
|
|
|
|
" for i in range(len(sen) - window_size + 1):\n",
|
|
|
|
" current = rapidfuzz.fuzz.ratio(' '.join(sen[i:i + window_size]), sequence)\n",
|
|
|
|
" if current >= maxx:\n",
|
|
|
|
" maxx = current\n",
|
|
|
|
" maxxi = i\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" temp = ' '.join(sen_en[:maxxi + window_size]) + ' $' + inject + '$ ' + ' '.join(sen_en[maxxi + window_size:])\n",
|
|
|
|
" return temp\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
"glossary['source_lem'] = [str(default_process(x)) for x in glossary['source_lem']]\n",
|
|
|
|
"file_pl = pd.read_csv(train_expected_path, sep='\\t', header=None, names=['text'])\n",
|
|
|
|
"file_pl['text'] = [default_process(text) for text in file_pl['text'].values.tolist()]\n",
|
|
|
|
"file_en= pd.read_csv(train_in_path, sep='\\t', header=None, names=['text'])\n",
|
|
|
|
"file_en['text'] = [default_process(text) for text in file_en['text'].values.tolist()]\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
|
|
|
"start_time = time.time_ns()\n",
|
|
|
|
"en = []\n",
|
|
|
|
"translation_line_counts = []\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
"for line, line_en, line_pl in zip(file_lemmatized, file_en['text'].values.tolist(), file_pl['text'].values.tolist()):\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" line = default_process(line)\n",
|
|
|
|
" matchez = rapidfuzz.process.extract(query=line, choices=glossary['source_lem'], limit=5, score_cutoff=THRESHOLD, scorer=partial_ratio)\n",
|
|
|
|
" if len(matchez) > 0:\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
" lines_added = 0\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" for match in matchez:\n",
|
|
|
|
" polish_translation = glossary.loc[lambda df: df['source_lem'] == match[0]]['result'].astype(str).values.flatten()[0]\n",
|
|
|
|
" if is_injectable(line_pl, polish_translation):\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" en.append(get_injected(line, line_en, match[0], polish_translation))\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
" lines_added += 1\n",
|
|
|
|
" if lines_added == 0:\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" en.append(line_en)\n",
|
2022-01-22 01:20:20 +01:00
|
|
|
" lines_added = 1\n",
|
|
|
|
" translation_line_counts.append(lines_added)\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" else:\n",
|
|
|
|
" translation_line_counts.append(1)\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" en.append(line_en)\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
|
|
|
"\n",
|
|
|
|
"stop = time.time_ns()\n",
|
|
|
|
"timex = (stop - start_time) / 1000000000\n",
|
|
|
|
"print(timex)\n"
|
|
|
|
],
|
|
|
|
"metadata": {
|
|
|
|
"collapsed": false,
|
|
|
|
"pycharm": {
|
|
|
|
"name": "#%%\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
2022-01-22 01:50:09 +01:00
|
|
|
"execution_count": 65,
|
2022-01-22 00:04:56 +01:00
|
|
|
"outputs": [],
|
|
|
|
"source": [
|
|
|
|
"\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
"with open(train_expected_path + '.injected', 'w') as file_pl_write:\n",
|
|
|
|
" for line, translation_line_ct in zip(file_pl['text'].values.tolist(), translation_line_counts):\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" for i in range(translation_line_ct):\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" file_pl_write.write(line + '\\n')\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
"\n",
|
|
|
|
"\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
"with open(train_in_path + '.injected', 'w') as file_en_write:\n",
|
2022-01-22 00:04:56 +01:00
|
|
|
" for e in en:\n",
|
2022-01-22 01:50:09 +01:00
|
|
|
" file_en_write.write(e + '\\n')"
|
2022-01-22 00:04:56 +01:00
|
|
|
],
|
|
|
|
"metadata": {
|
|
|
|
"collapsed": false,
|
|
|
|
"pycharm": {
|
|
|
|
"name": "#%%\n"
|
|
|
|
}
|
|
|
|
}
|
2022-01-22 01:20:20 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"cell_type": "code",
|
|
|
|
"execution_count": null,
|
|
|
|
"outputs": [],
|
|
|
|
"source": [],
|
|
|
|
"metadata": {
|
|
|
|
"collapsed": false,
|
|
|
|
"pycharm": {
|
|
|
|
"name": "#%%\n"
|
|
|
|
}
|
|
|
|
}
|
2022-01-22 00:04:56 +01:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"metadata": {
|
|
|
|
"kernelspec": {
|
|
|
|
"display_name": "Python 3",
|
|
|
|
"language": "python",
|
|
|
|
"name": "python3"
|
|
|
|
},
|
|
|
|
"language_info": {
|
|
|
|
"codemirror_mode": {
|
|
|
|
"name": "ipython",
|
|
|
|
"version": 2
|
|
|
|
},
|
|
|
|
"file_extension": ".py",
|
|
|
|
"mimetype": "text/x-python",
|
|
|
|
"name": "python",
|
|
|
|
"nbconvert_exporter": "python",
|
|
|
|
"pygments_lexer": "ipython2",
|
|
|
|
"version": "2.7.6"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"nbformat": 4,
|
|
|
|
"nbformat_minor": 0
|
|
|
|
}
|