{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# The full python workflow for semasiological token-level clouds "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This notebook walks you through all the steps, from setting up the code based on your corpus to getting token-level distance matrices. They can be based on individual lemmas (like [here](https://cloudspotting.marianamontes.me/)) or on groups of related lemmas (like [here](https://www.degruyter.com/document/doi/10.1515/9783110733945-021/html))."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 0. Initial setup "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The first step is to load some packages, including both `nephosem` and `semasioFlow`. Then we export functions directly from `semasioFlow` (although `ConfigLoader` is extracted from `nephosem`)."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import os\n",
"import sys\n",
"import logging\n",
"sys.path.append(\"../../nephosem/\") # my path to nephosem\n",
"sys.path.append(\"../semasioFlow/\") # my path to semasioFlow"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"from semasioFlow import ConfigLoader\n",
"from semasioFlow.load import loadVocab, loadMacro, loadColloc, loadFocRegisters\n",
"from semasioFlow.sample import sampleTypes\n",
"from semasioFlow.focmodels import createBow, createRel, createPath\n",
"from semasioFlow.socmodels import targetPPMI, weightTokens, createSoc\n",
"from semasioFlow.utils import plotPatterns"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 1. Configuration "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Depending on what you need, you will have to set up some useful paths settings.\n",
"I like to have at least the path to my project (`mydir`), an output path within (`mydir + \"output\"`) and a GitHub path for the datasets that I will use in the visualization. There is no real reason not to have everything together, except that I did not think of it at the moment. (Actually, there is: the GitHub stuff will be public and huge data would not be included. How much do we want to have public?)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"mydir = \"./\"\n",
"output_path = f\"{mydir}/output/create-clouds/\"\n",
"nephovis_path = f\"{mydir}/for-nephovis/\"\n",
"logging.basicConfig(filename = f'{mydir}/testlog.log', level = logging.DEBUG)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"necessary_subfolders = ['vocab', 'cws', 'registers', 'tokens']\n",
"for sf in necessary_subfolders:\n",
" if not os.path.exists(output_path + sf):\n",
" os.makedirs(output_path + sf)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The variables with paths is just meant to make it easier to manipulate filenames. The most important concrete step is to adapt the configuration file."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"([^\\t]+)\\t([^\\t])[^\\t]*\\t([^\\t]+)\\t([^\\t]+)\\t([^\\t]+)\\t([^\\t]+)\n",
"word,pos,lemma,id,head,deprel\n",
"lemma/pos lemma/pos lemma/pos/fid/lid\n"
]
}
],
"source": [
"conf = ConfigLoader()\n",
"settings = conf.update_config('config.ini')\n",
"settings['output-path'] = output_path\n",
"\n",
"corpus_name = 'Toy'\n",
"print(settings['line-machine'])\n",
"print(settings['global-columns'])\n",
"print(settings['type'], settings['colloc'], settings['token'])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 2. Frequency lists"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The frequency lists are the first thing to create, but once you have them, you just load them. So what we are going to do here is define the filename where we *would* store the frequency list (in this case, where it is actually stored), and if it exists it loads it; if it doesn't, it creates and store it. After generating a full frequency list, we might want to [filter it](https://qlvl.github.io/nephosem/tutorials/vocab.html) and store different versions in the `vocab` folder."
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
".//output/create-clouds//vocab/Toy.nodefreq\n"
]
},
{
"data": {
"text/plain": [
"[('the/D', 53),('boy/N', 25),('eat/V', 22) ... ('ten/C', 1),('ask/V', 1),('about/I', 1)]"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"full_name = f\"{output_path}/vocab/{corpus_name}.nodefreq\"\n",
"print(full_name)\n",
"full = loadVocab(full_name, settings)\n",
"full"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 3. Boolean token-level matrices\n",
"\n",
"Even though we first think of the type leven and only afterwards of the token level, with this workflow we don't really need to touch type level until after we obtain the boolean token-level matrices, that is, until we need to use PPMI values to select or weight the context words.\n",
"\n",
"As a first step, we need the type or list of types we want to run; for example `\"heet/adj\"` or `[\"vernietig/verb\", \"verniel/verb\"]`, and we subset the vocabulary for that query."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"[('girl/N', 21),('boy/N', 25)]"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"query = full.subvocab([\"girl/N\", \"boy/N\"])\n",
"type_name = \"child\"\n",
"query"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We could generate the tokens for all tokens (which in a real sample could be in the thousands), or create a random selection with a certain number and then only use those files. The output of `semasioFlow.sampleTypes()` includes a list of token IDs as well as the list of filenames that suffices to extract those tokens. We can then use the new list of filenames when we collect tokens, and the list of tokens to subset the resulting matrices. In addition, the optional argument `concordance` can take a filename to which a raw concordance based on the current settings can be stored (see [this tutorial](https://qlvl.github.io/nephosem/tutorials/concordance-from-tokens.html)).\n",
"\n",
"Of course, to keep the sample fixed it would be more useful to generate the list, store it and then retrieve it in future runs."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"
\n",
"\n",
"NOTE: \n",
"By default, `semasioFlow.sampleTypes()` will only sample one token of each type per file. To override this, add `oneperfile = False`.\n",
"\n",
"
"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"import json\n",
"import os.path\n",
"\n",
"fnames = [settings['corpus-path'] + '/' + x for x in os.listdir(settings['corpus-path'])]\n",
"tokenlist_fname = f\"{mydir}/filelist.json\"\n",
"if os.path.exists(tokenlist_fname):\n",
" with open(tokenlist_fname, \"r\") as f:\n",
" tokenlist, fnameSample = json.load(f).values()\n",
"else:\n",
" tokenlist, fnameSample = sampleTypes({'girl/N' : 20, 'boy/N' : 20}, fnames, settings, oneperfile = False)\n",
" with open(tokenlist_fname, \"w\") as f:\n",
" json.dump({\"tokenlist\" : tokenlist, \"fnames\" : fnameSample}, f)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"40"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(tokenlist)"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"11"
]
},
"execution_count": 10,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(fnameSample)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 3.1 Bag-of-words\n",
"\n",
"The code to generate one matrix is very straightforward, but what if we want to use different combinations of parameter settings to create multiple matrices?\n",
"\n",
"The code below assumes that the boolean BOW matrices may vary across three parameters:\n",
"\n",
"- **foc_win**: window size, which is set with numbers for let and right window. *This has the settings above for default*\n",
"- **foc_pos**: part-of-speech filter, which will actually be set as a previously filtered list of context words. *By default, all context words are included.*\n",
"- **bound**: the match for sentence boundaries and whether the models respond to them or not. *By default, sentence boundaries are ignored.*"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"nounverbs = [x for x in full.get_item_list() if x.rsplit(\"/\", 1)[1] in [\"N\", \"V\"]]"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"foc_win = [(3, 3), (5, 5), (5, 3)] # optional window sizes\n",
"foc_pos = {\n",
" \"all\" : full[full.freq > 2].get_item_list(), # only frequency filter\n",
" \"nounverbs\" : nounverbs # only nouns and verbs\n",
"}\n",
"bound = { \"match\" : \"^$\", \"values\" : [True, False]}"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The function below combines a number of necessary functions:\n",
"\n",
"- it creates a loop over the different combinations of parameter settings specified\n",
"- it collects the tokens and computes and filters the corresponding matrices\n",
"- it transforms the matrices in \"boolean\" integer matrices, with only 0's and 1's\n",
"- it stores the matrices in their respective files\n",
"- it records the combinations of parameter settings and which values are taken by each model\n",
"- it records the context words captured by each model for each token\n",
"- it returns both records to be stored wherever you want"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
" 0%| | 0/6 [00:00, ?it/s]"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Scanning tokens of queries in corpus...\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.bound3-3all.tcmx.bool.pac\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
" 17%|█▋ | 1/6 [00:00<00:01, 3.35it/s]"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.bound3-3nounverbs.tcmx.bool.pac\n",
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Scanning tokens of queries in corpus...\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.nobound3-3all.tcmx.bool.pac\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
" 33%|███▎ | 2/6 [00:00<00:01, 3.44it/s]"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.nobound3-3nounverbs.tcmx.bool.pac\n",
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Scanning tokens of queries in corpus...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.bound5-5all.tcmx.bool.pac\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
" 50%|█████ | 3/6 [00:00<00:00, 3.49it/s]"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.bound5-5nounverbs.tcmx.bool.pac\n",
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Scanning tokens of queries in corpus...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.nobound5-5all.tcmx.bool.pac\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
" 67%|██████▋ | 4/6 [00:01<00:00, 3.46it/s]"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.nobound5-5nounverbs.tcmx.bool.pac\n",
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Scanning tokens of queries in corpus...\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.bound5-3all.tcmx.bool.pac\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
" 83%|████████▎ | 5/6 [00:01<00:00, 3.45it/s]"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.bound5-3nounverbs.tcmx.bool.pac\n",
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Scanning tokens of queries in corpus...\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.nobound5-3all.tcmx.bool.pac\n",
"WARNING: 1 columns have not been found.\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\r",
"100%|██████████| 6/6 [00:01<00:00, 3.49it/s]"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.nobound5-3nounverbs.tcmx.bool.pac\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"\n"
]
}
],
"source": [
"bowdata = createBow(query, settings, type_name = type_name, fnames = fnameSample, tokenlist = tokenlist,\n",
" foc_win = foc_win, foc_pos = foc_pos, bound = bound)\n",
"bowdata.to_csv(f\"{output_path}/registers/{type_name}.bow-models.tsv\", sep = \"\\t\", index_label = \"_model\")"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" bound | \n",
" foc_base | \n",
" foc_pos | \n",
" foc_win | \n",
"
\n",
" \n",
" \n",
" \n",
" child.bound3-3all | \n",
" True | \n",
" BOW | \n",
" all | \n",
" 3-3 | \n",
"
\n",
" \n",
" child.bound3-3nounverbs | \n",
" True | \n",
" BOW | \n",
" nounverbs | \n",
" 3-3 | \n",
"
\n",
" \n",
" child.bound5-3all | \n",
" True | \n",
" BOW | \n",
" all | \n",
" 5-3 | \n",
"
\n",
" \n",
" child.bound5-3nounverbs | \n",
" True | \n",
" BOW | \n",
" nounverbs | \n",
" 5-3 | \n",
"
\n",
" \n",
" child.bound5-5all | \n",
" True | \n",
" BOW | \n",
" all | \n",
" 5-5 | \n",
"
\n",
" \n",
" child.bound5-5nounverbs | \n",
" True | \n",
" BOW | \n",
" nounverbs | \n",
" 5-5 | \n",
"
\n",
" \n",
" child.nobound3-3all | \n",
" False | \n",
" BOW | \n",
" all | \n",
" 3-3 | \n",
"
\n",
" \n",
" child.nobound3-3nounverbs | \n",
" False | \n",
" BOW | \n",
" nounverbs | \n",
" 3-3 | \n",
"
\n",
" \n",
" child.nobound5-3all | \n",
" False | \n",
" BOW | \n",
" all | \n",
" 5-3 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs | \n",
" False | \n",
" BOW | \n",
" nounverbs | \n",
" 5-3 | \n",
"
\n",
" \n",
" child.nobound5-5all | \n",
" False | \n",
" BOW | \n",
" all | \n",
" 5-5 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs | \n",
" False | \n",
" BOW | \n",
" nounverbs | \n",
" 5-5 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" bound foc_base foc_pos foc_win\n",
"child.bound3-3all True BOW all 3-3\n",
"child.bound3-3nounverbs True BOW nounverbs 3-3\n",
"child.bound5-3all True BOW all 5-3\n",
"child.bound5-3nounverbs True BOW nounverbs 5-3\n",
"child.bound5-5all True BOW all 5-5\n",
"child.bound5-5nounverbs True BOW nounverbs 5-5\n",
"child.nobound3-3all False BOW all 3-3\n",
"child.nobound3-3nounverbs False BOW nounverbs 3-3\n",
"child.nobound5-3all False BOW all 5-3\n",
"child.nobound5-3nounverbs False BOW nounverbs 5-3\n",
"child.nobound5-5all False BOW all 5-5\n",
"child.nobound5-5nounverbs False BOW nounverbs 5-5"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bowdata"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 3.2 Lemmarel\n",
"\n",
"For dependency models we need specific templates and and patterns --- especially for LEMMAREL, they need to be tailored to the part-of-speech that you are looking into. Since I'm exemplifying with a verb, I will use those templates."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n",
"\n",
"IMPORTANT
\n",
"In order to identify different sentences, dependency models require the 'separator-line-machine' value.\n",
"
"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"graphml_name = \"LEMMAREL\"\n",
"templates_dir = f\"{mydir}/templates\"\n",
"rel_macros = [\n",
" (\"LEMMAREL\", loadMacro(templates_dir, graphml_name, \"LEMMAREL\")) # list of templates -we only have one\n",
"]\n",
"settings['separator-line-machine'] = \"^$\""
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Building dependency features...\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5e15459d96af460e888885a18e96c389",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=11), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Building matrix...\n",
"WARNING: 8 rows have not been found.\n",
"WARNING: 45 columns have not been found.\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.LEMMAREL.tcmx.bool.pac\n"
]
},
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" LEMMAREL | \n",
" foc_base | \n",
"
\n",
" \n",
" \n",
" \n",
" child.LEMMAREL | \n",
" LEMMAREL | \n",
" LEMMAREL | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" LEMMAREL foc_base\n",
"child.LEMMAREL LEMMAREL LEMMAREL"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"reldata = createRel(query, settings, rel_macros, type_name = type_name,\n",
" fnames = fnameSample, tokenlist = tokenlist, foc_filter = full.get_item_list())\n",
"reldata.to_csv(f\"{output_path}/registers/{type_name}.rel-models.tsv\", sep = \"\\t\", index_label = \"_model\")\n",
"reldata"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 3.3 Lemmapath\n",
"\n",
"Like LEMMAREL, the LEMMAPATH models need 'separator-line-machine' to be properly set and the templates to be loaded.\n",
"Unlike LEMMAREL, the templates are not cumulative: LEMMAPATH1 models only cover those with one step between target and context word, while LEMMAPATH2 covers those with two steps. We *could* make them cumulative, but this setup allows us to give them different weights in PATHweight models."
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"graphml_name = \"LEMMAPATH\"\n",
"templates_dir = f\"{mydir}/templates\"\n",
"# If there were multiple LEMMAPATH templates with increasing path length:\n",
"# path_templates = [loadMacro(templates_dir, graphml_name, f\"LEMMAPATH{i}\") for i in [1, 2, 3]]\n",
"# path_macros = [\n",
"# # First group includes templates with one and two steps, no weight\n",
"# (\"LEMMAPATH2\", [path_templates[0], path_templates[1]], None),\n",
"# # Second group includes templates with up to three steps, no weight\n",
"# (\"LEMMAPATH3\", [path_templates[0], path_templates[1], path_templates[2]], None),\n",
"# # Third group includes templates with up to three steps, with weight\n",
"# (\"LEMMAPATHweight\", [path_templates[0], path_templates[1], path_templates[2]], [1, 0.6, 0.3])\n",
"# ]\n",
"path_templates = [loadMacro(templates_dir, graphml_name, \"LEMMAPATH\")]\n",
"path_macros = [(\"LEMMAPATH\", path_templates, None)]\n",
"settings['separator-line-machine'] = \"^$\""
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"scrolled": true
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"WARNING: Not provide the temporary path!\n",
"WARNING: Use the default tmp directory: '~/tmp'!\n",
"Building dependency features...\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "dec142f9f8aa42f682c6d4d0ce4b6b24",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=11), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Building matrix...\n",
"WARNING: 31 columns have not been found.\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child//child.LEMMAPATH.tcmx.bool.pac\n"
]
},
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" LEMMAPATH | \n",
" foc_base | \n",
"
\n",
" \n",
" \n",
" \n",
" child.LEMMAPATH | \n",
" LEMMAPATH | \n",
" LEMMAPATH | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" LEMMAPATH foc_base\n",
"child.LEMMAPATH LEMMAPATH LEMMAPATH"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"pathdata = createPath(query, settings, path_macros, type_name = type_name,\n",
" fnames = fnameSample, tokenlist = tokenlist, foc_filter = full.get_item_list())\n",
"pathdata.to_csv(f\"{output_path}/registers/{type_name}.path-models.tsv\", sep = \"\\t\", index_label = \"_model\")\n",
"pathdata"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 4 Weight or booleanize\n",
"\n",
"Once we have our boolean token-by-feature matrices, we can start combining them with type-level matrices: first to weight them and then to obtain second-order features. These functions will require us to specify the directory where we store our token matrices (in case we want different directories)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 4.1. Create/load collocation matrix\n",
"First of all, we need to have a collocation matrix. The following function checks if the given filename exists and, if it doesn't, it creates the matrix from scratch."
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [],
"source": [
"freq_fname_CW4 = f\"{output_path}/{corpus_name}.bow.wcmx.pac\" # window size of 4"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[55, 55] 's/P ,/, a/D about/I about/R all/P an/D ...\n",
"'s/P NaN NaN NaN NaN NaN NaN NaN ...\n",
",/, NaN 1 2 NaN NaN NaN NaN ...\n",
"a/D NaN 3 NaN NaN NaN NaN NaN ...\n",
"about/I NaN NaN NaN NaN NaN NaN NaN ...\n",
"about/R NaN NaN NaN NaN NaN NaN NaN ...\n",
"all/P NaN NaN NaN NaN NaN NaN NaN ...\n",
"an/D NaN NaN NaN NaN NaN NaN NaN ...\n",
"... ... ... ... ... ... ... ... ..."
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#settings['left-span'] = 4\n",
"#settings['right-span = 4']\n",
"freqMTX_CW4 = loadColloc(freq_fname_CW4, settings, row_vocab = full)\n",
"freqMTX_CW4"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 4.2 Register PPMI values\n",
"\n",
"The function below subsets collocation matrices and calculates PMI values based on collocation matrices and frequencies based on vocabularies, to register the information in a dataframe. It returns a specific PPMI dataframe to use for weighting."
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"scrolled": false
},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6f6dc00e60de4fa988bbc1b5d78e6d04",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=77), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01507 sec\n",
"************************************\n",
"\n"
]
},
{
"data": {
"text/plain": [
"[2, 48] 's/P ,/, a/D about/I about/R all/P an/D ...\n",
"boy/N NaN NaN NaN NaN NaN 0.8252069 0.6428853 ...\n",
"girl/N 1.0567893 0.09170843 0.46900266 0.83364576 0.83364576 NaN NaN ..."
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"ppmi = targetPPMI(query.get_item_list(),\n",
" vocabs = {\"freq\" : full},\n",
" collocs = {\"4\" : freqMTX_CW4\n",
"# , \"10\" : freqMTX_CW10 # it's possible to add info from other matrices\n",
" },\n",
" type_name = type_name, output_dir = f\"{nephovis_path}/{type_name}/\",\n",
" main_matrix = \"4\" # matrix to base return matrix on\n",
" )\n",
"ppmi # it returns the PPMI values based on collocs[\"4\"]"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" pmi_4_boy/N | \n",
" pmi_4_girl/N | \n",
" raw_4_boy/N | \n",
" raw_4_girl/N | \n",
" freq | \n",
"
\n",
" \n",
" cw | \n",
" | \n",
" | \n",
" | \n",
" | \n",
" | \n",
"
\n",
" \n",
" \n",
" \n",
" 's/P | \n",
" NaN | \n",
" 1.056789 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" ,/, | \n",
" NaN | \n",
" 0.091708 | \n",
" NaN | \n",
" 2.0 | \n",
" 3 | \n",
"
\n",
" \n",
" a/D | \n",
" -0.455727 | \n",
" 0.469003 | \n",
" 2.0 | \n",
" 5.0 | \n",
" 6 | \n",
"
\n",
" \n",
" about/I | \n",
" NaN | \n",
" 0.833646 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" about/R | \n",
" NaN | \n",
" 0.833646 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" all/P | \n",
" 0.825207 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" an/D | \n",
" 0.642885 | \n",
" NaN | \n",
" 2.0 | \n",
" NaN | \n",
" 3 | \n",
"
\n",
" \n",
" and/C | \n",
" 0.237420 | \n",
" -0.159606 | \n",
" 3.0 | \n",
" 2.0 | \n",
" 5 | \n",
"
\n",
" \n",
" apple/N | \n",
" -0.621712 | \n",
" -0.207808 | \n",
" 4.0 | \n",
" 6.0 | \n",
" 21 | \n",
"
\n",
" \n",
" as/I | \n",
" NaN | \n",
" 0.833646 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" ask/V | \n",
" 0.488735 | \n",
" 0.497174 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" at/I | \n",
" 0.355203 | \n",
" 0.363642 | \n",
" 5.0 | \n",
" 5.0 | \n",
" 6 | \n",
"
\n",
" \n",
" baby/N | \n",
" 0.036750 | \n",
" 0.045188 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
"
\n",
" \n",
" be/V | \n",
" 0.201053 | \n",
" -0.889121 | \n",
" 6.0 | \n",
" 2.0 | \n",
" 11 | \n",
"
\n",
" \n",
" both/D | \n",
" 0.825207 | \n",
" 0.833646 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" boy/N | \n",
" NaN | \n",
" -0.360277 | \n",
" NaN | \n",
" 8.0 | \n",
" 25 | \n",
"
\n",
" \n",
" by/I | \n",
" 0.419742 | \n",
" -0.264967 | \n",
" 2.0 | \n",
" 1.0 | \n",
" 3 | \n",
"
\n",
" \n",
" do/V | \n",
" NaN | \n",
" 1.056789 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" down/R | \n",
" NaN | \n",
" 1.344471 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" eat/V | \n",
" -0.095518 | \n",
" 0.200603 | \n",
" 9.0 | \n",
" 12.0 | \n",
" 22 | \n",
"
\n",
" \n",
" for/I | \n",
" 1.048350 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" girl/N | \n",
" -0.239504 | \n",
" NaN | \n",
" 8.0 | \n",
" NaN | \n",
" 21 | \n",
"
\n",
" \n",
" give/V | \n",
" 0.517722 | \n",
" 0.303018 | \n",
" 5.0 | \n",
" 4.0 | \n",
" 6 | \n",
"
\n",
" \n",
" have/V | \n",
" 0.237420 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 2 | \n",
"
\n",
" \n",
" healthy/J | \n",
" -0.273405 | \n",
" 0.022716 | \n",
" 3.0 | \n",
" 4.0 | \n",
" 10 | \n",
"
\n",
" \n",
" her/P | \n",
" 1.336033 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" him/P | \n",
" NaN | \n",
" 1.344471 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" house/N | \n",
" 1.336033 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" in/I | \n",
" 0.825207 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" less/R | \n",
" NaN | \n",
" 0.833646 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" like/V | \n",
" 0.642885 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" look/V | \n",
" 0.509354 | \n",
" 0.363642 | \n",
" 7.0 | \n",
" 6.0 | \n",
" 8 | \n",
"
\n",
" \n",
" love/V | \n",
" 1.336033 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" not/R | \n",
" 0.355203 | \n",
" 0.363642 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
"
\n",
" \n",
" old/J | \n",
" 0.442215 | \n",
" 0.045188 | \n",
" 3.0 | \n",
" 2.0 | \n",
" 4 | \n",
"
\n",
" \n",
" on/I | \n",
" NaN | \n",
" 0.833646 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" say/V | \n",
" 0.488735 | \n",
" 0.497174 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" she/P | \n",
" 0.355203 | \n",
" 0.363642 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
"
\n",
" \n",
" should/M | \n",
" 0.036750 | \n",
" 0.045188 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
"
\n",
" \n",
" sit/V | \n",
" -0.050262 | \n",
" 0.651324 | \n",
" 1.0 | \n",
" 2.0 | \n",
" 3 | \n",
"
\n",
" \n",
" tasty/J | \n",
" -0.455727 | \n",
" -0.447288 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 5 | \n",
"
\n",
" \n",
" ten/C | \n",
" 0.825207 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" ten/J | \n",
" NaN | \n",
" 1.056789 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" that/I | \n",
" 0.355203 | \n",
" 0.363642 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" that/W | \n",
" 0.355203 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" the/D | \n",
" 0.337504 | \n",
" 0.316955 | \n",
" 35.0 | \n",
" 34.0 | \n",
" 53 | \n",
"
\n",
" \n",
" this/D | \n",
" NaN | \n",
" 0.833646 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" to/T | \n",
" 0.132060 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 2 | \n",
"
\n",
" \n",
" very/R | \n",
" 0.825207 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" what/W | \n",
" 0.132060 | \n",
" 0.140499 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
"
\n",
" \n",
" which/W | \n",
" NaN | \n",
" 0.497174 | \n",
" NaN | \n",
" 1.0 | \n",
" 1 | \n",
"
\n",
" \n",
" without/I | \n",
" 0.488735 | \n",
" NaN | \n",
" 1.0 | \n",
" NaN | \n",
" 1 | \n",
"
\n",
" \n",
" year/N | \n",
" -0.273405 | \n",
" -0.264967 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" pmi_4_boy/N pmi_4_girl/N raw_4_boy/N raw_4_girl/N freq\n",
"cw \n",
"'s/P NaN 1.056789 NaN 1.0 1\n",
",/, NaN 0.091708 NaN 2.0 3\n",
"a/D -0.455727 0.469003 2.0 5.0 6\n",
"about/I NaN 0.833646 NaN 1.0 1\n",
"about/R NaN 0.833646 NaN 1.0 1\n",
"all/P 0.825207 NaN 1.0 NaN 1\n",
"an/D 0.642885 NaN 2.0 NaN 3\n",
"and/C 0.237420 -0.159606 3.0 2.0 5\n",
"apple/N -0.621712 -0.207808 4.0 6.0 21\n",
"as/I NaN 0.833646 NaN 1.0 1\n",
"ask/V 0.488735 0.497174 1.0 1.0 1\n",
"at/I 0.355203 0.363642 5.0 5.0 6\n",
"baby/N 0.036750 0.045188 1.0 1.0 2\n",
"be/V 0.201053 -0.889121 6.0 2.0 11\n",
"both/D 0.825207 0.833646 1.0 1.0 1\n",
"boy/N NaN -0.360277 NaN 8.0 25\n",
"by/I 0.419742 -0.264967 2.0 1.0 3\n",
"do/V NaN 1.056789 NaN 1.0 1\n",
"down/R NaN 1.344471 NaN 1.0 1\n",
"eat/V -0.095518 0.200603 9.0 12.0 22\n",
"for/I 1.048350 NaN 1.0 NaN 1\n",
"girl/N -0.239504 NaN 8.0 NaN 21\n",
"give/V 0.517722 0.303018 5.0 4.0 6\n",
"have/V 0.237420 NaN 1.0 NaN 2\n",
"healthy/J -0.273405 0.022716 3.0 4.0 10\n",
"her/P 1.336033 NaN 1.0 NaN 1\n",
"him/P NaN 1.344471 NaN 1.0 1\n",
"house/N 1.336033 NaN 1.0 NaN 1\n",
"in/I 0.825207 NaN 1.0 NaN 1\n",
"less/R NaN 0.833646 NaN 1.0 1\n",
"like/V 0.642885 NaN 1.0 NaN 1\n",
"look/V 0.509354 0.363642 7.0 6.0 8\n",
"love/V 1.336033 NaN 1.0 NaN 1\n",
"not/R 0.355203 0.363642 1.0 1.0 2\n",
"old/J 0.442215 0.045188 3.0 2.0 4\n",
"on/I NaN 0.833646 NaN 1.0 1\n",
"say/V 0.488735 0.497174 1.0 1.0 1\n",
"she/P 0.355203 0.363642 1.0 1.0 2\n",
"should/M 0.036750 0.045188 1.0 1.0 2\n",
"sit/V -0.050262 0.651324 1.0 2.0 3\n",
"tasty/J -0.455727 -0.447288 1.0 1.0 5\n",
"ten/C 0.825207 NaN 1.0 NaN 1\n",
"ten/J NaN 1.056789 NaN 1.0 1\n",
"that/I 0.355203 0.363642 1.0 1.0 1\n",
"that/W 0.355203 NaN 1.0 NaN 1\n",
"the/D 0.337504 0.316955 35.0 34.0 53\n",
"this/D NaN 0.833646 NaN 1.0 1\n",
"to/T 0.132060 NaN 1.0 NaN 2\n",
"very/R 0.825207 NaN 1.0 NaN 1\n",
"what/W 0.132060 0.140499 1.0 1.0 2\n",
"which/W NaN 0.497174 NaN 1.0 1\n",
"without/I 0.488735 NaN 1.0 NaN 1\n",
"year/N -0.273405 -0.264967 1.0 1.0 3"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pandas as pd\n",
"with open(f\"{nephovis_path}/{type_name}/{type_name}.ppmi.tsv\", \"r\") as f:\n",
" pmidf = pd.read_csv(f, sep = \"\\t\", index_col = \"cw\")\n",
"pmidf"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 4.3 Implement weighting on selection\n",
"\n",
"This step is performed on all the matrices created up to this moment. A useful thing to do first is to combine all the first-order register information we have from the different kinds of models."
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" bound | \n",
" foc_base | \n",
" foc_pos | \n",
" foc_win | \n",
" LEMMAREL | \n",
" LEMMAPATH | \n",
"
\n",
" \n",
" _model | \n",
" | \n",
" | \n",
" | \n",
" | \n",
" | \n",
" | \n",
"
\n",
" \n",
" \n",
" \n",
" child.bound3-3all | \n",
" True | \n",
" BOW | \n",
" all | \n",
" 3-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.bound3-3nounverbs | \n",
" True | \n",
" BOW | \n",
" nounverbs | \n",
" 3-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.bound5-3all | \n",
" True | \n",
" BOW | \n",
" all | \n",
" 5-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.bound5-3nounverbs | \n",
" True | \n",
" BOW | \n",
" nounverbs | \n",
" 5-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.bound5-5all | \n",
" True | \n",
" BOW | \n",
" all | \n",
" 5-5 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.bound5-5nounverbs | \n",
" True | \n",
" BOW | \n",
" nounverbs | \n",
" 5-5 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.nobound3-3all | \n",
" False | \n",
" BOW | \n",
" all | \n",
" 3-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.nobound3-3nounverbs | \n",
" False | \n",
" BOW | \n",
" nounverbs | \n",
" 3-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.nobound5-3all | \n",
" False | \n",
" BOW | \n",
" all | \n",
" 5-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs | \n",
" False | \n",
" BOW | \n",
" nounverbs | \n",
" 5-3 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.nobound5-5all | \n",
" False | \n",
" BOW | \n",
" all | \n",
" 5-5 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs | \n",
" False | \n",
" BOW | \n",
" nounverbs | \n",
" 5-5 | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" child.LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
"
\n",
" \n",
" child.LEMMAPATH | \n",
" NaN | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" bound foc_base foc_pos foc_win LEMMAREL \\\n",
"_model \n",
"child.bound3-3all True BOW all 3-3 NaN \n",
"child.bound3-3nounverbs True BOW nounverbs 3-3 NaN \n",
"child.bound5-3all True BOW all 5-3 NaN \n",
"child.bound5-3nounverbs True BOW nounverbs 5-3 NaN \n",
"child.bound5-5all True BOW all 5-5 NaN \n",
"child.bound5-5nounverbs True BOW nounverbs 5-5 NaN \n",
"child.nobound3-3all False BOW all 3-3 NaN \n",
"child.nobound3-3nounverbs False BOW nounverbs 3-3 NaN \n",
"child.nobound5-3all False BOW all 5-3 NaN \n",
"child.nobound5-3nounverbs False BOW nounverbs 5-3 NaN \n",
"child.nobound5-5all False BOW all 5-5 NaN \n",
"child.nobound5-5nounverbs False BOW nounverbs 5-5 NaN \n",
"child.LEMMAREL NaN LEMMAREL NaN NaN LEMMAREL \n",
"child.LEMMAPATH NaN LEMMAPATH NaN NaN NaN \n",
"\n",
" LEMMAPATH \n",
"_model \n",
"child.bound3-3all NaN \n",
"child.bound3-3nounverbs NaN \n",
"child.bound5-3all NaN \n",
"child.bound5-3nounverbs NaN \n",
"child.bound5-5all NaN \n",
"child.bound5-5nounverbs NaN \n",
"child.nobound3-3all NaN \n",
"child.nobound3-3nounverbs NaN \n",
"child.nobound5-3all NaN \n",
"child.nobound5-3nounverbs NaN \n",
"child.nobound5-5all NaN \n",
"child.nobound5-5nounverbs NaN \n",
"child.LEMMAREL NaN \n",
"child.LEMMAPATH LEMMAPATH "
]
},
"execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"registers = loadFocRegisters(f\"{output_path}/registers/\", type_name)\n",
"registers"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Once we have the registers, we can also set the values for our `PPMI` setting with the `weighting` dictionary. A value `None` indicates that no weighting is applied, while matrices as values (a boolean version for selection instead of weighting, for example) are used to weight the tokens."
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"from semasioFlow.utils import booleanize\n",
"weighting = {\n",
" \"no\" : None, # no weighting\n",
" \"selection\" : booleanize(ppmi, include_negative=False), # select with ppmi\n",
" \"weight\" : ppmi # weight with ppmi\n",
"}"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.tcmx.weight.pac\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.tcmx.weight.pac\n"
]
}
],
"source": [
"token_dir = f\"{output_path}/tokens/{type_name}\"\n",
"weight_data = weightTokens(token_dir, weighting, registers)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" LEMMAPATH | \n",
" LEMMAREL | \n",
" bound | \n",
" foc_base | \n",
" foc_context_words | \n",
" foc_pmi | \n",
" foc_pos | \n",
" foc_win | \n",
" tokens | \n",
"
\n",
" \n",
" \n",
" \n",
" child.LEMMAPATH.PPMIno | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 23 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIselection | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIweight | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIno | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" 32 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIselection | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIweight | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" 26 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3nounverbs.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 16 | \n",
" no | \n",
" nounverbs | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3nounverbs.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 3-3 | \n",
" 34 | \n",
"
\n",
" \n",
" child.bound3-3nounverbs.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 3-3 | \n",
" 34 | \n",
"
\n",
" \n",
" child.bound5-3all.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-3all.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-3all.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-3nounverbs.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 16 | \n",
" no | \n",
" nounverbs | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-3nounverbs.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-3 | \n",
" 35 | \n",
"
\n",
" \n",
" child.bound5-3nounverbs.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-3 | \n",
" 35 | \n",
"
\n",
" \n",
" child.bound5-5all.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 20 | \n",
" no | \n",
" all | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-5all.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-5all.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-5nounverbs.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 17 | \n",
" no | \n",
" nounverbs | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound5-5nounverbs.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-5 | \n",
" 35 | \n",
"
\n",
" \n",
" child.bound5-5nounverbs.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-5 | \n",
" 35 | \n",
"
\n",
" \n",
" child.nobound3-3all.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound3-3all.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound3-3all.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound3-3nounverbs.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 16 | \n",
" no | \n",
" nounverbs | \n",
" 3-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound3-3nounverbs.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 3-3 | \n",
" 35 | \n",
"
\n",
" \n",
" child.nobound3-3nounverbs.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 3-3 | \n",
" 35 | \n",
"
\n",
" \n",
" child.nobound5-3all.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-3all.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-3all.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 16 | \n",
" no | \n",
" nounverbs | \n",
" 5-3 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-3 | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-3 | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 20 | \n",
" no | \n",
" all | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIno | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 17 | \n",
" no | \n",
" nounverbs | \n",
" 5-5 | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIselection | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-5 | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIweight | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-5 | \n",
" 36 | \n",
"
\n",
" \n",
"
\n",
"
"
],
"text/plain": [
" LEMMAPATH LEMMAREL bound \\\n",
"child.LEMMAPATH.PPMIno LEMMAPATH NaN NaN \n",
"child.LEMMAPATH.PPMIselection LEMMAPATH NaN NaN \n",
"child.LEMMAPATH.PPMIweight LEMMAPATH NaN NaN \n",
"child.LEMMAREL.PPMIno NaN LEMMAREL NaN \n",
"child.LEMMAREL.PPMIselection NaN LEMMAREL NaN \n",
"child.LEMMAREL.PPMIweight NaN LEMMAREL NaN \n",
"child.bound3-3all.PPMIno NaN NaN True \n",
"child.bound3-3all.PPMIselection NaN NaN True \n",
"child.bound3-3all.PPMIweight NaN NaN True \n",
"child.bound3-3nounverbs.PPMIno NaN NaN True \n",
"child.bound3-3nounverbs.PPMIselection NaN NaN True \n",
"child.bound3-3nounverbs.PPMIweight NaN NaN True \n",
"child.bound5-3all.PPMIno NaN NaN True \n",
"child.bound5-3all.PPMIselection NaN NaN True \n",
"child.bound5-3all.PPMIweight NaN NaN True \n",
"child.bound5-3nounverbs.PPMIno NaN NaN True \n",
"child.bound5-3nounverbs.PPMIselection NaN NaN True \n",
"child.bound5-3nounverbs.PPMIweight NaN NaN True \n",
"child.bound5-5all.PPMIno NaN NaN True \n",
"child.bound5-5all.PPMIselection NaN NaN True \n",
"child.bound5-5all.PPMIweight NaN NaN True \n",
"child.bound5-5nounverbs.PPMIno NaN NaN True \n",
"child.bound5-5nounverbs.PPMIselection NaN NaN True \n",
"child.bound5-5nounverbs.PPMIweight NaN NaN True \n",
"child.nobound3-3all.PPMIno NaN NaN False \n",
"child.nobound3-3all.PPMIselection NaN NaN False \n",
"child.nobound3-3all.PPMIweight NaN NaN False \n",
"child.nobound3-3nounverbs.PPMIno NaN NaN False \n",
"child.nobound3-3nounverbs.PPMIselection NaN NaN False \n",
"child.nobound3-3nounverbs.PPMIweight NaN NaN False \n",
"child.nobound5-3all.PPMIno NaN NaN False \n",
"child.nobound5-3all.PPMIselection NaN NaN False \n",
"child.nobound5-3all.PPMIweight NaN NaN False \n",
"child.nobound5-3nounverbs.PPMIno NaN NaN False \n",
"child.nobound5-3nounverbs.PPMIselection NaN NaN False \n",
"child.nobound5-3nounverbs.PPMIweight NaN NaN False \n",
"child.nobound5-5all.PPMIno NaN NaN False \n",
"child.nobound5-5all.PPMIselection NaN NaN False \n",
"child.nobound5-5all.PPMIweight NaN NaN False \n",
"child.nobound5-5nounverbs.PPMIno NaN NaN False \n",
"child.nobound5-5nounverbs.PPMIselection NaN NaN False \n",
"child.nobound5-5nounverbs.PPMIweight NaN NaN False \n",
"\n",
" foc_base foc_context_words \\\n",
"child.LEMMAPATH.PPMIno LEMMAPATH 23 \n",
"child.LEMMAPATH.PPMIselection LEMMAPATH 20 \n",
"child.LEMMAPATH.PPMIweight LEMMAPATH 20 \n",
"child.LEMMAREL.PPMIno LEMMAREL 10 \n",
"child.LEMMAREL.PPMIselection LEMMAREL 10 \n",
"child.LEMMAREL.PPMIweight LEMMAREL 10 \n",
"child.bound3-3all.PPMIno BOW 19 \n",
"child.bound3-3all.PPMIselection BOW 14 \n",
"child.bound3-3all.PPMIweight BOW 14 \n",
"child.bound3-3nounverbs.PPMIno BOW 16 \n",
"child.bound3-3nounverbs.PPMIselection BOW 12 \n",
"child.bound3-3nounverbs.PPMIweight BOW 12 \n",
"child.bound5-3all.PPMIno BOW 19 \n",
"child.bound5-3all.PPMIselection BOW 14 \n",
"child.bound5-3all.PPMIweight BOW 14 \n",
"child.bound5-3nounverbs.PPMIno BOW 16 \n",
"child.bound5-3nounverbs.PPMIselection BOW 12 \n",
"child.bound5-3nounverbs.PPMIweight BOW 12 \n",
"child.bound5-5all.PPMIno BOW 20 \n",
"child.bound5-5all.PPMIselection BOW 14 \n",
"child.bound5-5all.PPMIweight BOW 14 \n",
"child.bound5-5nounverbs.PPMIno BOW 17 \n",
"child.bound5-5nounverbs.PPMIselection BOW 12 \n",
"child.bound5-5nounverbs.PPMIweight BOW 12 \n",
"child.nobound3-3all.PPMIno BOW 19 \n",
"child.nobound3-3all.PPMIselection BOW 14 \n",
"child.nobound3-3all.PPMIweight BOW 14 \n",
"child.nobound3-3nounverbs.PPMIno BOW 16 \n",
"child.nobound3-3nounverbs.PPMIselection BOW 12 \n",
"child.nobound3-3nounverbs.PPMIweight BOW 12 \n",
"child.nobound5-3all.PPMIno BOW 19 \n",
"child.nobound5-3all.PPMIselection BOW 14 \n",
"child.nobound5-3all.PPMIweight BOW 14 \n",
"child.nobound5-3nounverbs.PPMIno BOW 16 \n",
"child.nobound5-3nounverbs.PPMIselection BOW 12 \n",
"child.nobound5-3nounverbs.PPMIweight BOW 12 \n",
"child.nobound5-5all.PPMIno BOW 20 \n",
"child.nobound5-5all.PPMIselection BOW 14 \n",
"child.nobound5-5all.PPMIweight BOW 14 \n",
"child.nobound5-5nounverbs.PPMIno BOW 17 \n",
"child.nobound5-5nounverbs.PPMIselection BOW 12 \n",
"child.nobound5-5nounverbs.PPMIweight BOW 12 \n",
"\n",
" foc_pmi foc_pos foc_win tokens \n",
"child.LEMMAPATH.PPMIno no NaN NaN 40 \n",
"child.LEMMAPATH.PPMIselection selection NaN NaN 40 \n",
"child.LEMMAPATH.PPMIweight weight NaN NaN 40 \n",
"child.LEMMAREL.PPMIno no NaN NaN 32 \n",
"child.LEMMAREL.PPMIselection selection NaN NaN 26 \n",
"child.LEMMAREL.PPMIweight weight NaN NaN 26 \n",
"child.bound3-3all.PPMIno no all 3-3 40 \n",
"child.bound3-3all.PPMIselection selection all 3-3 40 \n",
"child.bound3-3all.PPMIweight weight all 3-3 40 \n",
"child.bound3-3nounverbs.PPMIno no nounverbs 3-3 40 \n",
"child.bound3-3nounverbs.PPMIselection selection nounverbs 3-3 34 \n",
"child.bound3-3nounverbs.PPMIweight weight nounverbs 3-3 34 \n",
"child.bound5-3all.PPMIno no all 5-3 40 \n",
"child.bound5-3all.PPMIselection selection all 5-3 40 \n",
"child.bound5-3all.PPMIweight weight all 5-3 40 \n",
"child.bound5-3nounverbs.PPMIno no nounverbs 5-3 40 \n",
"child.bound5-3nounverbs.PPMIselection selection nounverbs 5-3 35 \n",
"child.bound5-3nounverbs.PPMIweight weight nounverbs 5-3 35 \n",
"child.bound5-5all.PPMIno no all 5-5 40 \n",
"child.bound5-5all.PPMIselection selection all 5-5 40 \n",
"child.bound5-5all.PPMIweight weight all 5-5 40 \n",
"child.bound5-5nounverbs.PPMIno no nounverbs 5-5 40 \n",
"child.bound5-5nounverbs.PPMIselection selection nounverbs 5-5 35 \n",
"child.bound5-5nounverbs.PPMIweight weight nounverbs 5-5 35 \n",
"child.nobound3-3all.PPMIno no all 3-3 40 \n",
"child.nobound3-3all.PPMIselection selection all 3-3 40 \n",
"child.nobound3-3all.PPMIweight weight all 3-3 40 \n",
"child.nobound3-3nounverbs.PPMIno no nounverbs 3-3 40 \n",
"child.nobound3-3nounverbs.PPMIselection selection nounverbs 3-3 35 \n",
"child.nobound3-3nounverbs.PPMIweight weight nounverbs 3-3 35 \n",
"child.nobound5-3all.PPMIno no all 5-3 40 \n",
"child.nobound5-3all.PPMIselection selection all 5-3 40 \n",
"child.nobound5-3all.PPMIweight weight all 5-3 40 \n",
"child.nobound5-3nounverbs.PPMIno no nounverbs 5-3 40 \n",
"child.nobound5-3nounverbs.PPMIselection selection nounverbs 5-3 36 \n",
"child.nobound5-3nounverbs.PPMIweight weight nounverbs 5-3 36 \n",
"child.nobound5-5all.PPMIno no all 5-5 40 \n",
"child.nobound5-5all.PPMIselection selection all 5-5 40 \n",
"child.nobound5-5all.PPMIweight weight all 5-5 40 \n",
"child.nobound5-5nounverbs.PPMIno no nounverbs 5-5 40 \n",
"child.nobound5-5nounverbs.PPMIselection selection nounverbs 5-5 36 \n",
"child.nobound5-5nounverbs.PPMIweight weight nounverbs 5-5 36 "
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# new model register\n",
"weight_data[\"model_register\"]\n",
"# weight_data[\"model_register\"].to_csv(f\"{output_path}/registers/{type_name}.focmodels.tsv\", sep = '\\t',\n",
"# index_label = \"_model\")"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" _count.child.LEMMAPATH.PPMIno | \n",
" _count.child.LEMMAPATH.PPMIselection | \n",
" _count.child.LEMMAPATH.PPMIweight | \n",
" _count.child.LEMMAREL.PPMIno | \n",
" _count.child.LEMMAREL.PPMIselection | \n",
" _count.child.LEMMAREL.PPMIweight | \n",
" _count.child.bound3-3all.PPMIno | \n",
" _count.child.bound3-3all.PPMIselection | \n",
" _count.child.bound3-3all.PPMIweight | \n",
" _count.child.bound3-3nounverbs.PPMIno | \n",
" ... | \n",
" _cws.child.nobound5-3all.PPMIweight | \n",
" _cws.child.nobound5-3nounverbs.PPMIno | \n",
" _cws.child.nobound5-3nounverbs.PPMIselection | \n",
" _cws.child.nobound5-3nounverbs.PPMIweight | \n",
" _cws.child.nobound5-5all.PPMIno | \n",
" _cws.child.nobound5-5all.PPMIselection | \n",
" _cws.child.nobound5-5all.PPMIweight | \n",
" _cws.child.nobound5-5nounverbs.PPMIno | \n",
" _cws.child.nobound5-5nounverbs.PPMIselection | \n",
" _cws.child.nobound5-5nounverbs.PPMIweight | \n",
"
\n",
" \n",
" \n",
" \n",
" boy/N/StanfDepSents.1/9 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1 | \n",
" ... | \n",
" look/V;at/I;the/D | \n",
" girl/N;look/V | \n",
" look/V | \n",
" look/V | \n",
" at/I;girl/N;healthy/J;look/V;the/D | \n",
" look/V;at/I;the/D | \n",
" look/V;at/I;the/D | \n",
" girl/N;look/V | \n",
" look/V | \n",
" look/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.12/12 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" 2 | \n",
" ... | \n",
" the/D;be/V | \n",
" be/V;eat/V;like/V;year/N | \n",
" like/V;be/V | \n",
" like/V;be/V | \n",
" an/D;apple/N;be/V;eat/V;tasty/J;the/D;year/N | \n",
" an/D;the/D;be/V | \n",
" an/D;the/D;be/V | \n",
" apple/N;be/V;eat/V;like/V;year/N | \n",
" like/V;be/V | \n",
" like/V;be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.2/12 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" 1.0 | \n",
" NaN | \n",
" NaN | \n",
" 3 | \n",
" 1 | \n",
" 1 | \n",
" 1 | \n",
" ... | \n",
" by/I;the/D | \n",
" boy/N;eat/V | \n",
" NaN | \n",
" NaN | \n",
" apple/N;boy/N;by/I;eat/V;food/N;healthy/J;the/D | \n",
" by/I;the/D | \n",
" by/I;the/D | \n",
" apple/N;boy/N;eat/V;food/N | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.2/8 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 1 | \n",
" ... | \n",
" by/I;the/D;be/V | \n",
" apple/N;be/V;boy/N;eat/V | \n",
" be/V | \n",
" be/V | \n",
" apple/N;be/V;boy/N;by/I;eat/V;healthy/J;the/D | \n",
" by/I;the/D;be/V | \n",
" by/I;the/D;be/V | \n",
" apple/N;be/V;boy/N;eat/V | \n",
" be/V | \n",
" be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.3/18 | \n",
" 4 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" NaN | \n",
" NaN | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 1 | \n",
" ... | \n",
" and/C;the/D;be/V | \n",
" apple/N;be/V;eat/V;girl/N;have/V | \n",
" have/V;be/V | \n",
" have/V;be/V | \n",
" a/D;and/C;apple/N;be/V;eat/V;girl/N;the/D | \n",
" and/C;the/D;be/V | \n",
" and/C;the/D;be/V | \n",
" apple/N;be/V;eat/V;girl/N;have/V | \n",
" have/V;be/V | \n",
" have/V;be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.3/3 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" 1.0 | \n",
" NaN | \n",
" NaN | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 1 | \n",
" ... | \n",
" an/D;the/D | \n",
" eat/V | \n",
" NaN | \n",
" NaN | \n",
" an/D;apple/N;eat/V;the/D | \n",
" an/D;the/D | \n",
" an/D;the/D | \n",
" apple/N;eat/V | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.4/22 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 3 | \n",
" ... | \n",
" give/V;the/D | \n",
" apple/N;baby/N;give/V;have/V | \n",
" baby/N;give/V;have/V | \n",
" baby/N;give/V;have/V | \n",
" apple/N;give/V;the/D | \n",
" give/V;the/D | \n",
" give/V;the/D | \n",
" apple/N;baby/N;give/V;have/V | \n",
" baby/N;give/V;have/V | \n",
" baby/N;give/V;have/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.4/3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1 | \n",
" 1 | \n",
" 1 | \n",
" 1 | \n",
" ... | \n",
" the/D | \n",
" say/V | \n",
" say/V | \n",
" say/V | \n",
" girl/N;the/D | \n",
" the/D | \n",
" the/D | \n",
" girl/N;say/V | \n",
" say/V | \n",
" say/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.5/11 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" 1.0 | \n",
" NaN | \n",
" NaN | \n",
" 4 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" look/V;and/C;the/D | \n",
" eat/V;look/V;sit/V | \n",
" look/V | \n",
" look/V | \n",
" and/C;eat/V;look/V;sit/V;tasty/J;the/D | \n",
" look/V;and/C;the/D | \n",
" look/V;and/C;the/D | \n",
" eat/V;look/V;sit/V | \n",
" look/V | \n",
" look/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.5/25 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1 | \n",
" ... | \n",
" by/I;give/V;the/D;be/V | \n",
" be/V;eat/V;give/V | \n",
" give/V;be/V | \n",
" give/V;be/V | \n",
" be/V;by/I;eat/V;give/V;the/D | \n",
" by/I;give/V;the/D;be/V | \n",
" by/I;give/V;the/D;be/V | \n",
" be/V;eat/V;give/V | \n",
" give/V;be/V | \n",
" give/V;be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.5/3 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" 1.0 | \n",
" NaN | \n",
" NaN | \n",
" 4 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" and/C;the/D | \n",
" eat/V;sit/V | \n",
" NaN | \n",
" NaN | \n",
" and/C;eat/V;sit/V;the/D | \n",
" and/C;the/D | \n",
" and/C;the/D | \n",
" eat/V;sit/V | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.6/14 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 1 | \n",
" ... | \n",
" the/D;be/V | \n",
" apple/N;be/V | \n",
" be/V | \n",
" be/V | \n",
" a/D;apple/N;be/V;girl/N;healthy/J;tasty/J;the/D | \n",
" the/D;be/V | \n",
" the/D;be/V | \n",
" apple/N;be/V;girl/N | \n",
" be/V | \n",
" be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.6/3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" give/V;the/D | \n",
" girl/N;give/V | \n",
" give/V | \n",
" give/V | \n",
" a/D;girl/N;give/V;tasty/J;the/D | \n",
" give/V;the/D | \n",
" give/V;the/D | \n",
" girl/N;give/V | \n",
" give/V | \n",
" give/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.7/14 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" the/D;be/V | \n",
" apple/N;baby/N;be/V;girl/N;year/N | \n",
" baby/N;be/V | \n",
" baby/N;be/V | \n",
" a/D;apple/N;be/V;girl/N;old/J;the/D;year/N | \n",
" old/J;the/D;be/V | \n",
" old/J;the/D;be/V | \n",
" apple/N;baby/N;be/V;girl/N;year/N | \n",
" baby/N;be/V | \n",
" baby/N;be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.7/22 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" 2 | \n",
" ... | \n",
" old/J;the/D;be/V | \n",
" ask/V;be/V;girl/N;year/N | \n",
" ask/V;be/V | \n",
" ask/V;be/V | \n",
" be/V;eat/V;girl/N;old/J;the/D;year/N | \n",
" old/J;the/D;be/V | \n",
" old/J;the/D;be/V | \n",
" ask/V;be/V;eat/V;girl/N;year/N | \n",
" ask/V;be/V | \n",
" ask/V;be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.7/4 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 4 | \n",
" 3 | \n",
" 3 | \n",
" 2 | \n",
" ... | \n",
" old/J;give/V;the/D | \n",
" girl/N;give/V | \n",
" give/V | \n",
" give/V | \n",
" a/D;girl/N;give/V;old/J;the/D | \n",
" old/J;give/V;the/D | \n",
" old/J;give/V;the/D | \n",
" baby/N;girl/N;give/V | \n",
" baby/N;give/V | \n",
" baby/N;give/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.8/11 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1 | \n",
" ... | \n",
" look/V;at/I;the/D | \n",
" apple/N;look/V;sit/V | \n",
" look/V | \n",
" look/V | \n",
" apple/N;at/I;girl/N;look/V;sit/V;the/D | \n",
" look/V;at/I;the/D | \n",
" look/V;at/I;the/D | \n",
" apple/N;girl/N;look/V;sit/V | \n",
" look/V | \n",
" look/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.8/22 | \n",
" 5 | \n",
" 3 | \n",
" 3 | \n",
" 1.0 | \n",
" NaN | \n",
" NaN | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 1 | \n",
" ... | \n",
" and/C;the/D | \n",
" apple/N;girl/N | \n",
" NaN | \n",
" NaN | \n",
" and/C;apple/N;eat/V;girl/N;the/D | \n",
" and/C;the/D | \n",
" and/C;the/D | \n",
" apple/N;eat/V;girl/N | \n",
" NaN | \n",
" NaN | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.9/18 | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 4 | \n",
" 3 | \n",
" 3 | \n",
" 2 | \n",
" ... | \n",
" look/V;old/J;at/I;the/D | \n",
" girl/N;house/N;look/V | \n",
" look/V;house/N | \n",
" look/V;house/N | \n",
" a/D;apple/N;at/I;be/V;girl/N;look/V;old/J;the/D | \n",
" look/V;old/J;at/I;the/D;be/V | \n",
" look/V;old/J;at/I;the/D;be/V | \n",
" apple/N;be/V;girl/N;house/N;look/V | \n",
" look/V;house/N;be/V | \n",
" look/V;house/N;be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.9/28 | \n",
" 1 | \n",
" 1 | \n",
" 1 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" 1 | \n",
" ... | \n",
" be/V | \n",
" apple/N;be/V;house/N | \n",
" house/N;be/V | \n",
" house/N;be/V | \n",
" apple/N;be/V;healthy/J | \n",
" be/V | \n",
" be/V | \n",
" apple/N;be/V;house/N | \n",
" house/N;be/V | \n",
" house/N;be/V | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.9/5 | \n",
" 4 | \n",
" 4 | \n",
" 4 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 5 | \n",
" 5 | \n",
" 5 | \n",
" 2 | \n",
" ... | \n",
" old/J;give/V;an/D;the/D;be/V | \n",
" be/V;give/V | \n",
" give/V;be/V | \n",
" give/V;be/V | \n",
" an/D;apple/N;be/V;give/V;old/J;the/D | \n",
" old/J;give/V;an/D;the/D;be/V | \n",
" old/J;give/V;an/D;the/D;be/V | \n",
" apple/N;be/V;give/V | \n",
" give/V;be/V | \n",
" give/V;be/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.1/13 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 4 | \n",
" 4 | \n",
" 4 | \n",
" 2 | \n",
" ... | \n",
" eat/V;look/V;at/I;the/D | \n",
" boy/N;eat/V;look/V | \n",
" eat/V;look/V | \n",
" eat/V;look/V | \n",
" at/I;boy/N;eat/V;girl/N;look/V;the/D | \n",
" eat/V;look/V;at/I;the/D | \n",
" eat/V;look/V;at/I;the/D | \n",
" boy/N;eat/V;girl/N;look/V | \n",
" eat/V;look/V | \n",
" eat/V;look/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.1/20 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1 | \n",
" ... | \n",
" eat/V;healthy/J;the/D | \n",
" eat/V;girl/N | \n",
" eat/V | \n",
" eat/V | \n",
" eat/V;food/N;girl/N;healthy/J;the/D | \n",
" eat/V;healthy/J;the/D | \n",
" eat/V;healthy/J;the/D | \n",
" eat/V;food/N;girl/N | \n",
" eat/V | \n",
" eat/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.1/3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1 | \n",
" ... | \n",
" look/V;healthy/J;the/D | \n",
" look/V | \n",
" look/V | \n",
" look/V | \n",
" boy/N;healthy/J;look/V;the/D | \n",
" look/V;healthy/J;the/D | \n",
" look/V;healthy/J;the/D | \n",
" boy/N;look/V | \n",
" look/V | \n",
" look/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.11/19 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" eat/V;give/V;the/D | \n",
" apple/N;eat/V;give/V | \n",
" eat/V;give/V | \n",
" eat/V;give/V | \n",
" ,/,;apple/N;eat/V;give/V;the/D;year/N | \n",
" eat/V;,/,;give/V;the/D | \n",
" eat/V;,/,;give/V;the/D | \n",
" apple/N;eat/V;give/V;year/N | \n",
" eat/V;give/V | \n",
" eat/V;give/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.11/28 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 6 | \n",
" 5 | \n",
" 5 | \n",
" 2 | \n",
" ... | \n",
" a/D;look/V;,/,;at/I;the/D | \n",
" look/V;year/N | \n",
" look/V | \n",
" look/V | \n",
" ,/,;a/D;at/I;boy/N;look/V;the/D;year/N | \n",
" a/D;look/V;,/,;at/I;the/D | \n",
" a/D;look/V;,/,;at/I;the/D | \n",
" boy/N;look/V;year/N | \n",
" look/V | \n",
" look/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.11/3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1 | \n",
" ... | \n",
" look/V;at/I;the/D | \n",
" look/V | \n",
" look/V | \n",
" look/V | \n",
" at/I;boy/N;look/V;the/D | \n",
" look/V;at/I;the/D | \n",
" look/V;at/I;the/D | \n",
" boy/N;look/V | \n",
" look/V | \n",
" look/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.2/29 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 1 | \n",
" ... | \n",
" eat/V;,/,;the/D | \n",
" be/V;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
" ,/,;be/V;by/I;eat/V;the/D | \n",
" eat/V;,/,;the/D | \n",
" eat/V;,/,;the/D | \n",
" be/V;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.3/21 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 6 | \n",
" 4 | \n",
" 4 | \n",
" 2 | \n",
" ... | \n",
" eat/V;a/D;healthy/J;the/D | \n",
" boy/N;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
" a/D;and/C;boy/N;eat/V;healthy/J;tasty/J;the/D | \n",
" eat/V;a/D;healthy/J;the/D | \n",
" eat/V;a/D;healthy/J;the/D | \n",
" boy/N;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.4/15 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" eat/V;the/D | \n",
" apple/N;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
" apple/N;eat/V;the/D | \n",
" eat/V;the/D | \n",
" eat/V;the/D | \n",
" apple/N;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.4/7 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" eat/V;the/D | \n",
" boy/N;eat/V;say/V | \n",
" eat/V;say/V | \n",
" eat/V;say/V | \n",
" apple/N;boy/N;eat/V;the/D | \n",
" eat/V;the/D | \n",
" eat/V;the/D | \n",
" apple/N;boy/N;eat/V;say/V | \n",
" eat/V;say/V | \n",
" eat/V;say/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.5/19 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 4 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" ... | \n",
" eat/V;look/V;give/V;the/D | \n",
" be/V;eat/V;give/V;look/V | \n",
" eat/V;look/V;give/V | \n",
" eat/V;look/V;give/V | \n",
" be/V;by/I;eat/V;give/V;look/V;tasty/J;the/D | \n",
" eat/V;look/V;give/V;the/D | \n",
" eat/V;look/V;give/V;the/D | \n",
" be/V;eat/V;give/V;look/V | \n",
" eat/V;look/V;give/V | \n",
" eat/V;look/V;give/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.6/21 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" ... | \n",
" eat/V;healthy/J;the/D | \n",
" be/V;boy/N;do/V;eat/V | \n",
" eat/V;do/V | \n",
" eat/V;do/V | \n",
" be/V;boy/N;eat/V;healthy/J;the/D | \n",
" eat/V;healthy/J;the/D | \n",
" eat/V;healthy/J;the/D | \n",
" be/V;boy/N;do/V;eat/V | \n",
" eat/V;do/V | \n",
" eat/V;do/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.6/6 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 6 | \n",
" 4 | \n",
" 4 | \n",
" 2 | \n",
" ... | \n",
" a/D;healthy/J;give/V;the/D | \n",
" boy/N;give/V | \n",
" give/V | \n",
" give/V | \n",
" a/D;apple/N;boy/N;give/V;healthy/J;tasty/J;the/D | \n",
" a/D;healthy/J;give/V;the/D | \n",
" a/D;healthy/J;give/V;the/D | \n",
" apple/N;boy/N;give/V | \n",
" give/V | \n",
" give/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.7/25 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 4 | \n",
" 2 | \n",
" 2 | \n",
" 4 | \n",
" ... | \n",
" eat/V;old/J;the/D | \n",
" apple/N;ask/V;boy/N;eat/V | \n",
" eat/V;ask/V | \n",
" eat/V;ask/V | \n",
" apple/N;boy/N;eat/V;old/J;the/D | \n",
" eat/V;old/J;the/D | \n",
" eat/V;old/J;the/D | \n",
" apple/N;ask/V;boy/N;eat/V | \n",
" eat/V;ask/V | \n",
" eat/V;ask/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.7/7 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 5 | \n",
" 3 | \n",
" 3 | \n",
" 4 | \n",
" ... | \n",
" a/D;old/J;give/V;the/D | \n",
" apple/N;baby/N;boy/N;give/V | \n",
" baby/N;give/V | \n",
" baby/N;give/V | \n",
" a/D;apple/N;boy/N;give/V;old/J;the/D | \n",
" a/D;old/J;give/V;the/D | \n",
" a/D;old/J;give/V;the/D | \n",
" apple/N;baby/N;boy/N;give/V | \n",
" baby/N;give/V | \n",
" baby/N;give/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.8/15 | \n",
" 3 | \n",
" 2 | \n",
" 2 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 4 | \n",
" 3 | \n",
" 3 | \n",
" 2 | \n",
" ... | \n",
" look/V;at/I;the/D | \n",
" apple/N;boy/N;look/V | \n",
" look/V | \n",
" look/V | \n",
" apple/N;at/I;boy/N;look/V;the/D | \n",
" look/V;at/I;the/D | \n",
" look/V;at/I;the/D | \n",
" apple/N;boy/N;look/V | \n",
" look/V | \n",
" look/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.8/25 | \n",
" 2 | \n",
" 1 | \n",
" 1 | \n",
" NaN | \n",
" NaN | \n",
" NaN | \n",
" 5 | \n",
" 2 | \n",
" 2 | \n",
" 3 | \n",
" ... | \n",
" eat/V;the/D | \n",
" apple/N;boy/N;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
" and/C;apple/N;boy/N;eat/V;the/D | \n",
" eat/V;the/D | \n",
" eat/V;the/D | \n",
" apple/N;boy/N;eat/V | \n",
" eat/V | \n",
" eat/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.8/3 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 2 | \n",
" 2 | \n",
" 2 | \n",
" 1 | \n",
" ... | \n",
" sit/V;the/D | \n",
" sit/V | \n",
" sit/V | \n",
" sit/V | \n",
" apple/N;sit/V;the/D | \n",
" sit/V;the/D | \n",
" sit/V;the/D | \n",
" apple/N;sit/V | \n",
" sit/V | \n",
" sit/V | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14 | \n",
" 3 | \n",
" 3 | \n",
" 3 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 1.0 | \n",
" 5 | \n",
" 5 | \n",
" 5 | \n",
" 1 | \n",
" ... | \n",
" a/D;look/V;old/J;at/I;give/V;the/D | \n",
" apple/N;give/V;look/V | \n",
" look/V;give/V | \n",
" look/V;give/V | \n",
" a/D;an/D;apple/N;at/I;boy/N;give/V;look/V;old/... | \n",
" a/D;look/V;old/J;at/I;give/V;the/D | \n",
" a/D;look/V;old/J;at/I;give/V;the/D | \n",
" apple/N;boy/N;give/V;look/V | \n",
" look/V;give/V | \n",
" look/V;give/V | \n",
"
\n",
" \n",
"
\n",
"
40 rows × 84 columns
\n",
"
"
],
"text/plain": [
" _count.child.LEMMAPATH.PPMIno \\\n",
"boy/N/StanfDepSents.1/9 2 \n",
"boy/N/StanfDepSents.12/12 2 \n",
"boy/N/StanfDepSents.2/12 2 \n",
"boy/N/StanfDepSents.2/8 2 \n",
"boy/N/StanfDepSents.3/18 4 \n",
"boy/N/StanfDepSents.3/3 2 \n",
"boy/N/StanfDepSents.4/22 2 \n",
"boy/N/StanfDepSents.4/3 2 \n",
"boy/N/StanfDepSents.5/11 2 \n",
"boy/N/StanfDepSents.5/25 2 \n",
"boy/N/StanfDepSents.5/3 2 \n",
"boy/N/StanfDepSents.6/14 2 \n",
"boy/N/StanfDepSents.6/3 2 \n",
"boy/N/StanfDepSents.7/14 2 \n",
"boy/N/StanfDepSents.7/22 2 \n",
"boy/N/StanfDepSents.7/4 3 \n",
"boy/N/StanfDepSents.8/11 2 \n",
"boy/N/StanfDepSents.8/22 5 \n",
"boy/N/StanfDepSents.9/18 3 \n",
"boy/N/StanfDepSents.9/28 1 \n",
"boy/N/StanfDepSents.9/5 4 \n",
"girl/N/StanfDepSents.1/13 2 \n",
"girl/N/StanfDepSents.1/20 2 \n",
"girl/N/StanfDepSents.1/3 2 \n",
"girl/N/StanfDepSents.11/19 2 \n",
"girl/N/StanfDepSents.11/28 2 \n",
"girl/N/StanfDepSents.11/3 2 \n",
"girl/N/StanfDepSents.2/29 2 \n",
"girl/N/StanfDepSents.3/21 2 \n",
"girl/N/StanfDepSents.4/15 2 \n",
"girl/N/StanfDepSents.4/7 2 \n",
"girl/N/StanfDepSents.5/19 2 \n",
"girl/N/StanfDepSents.6/21 2 \n",
"girl/N/StanfDepSents.6/6 2 \n",
"girl/N/StanfDepSents.7/25 2 \n",
"girl/N/StanfDepSents.7/7 2 \n",
"girl/N/StanfDepSents.8/15 3 \n",
"girl/N/StanfDepSents.8/25 2 \n",
"girl/N/StanfDepSents.8/3 2 \n",
"girl/N/StanfDepSents.9/14 3 \n",
"\n",
" _count.child.LEMMAPATH.PPMIselection \\\n",
"boy/N/StanfDepSents.1/9 2 \n",
"boy/N/StanfDepSents.12/12 2 \n",
"boy/N/StanfDepSents.2/12 1 \n",
"boy/N/StanfDepSents.2/8 2 \n",
"boy/N/StanfDepSents.3/18 2 \n",
"boy/N/StanfDepSents.3/3 1 \n",
"boy/N/StanfDepSents.4/22 2 \n",
"boy/N/StanfDepSents.4/3 2 \n",
"boy/N/StanfDepSents.5/11 1 \n",
"boy/N/StanfDepSents.5/25 2 \n",
"boy/N/StanfDepSents.5/3 1 \n",
"boy/N/StanfDepSents.6/14 2 \n",
"boy/N/StanfDepSents.6/3 2 \n",
"boy/N/StanfDepSents.7/14 2 \n",
"boy/N/StanfDepSents.7/22 2 \n",
"boy/N/StanfDepSents.7/4 3 \n",
"boy/N/StanfDepSents.8/11 2 \n",
"boy/N/StanfDepSents.8/22 3 \n",
"boy/N/StanfDepSents.9/18 2 \n",
"boy/N/StanfDepSents.9/28 1 \n",
"boy/N/StanfDepSents.9/5 4 \n",
"girl/N/StanfDepSents.1/13 2 \n",
"girl/N/StanfDepSents.1/20 2 \n",
"girl/N/StanfDepSents.1/3 2 \n",
"girl/N/StanfDepSents.11/19 2 \n",
"girl/N/StanfDepSents.11/28 2 \n",
"girl/N/StanfDepSents.11/3 2 \n",
"girl/N/StanfDepSents.2/29 1 \n",
"girl/N/StanfDepSents.3/21 1 \n",
"girl/N/StanfDepSents.4/15 2 \n",
"girl/N/StanfDepSents.4/7 2 \n",
"girl/N/StanfDepSents.5/19 2 \n",
"girl/N/StanfDepSents.6/21 2 \n",
"girl/N/StanfDepSents.6/6 2 \n",
"girl/N/StanfDepSents.7/25 2 \n",
"girl/N/StanfDepSents.7/7 2 \n",
"girl/N/StanfDepSents.8/15 2 \n",
"girl/N/StanfDepSents.8/25 1 \n",
"girl/N/StanfDepSents.8/3 2 \n",
"girl/N/StanfDepSents.9/14 3 \n",
"\n",
" _count.child.LEMMAPATH.PPMIweight \\\n",
"boy/N/StanfDepSents.1/9 2 \n",
"boy/N/StanfDepSents.12/12 2 \n",
"boy/N/StanfDepSents.2/12 1 \n",
"boy/N/StanfDepSents.2/8 2 \n",
"boy/N/StanfDepSents.3/18 2 \n",
"boy/N/StanfDepSents.3/3 1 \n",
"boy/N/StanfDepSents.4/22 2 \n",
"boy/N/StanfDepSents.4/3 2 \n",
"boy/N/StanfDepSents.5/11 1 \n",
"boy/N/StanfDepSents.5/25 2 \n",
"boy/N/StanfDepSents.5/3 1 \n",
"boy/N/StanfDepSents.6/14 2 \n",
"boy/N/StanfDepSents.6/3 2 \n",
"boy/N/StanfDepSents.7/14 2 \n",
"boy/N/StanfDepSents.7/22 2 \n",
"boy/N/StanfDepSents.7/4 3 \n",
"boy/N/StanfDepSents.8/11 2 \n",
"boy/N/StanfDepSents.8/22 3 \n",
"boy/N/StanfDepSents.9/18 2 \n",
"boy/N/StanfDepSents.9/28 1 \n",
"boy/N/StanfDepSents.9/5 4 \n",
"girl/N/StanfDepSents.1/13 2 \n",
"girl/N/StanfDepSents.1/20 2 \n",
"girl/N/StanfDepSents.1/3 2 \n",
"girl/N/StanfDepSents.11/19 2 \n",
"girl/N/StanfDepSents.11/28 2 \n",
"girl/N/StanfDepSents.11/3 2 \n",
"girl/N/StanfDepSents.2/29 1 \n",
"girl/N/StanfDepSents.3/21 1 \n",
"girl/N/StanfDepSents.4/15 2 \n",
"girl/N/StanfDepSents.4/7 2 \n",
"girl/N/StanfDepSents.5/19 2 \n",
"girl/N/StanfDepSents.6/21 2 \n",
"girl/N/StanfDepSents.6/6 2 \n",
"girl/N/StanfDepSents.7/25 2 \n",
"girl/N/StanfDepSents.7/7 2 \n",
"girl/N/StanfDepSents.8/15 2 \n",
"girl/N/StanfDepSents.8/25 1 \n",
"girl/N/StanfDepSents.8/3 2 \n",
"girl/N/StanfDepSents.9/14 3 \n",
"\n",
" _count.child.LEMMAREL.PPMIno \\\n",
"boy/N/StanfDepSents.1/9 1.0 \n",
"boy/N/StanfDepSents.12/12 1.0 \n",
"boy/N/StanfDepSents.2/12 1.0 \n",
"boy/N/StanfDepSents.2/8 NaN \n",
"boy/N/StanfDepSents.3/18 1.0 \n",
"boy/N/StanfDepSents.3/3 1.0 \n",
"boy/N/StanfDepSents.4/22 1.0 \n",
"boy/N/StanfDepSents.4/3 1.0 \n",
"boy/N/StanfDepSents.5/11 1.0 \n",
"boy/N/StanfDepSents.5/25 NaN \n",
"boy/N/StanfDepSents.5/3 1.0 \n",
"boy/N/StanfDepSents.6/14 1.0 \n",
"boy/N/StanfDepSents.6/3 1.0 \n",
"boy/N/StanfDepSents.7/14 1.0 \n",
"boy/N/StanfDepSents.7/22 1.0 \n",
"boy/N/StanfDepSents.7/4 1.0 \n",
"boy/N/StanfDepSents.8/11 1.0 \n",
"boy/N/StanfDepSents.8/22 1.0 \n",
"boy/N/StanfDepSents.9/18 1.0 \n",
"boy/N/StanfDepSents.9/28 1.0 \n",
"boy/N/StanfDepSents.9/5 1.0 \n",
"girl/N/StanfDepSents.1/13 1.0 \n",
"girl/N/StanfDepSents.1/20 1.0 \n",
"girl/N/StanfDepSents.1/3 1.0 \n",
"girl/N/StanfDepSents.11/19 1.0 \n",
"girl/N/StanfDepSents.11/28 1.0 \n",
"girl/N/StanfDepSents.11/3 1.0 \n",
"girl/N/StanfDepSents.2/29 NaN \n",
"girl/N/StanfDepSents.3/21 NaN \n",
"girl/N/StanfDepSents.4/15 1.0 \n",
"girl/N/StanfDepSents.4/7 1.0 \n",
"girl/N/StanfDepSents.5/19 1.0 \n",
"girl/N/StanfDepSents.6/21 1.0 \n",
"girl/N/StanfDepSents.6/6 NaN \n",
"girl/N/StanfDepSents.7/25 1.0 \n",
"girl/N/StanfDepSents.7/7 NaN \n",
"girl/N/StanfDepSents.8/15 NaN \n",
"girl/N/StanfDepSents.8/25 NaN \n",
"girl/N/StanfDepSents.8/3 1.0 \n",
"girl/N/StanfDepSents.9/14 1.0 \n",
"\n",
" _count.child.LEMMAREL.PPMIselection \\\n",
"boy/N/StanfDepSents.1/9 1.0 \n",
"boy/N/StanfDepSents.12/12 1.0 \n",
"boy/N/StanfDepSents.2/12 NaN \n",
"boy/N/StanfDepSents.2/8 NaN \n",
"boy/N/StanfDepSents.3/18 NaN \n",
"boy/N/StanfDepSents.3/3 NaN \n",
"boy/N/StanfDepSents.4/22 1.0 \n",
"boy/N/StanfDepSents.4/3 1.0 \n",
"boy/N/StanfDepSents.5/11 NaN \n",
"boy/N/StanfDepSents.5/25 NaN \n",
"boy/N/StanfDepSents.5/3 NaN \n",
"boy/N/StanfDepSents.6/14 1.0 \n",
"boy/N/StanfDepSents.6/3 1.0 \n",
"boy/N/StanfDepSents.7/14 1.0 \n",
"boy/N/StanfDepSents.7/22 1.0 \n",
"boy/N/StanfDepSents.7/4 1.0 \n",
"boy/N/StanfDepSents.8/11 1.0 \n",
"boy/N/StanfDepSents.8/22 NaN \n",
"boy/N/StanfDepSents.9/18 1.0 \n",
"boy/N/StanfDepSents.9/28 1.0 \n",
"boy/N/StanfDepSents.9/5 1.0 \n",
"girl/N/StanfDepSents.1/13 1.0 \n",
"girl/N/StanfDepSents.1/20 1.0 \n",
"girl/N/StanfDepSents.1/3 1.0 \n",
"girl/N/StanfDepSents.11/19 1.0 \n",
"girl/N/StanfDepSents.11/28 1.0 \n",
"girl/N/StanfDepSents.11/3 1.0 \n",
"girl/N/StanfDepSents.2/29 NaN \n",
"girl/N/StanfDepSents.3/21 NaN \n",
"girl/N/StanfDepSents.4/15 1.0 \n",
"girl/N/StanfDepSents.4/7 1.0 \n",
"girl/N/StanfDepSents.5/19 1.0 \n",
"girl/N/StanfDepSents.6/21 1.0 \n",
"girl/N/StanfDepSents.6/6 NaN \n",
"girl/N/StanfDepSents.7/25 1.0 \n",
"girl/N/StanfDepSents.7/7 NaN \n",
"girl/N/StanfDepSents.8/15 NaN \n",
"girl/N/StanfDepSents.8/25 NaN \n",
"girl/N/StanfDepSents.8/3 1.0 \n",
"girl/N/StanfDepSents.9/14 1.0 \n",
"\n",
" _count.child.LEMMAREL.PPMIweight \\\n",
"boy/N/StanfDepSents.1/9 1.0 \n",
"boy/N/StanfDepSents.12/12 1.0 \n",
"boy/N/StanfDepSents.2/12 NaN \n",
"boy/N/StanfDepSents.2/8 NaN \n",
"boy/N/StanfDepSents.3/18 NaN \n",
"boy/N/StanfDepSents.3/3 NaN \n",
"boy/N/StanfDepSents.4/22 1.0 \n",
"boy/N/StanfDepSents.4/3 1.0 \n",
"boy/N/StanfDepSents.5/11 NaN \n",
"boy/N/StanfDepSents.5/25 NaN \n",
"boy/N/StanfDepSents.5/3 NaN \n",
"boy/N/StanfDepSents.6/14 1.0 \n",
"boy/N/StanfDepSents.6/3 1.0 \n",
"boy/N/StanfDepSents.7/14 1.0 \n",
"boy/N/StanfDepSents.7/22 1.0 \n",
"boy/N/StanfDepSents.7/4 1.0 \n",
"boy/N/StanfDepSents.8/11 1.0 \n",
"boy/N/StanfDepSents.8/22 NaN \n",
"boy/N/StanfDepSents.9/18 1.0 \n",
"boy/N/StanfDepSents.9/28 1.0 \n",
"boy/N/StanfDepSents.9/5 1.0 \n",
"girl/N/StanfDepSents.1/13 1.0 \n",
"girl/N/StanfDepSents.1/20 1.0 \n",
"girl/N/StanfDepSents.1/3 1.0 \n",
"girl/N/StanfDepSents.11/19 1.0 \n",
"girl/N/StanfDepSents.11/28 1.0 \n",
"girl/N/StanfDepSents.11/3 1.0 \n",
"girl/N/StanfDepSents.2/29 NaN \n",
"girl/N/StanfDepSents.3/21 NaN \n",
"girl/N/StanfDepSents.4/15 1.0 \n",
"girl/N/StanfDepSents.4/7 1.0 \n",
"girl/N/StanfDepSents.5/19 1.0 \n",
"girl/N/StanfDepSents.6/21 1.0 \n",
"girl/N/StanfDepSents.6/6 NaN \n",
"girl/N/StanfDepSents.7/25 1.0 \n",
"girl/N/StanfDepSents.7/7 NaN \n",
"girl/N/StanfDepSents.8/15 NaN \n",
"girl/N/StanfDepSents.8/25 NaN \n",
"girl/N/StanfDepSents.8/3 1.0 \n",
"girl/N/StanfDepSents.9/14 1.0 \n",
"\n",
" _count.child.bound3-3all.PPMIno \\\n",
"boy/N/StanfDepSents.1/9 3 \n",
"boy/N/StanfDepSents.12/12 2 \n",
"boy/N/StanfDepSents.2/12 3 \n",
"boy/N/StanfDepSents.2/8 3 \n",
"boy/N/StanfDepSents.3/18 3 \n",
"boy/N/StanfDepSents.3/3 3 \n",
"boy/N/StanfDepSents.4/22 2 \n",
"boy/N/StanfDepSents.4/3 1 \n",
"boy/N/StanfDepSents.5/11 4 \n",
"boy/N/StanfDepSents.5/25 3 \n",
"boy/N/StanfDepSents.5/3 4 \n",
"boy/N/StanfDepSents.6/14 3 \n",
"boy/N/StanfDepSents.6/3 3 \n",
"boy/N/StanfDepSents.7/14 3 \n",
"boy/N/StanfDepSents.7/22 2 \n",
"boy/N/StanfDepSents.7/4 4 \n",
"boy/N/StanfDepSents.8/11 3 \n",
"boy/N/StanfDepSents.8/22 3 \n",
"boy/N/StanfDepSents.9/18 4 \n",
"boy/N/StanfDepSents.9/28 2 \n",
"boy/N/StanfDepSents.9/5 5 \n",
"girl/N/StanfDepSents.1/13 4 \n",
"girl/N/StanfDepSents.1/20 3 \n",
"girl/N/StanfDepSents.1/3 3 \n",
"girl/N/StanfDepSents.11/19 3 \n",
"girl/N/StanfDepSents.11/28 6 \n",
"girl/N/StanfDepSents.11/3 3 \n",
"girl/N/StanfDepSents.2/29 3 \n",
"girl/N/StanfDepSents.3/21 6 \n",
"girl/N/StanfDepSents.4/15 3 \n",
"girl/N/StanfDepSents.4/7 2 \n",
"girl/N/StanfDepSents.5/19 4 \n",
"girl/N/StanfDepSents.6/21 2 \n",
"girl/N/StanfDepSents.6/6 6 \n",
"girl/N/StanfDepSents.7/25 4 \n",
"girl/N/StanfDepSents.7/7 5 \n",
"girl/N/StanfDepSents.8/15 4 \n",
"girl/N/StanfDepSents.8/25 5 \n",
"girl/N/StanfDepSents.8/3 2 \n",
"girl/N/StanfDepSents.9/14 5 \n",
"\n",
" _count.child.bound3-3all.PPMIselection \\\n",
"boy/N/StanfDepSents.1/9 3 \n",
"boy/N/StanfDepSents.12/12 1 \n",
"boy/N/StanfDepSents.2/12 1 \n",
"boy/N/StanfDepSents.2/8 2 \n",
"boy/N/StanfDepSents.3/18 2 \n",
"boy/N/StanfDepSents.3/3 2 \n",
"boy/N/StanfDepSents.4/22 2 \n",
"boy/N/StanfDepSents.4/3 1 \n",
"boy/N/StanfDepSents.5/11 2 \n",
"boy/N/StanfDepSents.5/25 3 \n",
"boy/N/StanfDepSents.5/3 2 \n",
"boy/N/StanfDepSents.6/14 2 \n",
"boy/N/StanfDepSents.6/3 2 \n",
"boy/N/StanfDepSents.7/14 2 \n",
"boy/N/StanfDepSents.7/22 1 \n",
"boy/N/StanfDepSents.7/4 3 \n",
"boy/N/StanfDepSents.8/11 3 \n",
"boy/N/StanfDepSents.8/22 2 \n",
"boy/N/StanfDepSents.9/18 3 \n",
"boy/N/StanfDepSents.9/28 1 \n",
"boy/N/StanfDepSents.9/5 5 \n",
"girl/N/StanfDepSents.1/13 4 \n",
"girl/N/StanfDepSents.1/20 3 \n",
"girl/N/StanfDepSents.1/3 3 \n",
"girl/N/StanfDepSents.11/19 2 \n",
"girl/N/StanfDepSents.11/28 5 \n",
"girl/N/StanfDepSents.11/3 3 \n",
"girl/N/StanfDepSents.2/29 2 \n",
"girl/N/StanfDepSents.3/21 4 \n",
"girl/N/StanfDepSents.4/15 2 \n",
"girl/N/StanfDepSents.4/7 2 \n",
"girl/N/StanfDepSents.5/19 3 \n",
"girl/N/StanfDepSents.6/21 2 \n",
"girl/N/StanfDepSents.6/6 4 \n",
"girl/N/StanfDepSents.7/25 2 \n",
"girl/N/StanfDepSents.7/7 3 \n",
"girl/N/StanfDepSents.8/15 3 \n",
"girl/N/StanfDepSents.8/25 2 \n",
"girl/N/StanfDepSents.8/3 2 \n",
"girl/N/StanfDepSents.9/14 5 \n",
"\n",
" _count.child.bound3-3all.PPMIweight \\\n",
"boy/N/StanfDepSents.1/9 3 \n",
"boy/N/StanfDepSents.12/12 1 \n",
"boy/N/StanfDepSents.2/12 1 \n",
"boy/N/StanfDepSents.2/8 2 \n",
"boy/N/StanfDepSents.3/18 2 \n",
"boy/N/StanfDepSents.3/3 2 \n",
"boy/N/StanfDepSents.4/22 2 \n",
"boy/N/StanfDepSents.4/3 1 \n",
"boy/N/StanfDepSents.5/11 2 \n",
"boy/N/StanfDepSents.5/25 3 \n",
"boy/N/StanfDepSents.5/3 2 \n",
"boy/N/StanfDepSents.6/14 2 \n",
"boy/N/StanfDepSents.6/3 2 \n",
"boy/N/StanfDepSents.7/14 2 \n",
"boy/N/StanfDepSents.7/22 1 \n",
"boy/N/StanfDepSents.7/4 3 \n",
"boy/N/StanfDepSents.8/11 3 \n",
"boy/N/StanfDepSents.8/22 2 \n",
"boy/N/StanfDepSents.9/18 3 \n",
"boy/N/StanfDepSents.9/28 1 \n",
"boy/N/StanfDepSents.9/5 5 \n",
"girl/N/StanfDepSents.1/13 4 \n",
"girl/N/StanfDepSents.1/20 3 \n",
"girl/N/StanfDepSents.1/3 3 \n",
"girl/N/StanfDepSents.11/19 2 \n",
"girl/N/StanfDepSents.11/28 5 \n",
"girl/N/StanfDepSents.11/3 3 \n",
"girl/N/StanfDepSents.2/29 2 \n",
"girl/N/StanfDepSents.3/21 4 \n",
"girl/N/StanfDepSents.4/15 2 \n",
"girl/N/StanfDepSents.4/7 2 \n",
"girl/N/StanfDepSents.5/19 3 \n",
"girl/N/StanfDepSents.6/21 2 \n",
"girl/N/StanfDepSents.6/6 4 \n",
"girl/N/StanfDepSents.7/25 2 \n",
"girl/N/StanfDepSents.7/7 3 \n",
"girl/N/StanfDepSents.8/15 3 \n",
"girl/N/StanfDepSents.8/25 2 \n",
"girl/N/StanfDepSents.8/3 2 \n",
"girl/N/StanfDepSents.9/14 5 \n",
"\n",
" _count.child.bound3-3nounverbs.PPMIno \\\n",
"boy/N/StanfDepSents.1/9 1 \n",
"boy/N/StanfDepSents.12/12 2 \n",
"boy/N/StanfDepSents.2/12 1 \n",
"boy/N/StanfDepSents.2/8 1 \n",
"boy/N/StanfDepSents.3/18 1 \n",
"boy/N/StanfDepSents.3/3 1 \n",
"boy/N/StanfDepSents.4/22 3 \n",
"boy/N/StanfDepSents.4/3 1 \n",
"boy/N/StanfDepSents.5/11 2 \n",
"boy/N/StanfDepSents.5/25 1 \n",
"boy/N/StanfDepSents.5/3 2 \n",
"boy/N/StanfDepSents.6/14 1 \n",
"boy/N/StanfDepSents.6/3 2 \n",
"boy/N/StanfDepSents.7/14 2 \n",
"boy/N/StanfDepSents.7/22 2 \n",
"boy/N/StanfDepSents.7/4 2 \n",
"boy/N/StanfDepSents.8/11 1 \n",
"boy/N/StanfDepSents.8/22 1 \n",
"boy/N/StanfDepSents.9/18 2 \n",
"boy/N/StanfDepSents.9/28 1 \n",
"boy/N/StanfDepSents.9/5 2 \n",
"girl/N/StanfDepSents.1/13 2 \n",
"girl/N/StanfDepSents.1/20 1 \n",
"girl/N/StanfDepSents.1/3 1 \n",
"girl/N/StanfDepSents.11/19 2 \n",
"girl/N/StanfDepSents.11/28 2 \n",
"girl/N/StanfDepSents.11/3 1 \n",
"girl/N/StanfDepSents.2/29 1 \n",
"girl/N/StanfDepSents.3/21 2 \n",
"girl/N/StanfDepSents.4/15 2 \n",
"girl/N/StanfDepSents.4/7 2 \n",
"girl/N/StanfDepSents.5/19 3 \n",
"girl/N/StanfDepSents.6/21 2 \n",
"girl/N/StanfDepSents.6/6 2 \n",
"girl/N/StanfDepSents.7/25 4 \n",
"girl/N/StanfDepSents.7/7 4 \n",
"girl/N/StanfDepSents.8/15 2 \n",
"girl/N/StanfDepSents.8/25 3 \n",
"girl/N/StanfDepSents.8/3 1 \n",
"girl/N/StanfDepSents.9/14 1 \n",
"\n",
" ... \\\n",
"boy/N/StanfDepSents.1/9 ... \n",
"boy/N/StanfDepSents.12/12 ... \n",
"boy/N/StanfDepSents.2/12 ... \n",
"boy/N/StanfDepSents.2/8 ... \n",
"boy/N/StanfDepSents.3/18 ... \n",
"boy/N/StanfDepSents.3/3 ... \n",
"boy/N/StanfDepSents.4/22 ... \n",
"boy/N/StanfDepSents.4/3 ... \n",
"boy/N/StanfDepSents.5/11 ... \n",
"boy/N/StanfDepSents.5/25 ... \n",
"boy/N/StanfDepSents.5/3 ... \n",
"boy/N/StanfDepSents.6/14 ... \n",
"boy/N/StanfDepSents.6/3 ... \n",
"boy/N/StanfDepSents.7/14 ... \n",
"boy/N/StanfDepSents.7/22 ... \n",
"boy/N/StanfDepSents.7/4 ... \n",
"boy/N/StanfDepSents.8/11 ... \n",
"boy/N/StanfDepSents.8/22 ... \n",
"boy/N/StanfDepSents.9/18 ... \n",
"boy/N/StanfDepSents.9/28 ... \n",
"boy/N/StanfDepSents.9/5 ... \n",
"girl/N/StanfDepSents.1/13 ... \n",
"girl/N/StanfDepSents.1/20 ... \n",
"girl/N/StanfDepSents.1/3 ... \n",
"girl/N/StanfDepSents.11/19 ... \n",
"girl/N/StanfDepSents.11/28 ... \n",
"girl/N/StanfDepSents.11/3 ... \n",
"girl/N/StanfDepSents.2/29 ... \n",
"girl/N/StanfDepSents.3/21 ... \n",
"girl/N/StanfDepSents.4/15 ... \n",
"girl/N/StanfDepSents.4/7 ... \n",
"girl/N/StanfDepSents.5/19 ... \n",
"girl/N/StanfDepSents.6/21 ... \n",
"girl/N/StanfDepSents.6/6 ... \n",
"girl/N/StanfDepSents.7/25 ... \n",
"girl/N/StanfDepSents.7/7 ... \n",
"girl/N/StanfDepSents.8/15 ... \n",
"girl/N/StanfDepSents.8/25 ... \n",
"girl/N/StanfDepSents.8/3 ... \n",
"girl/N/StanfDepSents.9/14 ... \n",
"\n",
" _cws.child.nobound5-3all.PPMIweight \\\n",
"boy/N/StanfDepSents.1/9 look/V;at/I;the/D \n",
"boy/N/StanfDepSents.12/12 the/D;be/V \n",
"boy/N/StanfDepSents.2/12 by/I;the/D \n",
"boy/N/StanfDepSents.2/8 by/I;the/D;be/V \n",
"boy/N/StanfDepSents.3/18 and/C;the/D;be/V \n",
"boy/N/StanfDepSents.3/3 an/D;the/D \n",
"boy/N/StanfDepSents.4/22 give/V;the/D \n",
"boy/N/StanfDepSents.4/3 the/D \n",
"boy/N/StanfDepSents.5/11 look/V;and/C;the/D \n",
"boy/N/StanfDepSents.5/25 by/I;give/V;the/D;be/V \n",
"boy/N/StanfDepSents.5/3 and/C;the/D \n",
"boy/N/StanfDepSents.6/14 the/D;be/V \n",
"boy/N/StanfDepSents.6/3 give/V;the/D \n",
"boy/N/StanfDepSents.7/14 the/D;be/V \n",
"boy/N/StanfDepSents.7/22 old/J;the/D;be/V \n",
"boy/N/StanfDepSents.7/4 old/J;give/V;the/D \n",
"boy/N/StanfDepSents.8/11 look/V;at/I;the/D \n",
"boy/N/StanfDepSents.8/22 and/C;the/D \n",
"boy/N/StanfDepSents.9/18 look/V;old/J;at/I;the/D \n",
"boy/N/StanfDepSents.9/28 be/V \n",
"boy/N/StanfDepSents.9/5 old/J;give/V;an/D;the/D;be/V \n",
"girl/N/StanfDepSents.1/13 eat/V;look/V;at/I;the/D \n",
"girl/N/StanfDepSents.1/20 eat/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.1/3 look/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.11/19 eat/V;give/V;the/D \n",
"girl/N/StanfDepSents.11/28 a/D;look/V;,/,;at/I;the/D \n",
"girl/N/StanfDepSents.11/3 look/V;at/I;the/D \n",
"girl/N/StanfDepSents.2/29 eat/V;,/,;the/D \n",
"girl/N/StanfDepSents.3/21 eat/V;a/D;healthy/J;the/D \n",
"girl/N/StanfDepSents.4/15 eat/V;the/D \n",
"girl/N/StanfDepSents.4/7 eat/V;the/D \n",
"girl/N/StanfDepSents.5/19 eat/V;look/V;give/V;the/D \n",
"girl/N/StanfDepSents.6/21 eat/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.6/6 a/D;healthy/J;give/V;the/D \n",
"girl/N/StanfDepSents.7/25 eat/V;old/J;the/D \n",
"girl/N/StanfDepSents.7/7 a/D;old/J;give/V;the/D \n",
"girl/N/StanfDepSents.8/15 look/V;at/I;the/D \n",
"girl/N/StanfDepSents.8/25 eat/V;the/D \n",
"girl/N/StanfDepSents.8/3 sit/V;the/D \n",
"girl/N/StanfDepSents.9/14 a/D;look/V;old/J;at/I;give/V;the/D \n",
"\n",
" _cws.child.nobound5-3nounverbs.PPMIno \\\n",
"boy/N/StanfDepSents.1/9 girl/N;look/V \n",
"boy/N/StanfDepSents.12/12 be/V;eat/V;like/V;year/N \n",
"boy/N/StanfDepSents.2/12 boy/N;eat/V \n",
"boy/N/StanfDepSents.2/8 apple/N;be/V;boy/N;eat/V \n",
"boy/N/StanfDepSents.3/18 apple/N;be/V;eat/V;girl/N;have/V \n",
"boy/N/StanfDepSents.3/3 eat/V \n",
"boy/N/StanfDepSents.4/22 apple/N;baby/N;give/V;have/V \n",
"boy/N/StanfDepSents.4/3 say/V \n",
"boy/N/StanfDepSents.5/11 eat/V;look/V;sit/V \n",
"boy/N/StanfDepSents.5/25 be/V;eat/V;give/V \n",
"boy/N/StanfDepSents.5/3 eat/V;sit/V \n",
"boy/N/StanfDepSents.6/14 apple/N;be/V \n",
"boy/N/StanfDepSents.6/3 girl/N;give/V \n",
"boy/N/StanfDepSents.7/14 apple/N;baby/N;be/V;girl/N;year/N \n",
"boy/N/StanfDepSents.7/22 ask/V;be/V;girl/N;year/N \n",
"boy/N/StanfDepSents.7/4 girl/N;give/V \n",
"boy/N/StanfDepSents.8/11 apple/N;look/V;sit/V \n",
"boy/N/StanfDepSents.8/22 apple/N;girl/N \n",
"boy/N/StanfDepSents.9/18 girl/N;house/N;look/V \n",
"boy/N/StanfDepSents.9/28 apple/N;be/V;house/N \n",
"boy/N/StanfDepSents.9/5 be/V;give/V \n",
"girl/N/StanfDepSents.1/13 boy/N;eat/V;look/V \n",
"girl/N/StanfDepSents.1/20 eat/V;girl/N \n",
"girl/N/StanfDepSents.1/3 look/V \n",
"girl/N/StanfDepSents.11/19 apple/N;eat/V;give/V \n",
"girl/N/StanfDepSents.11/28 look/V;year/N \n",
"girl/N/StanfDepSents.11/3 look/V \n",
"girl/N/StanfDepSents.2/29 be/V;eat/V \n",
"girl/N/StanfDepSents.3/21 boy/N;eat/V \n",
"girl/N/StanfDepSents.4/15 apple/N;eat/V \n",
"girl/N/StanfDepSents.4/7 boy/N;eat/V;say/V \n",
"girl/N/StanfDepSents.5/19 be/V;eat/V;give/V;look/V \n",
"girl/N/StanfDepSents.6/21 be/V;boy/N;do/V;eat/V \n",
"girl/N/StanfDepSents.6/6 boy/N;give/V \n",
"girl/N/StanfDepSents.7/25 apple/N;ask/V;boy/N;eat/V \n",
"girl/N/StanfDepSents.7/7 apple/N;baby/N;boy/N;give/V \n",
"girl/N/StanfDepSents.8/15 apple/N;boy/N;look/V \n",
"girl/N/StanfDepSents.8/25 apple/N;boy/N;eat/V \n",
"girl/N/StanfDepSents.8/3 sit/V \n",
"girl/N/StanfDepSents.9/14 apple/N;give/V;look/V \n",
"\n",
" _cws.child.nobound5-3nounverbs.PPMIselection \\\n",
"boy/N/StanfDepSents.1/9 look/V \n",
"boy/N/StanfDepSents.12/12 like/V;be/V \n",
"boy/N/StanfDepSents.2/12 NaN \n",
"boy/N/StanfDepSents.2/8 be/V \n",
"boy/N/StanfDepSents.3/18 have/V;be/V \n",
"boy/N/StanfDepSents.3/3 NaN \n",
"boy/N/StanfDepSents.4/22 baby/N;give/V;have/V \n",
"boy/N/StanfDepSents.4/3 say/V \n",
"boy/N/StanfDepSents.5/11 look/V \n",
"boy/N/StanfDepSents.5/25 give/V;be/V \n",
"boy/N/StanfDepSents.5/3 NaN \n",
"boy/N/StanfDepSents.6/14 be/V \n",
"boy/N/StanfDepSents.6/3 give/V \n",
"boy/N/StanfDepSents.7/14 baby/N;be/V \n",
"boy/N/StanfDepSents.7/22 ask/V;be/V \n",
"boy/N/StanfDepSents.7/4 give/V \n",
"boy/N/StanfDepSents.8/11 look/V \n",
"boy/N/StanfDepSents.8/22 NaN \n",
"boy/N/StanfDepSents.9/18 look/V;house/N \n",
"boy/N/StanfDepSents.9/28 house/N;be/V \n",
"boy/N/StanfDepSents.9/5 give/V;be/V \n",
"girl/N/StanfDepSents.1/13 eat/V;look/V \n",
"girl/N/StanfDepSents.1/20 eat/V \n",
"girl/N/StanfDepSents.1/3 look/V \n",
"girl/N/StanfDepSents.11/19 eat/V;give/V \n",
"girl/N/StanfDepSents.11/28 look/V \n",
"girl/N/StanfDepSents.11/3 look/V \n",
"girl/N/StanfDepSents.2/29 eat/V \n",
"girl/N/StanfDepSents.3/21 eat/V \n",
"girl/N/StanfDepSents.4/15 eat/V \n",
"girl/N/StanfDepSents.4/7 eat/V;say/V \n",
"girl/N/StanfDepSents.5/19 eat/V;look/V;give/V \n",
"girl/N/StanfDepSents.6/21 eat/V;do/V \n",
"girl/N/StanfDepSents.6/6 give/V \n",
"girl/N/StanfDepSents.7/25 eat/V;ask/V \n",
"girl/N/StanfDepSents.7/7 baby/N;give/V \n",
"girl/N/StanfDepSents.8/15 look/V \n",
"girl/N/StanfDepSents.8/25 eat/V \n",
"girl/N/StanfDepSents.8/3 sit/V \n",
"girl/N/StanfDepSents.9/14 look/V;give/V \n",
"\n",
" _cws.child.nobound5-3nounverbs.PPMIweight \\\n",
"boy/N/StanfDepSents.1/9 look/V \n",
"boy/N/StanfDepSents.12/12 like/V;be/V \n",
"boy/N/StanfDepSents.2/12 NaN \n",
"boy/N/StanfDepSents.2/8 be/V \n",
"boy/N/StanfDepSents.3/18 have/V;be/V \n",
"boy/N/StanfDepSents.3/3 NaN \n",
"boy/N/StanfDepSents.4/22 baby/N;give/V;have/V \n",
"boy/N/StanfDepSents.4/3 say/V \n",
"boy/N/StanfDepSents.5/11 look/V \n",
"boy/N/StanfDepSents.5/25 give/V;be/V \n",
"boy/N/StanfDepSents.5/3 NaN \n",
"boy/N/StanfDepSents.6/14 be/V \n",
"boy/N/StanfDepSents.6/3 give/V \n",
"boy/N/StanfDepSents.7/14 baby/N;be/V \n",
"boy/N/StanfDepSents.7/22 ask/V;be/V \n",
"boy/N/StanfDepSents.7/4 give/V \n",
"boy/N/StanfDepSents.8/11 look/V \n",
"boy/N/StanfDepSents.8/22 NaN \n",
"boy/N/StanfDepSents.9/18 look/V;house/N \n",
"boy/N/StanfDepSents.9/28 house/N;be/V \n",
"boy/N/StanfDepSents.9/5 give/V;be/V \n",
"girl/N/StanfDepSents.1/13 eat/V;look/V \n",
"girl/N/StanfDepSents.1/20 eat/V \n",
"girl/N/StanfDepSents.1/3 look/V \n",
"girl/N/StanfDepSents.11/19 eat/V;give/V \n",
"girl/N/StanfDepSents.11/28 look/V \n",
"girl/N/StanfDepSents.11/3 look/V \n",
"girl/N/StanfDepSents.2/29 eat/V \n",
"girl/N/StanfDepSents.3/21 eat/V \n",
"girl/N/StanfDepSents.4/15 eat/V \n",
"girl/N/StanfDepSents.4/7 eat/V;say/V \n",
"girl/N/StanfDepSents.5/19 eat/V;look/V;give/V \n",
"girl/N/StanfDepSents.6/21 eat/V;do/V \n",
"girl/N/StanfDepSents.6/6 give/V \n",
"girl/N/StanfDepSents.7/25 eat/V;ask/V \n",
"girl/N/StanfDepSents.7/7 baby/N;give/V \n",
"girl/N/StanfDepSents.8/15 look/V \n",
"girl/N/StanfDepSents.8/25 eat/V \n",
"girl/N/StanfDepSents.8/3 sit/V \n",
"girl/N/StanfDepSents.9/14 look/V;give/V \n",
"\n",
" _cws.child.nobound5-5all.PPMIno \\\n",
"boy/N/StanfDepSents.1/9 at/I;girl/N;healthy/J;look/V;the/D \n",
"boy/N/StanfDepSents.12/12 an/D;apple/N;be/V;eat/V;tasty/J;the/D;year/N \n",
"boy/N/StanfDepSents.2/12 apple/N;boy/N;by/I;eat/V;food/N;healthy/J;the/D \n",
"boy/N/StanfDepSents.2/8 apple/N;be/V;boy/N;by/I;eat/V;healthy/J;the/D \n",
"boy/N/StanfDepSents.3/18 a/D;and/C;apple/N;be/V;eat/V;girl/N;the/D \n",
"boy/N/StanfDepSents.3/3 an/D;apple/N;eat/V;the/D \n",
"boy/N/StanfDepSents.4/22 apple/N;give/V;the/D \n",
"boy/N/StanfDepSents.4/3 girl/N;the/D \n",
"boy/N/StanfDepSents.5/11 and/C;eat/V;look/V;sit/V;tasty/J;the/D \n",
"boy/N/StanfDepSents.5/25 be/V;by/I;eat/V;give/V;the/D \n",
"boy/N/StanfDepSents.5/3 and/C;eat/V;sit/V;the/D \n",
"boy/N/StanfDepSents.6/14 a/D;apple/N;be/V;girl/N;healthy/J;tasty/J;the/D \n",
"boy/N/StanfDepSents.6/3 a/D;girl/N;give/V;tasty/J;the/D \n",
"boy/N/StanfDepSents.7/14 a/D;apple/N;be/V;girl/N;old/J;the/D;year/N \n",
"boy/N/StanfDepSents.7/22 be/V;eat/V;girl/N;old/J;the/D;year/N \n",
"boy/N/StanfDepSents.7/4 a/D;girl/N;give/V;old/J;the/D \n",
"boy/N/StanfDepSents.8/11 apple/N;at/I;girl/N;look/V;sit/V;the/D \n",
"boy/N/StanfDepSents.8/22 and/C;apple/N;eat/V;girl/N;the/D \n",
"boy/N/StanfDepSents.9/18 a/D;apple/N;at/I;be/V;girl/N;look/V;old/J;the/D \n",
"boy/N/StanfDepSents.9/28 apple/N;be/V;healthy/J \n",
"boy/N/StanfDepSents.9/5 an/D;apple/N;be/V;give/V;old/J;the/D \n",
"girl/N/StanfDepSents.1/13 at/I;boy/N;eat/V;girl/N;look/V;the/D \n",
"girl/N/StanfDepSents.1/20 eat/V;food/N;girl/N;healthy/J;the/D \n",
"girl/N/StanfDepSents.1/3 boy/N;healthy/J;look/V;the/D \n",
"girl/N/StanfDepSents.11/19 ,/,;apple/N;eat/V;give/V;the/D;year/N \n",
"girl/N/StanfDepSents.11/28 ,/,;a/D;at/I;boy/N;look/V;the/D;year/N \n",
"girl/N/StanfDepSents.11/3 at/I;boy/N;look/V;the/D \n",
"girl/N/StanfDepSents.2/29 ,/,;be/V;by/I;eat/V;the/D \n",
"girl/N/StanfDepSents.3/21 a/D;and/C;boy/N;eat/V;healthy/J;tasty/J;the/D \n",
"girl/N/StanfDepSents.4/15 apple/N;eat/V;the/D \n",
"girl/N/StanfDepSents.4/7 apple/N;boy/N;eat/V;the/D \n",
"girl/N/StanfDepSents.5/19 be/V;by/I;eat/V;give/V;look/V;tasty/J;the/D \n",
"girl/N/StanfDepSents.6/21 be/V;boy/N;eat/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.6/6 a/D;apple/N;boy/N;give/V;healthy/J;tasty/J;the/D \n",
"girl/N/StanfDepSents.7/25 apple/N;boy/N;eat/V;old/J;the/D \n",
"girl/N/StanfDepSents.7/7 a/D;apple/N;boy/N;give/V;old/J;the/D \n",
"girl/N/StanfDepSents.8/15 apple/N;at/I;boy/N;look/V;the/D \n",
"girl/N/StanfDepSents.8/25 and/C;apple/N;boy/N;eat/V;the/D \n",
"girl/N/StanfDepSents.8/3 apple/N;sit/V;the/D \n",
"girl/N/StanfDepSents.9/14 a/D;an/D;apple/N;at/I;boy/N;give/V;look/V;old/... \n",
"\n",
" _cws.child.nobound5-5all.PPMIselection \\\n",
"boy/N/StanfDepSents.1/9 look/V;at/I;the/D \n",
"boy/N/StanfDepSents.12/12 an/D;the/D;be/V \n",
"boy/N/StanfDepSents.2/12 by/I;the/D \n",
"boy/N/StanfDepSents.2/8 by/I;the/D;be/V \n",
"boy/N/StanfDepSents.3/18 and/C;the/D;be/V \n",
"boy/N/StanfDepSents.3/3 an/D;the/D \n",
"boy/N/StanfDepSents.4/22 give/V;the/D \n",
"boy/N/StanfDepSents.4/3 the/D \n",
"boy/N/StanfDepSents.5/11 look/V;and/C;the/D \n",
"boy/N/StanfDepSents.5/25 by/I;give/V;the/D;be/V \n",
"boy/N/StanfDepSents.5/3 and/C;the/D \n",
"boy/N/StanfDepSents.6/14 the/D;be/V \n",
"boy/N/StanfDepSents.6/3 give/V;the/D \n",
"boy/N/StanfDepSents.7/14 old/J;the/D;be/V \n",
"boy/N/StanfDepSents.7/22 old/J;the/D;be/V \n",
"boy/N/StanfDepSents.7/4 old/J;give/V;the/D \n",
"boy/N/StanfDepSents.8/11 look/V;at/I;the/D \n",
"boy/N/StanfDepSents.8/22 and/C;the/D \n",
"boy/N/StanfDepSents.9/18 look/V;old/J;at/I;the/D;be/V \n",
"boy/N/StanfDepSents.9/28 be/V \n",
"boy/N/StanfDepSents.9/5 old/J;give/V;an/D;the/D;be/V \n",
"girl/N/StanfDepSents.1/13 eat/V;look/V;at/I;the/D \n",
"girl/N/StanfDepSents.1/20 eat/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.1/3 look/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.11/19 eat/V;,/,;give/V;the/D \n",
"girl/N/StanfDepSents.11/28 a/D;look/V;,/,;at/I;the/D \n",
"girl/N/StanfDepSents.11/3 look/V;at/I;the/D \n",
"girl/N/StanfDepSents.2/29 eat/V;,/,;the/D \n",
"girl/N/StanfDepSents.3/21 eat/V;a/D;healthy/J;the/D \n",
"girl/N/StanfDepSents.4/15 eat/V;the/D \n",
"girl/N/StanfDepSents.4/7 eat/V;the/D \n",
"girl/N/StanfDepSents.5/19 eat/V;look/V;give/V;the/D \n",
"girl/N/StanfDepSents.6/21 eat/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.6/6 a/D;healthy/J;give/V;the/D \n",
"girl/N/StanfDepSents.7/25 eat/V;old/J;the/D \n",
"girl/N/StanfDepSents.7/7 a/D;old/J;give/V;the/D \n",
"girl/N/StanfDepSents.8/15 look/V;at/I;the/D \n",
"girl/N/StanfDepSents.8/25 eat/V;the/D \n",
"girl/N/StanfDepSents.8/3 sit/V;the/D \n",
"girl/N/StanfDepSents.9/14 a/D;look/V;old/J;at/I;give/V;the/D \n",
"\n",
" _cws.child.nobound5-5all.PPMIweight \\\n",
"boy/N/StanfDepSents.1/9 look/V;at/I;the/D \n",
"boy/N/StanfDepSents.12/12 an/D;the/D;be/V \n",
"boy/N/StanfDepSents.2/12 by/I;the/D \n",
"boy/N/StanfDepSents.2/8 by/I;the/D;be/V \n",
"boy/N/StanfDepSents.3/18 and/C;the/D;be/V \n",
"boy/N/StanfDepSents.3/3 an/D;the/D \n",
"boy/N/StanfDepSents.4/22 give/V;the/D \n",
"boy/N/StanfDepSents.4/3 the/D \n",
"boy/N/StanfDepSents.5/11 look/V;and/C;the/D \n",
"boy/N/StanfDepSents.5/25 by/I;give/V;the/D;be/V \n",
"boy/N/StanfDepSents.5/3 and/C;the/D \n",
"boy/N/StanfDepSents.6/14 the/D;be/V \n",
"boy/N/StanfDepSents.6/3 give/V;the/D \n",
"boy/N/StanfDepSents.7/14 old/J;the/D;be/V \n",
"boy/N/StanfDepSents.7/22 old/J;the/D;be/V \n",
"boy/N/StanfDepSents.7/4 old/J;give/V;the/D \n",
"boy/N/StanfDepSents.8/11 look/V;at/I;the/D \n",
"boy/N/StanfDepSents.8/22 and/C;the/D \n",
"boy/N/StanfDepSents.9/18 look/V;old/J;at/I;the/D;be/V \n",
"boy/N/StanfDepSents.9/28 be/V \n",
"boy/N/StanfDepSents.9/5 old/J;give/V;an/D;the/D;be/V \n",
"girl/N/StanfDepSents.1/13 eat/V;look/V;at/I;the/D \n",
"girl/N/StanfDepSents.1/20 eat/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.1/3 look/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.11/19 eat/V;,/,;give/V;the/D \n",
"girl/N/StanfDepSents.11/28 a/D;look/V;,/,;at/I;the/D \n",
"girl/N/StanfDepSents.11/3 look/V;at/I;the/D \n",
"girl/N/StanfDepSents.2/29 eat/V;,/,;the/D \n",
"girl/N/StanfDepSents.3/21 eat/V;a/D;healthy/J;the/D \n",
"girl/N/StanfDepSents.4/15 eat/V;the/D \n",
"girl/N/StanfDepSents.4/7 eat/V;the/D \n",
"girl/N/StanfDepSents.5/19 eat/V;look/V;give/V;the/D \n",
"girl/N/StanfDepSents.6/21 eat/V;healthy/J;the/D \n",
"girl/N/StanfDepSents.6/6 a/D;healthy/J;give/V;the/D \n",
"girl/N/StanfDepSents.7/25 eat/V;old/J;the/D \n",
"girl/N/StanfDepSents.7/7 a/D;old/J;give/V;the/D \n",
"girl/N/StanfDepSents.8/15 look/V;at/I;the/D \n",
"girl/N/StanfDepSents.8/25 eat/V;the/D \n",
"girl/N/StanfDepSents.8/3 sit/V;the/D \n",
"girl/N/StanfDepSents.9/14 a/D;look/V;old/J;at/I;give/V;the/D \n",
"\n",
" _cws.child.nobound5-5nounverbs.PPMIno \\\n",
"boy/N/StanfDepSents.1/9 girl/N;look/V \n",
"boy/N/StanfDepSents.12/12 apple/N;be/V;eat/V;like/V;year/N \n",
"boy/N/StanfDepSents.2/12 apple/N;boy/N;eat/V;food/N \n",
"boy/N/StanfDepSents.2/8 apple/N;be/V;boy/N;eat/V \n",
"boy/N/StanfDepSents.3/18 apple/N;be/V;eat/V;girl/N;have/V \n",
"boy/N/StanfDepSents.3/3 apple/N;eat/V \n",
"boy/N/StanfDepSents.4/22 apple/N;baby/N;give/V;have/V \n",
"boy/N/StanfDepSents.4/3 girl/N;say/V \n",
"boy/N/StanfDepSents.5/11 eat/V;look/V;sit/V \n",
"boy/N/StanfDepSents.5/25 be/V;eat/V;give/V \n",
"boy/N/StanfDepSents.5/3 eat/V;sit/V \n",
"boy/N/StanfDepSents.6/14 apple/N;be/V;girl/N \n",
"boy/N/StanfDepSents.6/3 girl/N;give/V \n",
"boy/N/StanfDepSents.7/14 apple/N;baby/N;be/V;girl/N;year/N \n",
"boy/N/StanfDepSents.7/22 ask/V;be/V;eat/V;girl/N;year/N \n",
"boy/N/StanfDepSents.7/4 baby/N;girl/N;give/V \n",
"boy/N/StanfDepSents.8/11 apple/N;girl/N;look/V;sit/V \n",
"boy/N/StanfDepSents.8/22 apple/N;eat/V;girl/N \n",
"boy/N/StanfDepSents.9/18 apple/N;be/V;girl/N;house/N;look/V \n",
"boy/N/StanfDepSents.9/28 apple/N;be/V;house/N \n",
"boy/N/StanfDepSents.9/5 apple/N;be/V;give/V \n",
"girl/N/StanfDepSents.1/13 boy/N;eat/V;girl/N;look/V \n",
"girl/N/StanfDepSents.1/20 eat/V;food/N;girl/N \n",
"girl/N/StanfDepSents.1/3 boy/N;look/V \n",
"girl/N/StanfDepSents.11/19 apple/N;eat/V;give/V;year/N \n",
"girl/N/StanfDepSents.11/28 boy/N;look/V;year/N \n",
"girl/N/StanfDepSents.11/3 boy/N;look/V \n",
"girl/N/StanfDepSents.2/29 be/V;eat/V \n",
"girl/N/StanfDepSents.3/21 boy/N;eat/V \n",
"girl/N/StanfDepSents.4/15 apple/N;eat/V \n",
"girl/N/StanfDepSents.4/7 apple/N;boy/N;eat/V;say/V \n",
"girl/N/StanfDepSents.5/19 be/V;eat/V;give/V;look/V \n",
"girl/N/StanfDepSents.6/21 be/V;boy/N;do/V;eat/V \n",
"girl/N/StanfDepSents.6/6 apple/N;boy/N;give/V \n",
"girl/N/StanfDepSents.7/25 apple/N;ask/V;boy/N;eat/V \n",
"girl/N/StanfDepSents.7/7 apple/N;baby/N;boy/N;give/V \n",
"girl/N/StanfDepSents.8/15 apple/N;boy/N;look/V \n",
"girl/N/StanfDepSents.8/25 apple/N;boy/N;eat/V \n",
"girl/N/StanfDepSents.8/3 apple/N;sit/V \n",
"girl/N/StanfDepSents.9/14 apple/N;boy/N;give/V;look/V \n",
"\n",
" _cws.child.nobound5-5nounverbs.PPMIselection \\\n",
"boy/N/StanfDepSents.1/9 look/V \n",
"boy/N/StanfDepSents.12/12 like/V;be/V \n",
"boy/N/StanfDepSents.2/12 NaN \n",
"boy/N/StanfDepSents.2/8 be/V \n",
"boy/N/StanfDepSents.3/18 have/V;be/V \n",
"boy/N/StanfDepSents.3/3 NaN \n",
"boy/N/StanfDepSents.4/22 baby/N;give/V;have/V \n",
"boy/N/StanfDepSents.4/3 say/V \n",
"boy/N/StanfDepSents.5/11 look/V \n",
"boy/N/StanfDepSents.5/25 give/V;be/V \n",
"boy/N/StanfDepSents.5/3 NaN \n",
"boy/N/StanfDepSents.6/14 be/V \n",
"boy/N/StanfDepSents.6/3 give/V \n",
"boy/N/StanfDepSents.7/14 baby/N;be/V \n",
"boy/N/StanfDepSents.7/22 ask/V;be/V \n",
"boy/N/StanfDepSents.7/4 baby/N;give/V \n",
"boy/N/StanfDepSents.8/11 look/V \n",
"boy/N/StanfDepSents.8/22 NaN \n",
"boy/N/StanfDepSents.9/18 look/V;house/N;be/V \n",
"boy/N/StanfDepSents.9/28 house/N;be/V \n",
"boy/N/StanfDepSents.9/5 give/V;be/V \n",
"girl/N/StanfDepSents.1/13 eat/V;look/V \n",
"girl/N/StanfDepSents.1/20 eat/V \n",
"girl/N/StanfDepSents.1/3 look/V \n",
"girl/N/StanfDepSents.11/19 eat/V;give/V \n",
"girl/N/StanfDepSents.11/28 look/V \n",
"girl/N/StanfDepSents.11/3 look/V \n",
"girl/N/StanfDepSents.2/29 eat/V \n",
"girl/N/StanfDepSents.3/21 eat/V \n",
"girl/N/StanfDepSents.4/15 eat/V \n",
"girl/N/StanfDepSents.4/7 eat/V;say/V \n",
"girl/N/StanfDepSents.5/19 eat/V;look/V;give/V \n",
"girl/N/StanfDepSents.6/21 eat/V;do/V \n",
"girl/N/StanfDepSents.6/6 give/V \n",
"girl/N/StanfDepSents.7/25 eat/V;ask/V \n",
"girl/N/StanfDepSents.7/7 baby/N;give/V \n",
"girl/N/StanfDepSents.8/15 look/V \n",
"girl/N/StanfDepSents.8/25 eat/V \n",
"girl/N/StanfDepSents.8/3 sit/V \n",
"girl/N/StanfDepSents.9/14 look/V;give/V \n",
"\n",
" _cws.child.nobound5-5nounverbs.PPMIweight \n",
"boy/N/StanfDepSents.1/9 look/V \n",
"boy/N/StanfDepSents.12/12 like/V;be/V \n",
"boy/N/StanfDepSents.2/12 NaN \n",
"boy/N/StanfDepSents.2/8 be/V \n",
"boy/N/StanfDepSents.3/18 have/V;be/V \n",
"boy/N/StanfDepSents.3/3 NaN \n",
"boy/N/StanfDepSents.4/22 baby/N;give/V;have/V \n",
"boy/N/StanfDepSents.4/3 say/V \n",
"boy/N/StanfDepSents.5/11 look/V \n",
"boy/N/StanfDepSents.5/25 give/V;be/V \n",
"boy/N/StanfDepSents.5/3 NaN \n",
"boy/N/StanfDepSents.6/14 be/V \n",
"boy/N/StanfDepSents.6/3 give/V \n",
"boy/N/StanfDepSents.7/14 baby/N;be/V \n",
"boy/N/StanfDepSents.7/22 ask/V;be/V \n",
"boy/N/StanfDepSents.7/4 baby/N;give/V \n",
"boy/N/StanfDepSents.8/11 look/V \n",
"boy/N/StanfDepSents.8/22 NaN \n",
"boy/N/StanfDepSents.9/18 look/V;house/N;be/V \n",
"boy/N/StanfDepSents.9/28 house/N;be/V \n",
"boy/N/StanfDepSents.9/5 give/V;be/V \n",
"girl/N/StanfDepSents.1/13 eat/V;look/V \n",
"girl/N/StanfDepSents.1/20 eat/V \n",
"girl/N/StanfDepSents.1/3 look/V \n",
"girl/N/StanfDepSents.11/19 eat/V;give/V \n",
"girl/N/StanfDepSents.11/28 look/V \n",
"girl/N/StanfDepSents.11/3 look/V \n",
"girl/N/StanfDepSents.2/29 eat/V \n",
"girl/N/StanfDepSents.3/21 eat/V \n",
"girl/N/StanfDepSents.4/15 eat/V \n",
"girl/N/StanfDepSents.4/7 eat/V;say/V \n",
"girl/N/StanfDepSents.5/19 eat/V;look/V;give/V \n",
"girl/N/StanfDepSents.6/21 eat/V;do/V \n",
"girl/N/StanfDepSents.6/6 give/V \n",
"girl/N/StanfDepSents.7/25 eat/V;ask/V \n",
"girl/N/StanfDepSents.7/7 baby/N;give/V \n",
"girl/N/StanfDepSents.8/15 look/V \n",
"girl/N/StanfDepSents.8/25 eat/V \n",
"girl/N/StanfDepSents.8/3 sit/V \n",
"girl/N/StanfDepSents.9/14 look/V;give/V \n",
"\n",
"[40 rows x 84 columns]"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# token_level register\n",
"weight_data[\"token_register\"]"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"scrolled": true
},
"outputs": [],
"source": [
"weight_data[\"token_register\"].to_csv(f\"{nephovis_path}/{type_name}/{type_name}.variables.tsv\", sep = '\\t', index_label = \"_id\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 5 Second-order dimensions"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The final step to obtain our token-level vectors is to multiply the token-foc matrices for type-level matrices to obtain second-order vectors. We will loop over the models in the index of `weight_data[\"model_register\"]` and over second-order parameter settings to filter `freqMTX_CW4` and obtain different models."
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [],
"source": [
"soc_pos = {\n",
" \"all\" : full[full.freq > 2], # all possible dimensions\n",
" \"nv\" : full.subvocab(nounverbs) # only nouns and verbs\n",
"}\n",
"lengths = [\"FOC\", 10] # a number will take the most frequent; something else will take the FOC items"
]
},
{
"cell_type": "code",
"execution_count": 30,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e88a0d819af24a2c9727a4ca6fa180a8",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=173), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01494 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0008421 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d00c3ae2d5eb4c34a29574e621a35b11",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=142), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01419 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003443 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "67b893dc40fd4403b9c014bac84ddec5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=122), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01451 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004005 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3c6235545f1e4355abcfe98109b8a568",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=118), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.014 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004139 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0fce18ad91454b5a822dd4b1f8c26782",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=87), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01402 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003409 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8af89323e88244859a183f4ce8412263",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=115), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.014 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002725 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7705c6bcf7194afa919db1a5894c7da8",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=44), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01372 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002735 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bff41d09af884741834c140f027e9f43",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=95), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01429 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002871 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6d2cba6126f54952b2e8c94ac226f7d5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=87), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01382 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002756 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "42f8910a52184dc184aeafa635fee492",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=115), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01377 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ab4e7a172aa047e3aabaf7d2e1409edb",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=44), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01377 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002804 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f9c37b5ce54b4fe8871386a7c8c69417",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=95), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01362 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002763 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b894a52b4095457b9d6e1f85c80cb89d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=16), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01349 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003459 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "687cd9e09a844edc83dab005c5d5f1d0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=54), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01366 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002432 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "516747e2fe7a42f09137d63b40e07035",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01372 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002666 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a0c10c5ce183445da76a8fd760d0b60d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=45), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01385 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002439 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e9d6446e32e8468b986d4a609716c0a5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=16), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01328 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002365 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0b3ecfde90194d55a6c97a568172da75",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=54), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01374 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c873aee659a6440684a167edaed2cb28",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01487 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002985 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f05092a293d94dfc9b008368c5ec2c60",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=45), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01528 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003293 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "db883d1e167b45418c056baa55693bcc",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=16), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01517 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003436 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "05a560268c8e4505a0a97c92ded287c9",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=54), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01514 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002854 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2461a51345cd422c8756965370b7e7da",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01388 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002503 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e74c639744be4946aa9ded9552e8d2bd",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=45), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01415 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002589 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "97bc2074e75d4be3968c5a2b9fe6d79d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=228), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01429 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000283 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "466681107cda4e418672e0d9d9735c6a",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=143), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01443 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003333 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "39945be76c9d426db717c8be75f4341c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=119), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01382 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003645 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b6f57a8672c8499abe276baeced60dd5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=128), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01481 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002685 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7d28469c0c25469aa14995e9130ac371",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01405 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003028 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1fdfca2f6b0341cc96f7936ca692691b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01438 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002913 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "443e7f50ccd9403898e4458ba61d4db6",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01409 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002704 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f2beddd251504419b182c2e0b986b2af",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01399 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002589 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0a4c3ff1bfdc4f0cb30bc28190ee80ad",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01425 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002675 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "72bf4000136947a094b545b40bf071ba",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01404 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000258 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5903f38f866a4a34b414748a1d2a2955",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01399 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002482 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c9796605aab94fe8a0b713545b878c09",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01388 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002568 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e01d4384736d4dee9a3e2ff09b978c6d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=74), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01426 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000283 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9820fd15dc5a4bd795fc6a65877c98af",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=95), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01403 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002627 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e3c79d6839ca4f089fcb7349a6291a40",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=98), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01392 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002763 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5f829ca33e544fd4a5f68bd63b534e63",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=77), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01417 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002916 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "da1e90a494584d27af0f8aa3a6ad3d13",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01368 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000257 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "97eb88d0318049488a2e07dbafe498b4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01387 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9c64c55549f64474ad8f25b28df2ec3b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.014 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002863 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8d7ce43dc19843e08b2b2de1256e5662",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01423 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002837 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "294089cca4394956ae66baf5308e672a",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01434 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002458 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bbb88239539646e59b6414f97ef8751f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01424 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002489 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a9e67e3dd28c4cf0b14990932da85161",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01385 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002589 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0fcff80db2cd43709437461997c7d2c4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01384 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002451 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0b485bf11080449094595c19a36a0bc7",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=228), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01454 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003071 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "62c2340035974325b3997de8450b9cfc",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=143), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01403 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002849 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "b64a568aebbd4aaebcd6f8dc5fb413fe",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=119), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01367 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003464 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "19f6df5f9f434745b7f1701d6d116278",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=128), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01426 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002737 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "74c5bc682145418aaf96dab86f950dc2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0137 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000258 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4eb82614faae44f39f1aede7097366ba",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01385 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002732 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f6d376f5d8084c0a8787b31c8adac042",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01382 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000246 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bc08e3b4fbd4499ea18502b36cc16ed2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01357 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003359 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3e87480046584cecafcffe84560eadaa",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01416 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003211 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "98d4359f3eba4ff3a40f3b2fa3e59844",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01374 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002675 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1c0804d2305b48e6be57f8509f9e9a92",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01368 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002589 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c757d78ed32c4f9fa7c38e6a361424ee",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01378 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002677 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "894dd8f96a7d4aef8692acc8b4c2e37f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=74), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01362 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002778 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "38f967f6349b47258c6775188b7b9c73",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=95), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01353 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000258 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a090036765b54615918790724ec437d9",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=98), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01357 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002711 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7a9ce3799905475a944740a952a688a3",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=77), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01983 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000638 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5b2eb2f1be9c45439c9a7a74b809e018",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01583 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003812 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ed95d77477934f5ab2904378921f17d2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01385 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003104 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3230b340e7d3401984b137e7b4bd7dad",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01468 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000411 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2615f3cec5a4429aac3841eccb33a3b2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01454 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000387 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f63e3477cb6348dc8fb6ac310b3bc940",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01374 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003073 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c0ae68c90e6e488dae038543ab3ed523",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01406 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003247 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "d1bb7d2f6d8e4759b839f80a7cd01111",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01387 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003138 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "339d95ac0fd34d84857b85c631f1b0ba",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01459 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004056 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1ea15af3c8cc481bbd2bf799e1dc79a2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=248), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01444 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004435 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "869f5d3b683649f6871fca700229909d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=153), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01461 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003569 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0e349c74067349849547fef10966c7f0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=134), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0146 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000308 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c9150ae93ab249f5b10bacb26149a7b5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=134), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01454 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004134 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e32f44496f4c4a169545e8a0dd0a6d6f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01414 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004332 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "75398d522dc4445fae16d2e33c350456",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01466 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004258 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0c587eab88df4ed58438a50ec0d8508b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01373 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002682 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "fb06444dd83c4c1d8e704652326daf2b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01411 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003271 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "bef485f2d0244ef89feb959b8fd3b7b7",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0144 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003004 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3d3c3d3c0d714d8192237e6b75b8b821",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01419 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003037 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7b2bb2d18385408eacdc1d994d3574b6",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01431 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003641 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6981f725447f4914a518535f97751157",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01439 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003188 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "868806b2ff41487db3610c8efaf74862",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=83), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0138 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003436 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6827eafd127c4ac392113b27243d7c49",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01398 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003068 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "038b32fe8da4497991b54595125c2362",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=107), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01425 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004435 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "60943effb9174995b171f395cad7e20c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=83), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0144 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "daf88b3cd9214023b0f697dbe3300e93",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01367 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002458 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ea664b3ad39744c199ba637212f5a670",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01429 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002596 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "88fc18618e03488381d3323ef3b60d08",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01485 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003014 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "541fc62925364173a6154f7d11ce201e",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01444 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004439 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "48f5d206f2b84d1cbe121ea1bdecebe4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01398 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002608 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "fca2391a4e2e4de2ae7cb6c85991e954",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01418 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003374 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "693d8ebec4324e3eb2016796845846d0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01365 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002751 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a1b9d643ad474d7095afe9667cddf308",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01426 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004215 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1d8c0374b43d4efe89e7107d07488aef",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=228), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01462 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004749 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "44994a41837447e3806ea013fe6655e8",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=143), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01443 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004103 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "057926358b9048e79448858bddb4e3ff",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=119), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01442 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004051 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f2962720f3f146d48c627d268b3d32b4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=128), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0143 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004137 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "aa32af3e08614f68841271205341a258",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01425 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003734 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f649e0bb8f744275bfb3a057b92cf701",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01414 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002923 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4ae0f4789f2d441a9ff10c05bffd9c73",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01423 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003095 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a9a305ad79894e45b6f82319f8ed1ced",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01545 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003495 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c8ed9100575b42959c342d4aad9b2e51",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01467 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003078 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "cc90488aa5f54e3ab97191a3dc2dfbd0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01434 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002689 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1ac461a6fdf54a5a9e013173a440ec77",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01395 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "c86f6792477e4eb3abaeab4f06757e67",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01402 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000303 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1c2a14c683d24e84b56c5a1bb330fc1d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=74), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01434 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000375 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "94105a78d8ca4204bf1bdda09522a301",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=95), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01461 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004246 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "cc92648df8494c9fa6d3aa1b53d051c4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=98), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01445 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002921 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f912cc4d3dcf4ee5b49da6049af07bd7",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=77), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01458 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004594 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7243bf8870d8430c825603f5e6272669",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01388 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004416 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0023ee95cdc343a5833083e46f5feb5c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01403 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003662 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "97b48318256048aa9e1ead3ac53f0005",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01423 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "da85068a64084588aae5f3db40b2c22b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01393 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004101 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "736c5d0ee4ea42558fbdfaa9864fa05c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01416 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003831 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9560f9d5d0fc4acb8b2c4bb4020d5449",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01404 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002923 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4b9b023997204b59a1168795edd818fb",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.014 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004227 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2aa2696403994438b55d1e33fb1a3a3f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01378 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003235 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8a4b0e60c6584442a2cf6fee7bc89838",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=228), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0143 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004218 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e91326b1a77f451597de539cfc5c18eb",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=143), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01434 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002985 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7b28fad66e3541b5b9e377864f8f2311",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=119), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01432 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003104 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "70a9606f701147118464245e9d83f404",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=128), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01442 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004361 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e2850f90fbbb4e6baa8c76a8116d3547",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01416 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003979 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "771236eabf8d4689aee543e64ec4dc89",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01404 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003238 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "21ce8b8c9aa546a1a59f4d09b74ce3b8",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01421 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003929 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "2c206ff3d99a48beb00095e1f6581109",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01392 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002837 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "83680a23eca343499439883b7f7fd338",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01412 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003159 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "5e236cd0266b4e96aac388bb445b2511",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01493 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000376 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "4f2dd3b06b1746be8675639802242eda",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01404 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002992 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a977230a5cb8459b999af9e98ad5caa5",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01402 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004101 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "94bc86ca58e44b15aaca05d25f89cb13",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=74), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01387 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003057 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3ae02164cf9c4df2bccc648a913d7f11",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=95), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01414 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003326 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f50107912134483e826e017aa9f18292",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=98), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01418 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003924 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "dc4994dd98004c94827715c1ff0190c0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=77), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01406 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003374 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ea797ce6ca924e1a9e32e901883b9a44",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01412 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003881 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ffd899d9657f47348eaf13abaf63579f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0144 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004048 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "1c4797a49b33460a8925c7102b569a76",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01393 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003459 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "0fc16ae0a0614e3593f272d8dc1a26e8",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01434 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004034 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "8b117cf88b504cc584a334976aab6343",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01401 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003109 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "e1651cb10e8446dca2d8e9c4ffae3279",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01417 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004241 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9703cb1c40ac423c966cbbb85f5ce64d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01467 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003197 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "52c676be2d124f18985bbaa2178624c4",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01419 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003269 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "59db3948137946ac9cb53d7f3639476a",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=248), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01458 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003638 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7a2311257edf478191b959319a276bce",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=153), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0142 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003717 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ad2f842cd54443c6940f98eb9cadfbdf",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=134), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01439 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004082 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "eec127c454e84bbd9ef199729b87f066",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=134), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01418 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004315 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a44eecb90030499ba26a2477f5040735",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.0145 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003211 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "a4bc8eee6e8942899b3f36ceda21bc2f",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01464 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "7d7b5d6f7d404aa1845acd21bc6bfc2b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01444 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003829 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3e4633e39202427ea68fd8f4a9d05e97",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01479 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003049 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "3b825f699fe34b479f300fe7fea0d22b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01469 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003016 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "619c3345bdda4f4da4928af5ac4dfaf2",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=101), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01407 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003226 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "313391e1fa4e4d5ea80cd1d0c5a3551e",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=39), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.014 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002759 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "26050021aecc49ef85ed140783653555",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=92), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01441 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003214 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "9cef3288906844c886cb8acf48f0e67d",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=83), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01397 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000319 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "fc6fc837a53e4fc28d5c4a095b076293",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=105), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01487 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004451 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "6d6154f83f2d44f3b6b7deffd071157c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=107), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01487 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003221 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "ff4a15ca44f74f488d66557fe0f0e110",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=83), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01476 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003107 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "50ebd1ab989a490c9021fb7a1a0aebd0",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01405 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002704 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "72548395abd84095a1b5ff944ee5062c",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01443 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "11b068fff75f4f8fbf1eb42eb77f6135",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01378 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004559 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "56f386f5daf94f1080f9b2dc048754d9",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01434 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002866 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "62bc77ca87cc4876beae1b2f3f61f071",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=17), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01368 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002737 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "99a3a8ce288140d282f10578c8e99044",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=62), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01433 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003326 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSall.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "f85fb5ebb64845139155d2b4bfb20678",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=27), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01373 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002837 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.tcmx.soc.pac\n"
]
},
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "394ca3d8b2dc412b8a6f2dfe9f90cf03",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"HBox(children=(IntProgress(value=0, max=49), HTML(value='')))"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"\n",
"************************************\n",
"function = compute_association\n",
" time = 0.01407 sec\n",
"************************************\n",
"\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003114 sec\n",
"************************************\n",
"\n",
" Operation: addition 'token-feature weight matrix' X 'socc matrix'...\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSnv.tcmx.soc.pac\n"
]
}
],
"source": [
"socdata = createSoc(\n",
" token_dir,\n",
" registers = weight_data['model_register'],\n",
" soc_pos = soc_pos, lengths = lengths,\n",
" socMTX = freqMTX_CW4,\n",
" store_focdists = f\"{output_path}/cws/{type_name}/\") # create distance matrices for context words"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" LEMMAPATH | \n",
" LEMMAREL | \n",
" bound | \n",
" foc_base | \n",
" foc_context_words | \n",
" foc_pmi | \n",
" foc_pos | \n",
" foc_win | \n",
" soc_length | \n",
" soc_pos | \n",
" tokens | \n",
"
\n",
" \n",
" \n",
" \n",
" child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 23 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 23 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 23 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 23 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv | \n",
" LEMMAPATH | \n",
" NaN | \n",
" NaN | \n",
" LEMMAPATH | \n",
" 20 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" all | \n",
" 32 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" nv | \n",
" 32 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" all | \n",
" 32 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" no | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" nv | \n",
" 32 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" all | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" nv | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" all | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" selection | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" nv | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" all | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" 10 | \n",
" nv | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" all | \n",
" 26 | \n",
"
\n",
" \n",
" child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" LEMMAREL | \n",
" NaN | \n",
" LEMMAREL | \n",
" 10 | \n",
" weight | \n",
" NaN | \n",
" NaN | \n",
" FOC | \n",
" nv | \n",
" 26 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIno.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 3-3 | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 3-3 | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 3-3 | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 19 | \n",
" no | \n",
" all | \n",
" 3-3 | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 3-3 | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" True | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 3-3 | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-3 | \n",
" FOC | \n",
" all | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-3 | \n",
" FOC | \n",
" nv | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-3 | \n",
" 10 | \n",
" all | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-3 | \n",
" 10 | \n",
" nv | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-3 | \n",
" FOC | \n",
" all | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-3 | \n",
" FOC | \n",
" nv | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 20 | \n",
" no | \n",
" all | \n",
" 5-5 | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 20 | \n",
" no | \n",
" all | \n",
" 5-5 | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 20 | \n",
" no | \n",
" all | \n",
" 5-5 | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 20 | \n",
" no | \n",
" all | \n",
" 5-5 | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIselection.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-5 | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIselection.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-5 | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIselection.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-5 | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIselection.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" selection | \n",
" all | \n",
" 5-5 | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-5 | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-5 | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-5 | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 14 | \n",
" weight | \n",
" all | \n",
" 5-5 | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 17 | \n",
" no | \n",
" nounverbs | \n",
" 5-5 | \n",
" 10 | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 17 | \n",
" no | \n",
" nounverbs | \n",
" 5-5 | \n",
" 10 | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 17 | \n",
" no | \n",
" nounverbs | \n",
" 5-5 | \n",
" FOC | \n",
" all | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 17 | \n",
" no | \n",
" nounverbs | \n",
" 5-5 | \n",
" FOC | \n",
" nv | \n",
" 40 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-5 | \n",
" 10 | \n",
" all | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-5 | \n",
" 10 | \n",
" nv | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-5 | \n",
" FOC | \n",
" all | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" selection | \n",
" nounverbs | \n",
" 5-5 | \n",
" FOC | \n",
" nv | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-5 | \n",
" 10 | \n",
" all | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-5 | \n",
" 10 | \n",
" nv | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSall | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-5 | \n",
" FOC | \n",
" all | \n",
" 36 | \n",
"
\n",
" \n",
" child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv | \n",
" NaN | \n",
" NaN | \n",
" False | \n",
" BOW | \n",
" 12 | \n",
" weight | \n",
" nounverbs | \n",
" 5-5 | \n",
" FOC | \n",
" nv | \n",
" 36 | \n",
"
\n",
" \n",
"
\n",
"
168 rows × 11 columns
\n",
"
"
],
"text/plain": [
" LEMMAPATH LEMMAREL \\\n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall LEMMAPATH NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv LEMMAPATH NaN \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv NaN LEMMAREL \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSall NaN NaN \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv NaN NaN \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall NaN NaN \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv NaN NaN \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall NaN NaN \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv NaN NaN \n",
"... ... ... \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... NaN NaN \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... NaN NaN \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... NaN NaN \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... NaN NaN \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... NaN NaN \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... NaN NaN \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall NaN NaN \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv NaN NaN \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall NaN NaN \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv NaN NaN \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... NaN NaN \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... NaN NaN \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... NaN NaN \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... NaN NaN \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall NaN NaN \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv NaN NaN \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall NaN NaN \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv NaN NaN \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPO... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv NaN NaN \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... NaN NaN \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... NaN NaN \n",
"\n",
" bound foc_base \\\n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall NaN LEMMAPATH \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv NaN LEMMAPATH \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall NaN LEMMAREL \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv NaN LEMMAREL \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSall True BOW \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv True BOW \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall True BOW \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv True BOW \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall True BOW \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv True BOW \n",
"... ... ... \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... False BOW \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... False BOW \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... False BOW \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... False BOW \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... False BOW \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... False BOW \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall False BOW \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv False BOW \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall False BOW \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv False BOW \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... False BOW \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... False BOW \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... False BOW \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... False BOW \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall False BOW \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv False BOW \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall False BOW \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv False BOW \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPO... False BOW \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv False BOW \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... False BOW \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... False BOW \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... False BOW \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... False BOW \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... False BOW \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... False BOW \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... False BOW \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... False BOW \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... False BOW \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... False BOW \n",
"\n",
" foc_context_words \\\n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall 23 \n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv 23 \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall 23 \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv 23 \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall 20 \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv 20 \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall 20 \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv 20 \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall 20 \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv 20 \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall 20 \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv 20 \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall 10 \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv 10 \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall 10 \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv 10 \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall 10 \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv 10 \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall 10 \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv 10 \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall 10 \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv 10 \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall 10 \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv 10 \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSall 19 \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv 19 \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall 19 \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv 19 \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall 14 \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv 14 \n",
"... ... \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... 12 \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... 12 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... 12 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... 12 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... 12 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... 12 \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall 20 \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv 20 \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall 20 \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv 20 \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... 14 \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... 14 \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... 14 \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... 14 \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall 14 \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv 14 \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall 14 \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv 14 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPO... 17 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv 17 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... 17 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... 17 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... 12 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... 12 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... 12 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... 12 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... 12 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... 12 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... 12 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... 12 \n",
"\n",
" foc_pmi foc_pos \\\n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall no NaN \n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv no NaN \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall no NaN \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv no NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall selection NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv selection NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall selection NaN \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv selection NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall weight NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv weight NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall weight NaN \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv weight NaN \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall no NaN \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv no NaN \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall no NaN \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv no NaN \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall selection NaN \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv selection NaN \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall selection NaN \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv selection NaN \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall weight NaN \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv weight NaN \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall weight NaN \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv weight NaN \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSall no all \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv no all \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall no all \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv no all \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall selection all \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv selection all \n",
"... ... ... \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... selection nounverbs \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... selection nounverbs \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... weight nounverbs \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... weight nounverbs \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... weight nounverbs \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... weight nounverbs \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall no all \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv no all \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall no all \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv no all \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... selection all \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... selection all \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... selection all \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... selection all \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall weight all \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv weight all \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall weight all \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv weight all \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPO... no nounverbs \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv no nounverbs \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... no nounverbs \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... no nounverbs \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... selection nounverbs \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... selection nounverbs \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... selection nounverbs \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... selection nounverbs \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... weight nounverbs \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... weight nounverbs \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... weight nounverbs \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... weight nounverbs \n",
"\n",
" foc_win soc_length soc_pos \\\n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall NaN 10 all \n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv NaN 10 nv \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall NaN FOC all \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv NaN FOC nv \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall NaN 10 all \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv NaN 10 nv \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall NaN FOC all \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv NaN FOC nv \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall NaN 10 all \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv NaN 10 nv \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall NaN FOC all \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv NaN FOC nv \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall NaN 10 all \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv NaN 10 nv \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall NaN FOC all \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv NaN FOC nv \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall NaN 10 all \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv NaN 10 nv \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall NaN FOC all \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv NaN FOC nv \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall NaN 10 all \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv NaN 10 nv \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall NaN FOC all \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv NaN FOC nv \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSall 3-3 10 all \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv 3-3 10 nv \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall 3-3 FOC all \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv 3-3 FOC nv \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall 3-3 10 all \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv 3-3 10 nv \n",
"... ... ... ... \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... 5-3 FOC all \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... 5-3 FOC nv \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... 5-3 10 all \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... 5-3 10 nv \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... 5-3 FOC all \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... 5-3 FOC nv \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall 5-5 10 all \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv 5-5 10 nv \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall 5-5 FOC all \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv 5-5 FOC nv \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... 5-5 10 all \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... 5-5 10 nv \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... 5-5 FOC all \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... 5-5 FOC nv \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall 5-5 10 all \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv 5-5 10 nv \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall 5-5 FOC all \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv 5-5 FOC nv \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPO... 5-5 10 all \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv 5-5 10 nv \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... 5-5 FOC all \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... 5-5 FOC nv \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... 5-5 10 all \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... 5-5 10 nv \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... 5-5 FOC all \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... 5-5 FOC nv \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... 5-5 10 all \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... 5-5 10 nv \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... 5-5 FOC all \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... 5-5 FOC nv \n",
"\n",
" tokens \n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall 40 \n",
"child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv 40 \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall 40 \n",
"child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv 40 \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall 40 \n",
"child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv 40 \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall 40 \n",
"child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv 40 \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall 40 \n",
"child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv 40 \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall 40 \n",
"child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv 40 \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall 32 \n",
"child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv 32 \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall 32 \n",
"child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv 32 \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall 26 \n",
"child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv 26 \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall 26 \n",
"child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv 26 \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall 26 \n",
"child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv 26 \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall 26 \n",
"child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv 26 \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSall 40 \n",
"child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv 40 \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall 40 \n",
"child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv 40 \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall 40 \n",
"child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv 40 \n",
"... ... \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... 36 \n",
"child.nobound5-3nounverbs.PPMIselection.LENGTHF... 36 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... 36 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTH10.S... 36 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... 36 \n",
"child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.... 36 \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall 40 \n",
"child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv 40 \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall 40 \n",
"child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv 40 \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... 40 \n",
"child.nobound5-5all.PPMIselection.LENGTH10.SOCP... 40 \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... 40 \n",
"child.nobound5-5all.PPMIselection.LENGTHFOC.SOC... 40 \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall 40 \n",
"child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv 40 \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall 40 \n",
"child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv 40 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPO... 40 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv 40 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... 40 \n",
"child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCP... 40 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... 36 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTH1... 36 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... 36 \n",
"child.nobound5-5nounverbs.PPMIselection.LENGTHF... 36 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... 36 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTH10.S... 36 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... 36 \n",
"child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.... 36 \n",
"\n",
"[168 rows x 11 columns]"
]
},
"execution_count": 31,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"socdata"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [],
"source": [
"socdata.to_csv(f\"{nephovis_path}/{type_name}/{type_name}.models.tsv\", sep = \"\\t\", index_label=\"_model\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### 6 Cosine distances\n",
"Once we have all the token-level vectors, as well as our registers,\n",
"we can quickly compute and store their cosine distances."
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000612 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004447 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003285 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003374 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002944 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002861 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002871 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002854 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002887 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003104 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000298 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAPATH.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002873 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003633 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002754 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002789 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002759 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002666 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0004048 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002644 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002637 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002723 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002658 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002668 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.LEMMAREL.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000407 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000289 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002985 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002909 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000288 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002871 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003994 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000289 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002892 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002916 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002885 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002854 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3all.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002859 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002871 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002909 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002809 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002854 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002775 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002828 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002794 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002763 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002847 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002789 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002863 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000288 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000293 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002902 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002897 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000289 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002897 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002911 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002866 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002978 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003126 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3all.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003049 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002971 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002995 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002847 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002794 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002794 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002832 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002794 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000309 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002863 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002925 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000288 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000288 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002868 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002906 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002868 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000288 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002894 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002847 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003045 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003166 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002954 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003026 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002818 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002849 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002847 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002799 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000288 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002837 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002861 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.bound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002885 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002944 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002885 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002956 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002878 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002906 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002866 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002892 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000288 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002997 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002868 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3all.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002894 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002894 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002892 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002913 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002794 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002892 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000278 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002816 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002794 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002818 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002856 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound3-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002887 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002995 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003011 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002873 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002902 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002913 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002866 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002875 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002916 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0003128 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3all.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002894 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002928 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002892 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002882 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002823 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002811 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002811 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002842 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002804 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002818 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002804 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002816 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-3nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002861 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002849 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002909 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002873 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002861 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002875 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002887 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002856 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002885 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002856 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000289 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002851 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5all.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002875 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002875 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002832 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.000289 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIno.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002789 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002809 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002801 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002823 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIselection.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002816 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002782 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTH10.SOCPOSnv.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002809 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSall.ttmx.dist.pac\n",
"\n",
"************************************\n",
"function = compute_distance\n",
" time = 0.0002835 sec\n",
"************************************\n",
"\n",
"\n",
"Saving matrix...\n",
"Stored in file:\n",
" .//output/create-clouds//tokens/child/child.nobound5-5nounverbs.PPMIweight.LENGTHFOC.SOCPOSnv.ttmx.dist.pac\n"
]
}
],
"source": [
"from nephosem import TypeTokenMatrix\n",
"from nephosem.specutils.mxcalc import compute_distance\n",
"\n",
"input_suffix = \".tcmx.soc.pac\" #token by context matrix\n",
"output_suffix = \".ttmx.dist.pac\" # token by token matrix\n",
"for modelname in socdata.index:\n",
" input_name = f\"{token_dir}/{modelname}{input_suffix}\"\n",
" output_name = f\"{token_dir}/{modelname}{output_suffix}\"\n",
" compute_distance(TypeTokenMatrix.load(input_name)).save(output_name)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For the rest, we go to R!\n",
"\n",
"The R code is in the processClouds notebook, which uses the [semcloud](https://montesmariana.github.io/semcloud) package."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Bonus: context word detail"
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [],
"source": [
"from semasioFlow.contextwords import listContextwords"
]
},
{
"cell_type": "code",
"execution_count": 35,
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"100%|██████████| 11/11 [00:00<00:00, 417.83it/s]\n"
]
}
],
"source": [
"cws = listContextwords(type_name, tokenlist, fnameSample, settings, left_win=15, right_win = 15)"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"
\n",
" \n",
" \n",
" | \n",
" cw | \n",
" deprel | \n",
" distance | \n",
" head | \n",
" id | \n",
" lemma | \n",
" path | \n",
" pos | \n",
" position | \n",
" rep_path | \n",
" same_sentence | \n",
" side | \n",
" steps | \n",
" target_lemma | \n",
" token_id | \n",
" word | \n",
"
\n",
" \n",
" \n",
" \n",
" boy/N/StanfDepSents.1/9/L0 | \n",
" the/D | \n",
" det | \n",
" 1 | \n",
" 2 | \n",
" 1 | \n",
" the | \n",
" #T->det:the | \n",
" D | \n",
" L0 | \n",
" #T->det:Cw | \n",
" True | \n",
" L | \n",
" 1 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" The | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/L1 | \n",
" NaN | \n",
" <s id=\"2\"> | \n",
" 2 | \n",
" <s id=\"2\"> | \n",
" <s id=\"2\"> | \n",
" <s id=\"2\"> | \n",
" NaN | \n",
" <s id=\"2\"> | \n",
" L1 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" <s id=\"2\"> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/L2 | \n",
" NaN | \n",
" </s> | \n",
" 3 | \n",
" </s> | \n",
" </s> | \n",
" </s> | \n",
" NaN | \n",
" </s> | \n",
" L2 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" </s> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/L3 | \n",
" healthy/J | \n",
" acomp | \n",
" 4 | \n",
" 3 | \n",
" 4 | \n",
" healthy | \n",
" NaN | \n",
" J | \n",
" L3 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" healthy | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/L4 | \n",
" look/V | \n",
" ROOT | \n",
" 5 | \n",
" 0 | \n",
" 3 | \n",
" look | \n",
" NaN | \n",
" V | \n",
" L4 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" looks | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/L5 | \n",
" girl/N | \n",
" nsubj | \n",
" 6 | \n",
" 3 | \n",
" 2 | \n",
" girl | \n",
" NaN | \n",
" N | \n",
" L5 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" girl | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/L6 | \n",
" the/D | \n",
" det | \n",
" 7 | \n",
" 2 | \n",
" 1 | \n",
" the | \n",
" NaN | \n",
" D | \n",
" L6 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" The | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/L7 | \n",
" NaN | \n",
" <s id=\"1\"> | \n",
" 8 | \n",
" <s id=\"1\"> | \n",
" <s id=\"1\"> | \n",
" <s id=\"1\"> | \n",
" NaN | \n",
" <s id=\"1\"> | \n",
" L7 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" <s id=\"1\"> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R0 | \n",
" look/V | \n",
" ROOT | \n",
" 1 | \n",
" 0 | \n",
" 3 | \n",
" look | \n",
" look->nsubj:#T | \n",
" V | \n",
" R0 | \n",
" Cw->nsubj:#T | \n",
" True | \n",
" R | \n",
" 1 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" looks | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R1 | \n",
" at/I | \n",
" prep | \n",
" 2 | \n",
" 3 | \n",
" 4 | \n",
" at | \n",
" look->[nsubj:#T,prep:at] | \n",
" I | \n",
" R1 | \n",
" look->[nsubj:#T,prep:Cw] | \n",
" True | \n",
" R | \n",
" 2 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" at | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R10 | \n",
" girl/N | \n",
" nsubj | \n",
" 11 | \n",
" 3 | \n",
" 2 | \n",
" girl | \n",
" NaN | \n",
" N | \n",
" R10 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" girl | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R11 | \n",
" eat/V | \n",
" ROOT | \n",
" 12 | \n",
" 0 | \n",
" 3 | \n",
" eat | \n",
" NaN | \n",
" V | \n",
" R11 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" eats | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R12 | \n",
" less/R | \n",
" advmod | \n",
" 13 | \n",
" 5 | \n",
" 4 | \n",
" less | \n",
" NaN | \n",
" R | \n",
" R12 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" less | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R13 | \n",
" healthy/J | \n",
" amod | \n",
" 14 | \n",
" 6 | \n",
" 5 | \n",
" healthy | \n",
" NaN | \n",
" J | \n",
" R13 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" healthy | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R14 | \n",
" food/N | \n",
" dobj | \n",
" 15 | \n",
" 3 | \n",
" 6 | \n",
" food | \n",
" NaN | \n",
" N | \n",
" R14 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" food | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R2 | \n",
" the/D | \n",
" det | \n",
" 3 | \n",
" 6 | \n",
" 5 | \n",
" the | \n",
" look->[nsubj:#T,prep:at->pobj:girl->det:the] | \n",
" D | \n",
" R2 | \n",
" look->[nsubj:#T,prep:at->pobj:girl->det:Cw] | \n",
" True | \n",
" R | \n",
" 4 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" the | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R3 | \n",
" girl/N | \n",
" pobj | \n",
" 4 | \n",
" 4 | \n",
" 6 | \n",
" girl | \n",
" look->[nsubj:#T,prep:at->pobj:girl] | \n",
" N | \n",
" R3 | \n",
" look->[nsubj:#T,prep:at->pobj:Cw] | \n",
" True | \n",
" R | \n",
" 3 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" girl | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R4 | \n",
" as/I | \n",
" mark | \n",
" 5 | \n",
" 9 | \n",
" 7 | \n",
" as | \n",
" look->[nsubj:#T,advcl:eat->mark:as] | \n",
" I | \n",
" R4 | \n",
" look->[nsubj:#T,advcl:eat->mark:Cw] | \n",
" True | \n",
" R | \n",
" 3 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" as | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R5 | \n",
" she/P | \n",
" nsubj | \n",
" 6 | \n",
" 9 | \n",
" 8 | \n",
" she | \n",
" look->[nsubj:#T,advcl:eat->nsubj:she] | \n",
" P | \n",
" R5 | \n",
" look->[nsubj:#T,advcl:eat->nsubj:Cw] | \n",
" True | \n",
" R | \n",
" 3 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" she | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R6 | \n",
" eat/V | \n",
" advcl | \n",
" 7 | \n",
" 3 | \n",
" 9 | \n",
" eat | \n",
" look->[nsubj:#T,advcl:eat] | \n",
" V | \n",
" R6 | \n",
" look->[nsubj:#T,advcl:Cw] | \n",
" True | \n",
" R | \n",
" 2 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" eats | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R7 | \n",
" NaN | \n",
" </s> | \n",
" 8 | \n",
" </s> | \n",
" </s> | \n",
" </s> | \n",
" NaN | \n",
" </s> | \n",
" R7 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" </s> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R8 | \n",
" NaN | \n",
" <s id=\"3\"> | \n",
" 9 | \n",
" <s id=\"3\"> | \n",
" <s id=\"3\"> | \n",
" <s id=\"3\"> | \n",
" NaN | \n",
" <s id=\"3\"> | \n",
" R8 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" <s id=\"3\"> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/R9 | \n",
" the/D | \n",
" det | \n",
" 10 | \n",
" 2 | \n",
" 1 | \n",
" the | \n",
" NaN | \n",
" D | \n",
" R9 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" The | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.1/9/target | \n",
" boy/N | \n",
" nsubj | \n",
" 0 | \n",
" 3 | \n",
" 2 | \n",
" boy | \n",
" #T | \n",
" N | \n",
" target | \n",
" #T | \n",
" True | \n",
" target | \n",
" 0 | \n",
" child | \n",
" boy/N/StanfDepSents.1/9 | \n",
" boy | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.12/12/L0 | \n",
" the/D | \n",
" det | \n",
" 1 | \n",
" 2 | \n",
" 1 | \n",
" the | \n",
" #T->det:the | \n",
" D | \n",
" L0 | \n",
" #T->det:Cw | \n",
" True | \n",
" L | \n",
" 1 | \n",
" child | \n",
" boy/N/StanfDepSents.12/12 | \n",
" The | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.12/12/L1 | \n",
" NaN | \n",
" <s id=\"35\"> | \n",
" 2 | \n",
" <s id=\"35\"> | \n",
" <s id=\"35\"> | \n",
" <s id=\"35\"> | \n",
" NaN | \n",
" <s id=\"35\"> | \n",
" L1 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.12/12 | \n",
" <s id=\"35\"> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.12/12/L10 | \n",
" NaN | \n",
" <s id=\"34\"> | \n",
" 11 | \n",
" <s id=\"34\"> | \n",
" <s id=\"34\"> | \n",
" <s id=\"34\"> | \n",
" NaN | \n",
" <s id=\"34\"> | \n",
" L10 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.12/12 | \n",
" <s id=\"34\"> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.12/12/L2 | \n",
" NaN | \n",
" </s> | \n",
" 3 | \n",
" </s> | \n",
" </s> | \n",
" </s> | \n",
" NaN | \n",
" </s> | \n",
" L2 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.12/12 | \n",
" </s> | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.12/12/L3 | \n",
" tasty/J | \n",
" acomp | \n",
" 4 | \n",
" 6 | \n",
" 7 | \n",
" tasty | \n",
" NaN | \n",
" J | \n",
" L3 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.12/12 | \n",
" tasty | \n",
"
\n",
" \n",
" boy/N/StanfDepSents.12/12/L4 | \n",
" be/V | \n",
" ROOT | \n",
" 5 | \n",
" 0 | \n",
" 6 | \n",
" be | \n",
" NaN | \n",
" V | \n",
" L4 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" boy/N/StanfDepSents.12/12 | \n",
" are | \n",
"
\n",
" \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
" ... | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.8/3/target | \n",
" girl/N | \n",
" nsubj | \n",
" 0 | \n",
" 3 | \n",
" 2 | \n",
" girl | \n",
" #T | \n",
" N | \n",
" target | \n",
" #T | \n",
" True | \n",
" target | \n",
" 0 | \n",
" child | \n",
" girl/N/StanfDepSents.8/3 | \n",
" girl | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L0 | \n",
" old/J | \n",
" amod | \n",
" 1 | \n",
" 3 | \n",
" 2 | \n",
" old | \n",
" #T->amod:old | \n",
" J | \n",
" L0 | \n",
" #T->amod:Cw | \n",
" True | \n",
" L | \n",
" 1 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" older | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L1 | \n",
" the/D | \n",
" det | \n",
" 2 | \n",
" 3 | \n",
" 1 | \n",
" the | \n",
" #T->det:the | \n",
" D | \n",
" L1 | \n",
" #T->det:Cw | \n",
" True | \n",
" L | \n",
" 1 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" The | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L10 | \n",
" the/D | \n",
" det | \n",
" 11 | \n",
" 4 | \n",
" 2 | \n",
" the | \n",
" NaN | \n",
" D | \n",
" L10 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" the | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L11 | \n",
" all/P | \n",
" predet | \n",
" 12 | \n",
" 4 | \n",
" 1 | \n",
" all | \n",
" NaN | \n",
" P | \n",
" L11 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" All | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L12 | \n",
" NaN | \n",
" <s id=\"25\"> | \n",
" 13 | \n",
" <s id=\"25\"> | \n",
" <s id=\"25\"> | \n",
" <s id=\"25\"> | \n",
" NaN | \n",
" <s id=\"25\"> | \n",
" L12 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" <s id=\"25\"> | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L2 | \n",
" NaN | \n",
" <s id=\"26\"> | \n",
" 3 | \n",
" <s id=\"26\"> | \n",
" <s id=\"26\"> | \n",
" <s id=\"26\"> | \n",
" NaN | \n",
" <s id=\"26\"> | \n",
" L2 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" <s id=\"26\"> | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L3 | \n",
" NaN | \n",
" </s> | \n",
" 4 | \n",
" </s> | \n",
" </s> | \n",
" </s> | \n",
" NaN | \n",
" </s> | \n",
" L3 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" </s> | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L4 | \n",
" apple/N | \n",
" dobj | \n",
" 5 | \n",
" 6 | \n",
" 8 | \n",
" apple | \n",
" NaN | \n",
" N | \n",
" L4 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" apple | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L5 | \n",
" an/D | \n",
" det | \n",
" 6 | \n",
" 8 | \n",
" 7 | \n",
" an | \n",
" NaN | \n",
" D | \n",
" L5 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" an | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L6 | \n",
" give/V | \n",
" ROOT | \n",
" 7 | \n",
" 0 | \n",
" 6 | \n",
" give | \n",
" NaN | \n",
" V | \n",
" L6 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" given | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L7 | \n",
" be/V | \n",
" auxpass | \n",
" 8 | \n",
" 6 | \n",
" 5 | \n",
" be | \n",
" NaN | \n",
" V | \n",
" L7 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" were | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L8 | \n",
" boy/N | \n",
" nsubjpass | \n",
" 9 | \n",
" 6 | \n",
" 4 | \n",
" boy | \n",
" NaN | \n",
" N | \n",
" L8 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" boys | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/L9 | \n",
" old/J | \n",
" amod | \n",
" 10 | \n",
" 4 | \n",
" 3 | \n",
" old | \n",
" NaN | \n",
" J | \n",
" L9 | \n",
" NaN | \n",
" False | \n",
" L | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" old | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R0 | \n",
" look/V | \n",
" ROOT | \n",
" 1 | \n",
" 0 | \n",
" 4 | \n",
" look | \n",
" look->nsubj:#T | \n",
" V | \n",
" R0 | \n",
" Cw->nsubj:#T | \n",
" True | \n",
" R | \n",
" 1 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" looks | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R1 | \n",
" at/I | \n",
" prep | \n",
" 2 | \n",
" 4 | \n",
" 5 | \n",
" at | \n",
" look->[nsubj:#T,prep:at] | \n",
" I | \n",
" R1 | \n",
" look->[nsubj:#T,prep:Cw] | \n",
" True | \n",
" R | \n",
" 2 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" at | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R10 | \n",
" be/V | \n",
" ROOT | \n",
" 11 | \n",
" 0 | \n",
" 2 | \n",
" be | \n",
" NaN | \n",
" V | \n",
" R10 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" are | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R11 | \n",
" healthy/J | \n",
" acomp | \n",
" 12 | \n",
" 2 | \n",
" 3 | \n",
" healthy | \n",
" NaN | \n",
" J | \n",
" R11 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" healthy | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R12 | \n",
" for/I | \n",
" prep | \n",
" 13 | \n",
" 3 | \n",
" 4 | \n",
" for | \n",
" NaN | \n",
" I | \n",
" R12 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" for | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R13 | \n",
" boy/N | \n",
" pobj | \n",
" 14 | \n",
" 4 | \n",
" 5 | \n",
" boy | \n",
" NaN | \n",
" N | \n",
" R13 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" boys | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R14 | \n",
" NaN | \n",
" </s> | \n",
" 15 | \n",
" </s> | \n",
" </s> | \n",
" </s> | \n",
" NaN | \n",
" </s> | \n",
" R14 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" </s> | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R2 | \n",
" a/D | \n",
" det | \n",
" 3 | \n",
" 7 | \n",
" 6 | \n",
" a | \n",
" look->[nsubj:#T,prep:at->pobj:boy->det:a] | \n",
" D | \n",
" R2 | \n",
" look->[nsubj:#T,prep:at->pobj:boy->det:Cw] | \n",
" True | \n",
" R | \n",
" 4 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" a | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R3 | \n",
" boy/N | \n",
" pobj | \n",
" 4 | \n",
" 5 | \n",
" 7 | \n",
" boy | \n",
" look->[nsubj:#T,prep:at->pobj:boy] | \n",
" N | \n",
" R3 | \n",
" look->[nsubj:#T,prep:at->pobj:Cw] | \n",
" True | \n",
" R | \n",
" 3 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" boy | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R4 | \n",
" in/I | \n",
" prep | \n",
" 5 | \n",
" 7 | \n",
" 8 | \n",
" in | \n",
" look->[nsubj:#T,prep:at->pobj:boy->prep:in] | \n",
" I | \n",
" R4 | \n",
" look->[nsubj:#T,prep:at->pobj:boy->prep:Cw] | \n",
" True | \n",
" R | \n",
" 4 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" in | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R5 | \n",
" the/D | \n",
" det | \n",
" 6 | \n",
" 10 | \n",
" 9 | \n",
" the | \n",
" look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... | \n",
" D | \n",
" R5 | \n",
" look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... | \n",
" True | \n",
" R | \n",
" 6 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" the | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R6 | \n",
" house/N | \n",
" pobj | \n",
" 7 | \n",
" 8 | \n",
" 10 | \n",
" house | \n",
" look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... | \n",
" N | \n",
" R6 | \n",
" look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... | \n",
" True | \n",
" R | \n",
" 5 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" house | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R7 | \n",
" NaN | \n",
" </s> | \n",
" 8 | \n",
" </s> | \n",
" </s> | \n",
" </s> | \n",
" NaN | \n",
" </s> | \n",
" R7 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" </s> | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R8 | \n",
" NaN | \n",
" <s id=\"27\"> | \n",
" 9 | \n",
" <s id=\"27\"> | \n",
" <s id=\"27\"> | \n",
" <s id=\"27\"> | \n",
" NaN | \n",
" <s id=\"27\"> | \n",
" R8 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" <s id=\"27\"> | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/R9 | \n",
" apple/N | \n",
" nsubj | \n",
" 10 | \n",
" 2 | \n",
" 1 | \n",
" apple | \n",
" NaN | \n",
" N | \n",
" R9 | \n",
" NaN | \n",
" False | \n",
" R | \n",
" NaN | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" Apples | \n",
"
\n",
" \n",
" girl/N/StanfDepSents.9/14/target | \n",
" girl/N | \n",
" nsubj | \n",
" 0 | \n",
" 4 | \n",
" 3 | \n",
" girl | \n",
" #T | \n",
" N | \n",
" target | \n",
" #T | \n",
" True | \n",
" target | \n",
" 0 | \n",
" child | \n",
" girl/N/StanfDepSents.9/14 | \n",
" girl | \n",
"
\n",
" \n",
"
\n",
"
917 rows × 16 columns
\n",
"
"
],
"text/plain": [
" cw deprel distance \\\n",
"boy/N/StanfDepSents.1/9/L0 the/D det 1 \n",
"boy/N/StanfDepSents.1/9/L1 NaN 2 \n",
"boy/N/StanfDepSents.1/9/L2 NaN 3 \n",
"boy/N/StanfDepSents.1/9/L3 healthy/J acomp 4 \n",
"boy/N/StanfDepSents.1/9/L4 look/V ROOT 5 \n",
"boy/N/StanfDepSents.1/9/L5 girl/N nsubj 6 \n",
"boy/N/StanfDepSents.1/9/L6 the/D det 7 \n",
"boy/N/StanfDepSents.1/9/L7 NaN 8 \n",
"boy/N/StanfDepSents.1/9/R0 look/V ROOT 1 \n",
"boy/N/StanfDepSents.1/9/R1 at/I prep 2 \n",
"boy/N/StanfDepSents.1/9/R10 girl/N nsubj 11 \n",
"boy/N/StanfDepSents.1/9/R11 eat/V ROOT 12 \n",
"boy/N/StanfDepSents.1/9/R12 less/R advmod 13 \n",
"boy/N/StanfDepSents.1/9/R13 healthy/J amod 14 \n",
"boy/N/StanfDepSents.1/9/R14 food/N dobj 15 \n",
"boy/N/StanfDepSents.1/9/R2 the/D det 3 \n",
"boy/N/StanfDepSents.1/9/R3 girl/N pobj 4 \n",
"boy/N/StanfDepSents.1/9/R4 as/I mark 5 \n",
"boy/N/StanfDepSents.1/9/R5 she/P nsubj 6 \n",
"boy/N/StanfDepSents.1/9/R6 eat/V advcl 7 \n",
"boy/N/StanfDepSents.1/9/R7 NaN 8 \n",
"boy/N/StanfDepSents.1/9/R8 NaN 9 \n",
"boy/N/StanfDepSents.1/9/R9 the/D det 10 \n",
"boy/N/StanfDepSents.1/9/target boy/N nsubj 0 \n",
"boy/N/StanfDepSents.12/12/L0 the/D det 1 \n",
"boy/N/StanfDepSents.12/12/L1 NaN 2 \n",
"boy/N/StanfDepSents.12/12/L10 NaN 11 \n",
"boy/N/StanfDepSents.12/12/L2 NaN 3 \n",
"boy/N/StanfDepSents.12/12/L3 tasty/J acomp 4 \n",
"boy/N/StanfDepSents.12/12/L4 be/V ROOT 5 \n",
"... ... ... ... \n",
"girl/N/StanfDepSents.8/3/target girl/N nsubj 0 \n",
"girl/N/StanfDepSents.9/14/L0 old/J amod 1 \n",
"girl/N/StanfDepSents.9/14/L1 the/D det 2 \n",
"girl/N/StanfDepSents.9/14/L10 the/D det 11 \n",
"girl/N/StanfDepSents.9/14/L11 all/P predet 12 \n",
"girl/N/StanfDepSents.9/14/L12 NaN 13 \n",
"girl/N/StanfDepSents.9/14/L2 NaN 3 \n",
"girl/N/StanfDepSents.9/14/L3 NaN 4 \n",
"girl/N/StanfDepSents.9/14/L4 apple/N dobj 5 \n",
"girl/N/StanfDepSents.9/14/L5 an/D det 6 \n",
"girl/N/StanfDepSents.9/14/L6 give/V ROOT 7 \n",
"girl/N/StanfDepSents.9/14/L7 be/V auxpass 8 \n",
"girl/N/StanfDepSents.9/14/L8 boy/N nsubjpass 9 \n",
"girl/N/StanfDepSents.9/14/L9 old/J amod 10 \n",
"girl/N/StanfDepSents.9/14/R0 look/V ROOT 1 \n",
"girl/N/StanfDepSents.9/14/R1 at/I prep 2 \n",
"girl/N/StanfDepSents.9/14/R10 be/V ROOT 11 \n",
"girl/N/StanfDepSents.9/14/R11 healthy/J acomp 12 \n",
"girl/N/StanfDepSents.9/14/R12 for/I prep 13 \n",
"girl/N/StanfDepSents.9/14/R13 boy/N pobj 14 \n",
"girl/N/StanfDepSents.9/14/R14 NaN 15 \n",
"girl/N/StanfDepSents.9/14/R2 a/D det 3 \n",
"girl/N/StanfDepSents.9/14/R3 boy/N pobj 4 \n",
"girl/N/StanfDepSents.9/14/R4 in/I prep 5 \n",
"girl/N/StanfDepSents.9/14/R5 the/D det 6 \n",
"girl/N/StanfDepSents.9/14/R6 house/N pobj 7 \n",
"girl/N/StanfDepSents.9/14/R7 NaN 8 \n",
"girl/N/StanfDepSents.9/14/R8 NaN 9 \n",
"girl/N/StanfDepSents.9/14/R9 apple/N nsubj 10 \n",
"girl/N/StanfDepSents.9/14/target girl/N nsubj 0 \n",
"\n",
" head id lemma \\\n",
"boy/N/StanfDepSents.1/9/L0 2 1 the \n",
"boy/N/StanfDepSents.1/9/L1 \n",
"boy/N/StanfDepSents.1/9/L2 \n",
"boy/N/StanfDepSents.1/9/L3 3 4 healthy \n",
"boy/N/StanfDepSents.1/9/L4 0 3 look \n",
"boy/N/StanfDepSents.1/9/L5 3 2 girl \n",
"boy/N/StanfDepSents.1/9/L6 2 1 the \n",
"boy/N/StanfDepSents.1/9/L7 \n",
"boy/N/StanfDepSents.1/9/R0 0 3 look \n",
"boy/N/StanfDepSents.1/9/R1 3 4 at \n",
"boy/N/StanfDepSents.1/9/R10 3 2 girl \n",
"boy/N/StanfDepSents.1/9/R11 0 3 eat \n",
"boy/N/StanfDepSents.1/9/R12 5 4 less \n",
"boy/N/StanfDepSents.1/9/R13 6 5 healthy \n",
"boy/N/StanfDepSents.1/9/R14 3 6 food \n",
"boy/N/StanfDepSents.1/9/R2 6 5 the \n",
"boy/N/StanfDepSents.1/9/R3 4 6 girl \n",
"boy/N/StanfDepSents.1/9/R4 9 7 as \n",
"boy/N/StanfDepSents.1/9/R5 9 8 she \n",
"boy/N/StanfDepSents.1/9/R6 3 9 eat \n",
"boy/N/StanfDepSents.1/9/R7 \n",
"boy/N/StanfDepSents.1/9/R8 \n",
"boy/N/StanfDepSents.1/9/R9 2 1 the \n",
"boy/N/StanfDepSents.1/9/target 3 2 boy \n",
"boy/N/StanfDepSents.12/12/L0 2 1 the \n",
"boy/N/StanfDepSents.12/12/L1 \n",
"boy/N/StanfDepSents.12/12/L10 \n",
"boy/N/StanfDepSents.12/12/L2 \n",
"boy/N/StanfDepSents.12/12/L3 6 7 tasty \n",
"boy/N/StanfDepSents.12/12/L4 0 6 be \n",
"... ... ... ... \n",
"girl/N/StanfDepSents.8/3/target 3 2 girl \n",
"girl/N/StanfDepSents.9/14/L0 3 2 old \n",
"girl/N/StanfDepSents.9/14/L1 3 1 the \n",
"girl/N/StanfDepSents.9/14/L10 4 2 the \n",
"girl/N/StanfDepSents.9/14/L11 4 1 all \n",
"girl/N/StanfDepSents.9/14/L12 \n",
"girl/N/StanfDepSents.9/14/L2 \n",
"girl/N/StanfDepSents.9/14/L3 \n",
"girl/N/StanfDepSents.9/14/L4 6 8 apple \n",
"girl/N/StanfDepSents.9/14/L5 8 7 an \n",
"girl/N/StanfDepSents.9/14/L6 0 6 give \n",
"girl/N/StanfDepSents.9/14/L7 6 5 be \n",
"girl/N/StanfDepSents.9/14/L8 6 4 boy \n",
"girl/N/StanfDepSents.9/14/L9 4 3 old \n",
"girl/N/StanfDepSents.9/14/R0 0 4 look \n",
"girl/N/StanfDepSents.9/14/R1 4 5 at \n",
"girl/N/StanfDepSents.9/14/R10 0 2 be \n",
"girl/N/StanfDepSents.9/14/R11 2 3 healthy \n",
"girl/N/StanfDepSents.9/14/R12 3 4 for \n",
"girl/N/StanfDepSents.9/14/R13 4 5 boy \n",
"girl/N/StanfDepSents.9/14/R14 \n",
"girl/N/StanfDepSents.9/14/R2 7 6 a \n",
"girl/N/StanfDepSents.9/14/R3 5 7 boy \n",
"girl/N/StanfDepSents.9/14/R4 7 8 in \n",
"girl/N/StanfDepSents.9/14/R5 10 9 the \n",
"girl/N/StanfDepSents.9/14/R6 8 10 house \n",
"girl/N/StanfDepSents.9/14/R7 \n",
"girl/N/StanfDepSents.9/14/R8 \n",
"girl/N/StanfDepSents.9/14/R9 2 1 apple \n",
"girl/N/StanfDepSents.9/14/target 4 3 girl \n",
"\n",
" path \\\n",
"boy/N/StanfDepSents.1/9/L0 #T->det:the \n",
"boy/N/StanfDepSents.1/9/L1 NaN \n",
"boy/N/StanfDepSents.1/9/L2 NaN \n",
"boy/N/StanfDepSents.1/9/L3 NaN \n",
"boy/N/StanfDepSents.1/9/L4 NaN \n",
"boy/N/StanfDepSents.1/9/L5 NaN \n",
"boy/N/StanfDepSents.1/9/L6 NaN \n",
"boy/N/StanfDepSents.1/9/L7 NaN \n",
"boy/N/StanfDepSents.1/9/R0 look->nsubj:#T \n",
"boy/N/StanfDepSents.1/9/R1 look->[nsubj:#T,prep:at] \n",
"boy/N/StanfDepSents.1/9/R10 NaN \n",
"boy/N/StanfDepSents.1/9/R11 NaN \n",
"boy/N/StanfDepSents.1/9/R12 NaN \n",
"boy/N/StanfDepSents.1/9/R13 NaN \n",
"boy/N/StanfDepSents.1/9/R14 NaN \n",
"boy/N/StanfDepSents.1/9/R2 look->[nsubj:#T,prep:at->pobj:girl->det:the] \n",
"boy/N/StanfDepSents.1/9/R3 look->[nsubj:#T,prep:at->pobj:girl] \n",
"boy/N/StanfDepSents.1/9/R4 look->[nsubj:#T,advcl:eat->mark:as] \n",
"boy/N/StanfDepSents.1/9/R5 look->[nsubj:#T,advcl:eat->nsubj:she] \n",
"boy/N/StanfDepSents.1/9/R6 look->[nsubj:#T,advcl:eat] \n",
"boy/N/StanfDepSents.1/9/R7 NaN \n",
"boy/N/StanfDepSents.1/9/R8 NaN \n",
"boy/N/StanfDepSents.1/9/R9 NaN \n",
"boy/N/StanfDepSents.1/9/target #T \n",
"boy/N/StanfDepSents.12/12/L0 #T->det:the \n",
"boy/N/StanfDepSents.12/12/L1 NaN \n",
"boy/N/StanfDepSents.12/12/L10 NaN \n",
"boy/N/StanfDepSents.12/12/L2 NaN \n",
"boy/N/StanfDepSents.12/12/L3 NaN \n",
"boy/N/StanfDepSents.12/12/L4 NaN \n",
"... ... \n",
"girl/N/StanfDepSents.8/3/target #T \n",
"girl/N/StanfDepSents.9/14/L0 #T->amod:old \n",
"girl/N/StanfDepSents.9/14/L1 #T->det:the \n",
"girl/N/StanfDepSents.9/14/L10 NaN \n",
"girl/N/StanfDepSents.9/14/L11 NaN \n",
"girl/N/StanfDepSents.9/14/L12 NaN \n",
"girl/N/StanfDepSents.9/14/L2 NaN \n",
"girl/N/StanfDepSents.9/14/L3 NaN \n",
"girl/N/StanfDepSents.9/14/L4 NaN \n",
"girl/N/StanfDepSents.9/14/L5 NaN \n",
"girl/N/StanfDepSents.9/14/L6 NaN \n",
"girl/N/StanfDepSents.9/14/L7 NaN \n",
"girl/N/StanfDepSents.9/14/L8 NaN \n",
"girl/N/StanfDepSents.9/14/L9 NaN \n",
"girl/N/StanfDepSents.9/14/R0 look->nsubj:#T \n",
"girl/N/StanfDepSents.9/14/R1 look->[nsubj:#T,prep:at] \n",
"girl/N/StanfDepSents.9/14/R10 NaN \n",
"girl/N/StanfDepSents.9/14/R11 NaN \n",
"girl/N/StanfDepSents.9/14/R12 NaN \n",
"girl/N/StanfDepSents.9/14/R13 NaN \n",
"girl/N/StanfDepSents.9/14/R14 NaN \n",
"girl/N/StanfDepSents.9/14/R2 look->[nsubj:#T,prep:at->pobj:boy->det:a] \n",
"girl/N/StanfDepSents.9/14/R3 look->[nsubj:#T,prep:at->pobj:boy] \n",
"girl/N/StanfDepSents.9/14/R4 look->[nsubj:#T,prep:at->pobj:boy->prep:in] \n",
"girl/N/StanfDepSents.9/14/R5 look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... \n",
"girl/N/StanfDepSents.9/14/R6 look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... \n",
"girl/N/StanfDepSents.9/14/R7 NaN \n",
"girl/N/StanfDepSents.9/14/R8 NaN \n",
"girl/N/StanfDepSents.9/14/R9 NaN \n",
"girl/N/StanfDepSents.9/14/target #T \n",
"\n",
" pos position \\\n",
"boy/N/StanfDepSents.1/9/L0 D L0 \n",
"boy/N/StanfDepSents.1/9/L1 L1 \n",
"boy/N/StanfDepSents.1/9/L2 L2 \n",
"boy/N/StanfDepSents.1/9/L3 J L3 \n",
"boy/N/StanfDepSents.1/9/L4 V L4 \n",
"boy/N/StanfDepSents.1/9/L5 N L5 \n",
"boy/N/StanfDepSents.1/9/L6 D L6 \n",
"boy/N/StanfDepSents.1/9/L7 L7 \n",
"boy/N/StanfDepSents.1/9/R0 V R0 \n",
"boy/N/StanfDepSents.1/9/R1 I R1 \n",
"boy/N/StanfDepSents.1/9/R10 N R10 \n",
"boy/N/StanfDepSents.1/9/R11 V R11 \n",
"boy/N/StanfDepSents.1/9/R12 R R12 \n",
"boy/N/StanfDepSents.1/9/R13 J R13 \n",
"boy/N/StanfDepSents.1/9/R14 N R14 \n",
"boy/N/StanfDepSents.1/9/R2 D R2 \n",
"boy/N/StanfDepSents.1/9/R3 N R3 \n",
"boy/N/StanfDepSents.1/9/R4 I R4 \n",
"boy/N/StanfDepSents.1/9/R5 P R5 \n",
"boy/N/StanfDepSents.1/9/R6 V R6 \n",
"boy/N/StanfDepSents.1/9/R7 R7 \n",
"boy/N/StanfDepSents.1/9/R8 R8 \n",
"boy/N/StanfDepSents.1/9/R9 D R9 \n",
"boy/N/StanfDepSents.1/9/target N target \n",
"boy/N/StanfDepSents.12/12/L0 D L0 \n",
"boy/N/StanfDepSents.12/12/L1 L1 \n",
"boy/N/StanfDepSents.12/12/L10 L10 \n",
"boy/N/StanfDepSents.12/12/L2 L2 \n",
"boy/N/StanfDepSents.12/12/L3 J L3 \n",
"boy/N/StanfDepSents.12/12/L4 V L4 \n",
"... ... ... \n",
"girl/N/StanfDepSents.8/3/target N target \n",
"girl/N/StanfDepSents.9/14/L0 J L0 \n",
"girl/N/StanfDepSents.9/14/L1 D L1 \n",
"girl/N/StanfDepSents.9/14/L10 D L10 \n",
"girl/N/StanfDepSents.9/14/L11 P L11 \n",
"girl/N/StanfDepSents.9/14/L12 L12 \n",
"girl/N/StanfDepSents.9/14/L2 L2 \n",
"girl/N/StanfDepSents.9/14/L3 L3 \n",
"girl/N/StanfDepSents.9/14/L4 N L4 \n",
"girl/N/StanfDepSents.9/14/L5 D L5 \n",
"girl/N/StanfDepSents.9/14/L6 V L6 \n",
"girl/N/StanfDepSents.9/14/L7 V L7 \n",
"girl/N/StanfDepSents.9/14/L8 N L8 \n",
"girl/N/StanfDepSents.9/14/L9 J L9 \n",
"girl/N/StanfDepSents.9/14/R0 V R0 \n",
"girl/N/StanfDepSents.9/14/R1 I R1 \n",
"girl/N/StanfDepSents.9/14/R10 V R10 \n",
"girl/N/StanfDepSents.9/14/R11 J R11 \n",
"girl/N/StanfDepSents.9/14/R12 I R12 \n",
"girl/N/StanfDepSents.9/14/R13 N R13 \n",
"girl/N/StanfDepSents.9/14/R14 R14 \n",
"girl/N/StanfDepSents.9/14/R2 D R2 \n",
"girl/N/StanfDepSents.9/14/R3 N R3 \n",
"girl/N/StanfDepSents.9/14/R4 I R4 \n",
"girl/N/StanfDepSents.9/14/R5 D R5 \n",
"girl/N/StanfDepSents.9/14/R6 N R6 \n",
"girl/N/StanfDepSents.9/14/R7 R7 \n",
"girl/N/StanfDepSents.9/14/R8 R8 \n",
"girl/N/StanfDepSents.9/14/R9 N R9 \n",
"girl/N/StanfDepSents.9/14/target N target \n",
"\n",
" rep_path \\\n",
"boy/N/StanfDepSents.1/9/L0 #T->det:Cw \n",
"boy/N/StanfDepSents.1/9/L1 NaN \n",
"boy/N/StanfDepSents.1/9/L2 NaN \n",
"boy/N/StanfDepSents.1/9/L3 NaN \n",
"boy/N/StanfDepSents.1/9/L4 NaN \n",
"boy/N/StanfDepSents.1/9/L5 NaN \n",
"boy/N/StanfDepSents.1/9/L6 NaN \n",
"boy/N/StanfDepSents.1/9/L7 NaN \n",
"boy/N/StanfDepSents.1/9/R0 Cw->nsubj:#T \n",
"boy/N/StanfDepSents.1/9/R1 look->[nsubj:#T,prep:Cw] \n",
"boy/N/StanfDepSents.1/9/R10 NaN \n",
"boy/N/StanfDepSents.1/9/R11 NaN \n",
"boy/N/StanfDepSents.1/9/R12 NaN \n",
"boy/N/StanfDepSents.1/9/R13 NaN \n",
"boy/N/StanfDepSents.1/9/R14 NaN \n",
"boy/N/StanfDepSents.1/9/R2 look->[nsubj:#T,prep:at->pobj:girl->det:Cw] \n",
"boy/N/StanfDepSents.1/9/R3 look->[nsubj:#T,prep:at->pobj:Cw] \n",
"boy/N/StanfDepSents.1/9/R4 look->[nsubj:#T,advcl:eat->mark:Cw] \n",
"boy/N/StanfDepSents.1/9/R5 look->[nsubj:#T,advcl:eat->nsubj:Cw] \n",
"boy/N/StanfDepSents.1/9/R6 look->[nsubj:#T,advcl:Cw] \n",
"boy/N/StanfDepSents.1/9/R7 NaN \n",
"boy/N/StanfDepSents.1/9/R8 NaN \n",
"boy/N/StanfDepSents.1/9/R9 NaN \n",
"boy/N/StanfDepSents.1/9/target #T \n",
"boy/N/StanfDepSents.12/12/L0 #T->det:Cw \n",
"boy/N/StanfDepSents.12/12/L1 NaN \n",
"boy/N/StanfDepSents.12/12/L10 NaN \n",
"boy/N/StanfDepSents.12/12/L2 NaN \n",
"boy/N/StanfDepSents.12/12/L3 NaN \n",
"boy/N/StanfDepSents.12/12/L4 NaN \n",
"... ... \n",
"girl/N/StanfDepSents.8/3/target #T \n",
"girl/N/StanfDepSents.9/14/L0 #T->amod:Cw \n",
"girl/N/StanfDepSents.9/14/L1 #T->det:Cw \n",
"girl/N/StanfDepSents.9/14/L10 NaN \n",
"girl/N/StanfDepSents.9/14/L11 NaN \n",
"girl/N/StanfDepSents.9/14/L12 NaN \n",
"girl/N/StanfDepSents.9/14/L2 NaN \n",
"girl/N/StanfDepSents.9/14/L3 NaN \n",
"girl/N/StanfDepSents.9/14/L4 NaN \n",
"girl/N/StanfDepSents.9/14/L5 NaN \n",
"girl/N/StanfDepSents.9/14/L6 NaN \n",
"girl/N/StanfDepSents.9/14/L7 NaN \n",
"girl/N/StanfDepSents.9/14/L8 NaN \n",
"girl/N/StanfDepSents.9/14/L9 NaN \n",
"girl/N/StanfDepSents.9/14/R0 Cw->nsubj:#T \n",
"girl/N/StanfDepSents.9/14/R1 look->[nsubj:#T,prep:Cw] \n",
"girl/N/StanfDepSents.9/14/R10 NaN \n",
"girl/N/StanfDepSents.9/14/R11 NaN \n",
"girl/N/StanfDepSents.9/14/R12 NaN \n",
"girl/N/StanfDepSents.9/14/R13 NaN \n",
"girl/N/StanfDepSents.9/14/R14 NaN \n",
"girl/N/StanfDepSents.9/14/R2 look->[nsubj:#T,prep:at->pobj:boy->det:Cw] \n",
"girl/N/StanfDepSents.9/14/R3 look->[nsubj:#T,prep:at->pobj:Cw] \n",
"girl/N/StanfDepSents.9/14/R4 look->[nsubj:#T,prep:at->pobj:boy->prep:Cw] \n",
"girl/N/StanfDepSents.9/14/R5 look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... \n",
"girl/N/StanfDepSents.9/14/R6 look->[nsubj:#T,prep:at->pobj:boy->prep:in->po... \n",
"girl/N/StanfDepSents.9/14/R7 NaN \n",
"girl/N/StanfDepSents.9/14/R8 NaN \n",
"girl/N/StanfDepSents.9/14/R9 NaN \n",
"girl/N/StanfDepSents.9/14/target #T \n",
"\n",
" same_sentence side steps target_lemma \\\n",
"boy/N/StanfDepSents.1/9/L0 True L 1 child \n",
"boy/N/StanfDepSents.1/9/L1 False L NaN child \n",
"boy/N/StanfDepSents.1/9/L2 False L NaN child \n",
"boy/N/StanfDepSents.1/9/L3 False L NaN child \n",
"boy/N/StanfDepSents.1/9/L4 False L NaN child \n",
"boy/N/StanfDepSents.1/9/L5 False L NaN child \n",
"boy/N/StanfDepSents.1/9/L6 False L NaN child \n",
"boy/N/StanfDepSents.1/9/L7 False L NaN child \n",
"boy/N/StanfDepSents.1/9/R0 True R 1 child \n",
"boy/N/StanfDepSents.1/9/R1 True R 2 child \n",
"boy/N/StanfDepSents.1/9/R10 False R NaN child \n",
"boy/N/StanfDepSents.1/9/R11 False R NaN child \n",
"boy/N/StanfDepSents.1/9/R12 False R NaN child \n",
"boy/N/StanfDepSents.1/9/R13 False R NaN child \n",
"boy/N/StanfDepSents.1/9/R14 False R NaN child \n",
"boy/N/StanfDepSents.1/9/R2 True R 4 child \n",
"boy/N/StanfDepSents.1/9/R3 True R 3 child \n",
"boy/N/StanfDepSents.1/9/R4 True R 3 child \n",
"boy/N/StanfDepSents.1/9/R5 True R 3 child \n",
"boy/N/StanfDepSents.1/9/R6 True R 2 child \n",
"boy/N/StanfDepSents.1/9/R7 False R NaN child \n",
"boy/N/StanfDepSents.1/9/R8 False R NaN child \n",
"boy/N/StanfDepSents.1/9/R9 False R NaN child \n",
"boy/N/StanfDepSents.1/9/target True target 0 child \n",
"boy/N/StanfDepSents.12/12/L0 True L 1 child \n",
"boy/N/StanfDepSents.12/12/L1 False L NaN child \n",
"boy/N/StanfDepSents.12/12/L10 False L NaN child \n",
"boy/N/StanfDepSents.12/12/L2 False L NaN child \n",
"boy/N/StanfDepSents.12/12/L3 False L NaN child \n",
"boy/N/StanfDepSents.12/12/L4 False L NaN child \n",
"... ... ... ... ... \n",
"girl/N/StanfDepSents.8/3/target True target 0 child \n",
"girl/N/StanfDepSents.9/14/L0 True L 1 child \n",
"girl/N/StanfDepSents.9/14/L1 True L 1 child \n",
"girl/N/StanfDepSents.9/14/L10 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L11 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L12 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L2 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L3 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L4 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L5 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L6 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L7 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L8 False L NaN child \n",
"girl/N/StanfDepSents.9/14/L9 False L NaN child \n",
"girl/N/StanfDepSents.9/14/R0 True R 1 child \n",
"girl/N/StanfDepSents.9/14/R1 True R 2 child \n",
"girl/N/StanfDepSents.9/14/R10 False R NaN child \n",
"girl/N/StanfDepSents.9/14/R11 False R NaN child \n",
"girl/N/StanfDepSents.9/14/R12 False R NaN child \n",
"girl/N/StanfDepSents.9/14/R13 False R NaN child \n",
"girl/N/StanfDepSents.9/14/R14 False R NaN child \n",
"girl/N/StanfDepSents.9/14/R2 True R 4 child \n",
"girl/N/StanfDepSents.9/14/R3 True R 3 child \n",
"girl/N/StanfDepSents.9/14/R4 True R 4 child \n",
"girl/N/StanfDepSents.9/14/R5 True R 6 child \n",
"girl/N/StanfDepSents.9/14/R6 True R 5 child \n",
"girl/N/StanfDepSents.9/14/R7 False R NaN child \n",
"girl/N/StanfDepSents.9/14/R8 False R NaN child \n",
"girl/N/StanfDepSents.9/14/R9 False R NaN child \n",
"girl/N/StanfDepSents.9/14/target True target 0 child \n",
"\n",
" token_id word \n",
"boy/N/StanfDepSents.1/9/L0 boy/N/StanfDepSents.1/9 The \n",
"boy/N/StanfDepSents.1/9/L1 boy/N/StanfDepSents.1/9 \n",
"boy/N/StanfDepSents.1/9/L2 boy/N/StanfDepSents.1/9 \n",
"boy/N/StanfDepSents.1/9/L3 boy/N/StanfDepSents.1/9 healthy \n",
"boy/N/StanfDepSents.1/9/L4 boy/N/StanfDepSents.1/9 looks \n",
"boy/N/StanfDepSents.1/9/L5 boy/N/StanfDepSents.1/9 girl \n",
"boy/N/StanfDepSents.1/9/L6 boy/N/StanfDepSents.1/9 The \n",
"boy/N/StanfDepSents.1/9/L7 boy/N/StanfDepSents.1/9 \n",
"boy/N/StanfDepSents.1/9/R0 boy/N/StanfDepSents.1/9 looks \n",
"boy/N/StanfDepSents.1/9/R1 boy/N/StanfDepSents.1/9 at \n",
"boy/N/StanfDepSents.1/9/R10 boy/N/StanfDepSents.1/9 girl \n",
"boy/N/StanfDepSents.1/9/R11 boy/N/StanfDepSents.1/9 eats \n",
"boy/N/StanfDepSents.1/9/R12 boy/N/StanfDepSents.1/9 less \n",
"boy/N/StanfDepSents.1/9/R13 boy/N/StanfDepSents.1/9 healthy \n",
"boy/N/StanfDepSents.1/9/R14 boy/N/StanfDepSents.1/9 food \n",
"boy/N/StanfDepSents.1/9/R2 boy/N/StanfDepSents.1/9 the \n",
"boy/N/StanfDepSents.1/9/R3 boy/N/StanfDepSents.1/9 girl \n",
"boy/N/StanfDepSents.1/9/R4 boy/N/StanfDepSents.1/9 as \n",
"boy/N/StanfDepSents.1/9/R5 boy/N/StanfDepSents.1/9 she \n",
"boy/N/StanfDepSents.1/9/R6 boy/N/StanfDepSents.1/9 eats \n",
"boy/N/StanfDepSents.1/9/R7 boy/N/StanfDepSents.1/9 \n",
"boy/N/StanfDepSents.1/9/R8 boy/N/StanfDepSents.1/9 \n",
"boy/N/StanfDepSents.1/9/R9 boy/N/StanfDepSents.1/9 The \n",
"boy/N/StanfDepSents.1/9/target boy/N/StanfDepSents.1/9 boy \n",
"boy/N/StanfDepSents.12/12/L0 boy/N/StanfDepSents.12/12 The \n",
"boy/N/StanfDepSents.12/12/L1 boy/N/StanfDepSents.12/12 \n",
"boy/N/StanfDepSents.12/12/L10 boy/N/StanfDepSents.12/12 \n",
"boy/N/StanfDepSents.12/12/L2 boy/N/StanfDepSents.12/12 \n",
"boy/N/StanfDepSents.12/12/L3 boy/N/StanfDepSents.12/12 tasty \n",
"boy/N/StanfDepSents.12/12/L4 boy/N/StanfDepSents.12/12 are \n",
"... ... ... \n",
"girl/N/StanfDepSents.8/3/target girl/N/StanfDepSents.8/3 girl \n",
"girl/N/StanfDepSents.9/14/L0 girl/N/StanfDepSents.9/14 older \n",
"girl/N/StanfDepSents.9/14/L1 girl/N/StanfDepSents.9/14 The \n",
"girl/N/StanfDepSents.9/14/L10 girl/N/StanfDepSents.9/14 the \n",
"girl/N/StanfDepSents.9/14/L11 girl/N/StanfDepSents.9/14 All \n",
"girl/N/StanfDepSents.9/14/L12 girl/N/StanfDepSents.9/14 \n",
"girl/N/StanfDepSents.9/14/L2 girl/N/StanfDepSents.9/14 \n",
"girl/N/StanfDepSents.9/14/L3 girl/N/StanfDepSents.9/14 \n",
"girl/N/StanfDepSents.9/14/L4 girl/N/StanfDepSents.9/14 apple \n",
"girl/N/StanfDepSents.9/14/L5 girl/N/StanfDepSents.9/14 an \n",
"girl/N/StanfDepSents.9/14/L6 girl/N/StanfDepSents.9/14 given \n",
"girl/N/StanfDepSents.9/14/L7 girl/N/StanfDepSents.9/14 were \n",
"girl/N/StanfDepSents.9/14/L8 girl/N/StanfDepSents.9/14 boys \n",
"girl/N/StanfDepSents.9/14/L9 girl/N/StanfDepSents.9/14 old \n",
"girl/N/StanfDepSents.9/14/R0 girl/N/StanfDepSents.9/14 looks \n",
"girl/N/StanfDepSents.9/14/R1 girl/N/StanfDepSents.9/14 at \n",
"girl/N/StanfDepSents.9/14/R10 girl/N/StanfDepSents.9/14 are \n",
"girl/N/StanfDepSents.9/14/R11 girl/N/StanfDepSents.9/14 healthy \n",
"girl/N/StanfDepSents.9/14/R12 girl/N/StanfDepSents.9/14 for \n",
"girl/N/StanfDepSents.9/14/R13 girl/N/StanfDepSents.9/14 boys \n",
"girl/N/StanfDepSents.9/14/R14 girl/N/StanfDepSents.9/14 \n",
"girl/N/StanfDepSents.9/14/R2 girl/N/StanfDepSents.9/14 a \n",
"girl/N/StanfDepSents.9/14/R3 girl/N/StanfDepSents.9/14 boy \n",
"girl/N/StanfDepSents.9/14/R4 girl/N/StanfDepSents.9/14 in \n",
"girl/N/StanfDepSents.9/14/R5 girl/N/StanfDepSents.9/14 the \n",
"girl/N/StanfDepSents.9/14/R6 girl/N/StanfDepSents.9/14 house \n",
"girl/N/StanfDepSents.9/14/R7 girl/N/StanfDepSents.9/14 \n",
"girl/N/StanfDepSents.9/14/R8 girl/N/StanfDepSents.9/14 \n",
"girl/N/StanfDepSents.9/14/R9 girl/N/StanfDepSents.9/14 Apples \n",
"girl/N/StanfDepSents.9/14/target girl/N/StanfDepSents.9/14 girl \n",
"\n",
"[917 rows x 16 columns]"
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"cws"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [],
"source": [
"cw_fname = f\"{nephovis_path}/{type_name}/{type_name}.cws.detail.tsv\"\n",
"cws.to_csv(cw_fname, sep = \"\\t\", index_label = \"cw_id\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"From this table, it is relatively straightforward to extract concordances and highlight the context words that match certain filters. Note that by default the left contexts are in reverse order."
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3.9",
"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.9.9"
}
},
"nbformat": 4,
"nbformat_minor": 2
}