From 0feadcc17be8514b3afffdc0feda1bab21b4c088 Mon Sep 17 00:00:00 2001 From: Anna Nowak Date: Tue, 1 Jun 2021 16:48:56 +0200 Subject: [PATCH] =?UTF-8?q?Pocz=C4=85tek?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- seq_labeling.py.ipynb | 132 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 seq_labeling.py.ipynb diff --git a/seq_labeling.py.ipynb b/seq_labeling.py.ipynb new file mode 100644 index 0000000..2c40ba4 --- /dev/null +++ b/seq_labeling.py.ipynb @@ -0,0 +1,132 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import os.path\n", + "import gzip\n", + "import shutil\n", + "import torch" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "if not os.path.isfile('train/train.tsv'):\n", + " import lzma\n", + " with lzma.open('train/train.tsv.xz', 'rb') as f_in:\n", + " with open('train/train.tsv', 'wb') as f_out:\n", + " shutil.copyfileobj(f_in, f_out)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "raw_data = pd.read_csv('train/train.tsv', sep='\\t', names=['labels', 'text'])" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LabelWordWordLenWordHasDigitCapitalFirst
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Label, Word, WordLen, WordHasDigit, CapitalFirst]\n", + "Index: []" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = []\n", + "for sentence in raw_data.to_numpy():\n", + " for label, word in zip(sentence[0].split(), sentence[1].split()):\n", + " data.append([label,word,len(word), any(c.isdigit() for c in word), word.isupper()])\n", + "df = pd.DataFrame(data, columns=['Label', 'Word', 'WordLen', 'WordHasDigit', 'CapitalFirst'], index=None)\n", + "df[df[\"Label\"]==None]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "def labels_process(dt):\n", + " return [ torch.tensor([0] + document + [0], dtype = torch.long) for document in dt]\n", + "\n", + "def data_process(dt):\n", + " return [ torch.tensor([vocab['']] +[vocab[token] for token in document ] + [vocab['']], dtype = torch.long) for document in dt]" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.5" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}