diff --git a/Scripts/Evaluation/predictions_eval.ipynb b/Scripts/Evaluation/predictions_eval.ipynb index e8a667c8df6c211f1a3d44fff0c0ee55d059e84e..b8a75cdaa918b53c5fa39ba30ad8087fe1fd377f 100644 --- a/Scripts/Evaluation/predictions_eval.ipynb +++ b/Scripts/Evaluation/predictions_eval.ipynb @@ -2,14 +2,4954 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ - "\n" + "%load_ext autoreload\n", + "%autoreload 2\n", + "import numpy as np\n", + "import scipy as sci\n", + "import pandas as pd\n", + "import json\n", + "import ndjson\n", + "import jsonlines\n", + "import os\n", + "import sys\n", + "import matplotlib as mpl\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import re\n", + "sys.path.append('..')\n", + "from ML import ml_utils, plottings\n", + "path = os.path.join(*ml_utils.split_path_unix_win('../../Data/pan19-celebrity-profiling-training-dataset-2019-01-31/predictions/workset/creator'))\n", + "agen = 'age'\n", + "gendern = 'gender'\n", + "order = ['dist', 'char', 'asis', 'pos', 'tag', 'dep', 'lemma', 'word','emoticon_c','polarity', 'num']\n", + "stackdirs = ['_'.join(order[:i]) for i in range(2, len(order)+1)] + ['dist_char_asis_lemma','dist_char_asis_lemma_word']\n", + "dirs = order + ['_'.join(order[:i]) for i in range(2, len(order)+1)] + ['dist_char_asis_lemma', 'dist_char_asis_lemma_word']\n", + "\n", + "authors = [50, 150, 500, 1000]\n", + "lens = [100, 250, 500]\n", + "models = ['', 'direct', 'dynAA']\n", + "\n", + "targets = ['age', 'gender']\n", + "\n", + "featuretyp_dic = {'emoticon': [[100, 250, 500], [1], [1000, 500, 150, 50]],\n", + " 'char': [[100, 250, 500], list(range(2, 5 + 1)), [1000, 500, 150, 50]],\n", + " 'word': [[100, 250, 500], list(range(1, 2 + 1)), [1000, 500, 150, 50]],\n", + " 'tag': [[100, 250, 500], list(range(1, 3 + 1)), [1000, 500, 150, 50]],\n", + " 'dep': [[100, 250, 500], list(range(1, 3 + 1)), [1000, 500, 150, 50]],\n", + " 'asis': [[100, 250, 500], list(range(2, 5 + 1)), [1000, 500, 150, 50]],\n", + " 'lemma': [[100, 250, 500], list(range(1, 2 + 1)), [1000, 500, 150, 50]],\n", + " 'dist': [[100, 250, 500], list(range(2, 5 + 1)), [1000, 500, 150, 50]],\n", + " 'pos': [[100, 250, 500], list(range(1, 3 + 1)), [1000, 500, 150, 50]],\n", + " 'num': [[100, 250, 500], [1], [1000, 500, 150, 50]],\n", + " 'polarity': [[100, 250, 500], [1], [1000, 500, 150, 50]]\n", + " }\n" ] + }, + { + "cell_type": "code", + "execution_count": 3, + "outputs": [], + "source": [ + "dats = {}\n", + "for target in targets:\n", + " dats[target] = {}\n", + " for minTw in [str(el) for el in lens]:\n", + " dats[target][minTw] = {}\n", + " for model in models:\n", + " if model in ['direct', 'dynAA']:\n", + "\n", + " tmpdirs = stackdirs\n", + " settyp = ['test']\n", + " key = 'stacked' if model == 'dynAA' else 'cumulated'\n", + " filebeg = '{}_'.format(model)\n", + " dats[target][minTw][key] = {}\n", + " else:\n", + " tmpdirs = order\n", + " settyp = ['val', 'test']\n", + " key = 'baseline'\n", + " dats[target][minTw][key] = {}\n", + " filebeg = ''\n", + " for dir in tmpdirs:\n", + " dir = re.sub('emoticon_c', 'emoticon', dir)\n", + " part = dir.split('_')[-1]\n", + " dir = re.sub('emoticon', 'emoticon_c', dir)\n", + " grams = featuretyp_dic[part][1]\n", + " dats[target][minTw][key][dir] = {}\n", + " for subgram in [grams[0:i] for i in range(1, len(grams)+1)]:\n", + " sg = '_'.join([str(el) for el in subgram])\n", + " dats[target][minTw][key][dir][sg] = {}\n", + " for author in authors:\n", + " dats[target][minTw][key][dir][sg][str(author)] = []\n", + " for subset in settyp:\n", + " file = \"{0}pred_{1}_{2}_{3}_{4}_{5}_{6}.json\".format(filebeg,\n", + " subset,\n", + " target,\n", + " dir,\n", + " sg,\n", + " minTw,\n", + " author)\n", + " dats[target][minTw][key][dir][sg][str(author)].append(os.path.join(path, target, dir, minTw, file))\n", + "\n", + "\n" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": null, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:51: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:59: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:187: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n", + "<ipython-input-5-dfe456c928e7>:35: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "<ipython-input-5-dfe456c928e7>:42: UserWarning: Creating legend with loc=\"best\" can be slow with large amounts of data.\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + "C:\\Users\\schubert\\Documents\\attributionfeatures\\Scripts\\ML\\plottings.py:101: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`).\n", + " fig, ax = plt.subplots(1, figsize=(18,4))\n" + ] + } + ], + "source": [ + "savedir = os.path.join(*ml_utils.split_path_unix_win('../../tex/figures'))\n", + "redo =False\n", + "backend_ = mpl.get_backend()\n", + "mpl.use(\"Agg\")\n", + "for target in dats.keys():\n", + " for mT in dats[target].keys():\n", + " minTw = int(mT)\n", + " os.makedirs(os.path.join(savedir, target, mT, 'proportions'), exist_ok=True)\n", + " os.makedirs(os.path.join(savedir, target, mT, 'confusion'), exist_ok=True)\n", + " for mode in dats[target][mT].keys():\n", + " for dir in dats[target][mT][mode].keys():\n", + " for grams in dats[target][mT][mode][dir].keys():\n", + " df = None\n", + " targCol = 'gender' if target == 'gender' else 'centered_age'\n", + " predCol = target + '_predicted_cat'\n", + "\n", + " fp = os.path.join(savedir, target,mT,'confusion' ,\n", + " 'confusion_{}_{}_{}_{}_mode_major_only_false.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " if os.path.exists(fp) and not redo:\n", + " continue\n", + "\n", + " for author in sorted([int(el) for el in list(dats[target][mT][mode][dir][grams].keys())]):\n", + " author = str(author)\n", + " for file in dats[target][mT][mode][dir][grams][author]:\n", + " try:\n", + " tmp = pd.read_json(file)\n", + " except:\n", + " print('Loading file failed : {}'.format(file))\n", + " continue\n", + " sb = 'test' if 'test' in file else 'val'\n", + " tmp['# Authors'] = int(author)\n", + " tmp['subset'] = sb\n", + " if type(df) == type(None):\n", + " df = tmp\n", + " else:\n", + " df = pd.concat((df, tmp), axis=0)\n", + " df.reset_index(inplace=True, drop=True)\n", + " df['correct'] = df[targCol] == df[predCol]\n", + " fig, ax = plottings.plot_distrib_graph(df=df, to_plot='True_False', absolute=False)\n", + "\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + " 'proportions_{}_{}_{}_{}_color_pred.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " dpi=fig.dpi,transparent=True, bbox_inches='tight')\n", + "\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + " 'proportions_{}_{}_{}_{}_color_pred.png'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " dpi=fig.dpi,transparent=True, bbox_inches='tight')\n", + "\n", + " fig, ax = plottings.plot_distrib_graph(df=df, to_plot='False', absolute=False,\n", + " color=targCol)\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + " 'proportions_{}_{}_{}_{}_color_{}.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT,\n", + " targCol)),\n", + " dpi=fig.dpi, transparent=True, bbox_inches='tight')\n", + "\n", + " fig.savefig(os.path.join(savedir, target,mT,'proportions' ,\n", + " 'proportions_{}_{}_{}_{}_color_{}.png'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT,\n", + " targCol)),\n", + " dpi=fig.dpi, transparent=True, bbox_inches='tight')\n", + " #plot basic confusion matrix\n", + " fig = plottings.plot_heatmap(df=df, target=targCol, pred=predCol,\n", + " major_wrong = False, normalize='true')\n", + " fig.savefig(os.path.join(savedir, target,mT,'confusion' ,\n", + " 'confusion_{}_{}_{}_{}_mode_basic.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " dpi=fig.dpi, transparent=True, bbox_inches='tight')\n", + "\n", + "\n", + "\n", + " fig = plottings.plot_heatmap(df=df, target=targCol, pred=predCol,\n", + " major_wrong = True, normalize='all')\n", + " fig.savefig(os.path.join(savedir, target,mT,'confusion' ,\n", + " 'confusion_{}_{}_{}_{}_mode_major_false.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " dpi=fig.dpi, transparent=True, bbox_inches='tight')\n", + "\n", + " fig = plottings.plot_heatmap(df=df, target=targCol, pred=predCol,\n", + " major_wrong = 'wrong', normalize='all')\n", + " fig.savefig(os.path.join(savedir, target,mT,'confusion' ,\n", + " 'confusion_{}_{}_{}_{}_mode_major_only_false.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " dpi=fig.dpi, transparent=True, bbox_inches='tight')\n", + " plt.clf()\n", + "\n", + "mpl.use(backend_) # Reset backend" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n", + "is_executing": true + } + } + }, + { + "cell_type": "code", + "execution_count": 4, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Doing the stuff including pred_test_age_dist_2_500_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_500_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_4_500_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_4_5_500_1000.json\n", + "Doing the stuff including pred_test_age_char_2_500_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_500_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_4_500_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_4_5_500_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_500_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_500_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_4_500_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_4_5_500_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_500_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_2_500_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_2_3_500_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_500_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_2_500_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_2_3_500_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_500_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_2_500_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_2_3_500_1000.json\n", + "Doing the stuff including pred_test_age_lemma_1_500_1000.json\n", + "Doing the stuff including pred_test_age_lemma_1_2_500_1000.json\n", + "Doing the stuff including pred_test_age_word_1_500_1000.json\n", + "Doing the stuff including pred_test_age_word_1_2_500_1000.json\n", + "Doing the stuff including pred_test_age_emoticon_c_1_500_1000.json\n", + "Doing the stuff including pred_test_age_polarity_1_500_1000.json\n", + "Doing the stuff including pred_test_age_num_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_4_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_4_5_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_4_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_4_5_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_word_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_4_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_4_5_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_4_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_4_5_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_word_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_250_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_250_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_4_250_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_4_5_250_1000.json\n", + "Doing the stuff including pred_test_age_char_2_250_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_250_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_4_250_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_4_5_250_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_250_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_250_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_4_250_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_4_5_250_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_250_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_2_250_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_2_3_250_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_250_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_2_250_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_2_3_250_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_250_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_2_250_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_2_3_250_1000.json\n", + "Doing the stuff including pred_test_age_lemma_1_250_1000.json\n", + "Doing the stuff including pred_test_age_lemma_1_2_250_1000.json\n", + "Doing the stuff including pred_test_age_word_1_250_1000.json\n", + "Doing the stuff including pred_test_age_word_1_2_250_1000.json\n", + "Doing the stuff including pred_test_age_emoticon_c_1_250_1000.json\n", + "Doing the stuff including pred_test_age_polarity_1_250_1000.json\n", + "Doing the stuff including pred_test_age_num_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_4_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_4_5_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_4_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_4_5_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_word_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_4_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_4_5_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_4_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_4_5_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_word_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_100_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_100_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_4_100_1000.json\n", + "Doing the stuff including pred_test_age_dist_2_3_4_5_100_1000.json\n", + "Doing the stuff including pred_test_age_char_2_100_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_100_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_4_100_1000.json\n", + "Doing the stuff including pred_test_age_char_2_3_4_5_100_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_100_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_100_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_4_100_1000.json\n", + "Doing the stuff including pred_test_age_asis_2_3_4_5_100_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_100_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_2_100_1000.json\n", + "Doing the stuff including pred_test_age_pos_1_2_3_100_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_100_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_2_100_1000.json\n", + "Doing the stuff including pred_test_age_tag_1_2_3_100_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_100_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_2_100_1000.json\n", + "Doing the stuff including pred_test_age_dep_1_2_3_100_1000.json\n", + "Doing the stuff including pred_test_age_lemma_1_100_1000.json\n", + "Doing the stuff including pred_test_age_lemma_1_2_100_1000.json\n", + "Doing the stuff including pred_test_age_word_1_100_1000.json\n", + "Doing the stuff including pred_test_age_word_1_2_100_1000.json\n", + "Doing the stuff including pred_test_age_emoticon_c_1_100_1000.json\n", + "Doing the stuff including pred_test_age_polarity_1_100_1000.json\n", + "Doing the stuff including pred_test_age_num_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_4_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_2_3_4_5_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_4_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_2_3_4_5_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_1_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_1_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_1_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_word_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_age_dist_char_asis_lemma_word_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_4_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_2_3_4_5_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_4_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_2_3_4_5_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_1_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_1_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_1_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_word_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_age_dist_char_asis_lemma_word_1_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_500_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_4_500_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_4_5_500_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_500_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_4_500_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_4_5_500_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_500_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_4_500_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_4_5_500_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_500_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_2_3_500_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_500_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_2_3_500_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_500_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_2_3_500_1000.json\n", + "Doing the stuff including pred_test_gender_lemma_1_500_1000.json\n", + "Doing the stuff including pred_test_gender_lemma_1_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_word_1_500_1000.json\n", + "Doing the stuff including pred_test_gender_word_1_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_emoticon_c_1_500_1000.json\n", + "Doing the stuff including pred_test_gender_polarity_1_500_1000.json\n", + "Doing the stuff including pred_test_gender_num_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_4_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_4_5_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_4_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_4_5_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_3_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_1_2_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_word_1_500_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_4_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_4_5_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_4_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_4_5_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_3_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_1_2_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_word_1_500_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_word_1_2_500_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_250_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_4_250_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_4_5_250_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_250_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_4_250_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_4_5_250_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_250_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_4_250_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_4_5_250_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_250_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_2_3_250_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_250_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_2_3_250_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_250_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_2_3_250_1000.json\n", + "Doing the stuff including pred_test_gender_lemma_1_250_1000.json\n", + "Doing the stuff including pred_test_gender_lemma_1_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_word_1_250_1000.json\n", + "Doing the stuff including pred_test_gender_word_1_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_emoticon_c_1_250_1000.json\n", + "Doing the stuff including pred_test_gender_polarity_1_250_1000.json\n", + "Doing the stuff including pred_test_gender_num_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_4_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_4_5_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_4_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_4_5_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_3_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_1_2_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_word_1_250_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_4_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_4_5_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_4_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_4_5_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_3_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_1_2_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_word_1_250_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_word_1_2_250_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_100_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_4_100_1000.json\n", + "Doing the stuff including pred_test_gender_dist_2_3_4_5_100_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_100_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_4_100_1000.json\n", + "Doing the stuff including pred_test_gender_char_2_3_4_5_100_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_100_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_4_100_1000.json\n", + "Doing the stuff including pred_test_gender_asis_2_3_4_5_100_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_100_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_pos_1_2_3_100_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_100_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_tag_1_2_3_100_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_100_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_dep_1_2_3_100_1000.json\n", + "Doing the stuff including pred_test_gender_lemma_1_100_1000.json\n", + "Doing the stuff including pred_test_gender_lemma_1_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_word_1_100_1000.json\n", + "Doing the stuff including pred_test_gender_word_1_2_100_1000.json\n", + "Doing the stuff including pred_test_gender_emoticon_c_1_100_1000.json\n", + "Doing the stuff including pred_test_gender_polarity_1_100_1000.json\n", + "Doing the stuff including pred_test_gender_num_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_4_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_2_3_4_5_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_4_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_2_3_4_5_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_1_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_1_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_3_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_1_2_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_word_1_100_1000.json\n", + "Doing the stuff including direct_pred_test_gender_dist_char_asis_lemma_word_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_4_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_2_3_4_5_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_4_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_2_3_4_5_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_1_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_1_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_1_2_3_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_1_2_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_word_1_100_1000.json\n", + "Doing the stuff including dynAA_pred_test_gender_dist_char_asis_lemma_word_1_2_100_1000.json\n" + ] + } + ], + "source": [ + "import warnings\n", + "warnings.filterwarnings('ignore')\n", + "savedir = os.path.join(*ml_utils.split_path_unix_win('../../tex/figures'))\n", + "redo =False\n", + "idx = [\"500\", \"250\", \"100\"]\n", + "only_do = ['age','gender']\n", + "backend_ = mpl.get_backend()\n", + "mpl.use(\"Agg\")\n", + "for target in dats.keys():\n", + " if target in only_do:\n", + " tweets = sorted(list(dats[target].keys()), key=idx.index)\n", + " for mT in tweets:\n", + " minTw = int(mT)\n", + " os.makedirs(os.path.join(savedir, target, mT, 'bars'), exist_ok=True)\n", + " os.makedirs(os.path.join(savedir, target, mT, 'confusion'), exist_ok=True)\n", + " for mode in dats[target][mT].keys():\n", + " for dir in dats[target][mT][mode].keys():\n", + " for grams in dats[target][mT][mode][dir].keys():\n", + " df = None\n", + " targCol = 'gender' if target == 'gender' else 'centered_age'\n", + " predCol = target + '_predicted_cat'\n", + "\n", + " # fp = os.path.join(savedir, target,mT,'confusion' ,\n", + " # 'confusion_{}_{}_{}_{}_mode_major_only_false.pdf'.format(mode,\n", + " # dir,\n", + " # grams,\n", + " # mT)),\n", + " # if os.path.exists(fp) and not redo:\n", + " # continue\n", + "\n", + " for author in sorted([int(el) for el in list(dats[target][mT][mode][dir][grams].keys())]):\n", + " author = str(author)\n", + " for file in dats[target][mT][mode][dir][grams][author]:\n", + " try:\n", + " tmp = pd.read_json(file)\n", + " except:\n", + " print('Loading file failed : {}'.format(os.path.basename(file)))\n", + " continue\n", + " sb = 'test' if 'test' in file else 'val'\n", + " tmp['# Authors'] = int(author)\n", + " tmp['subset'] = sb\n", + " if type(df) == type(None):\n", + " df = tmp\n", + " else:\n", + " df = pd.concat((df, tmp), axis=0)\n", + " print('Doing the stuff including {}'.format(os.path.basename(file)))\n", + " df.reset_index(inplace=True, drop=True)\n", + " df['correct'] = df[targCol] == df[predCol]\n", + " # fig, ax = plottings.plot_distrib_graph(df=df, to_plot='True_False', absolute=False, line=True)\n", + " #\n", + " # fig.savefig(os.path.join(savedir, target,mT,'bars' ,\n", + " # 'proportions_{}_{}_{}_{}_color_pred.pdf'.format(mode,\n", + " # dir,\n", + " # grams,\n", + " # mT)),\n", + " # dpi=fig.dpi,transparent=True, bbox_inches='tight')\n", + " #\n", + " # fig.savefig(os.path.join(savedir, target,mT,'bars' ,\n", + " # 'proportions_{}_{}_{}_{}_color_pred.png'.format(mode,\n", + " # dir,\n", + " # grams,\n", + " # mT)),\n", + " # dpi=fig.dpi,transparent=True, bbox_inches='tight')\n", + " #\n", + " # fig, ax = plottings.plot_distrib_graph(df=df, to_plot='False', absolute=False,\n", + " # color=targCol, line=True)\n", + " # fig.savefig(os.path.join(savedir, target,mT,'bars' ,\n", + " # 'proportions_{}_{}_{}_{}_color_{}.pdf'.format(mode,\n", + " # dir,\n", + " # grams,\n", + " # mT,\n", + " # targCol)),\n", + " # dpi=fig.dpi, transparent=True, bbox_inches='tight')\n", + " #\n", + " # fig.savefig(os.path.join(savedir, target,mT,'bars' ,\n", + " # 'proportions_{}_{}_{}_{}_color_{}.png'.format(mode,\n", + " # dir,\n", + " # grams,\n", + " # mT,\n", + " # targCol)),\n", + " # dpi=fig.dpi, transparent=True, bbox_inches='tight')\n", + " #plot basic confusion matrix\n", + " fig = plottings.plot_heatmap(df=df, target=targCol, pred=predCol,\n", + " major_wrong = False, normalize='true')\n", + " fig.savefig(os.path.join(savedir, target,mT,'confusion' ,\n", + " 'confusion_{}_{}_{}_{}_mode_basic.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " dpi=fig.dpi, bbox_inches='tight')\n", + "\n", + "\n", + "\n", + " fig = plottings.plot_heatmap(df=df, target=targCol, pred=predCol,\n", + " major_wrong = True, normalize='all')\n", + " fig.savefig(os.path.join(savedir, target,mT,'confusion' ,\n", + " 'confusion_{}_{}_{}_{}_mode_major_false.pdf'.format(mode,\n", + " dir,\n", + " grams,\n", + " mT)),\n", + " dpi=fig.dpi, bbox_inches='tight')\n", + "\n", + " fig = plottings.plot_heatmap(df=df, target=targCol, pred=predCol,\n", + " major_wrong = 'wrong', normalize='all')\n", + " #fig.savefig(os.path.join(savedir, target,mT,'confusion' ,\n", + " # 'confusion_{}_{}_{}_{}_mode_major_only_false.pdf'.format(mode,\n", + " # dir,\n", + " # grams,\n", + " # mT)),\n", + " # dpi=fig.dpi, bbox_inches='tight')\n", + " plt.clf()\n", + "\n", + "\n", + "mpl.use(backend_) # Reset backend" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 4, + "outputs": [], + "source": [ + "target = 'gender'\n", + "minTw = '100'\n", + "dir = 'asis'\n", + "mode = 'baseline'\n", + "grams = '2_3_4_5'\n", + "df = None\n", + "targCol = 'gender' if target == 'gender' else 'centered_age'\n", + "predCol = target + '_predicted_cat'\n", + "for author in sorted([int(el) for el in list(dats[target][minTw][mode][dir][grams].keys())]):\n", + " author = str(author)\n", + " for file in dats[target][minTw][mode][dir][grams][author]:\n", + " tmp = pd.read_json(file)\n", + " sb = 'test' if 'test' in file else 'val'\n", + " tmp['# Authors'] = int(author)\n", + " tmp['subset'] = sb\n", + " if type(df) == type(None):\n", + " df = tmp\n", + " else:\n", + " df = pd.concat((df, tmp), axis=0)\n", + "df.reset_index(inplace=True, drop=True)\n" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 4, + "outputs": [], + "source": [ + "tmp = df[0:100000].copy(deep=True)" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 5, + "outputs": [ + { + "data": { + "text/plain": " gender centered_age\n# Authors \n50 0.5 0.17\n150 0.5 0.13\n500 0.5 0.17\n1000 0.5 0.17", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>gender</th>\n <th>centered_age</th>\n </tr>\n <tr>\n <th># Authors</th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>50</th>\n <td>0.5</td>\n <td>0.17</td>\n </tr>\n <tr>\n <th>150</th>\n <td>0.5</td>\n <td>0.13</td>\n </tr>\n <tr>\n <th>500</th>\n <td>0.5</td>\n <td>0.17</td>\n </tr>\n <tr>\n <th>1000</th>\n <td>0.5</td>\n <td>0.17</td>\n </tr>\n </tbody>\n</table>\n</div>" + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['correct'] = df[targCol] == df[predCol]\n", + "def prop(x):\n", + " labs = x.unique()\n", + "\n", + " return round(sum(x == labs[0])/len(x),2)\n", + "df.groupby('# Authors').agg({'gender':prop,\n", + " 'centered_age':prop})\n", + "#tmp['correct'] = tmp[targCol] == tmp[predCol]\n", + "\n", + "#fig, ax = plottings.plot_distrib_graph(df=df, to_plot='True_False', absolute=False)" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 19, + "outputs": [ + { + "data": { + "text/plain": "<Figure size 1296x288 with 1 Axes>", + "image/png": "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/znLLLsszzz1VKWFILt07crUKVNYu2dPIFc3omvXrmX9UWin+KG1W/fuLLPMMvx9woSCSZFu3bvz6SefFDx3RMGjl1nnJz9h8qefliVcPpk0ialTprDfvvsCMH/+fObMnk3f3r35y7330mPNNWnZsmW1x11krZ49eXfiRDbM18h499//Zu211/7Rdu+/9x5vvP46x598MrfccAPrbbABEcEGG2642BSQ/3z44WJTTGpb1ikhkpaCw4YlqekoP13E135Jql3t2rXjyGOO4byzz+bpp57im2++Yf78+fx9/Hguu+giAAYPGcKI667jf198wcz//Y8/X3stQ3bdNfM5unTtSp+tt+aSCy5gzuzZLFy4kE8+/piXX3oJgF/utRe33nQT//rnP0kp8cnHHzN1yhQAOnfuXFbMspBu3buzWo8evP3WW0CursTYZ5/lvny9jbP/9Cc6r7AC940ZQ7fu3WndujWDdt6Zm2+4ga/nzOGzadO475576Nu/f8Hj77r77tx2881M/+wzZkyfzm0338xue+yx2DYpJf40bBinnH46zZo1Y+VVV+X1V15h/nff8cqECayy6qpl274yYQJb9+2b+Xu3tGqcsIiIrhGxWsVHbQRXTKVyw1AqX0dT5c9PkpoeExeSmpIOyy1X58f73YEHcvIf/8iI665j2y22YPttt+Uvd9zBdvlCnL8/4gjW32AD9thlF34xZAg/XW89fn/EETWK4/xLLmH+/PnsttNO9Nl0U44/6ij++9//AjBwp50Yethh/OH449l84405+rDD+HLWLAAOPvRQRlx3Hb032YRbKpnmsdc++/DQgw8C0KJFC1bo0qXs0aFjR5pFsEKXLjRv3hyA0848kzZt29J/6635zV57MXjIEPbYc08AXn35ZXqVW3Fkr333pd922/GLIUPYfeed2bZfP/bKj95Y5IFRo1h7nXXYYMMNAdh+xx3psuKKbLPFFsyaNYu99tkHyE2t+c8HHzBg++1r9L1bGpFS9eUnIqIZcB7we6DgeikppebFDa14uq+yevrdUac1+iGaDjVteJb0BtSfoSQtucb+z7/XAEmlZPhxx7FixgKTKuy7efPYc7fduOn22+lSbqpKQ3PJBRew6mqrsc9vfrPEx5g+ZQrHX375Ym1vjh79akqp4LIkWYtuHgscAVxELnHxJ2Ah8Jv8xwuXNGCpKap4s+3NqyQ1HVUlXLweSFLTs8yyyzLm8cfrO4xqnfTHP9b5ObMmLA4AzgGuIJeweCCl9FpEnAc8CTT4KSGlxOKbpcefqSQJCiczvD5IkpqqrAmLNYFXUkrfR8QCoDVASml+RFwBXA0Mq50QpabBpIUkqZDKRmR4zZAklbqsCYsvgVb5z6cCPwH+Ue4Yyxc5LlXDf25LU/mbUn++kqSqOL1QklTqsiYsXgfWA57IP86OiG+ABeTqWbxWO+FJTZdJKUlSTTidRJJUarImLK4gNy0E4CxgE+DO/POPgSOLHJckfPdMkrR0qltRxeuKJKkhy5SwSCk9Ve7zzyJic2AtoA3w75TS/FqKT1I5JjAkScVkQkOS1JBlSlhExH7AIymlLwBSSgn4IN+3fEQMSSndnvFY65Er0tkbmAXcCJydUvq+mv02A84HNgWC3DSU01JKL2U5LzjEXqXHBIYkqTa5BKskNRwnHXssg3bemQE77FDfoVTqb08/zSMPPcSlV1xRlOM1y7jdLeRGVBSyRr6/WhHRCRgLJGA3ckulngCcXc1+q+b3awHsB/w2//mTEbF6lnNLTcGg3oPLHpIk1aby1xyvPZLq0479+vHCP/5R/YYN1Gknn8xVw4dXuc27Eyfy7sSJbLf99gBMeOklNlxnHXpttFHZY/T99/9ovy9nzWKbzTfnt/vsU+XxHxkzhh369qXXz37G0YcdxpezZpX13XzDDWy9+ebsPngw77/3Xln7a6++ytGHHbbYcfoPGMAH773HuxMnVvt1Z5G1hkVU0deWXPHNLA4ltyTqHimlr4CnIqI9MCwiLs63FbIz0C6/3yyAiHge+BwYDFyf8fxSk+GIIklSXXO1K0n3Pvwc3877rmjHa7XsMvxqyNZFO14xLFiwgBYtWlTbVkz33nUXO++6KxE//GvetWtXnn7uuSr3G37JJay51losTKnSbT54/33OPvNMrhs5kvXWX59hp5/OucOGcekVV/DfGTN4YNQoHn/6acY8+CCXX3IJ191wAwsWLODSCy7gkgIjKXYaMoRRd9/NaWedteRfcF6lIywiYuOIODAiDsw37bLoebnHEeRWCXk/4/l2Ap6okJi4i1wSo28V+7UklxSZU65tTr6tqmSKJEmS6oEjMKSmqZjJiiU53oP33cdv99mHSy68kD6bbsrA/v35+/jxZf1fzprF6X/4A/232oo+m2662AiBUXffzU4DBtBns8048ve/Z8b06WV9G/TsyV//3/9j8Pbbs/MOOzDhpZcYsPXW3DRiBH179+b0U05h4cKF3DhiBIO2246tevXihKOPXmykwmuvvMJv9tqL3ptswoBttuHB++7j3rvu4pGHHuLmG2+k10YbccTQoQW/rufGj6fX5pvX6Hvxxuuv88F777H7L39Z5XYPjxlDv/792WzzzWnTti1HHnssY598kq/nzGHa1Kms+9Ofsly7dmzZpw+TP/0UgDtuvZV+Awaw8iqr/Oh4vbbYgmfHjatRrJWpKgW0G7kVQSA3heO0Srb7Ajgo4/nWBZ4p35BS+iQi5ub7Hqpkv/vITR+5LCL+lG87E5gJ3Jvx3CXHd9BVHX9HJEkNiTUxJNWFt998k91+8Qv+PmEC9951F2eeeirPPPccEcEpJ55Im7ZtefDRR2nTpg1vvPYaAC+98AJXXHYZI2+5hbXXXptLL7qIk449ltv++tey4z791FP8ddQolm3VirfefJPPP/+cL7/8kqfGjWNhStx5220889RT3HrnnSy//PJccO65nDdsGJdccQXTpk7l0IMPZti557LDoEF8PWcOn02bxrrrrccbr73Git26cfTxxxf8eubOncvkyZPpscYai7V/8b//se2WW9K6dWu22357jjruONq0aQPA999/z5+GDWPYn/7E++++W+X368P332fjn/+87Plqq69Oy5YtmTRpEqutvjrvv/ceX331FS8+/zxr9+zJtGnTeOyRR7jz7rsLHm+ttdZiyuTJzJk9m+Xatav+B1aFqhIWVwC3khvB8B9gD+D1CtvMA6bni3Bm0Ylcoc2KZub7CkopTY2I/sDDwNH55mnAwJTSfwvtExFDgaEA7TsunzG8xsd/SFWdym4O/b2RJDUk3tNIKpbuK63EnnvvDcBue+zBecOG8cXnn5NS4rlnn+W5l1+mQ4cOQG40AORGGfzil79kvfXXB+DYE06gz2abMWXy5LJRBIcceigdOnYsO080a8YRxxzDMssuC8A9d93FaWedRbfu3QE4/Oij2aFvXxYsWMDDY8awZZ8+DN5lFwA6dupEx06V/gu8mNlf5SYotF1uubK2Nddck/tGj2aNtdZi6pQpnHbyyVxy/vmcdd55ANx5++1suNFGrL/BBtUmLObOnfujxEK7du34+uuv6dipE0MP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\n" + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax= plottings.plot_distrib_graph(df=df, to_plot='True_False', absolute=False, line=True, color='correct')\n", + "\n" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 9, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "gender\n", + "..\\..\\tex\\figures\n" + ] + }, + { + "data": { + "text/plain": "<Figure size 1296x288 with 3 Axes>", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA6gAAAD8CAYAAAB6tolUAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdd3zT1f7H8ddJyy7QMgstm6KA7CUyhQuCF0FUtLjQq+IA1/Wq4MK9t+LAhRvxJwgKKIgDRNllbyijQAerAyi0yfn9kRI7aQttkzbvJ488Hv3me3K+n2/CSfLJGV9jrUVERERERETE2xzeDkBEREREREQElKCKiIiIiIiIj1CCKiIiIiIiIj5BCaqIiIiIiIj4BCWoIiIiIiIi4hOUoIqIiIiIiIhPUIIqIiIiIiIihWKM+dgYE2+MWZfHfmOMedMYs80Ys8YY07Eg9SpBFRERERERkcKaDAw6zf7BQETGbTTwbkEqVYIqIiIiIiIihWKtXQAcOk2RYcBn1m0xEGyMqZdfvYFFFWBxMsZYb8cg4os6deqUZXvFihVeikTEN6mNiJye2ohIgR2w1tb2dhBn62Dq4QLnVbUq1bgVd8/nKZOstZMKcbgwYE+m7ZiM+/af7kGlIkEVkdwtX748y7YxxkuRiPgmtRGR01MbESmwXd4OoKRlJKOFSUizy+0NJd8EWQmqiIiIiIiIH7D554dFKQZokGk7HNiX34M0B1VERERERMQPOF3OAt+KwEzg+ozVfM8HEq21px3eC+pBFRERERER8QuuIuxBNcZ8DfQFahljYoAJQDkAa+17wGzgYmAbcAy4sSD1KkEVERERERHxA9YWXYJqrR2Zz34LjClsvRriW4ZER0ezZs0aoqKiWLZsmef+kJAQ5s6dy5YtW5g7dy7BwcF51nHPPfdw/PhxqlWrVqBjjh8/3vN3o0aNWLt27ZmfgEgx++ijj4iLi8vx/3TChAnExMQQFRVFVFQUgwcP9uwbN24cW7duZdOmTQwcODDPumvVqsXJkycZPXp0nmUyGzZsGC1btvRs//bbbzlW0xQpaWfyOaI2Iv4ir8+QM2kfHTt2ZM2aNWzdupU33njjtMf9/vvv+euvvwoUY6NGjRg58p+cYdSoUbz11lsFeqz4B5d1FfjmLUpQy5gLL7yQDh060KVLF89948aNY/78+bRo0YL58+czbty4PB8/cuRIli1bxvDhwwt0vIceeuisYz4lICCgyOoSyc3kyZMZNCj360m/9tprdOjQgQ4dOjBnzhwAWrZsSWRkJK1bt2bQoEG88847OBy5v22OGDGCxYsXZ/licDqXXnoprVq1OrMTyUZtR4pSYT5H1EbEn+T1GXIm7ePdd99l9OjRREREEBERkednU/Xq1enYsSPBwcE0btw43xgbN27M1VdffeYnmU1e7VlKL1uIf96i/3V+YNiwYXz66acAfPrpp1x66aW5lmvatClBQUE88sgjp/317YcffqBPnz4899xzVKpUiaioKL744gvA/SVg0qRJrFu3jp9//pmKFSsC0K5dO/7++29Wr17NtGnTPL8u/vbbbzzzzDP8/vvv3H333VxxxRWsXbuWVatW8ccffxTL8yH+a+HChRw6dLrrSWc1bNgwpkyZwsmTJ9m5cyfbtm2ja9euuZYdOXIk9913H+Hh4dSvX99zf3Jysufvyy+/nE8++YTu3bszdOhQXnrpJaKiomjatCng/gK/ZMkSNm/eTM+ePQGoUKECH3/8MWvWrGHlypX07dsXcLfLqVOnMnPmTObOnUtoaCh//PEHUVFRrF271vN4kaKQ1+eI2oj4k7w+QwrbPkJDQ6lWrRqLFy8G4LPPPsvzu9nll1/ODz/8wJQpU4iMjPTc/8knn3D55Zd7tk+1o+eff55evXoRFRXFPffcA0D9+vWZM2cOW7Zs4YUXXvA8JjIykjVr1rB27Vqef/75LHU98cQTLF68mO7du/Pcc8+xfv16Vq9ezUsvvXRGz534Dpe1Bb55ixLUMsRay9y5c1m+fDm33HKL5/66desSGxsLQGxsLHXq1Mn18SNHjuTrr79m4cKFnHPOOdSuffprEY8fP57jx4/ToUMHrr32WgAiIiKYOHEi5513HkeOHPG8eX722Wc8+OCDtGvXjrVr1zJhwgRPPcHBwfTt25dXX32Vxx57jIsuuoj27dszdOjQs3o+RApj7NixrF69mo8++sjzA0pYWBh79vxzfemYmBjCwsJyPDY8PJzQ0FCWLVvG1KlTueqqq057rL///puZM2dy//3306FDB3bs2AFAYGAg3bp145577vG0kTFj3FM32rZty8iRI/n000+pUKECAN27d2fUqFH079+fq6++mp9//pkOHTrQrl07Vq1adfZPividwn6OqI2IFL59hIWFERMTk+P+3Jz6bvb1118XaPTBuHHjWLhwIR06dOD1118HoH379lx11VW0adOGq666ivDwcOrVq8cLL7xAv379aN++PV26dGHYsGEABAUFsW7dOs4//3w2bNjA8OHDad26Ne3atePpp58+sydJfEYJr+J7RpSgliE9evSgU6dODB48mDFjxtCrV69CPT4yMpIpU6ZgrWXatGmMGDGi0DFER0ezevVqAFasWEHjxo2pVq0awcHBLFiwAHD/uti7d2/PY7755hvP34sWLWLy5MncfPPNGpIlJebdd9+lWbNmtG/fnv379/PKK68AuV+wPrfFBSIjI5k6dSoAU6ZMKfAQxuymTZsG/NN2AHr27Mnnn38OwObNm9m1axctWrQAYN68eRw+fBiAZcuWceONNzJhwgTatGlDSkrKGcUg/q2wnyNqIyJ5y6t9FLTd1KlTh+bNm/Pnn3+ydetW0tPTad26daHjmD9/PklJSZw4cYINGzbQqFEjunTpwu+//86BAwdwOp18+eWXnu9m6enpfPfddwAkJSWRmprKhx9+yPDhwzl27Fihjy++RUN8pUTt3+++rFBCQgLTp0/3DLOKi4sjNDQUgNDQUOLj43M8tk2bNkRERDBv3jyio6OJjIz0fIFIT0/PMgfh1LDd3Jw4ccLzt9PpJDAw/4Wijx496vn79ttv55FHHqFBgwasWrWKGjVq5Pt4kbMVHx+Py+XCWssHH3zgaTsxMTE0aPDP9aXDw8PZty/n9aVHjhzJDTfcQHR0NDNnzqRdu3Y0b94cyPql43RtB/5pP5nbTm5fZE7J3HYWLlxI79692bt3L59//jnXXXddfqctkkNhP0fURkQK3z5iYmIIDw/PcX92V111FSEhIURHRxMdHU3jxo09w3yzfzcrX758nvHl9t3sdO0mNTUVl8vlKd+1a1e+++47Lr30Un766afTPhfi+7RIkpSYypUrExQU5Pl74MCBrFu3DoCZM2cyatQowD0nZ8aMGTkeP3LkSB5//HGaNGlCkyZNPENQGjZsyM6dO2nfvj3GGMLDw7PML0pLS8s3CU1KSuLw4cOe+T7XXXddnvNLmzZtytKlS5kwYQIHDhzI8sYuUlxOfbEAGD58eJa2ExkZSfny5WncuDEREREsXbo0y2NbtGhBlSpVCA8P97Sf5557zvMlIi4ujnPPPRdjTJbFx5KTk6latWq+sS1YsIBrrrkGcA+hb9iwIZs3b85RrmHDhsTHx/Phhx/y0Ucf0bFjx8I/EeLXzuRzRG1EpPDtIzY2luTkZLp16wbA9ddfn+d3s0GDBnnaTadOnTztZufOnZ5VrYcNG+ZJUAvabpYsWUKfPn2oWbMmDoeDkSNH5vrdrEqVKlSvXp05c+Zwzz330L59+zN4hsSXWGsLfPMWXQe1jKhbty7Tp08H3HN0vvrqK37++WfAPWF+6tSp3HTTTezevTvXobuRkZFZLq0BMH36dCIjI3nxxReJjo5m7dq1rFu3jpUrV3rKTJo0ybMwxcMPP5xnfKNGjeK9996jcuXK7NixgxtvzP06vS+99BIREREYY5g/f75nuLBIUfjqq6/o27cvtWrVYs+ePUyYMIGPP/6YF198kfbt22OtZefOndx6660AbNiwgalTp7JhwwbS09MZM2aM51flU0aOHOlpe6d89913TJkyhaeffppx48bx448/smfPHtatW+dJAKZMmcIHH3zAXXfdxRVXXJFnzO+88w7vvfcea9asIT09nRtuuIGTJ0/mKNe3b1/uv/9+0tLSSElJ4frrrz/bp0v8zJl8jqiNiD/J6zPkTNrH7bffzuTJk6lUqRJz5szxrB5/SqNGjWjYsKFnISVwJ6VJSUl07dqVDz74gBkzZrBkyRLmz5/vGbJ+qh2sWrWKyZMne4a4ZxcbG8v48eP57bffMMYwe/ZsZs6cmaNc1apVmTFjBhUrVsQYw7333lskz6V4j8uLQ3cLyngzOy4oY4zvByniBdnb7+mG7Ij4I7URkdNTGxEpsBXW2s7eDuJsrT+4pcB5VeuaLbzyhqAeVBERERERET/gzcWPCkpzUEVERERERMQnqAdVRERERETED7hKwfROJagiIiIiIiJ+wHrx8jEFpQRVRERERETED5SGBXKVoIqIiIiIiPgBp3V6O4R8KUEVERERERHxA5qDWkSqVA+iRr2a3g5DMsTHxns7BMnQuXPWy3E1OKeRlyKRzOLj1UZ8RfY2Eto8zEuRSGZJiYneDkEyZG8j9dRGfMKRI2ojvub4gZQy8SWrNFxmplQkqM/NecPbIUgmb778urdDkAzLv1ueZfuNRR94KRLJbOLrE70dgmRY/m3WNvLIrOe8FIlk9tOsn7wdgmRY/s4fWbYfm/OClyKRzH6c8aO3Q5BsVr63sLa3YygK6kEVERERERERn6BVfEVERERERMQnOJWgioiIiIiIiC9QD6qIiIiIiIj4BM1BFREREREREZ9glaCKiIiIiIiIL9BlZkRERERERMQnuDQHVURERERERHyB06UEVURERERERHyAhviKiIiIiIiITygNl5lxeDsAEREREREREVAPqoiIiIiIiF/QdVBFRERERETEJ+g6qCIiIiIiIuITnNbp7RDypQRVRERERETED6gHVURERERERHyCElQRERERERHxCaVhkSRdZkZERERERMQPWGsLfCsIY8wgY8xmY8w2Y8y4XPZXN8b8YIxZbYxZb4y5Mb861YMqIiIiIiLiB4pykSRjTAAwERgAxADLjDEzrbUbMhUbA2yw1l5ijKkNbDbGfGmtPZlXvepBFRERERER8QNF3IPaFdhmrd2RkXBOAYZlPyRQ1RhjgCDgEJB+ukqVoIqIiIiIiPiBwiSoxpjRxpjlmW6js1UXBuzJtB2TcV9mbwMtgX3AWuBua63rdDFqiK+IiIiIiIgfcJ0+N8zCWjsJmHSaIia3h2XbvghYBfQDmgHzjDELrbVJeVWqHlQRERERERE/YAvxrwBigAaZtsNx95RmdiMwzbptA6KBc09XqRJUERERERERP1DEc1CXARHGmCbGmPJAJDAzW5ndQH8AY0xd4Bxgx+kq1RBfERERERERP+B0FXyIb36stenGmLHAz0AA8LG1dr0x5raM/e8BTwGTjTFrcQ8JftBae+B09SpBFRERERER8QMFvb5pIeqbDczOdt97mf7eBwwsTJ1KUEVERERERPyApeh6UIuLElQRERERERE/4CriHtTioARVRERERETEDxT1EN/ioFV8RURERERExCeoB1VERERERMQPuIpwFd/iogRVRERERETED7isElQRERERERHxARbfn4OqBFVERERERMQPlIZFkpSgioiIiIiI+AElqCIiIiIiIuITnFokSURERERERHyB1SJJIiIiIiIi4gs0xFdERERERER8glbxFREREREREZ/gUg+qiIiIiIiI+AIN8RURERERERGf4NIqviIiIiIiIuILNMTXj+xas4OFX83Huly06t2OTkPOz7J/5ewlbPl7A+D+5eLwvoPc9NadBJYvx7TnvsKZno51umjW5Ry6De/ljVMoc3q178Ej/3mQ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HggGbs5YzelkQc5IRERERERESkZRJqjW2nRgLPAz7qRzqrV2vTHmNmPMbRllNgI/AWuApcCH1tp1p6v3tHNQjTE1gbuAu40xDYHOwP3ADcBa4OmMA/9tjEkB4q21znzPRkREREREREpUEa/ii7V2NjA7233vZdt+CSjwVV3yWyTpJJAOTAACgE3As0AKMNRam2aMeQxIs9Y+V9CDioiIiIiISMkqyuugFpfTDvG11ibjvqbpxcBi4HWgITANqGWMicS9ku/3xRyniIiIiIiInIUinoNaLApymZmpQBTwNrAXuAX3WOMhuOedXpsxtlhERERERER8lDcTz4LKN0G11u4CdhljrgG+AR4Frsbd+1rZWptYvCGKiIiIiIjI2SoTCeop1toVxpjLcQ/5DbHWvgMoORURERERESkFylSCCmCtXW2M6QscL55wREREREREpDiUuQQVIL/r1oiIiIiIiIjvcbl8fxXfQieoIiIiIiIiUvqUyR5UERERERERKX2UoIqIiIiIiIhPUIIqIiIiIiIiPkEJqoiIiIiIiPgELZIkIiIiIiIiPkE9qCIiIiIiIuITlKCKiIiIiIiITygNCarD2wGIiIiIiIiIgHpQRURERERE/EJp6EFVgioiIiIiIuIHtIqviIiIiIiI+AT1oIqIiIiIiIhPUIIqIiIiIiIiPkEJqoiIiIiIiPgEJagiIiIiIiLiE5SgioiIiIiIiE9wObWKr4iIiIiIiPgA9aCKiIiIiIiIT1CCWkSevPsxb4cgmXzy5WRvhyB5eP3517wdggAPTXjY2yFIHr6fOt3bIQhwzahrvR2C5GHOj3O8HYIAg4cM9nYIUkYpQRURERERERGfoARVREREREREfILLpUWSRERERERExBf4fgeqElQRERERERF/oCG+IiIiIiIi4hOUoIqIiIiIiIhPKA0JqsPbAYiIiIiIiIiAelBFRERERET8QmlYxVc9qCIiIiIiIn7AWlvgW0EYYwYZYzYbY7YZY8adplwXY4zTGHNFfnWqB1VERERERMQPFOUcVGNMADARGADEAMuMMTOttRtyKfcC8HNB6lUPqoiIiIiIiD9w2YLf8tcV2Gat3WGtPQlMAYblUu5O4DsgviCVKkEVERERERHxA4UZ4muMGW2MWZ7pNjpbdWHAnkzbMRn3eRhjwoDhwHsFjVFDfEVERERERPxA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\n" + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "fig = plottings.plot_heatmap(df=df, target=targCol, pred=predCol, major_wrong = False, normalize='true')\n", + "\n", + "fig.savefig(os.path.join(savedir, target,str(100),'confusion' ,'test.pdf'),\n", + " dpi=fig.dpi, bbox_inches='tight')" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 63, + "outputs": [ + { + "data": { + "text/plain": " ID\n# Authors \n50 50\n150 150\n500 500\n1000 1000", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>ID</th>\n </tr>\n <tr>\n <th># Authors</th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>50</th>\n <td>50</td>\n </tr>\n <tr>\n <th>150</th>\n <td>150</td>\n </tr>\n <tr>\n <th>500</th>\n <td>500</td>\n </tr>\n <tr>\n <th>1000</th>\n <td>1000</td>\n </tr>\n </tbody>\n</table>\n</div>" + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def counter(x):\n", + " return len(x.unique())\n", + "df.groupby(by='# Authors').agg({'ID':counter})\n", + "\n" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } } ], "metadata": { diff --git a/Scripts/Evaluation/result_evaluations.ipynb b/Scripts/Evaluation/result_evaluations.ipynb index a8f853946a3cae0142f639d621a866b1f683c22c..636ec3b6f69be42ae54ce608b8100fd3bf50064c 100644 --- a/Scripts/Evaluation/result_evaluations.ipynb +++ b/Scripts/Evaluation/result_evaluations.ipynb @@ -41,7 +41,299 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 21, + "outputs": [], + "source": [ + "path = os.path.join(*ml_utils.split_path_unix_win('../../Data/pan19-celebrity-profiling-training-dataset-2019-01-31/results/workset/creator'))\n", + "agen = 'age'\n", + "gendern = 'gender'\n", + "order = ['dist', 'char', 'asis', 'pos', 'tag', 'dep', 'lemma', 'word','emoticon_c','polarity', 'num']\n", + "order2 = []\n", + "for i in range(1, len(order)):\n", + " order2.append('_'.join(order[0:i]))\n" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "markdown", + "source": [ + "# Data Set Distributions\n", + "\n" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%% md\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 22, + "outputs": [], + "source": [ + "prepr = re.sub('results', 'preprocessed', path)\n", + "def transformer(x):\n", + " x['init_sum'] = sum(x['init_len'])\n", + " x['n_tweets'] = len(x['init_len'])\n", + " x['prepr_sum'] = sum(x['prepr_len'])\n", + "\n", + " return x\n", + "import gc\n", + "gc.collect()\n", + "if os.path.exists(os.path.join(prepr, 'ids_total.json')):\n", + " ids = pd.read_json(os.path.join(prepr, 'ids_total.json'))\n", + "else:\n", + " ids = None\n", + " for tar in ['age', 'gender']:\n", + " for leng in [100, 250, 500]:\n", + " for aut in [50, 150, 500, 1000]:\n", + " tmp_num = None\n", + " for st in ['train', 'val', 'test']:\n", + " nfile = os.path.join(prepr, 'num', '{}'.format(leng), '{}'.format(tar),\n", + " st, '{}_num_{}_{}_authors.ndjson'.format(st, leng, aut))\n", + "\n", + " if type(tmp_num) == type(None):\n", + " with open(nfile, 'r', encoding='utf-8') as r:\n", + " tmp_num = pd.DataFrame(ndjson.load(r))\n", + " tmp_num.drop(labels=['mentions', 'tags', 'urls','times', 'tweetID',\n", + " 'emotic_num', 'emojis_num', 'numericals', 'ID'], inplace=True, axis=1)\n", + "\n", + " tmp_num['set'] = st\n", + " tmp_num = tmp_num.apply(func=transformer, axis=1)\n", + " else:\n", + " with open(nfile, 'r', encoding='utf-8') as r:\n", + " tmp = pd.DataFrame(ndjson.load(r))\n", + " tmp.drop(labels=['mentions', 'tags', 'urls','times', 'tweetID',\n", + " 'emotic_num', 'emojis_num', 'numericals', 'ID'], inplace=True, axis=1)\n", + "\n", + " tmp['set'] = st\n", + " tmp = tmp.apply(func=transformer, axis=1)\n", + " tmp_num = pd.concat([tmp_num, tmp], axis=0)\n", + "\n", + "\n", + " file = os.path.join(prepr, '{}_ids'.format(tar),\n", + " 'ids_{}_{}_{}_authors_balanced.json').format(tar, leng, aut)\n", + " print(file)\n", + " tmp = pd.read_json(file)\n", + " tmp['target'] = tar\n", + " tmp['No. of Authors'] = aut\n", + " tmp['No. of Characters'] = leng\n", + " tmp = tmp.merge(tmp_num, how='left', left_on='uID', right_on='uID')\n", + " if type(ids)==type(None):\n", + " ids = tmp\n", + " else:\n", + " ids = pd.concat([ids, tmp], axis=0)\n", + " ids = ids.reset_index(drop=True)\n", + "\n", + " ids.to_json(os.path.join(prepr, 'ids_total.json'))" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 23, + "outputs": [ + { + "data": { + "text/plain": " ID tweetID uID centered_age gender \\\n0 14544 [14544_5] 14544_5 1985 male \n1 14544 [14544_6] 14544_6 1985 male \n2 14544 [14544_9, 14544_10] 14544_9|14544_10 1985 male \n3 14544 [14544_11, 14544_12] 14544_11|14544_12 1985 male \n4 14544 [14544_13] 14544_13 1985 male \n\n birthyear strat target No. of Authors No. of Characters init_len \\\n0 1984 1985_male age 50 100 [142] \n1 1984 1985_male age 50 100 [140] \n2 1984 1985_male age 50 100 [47, 53] \n3 1984 1985_male age 50 100 [99, 70] \n4 1984 1985_male age 50 100 [116] \n\n prepr_len set init_sum n_tweets prepr_sum \n0 [159] test 142 1 159 \n1 [165] test 140 1 165 \n2 [29, 74] train 100 2 103 \n3 [132, 103] test 169 2 235 \n4 [144] val 116 1 144 ", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>ID</th>\n <th>tweetID</th>\n <th>uID</th>\n <th>centered_age</th>\n <th>gender</th>\n <th>birthyear</th>\n <th>strat</th>\n <th>target</th>\n <th>No. of Authors</th>\n <th>No. of Characters</th>\n <th>init_len</th>\n <th>prepr_len</th>\n <th>set</th>\n <th>init_sum</th>\n <th>n_tweets</th>\n <th>prepr_sum</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>14544</td>\n <td>[14544_5]</td>\n <td>14544_5</td>\n <td>1985</td>\n <td>male</td>\n <td>1984</td>\n <td>1985_male</td>\n <td>age</td>\n <td>50</td>\n <td>100</td>\n <td>[142]</td>\n <td>[159]</td>\n <td>test</td>\n <td>142</td>\n <td>1</td>\n <td>159</td>\n </tr>\n <tr>\n <th>1</th>\n <td>14544</td>\n <td>[14544_6]</td>\n <td>14544_6</td>\n <td>1985</td>\n <td>male</td>\n <td>1984</td>\n <td>1985_male</td>\n <td>age</td>\n <td>50</td>\n <td>100</td>\n <td>[140]</td>\n <td>[165]</td>\n <td>test</td>\n <td>140</td>\n <td>1</td>\n <td>165</td>\n </tr>\n <tr>\n <th>2</th>\n <td>14544</td>\n <td>[14544_9, 14544_10]</td>\n <td>14544_9|14544_10</td>\n <td>1985</td>\n <td>male</td>\n <td>1984</td>\n <td>1985_male</td>\n <td>age</td>\n <td>50</td>\n <td>100</td>\n <td>[47, 53]</td>\n <td>[29, 74]</td>\n <td>train</td>\n <td>100</td>\n <td>2</td>\n <td>103</td>\n </tr>\n <tr>\n <th>3</th>\n <td>14544</td>\n <td>[14544_11, 14544_12]</td>\n <td>14544_11|14544_12</td>\n <td>1985</td>\n <td>male</td>\n <td>1984</td>\n <td>1985_male</td>\n <td>age</td>\n <td>50</td>\n <td>100</td>\n <td>[99, 70]</td>\n <td>[132, 103]</td>\n <td>test</td>\n <td>169</td>\n <td>2</td>\n <td>235</td>\n </tr>\n <tr>\n <th>4</th>\n <td>14544</td>\n <td>[14544_13]</td>\n <td>14544_13</td>\n <td>1985</td>\n <td>male</td>\n <td>1984</td>\n <td>1985_male</td>\n <td>age</td>\n <td>50</td>\n <td>100</td>\n <td>[116]</td>\n <td>[144]</td>\n <td>val</td>\n <td>116</td>\n <td>1</td>\n <td>144</td>\n </tr>\n </tbody>\n</table>\n</div>" + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ids.rename(columns={'# Authors':'No. of Authors',\n", + " '# Chars in Input': 'No. of Characters'}, inplace=True)\n", + "ids.head()" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 24, + "outputs": [], + "source": [ + "def aggregate(x):\n", + " d = {}\n", + " tot = x['init_sum'].sum()\n", + " tsum = x['n_tweets'].sum()\n", + " d['avg_tweet'] = round(tot/tsum,2)\n", + " d['avg_instance'] = round(tot/x.shape[0],2)\n", + " d['avg_tweet_per_instance'] = round(tsum/x.shape[0],2)\n", + " return pd.Series(d, index=['avg_instance', 'avg_tweet', 'avg_tweet_per_instance'])" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 25, + "outputs": [ + { + "data": { + "text/plain": " avg_instance avg_tweet \\\ntarget age gender age gender \nNo. of Characters No. of Authors \n100 50 160.30 162.94 109.58 111.92 \n 150 160.52 162.37 107.38 112.94 \n 500 160.78 161.63 109.21 111.86 \n 1000 160.07 160.99 109.28 111.84 \n250 50 313.16 315.73 109.05 112.02 \n 150 313.25 315.58 107.43 112.84 \n 500 313.26 314.66 109.09 111.67 \n 1000 313.30 314.34 109.18 111.84 \n500 50 565.60 568.76 109.12 111.87 \n 150 565.89 568.71 107.48 112.84 \n 500 566.13 567.54 109.15 111.70 \n 1000 566.10 567.38 109.17 111.85 \n\n avg_tweet_per_instance \ntarget age gender \nNo. of Characters No. of Authors \n100 50 1.46 1.46 \n 150 1.49 1.44 \n 500 1.47 1.44 \n 1000 1.46 1.44 \n250 50 2.87 2.82 \n 150 2.92 2.80 \n 500 2.87 2.82 \n 1000 2.87 2.81 \n500 50 5.18 5.08 \n 150 5.27 5.04 \n 500 5.19 5.08 \n 1000 5.19 5.07 ", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead tr th {\n text-align: left;\n }\n\n .dataframe thead tr:last-of-type th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr>\n <th></th>\n <th></th>\n <th colspan=\"2\" halign=\"left\">avg_instance</th>\n <th colspan=\"2\" halign=\"left\">avg_tweet</th>\n <th colspan=\"2\" halign=\"left\">avg_tweet_per_instance</th>\n </tr>\n <tr>\n <th></th>\n <th>target</th>\n <th>age</th>\n <th>gender</th>\n <th>age</th>\n <th>gender</th>\n <th>age</th>\n <th>gender</th>\n </tr>\n <tr>\n <th>No. of Characters</th>\n <th>No. of Authors</th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th rowspan=\"4\" valign=\"top\">100</th>\n <th>50</th>\n <td>160.30</td>\n <td>162.94</td>\n <td>109.58</td>\n <td>111.92</td>\n <td>1.46</td>\n <td>1.46</td>\n </tr>\n <tr>\n <th>150</th>\n <td>160.52</td>\n <td>162.37</td>\n <td>107.38</td>\n <td>112.94</td>\n <td>1.49</td>\n <td>1.44</td>\n </tr>\n <tr>\n <th>500</th>\n <td>160.78</td>\n <td>161.63</td>\n <td>109.21</td>\n <td>111.86</td>\n <td>1.47</td>\n <td>1.44</td>\n </tr>\n <tr>\n <th>1000</th>\n <td>160.07</td>\n <td>160.99</td>\n <td>109.28</td>\n <td>111.84</td>\n <td>1.46</td>\n <td>1.44</td>\n </tr>\n <tr>\n <th rowspan=\"4\" valign=\"top\">250</th>\n <th>50</th>\n <td>313.16</td>\n <td>315.73</td>\n <td>109.05</td>\n <td>112.02</td>\n <td>2.87</td>\n <td>2.82</td>\n </tr>\n <tr>\n <th>150</th>\n <td>313.25</td>\n <td>315.58</td>\n <td>107.43</td>\n <td>112.84</td>\n <td>2.92</td>\n <td>2.80</td>\n </tr>\n <tr>\n <th>500</th>\n <td>313.26</td>\n <td>314.66</td>\n <td>109.09</td>\n <td>111.67</td>\n <td>2.87</td>\n <td>2.82</td>\n </tr>\n <tr>\n <th>1000</th>\n <td>313.30</td>\n <td>314.34</td>\n <td>109.18</td>\n <td>111.84</td>\n <td>2.87</td>\n <td>2.81</td>\n </tr>\n <tr>\n <th rowspan=\"4\" valign=\"top\">500</th>\n <th>50</th>\n <td>565.60</td>\n <td>568.76</td>\n <td>109.12</td>\n <td>111.87</td>\n <td>5.18</td>\n <td>5.08</td>\n </tr>\n <tr>\n <th>150</th>\n <td>565.89</td>\n <td>568.71</td>\n <td>107.48</td>\n <td>112.84</td>\n <td>5.27</td>\n <td>5.04</td>\n </tr>\n <tr>\n <th>500</th>\n <td>566.13</td>\n <td>567.54</td>\n <td>109.15</td>\n <td>111.70</td>\n <td>5.19</td>\n <td>5.08</td>\n </tr>\n <tr>\n <th>1000</th>\n <td>566.10</td>\n <td>567.38</td>\n <td>109.17</td>\n <td>111.85</td>\n <td>5.19</td>\n <td>5.07</td>\n </tr>\n </tbody>\n</table>\n</div>" + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grouped = ids.groupby(by=['target', 'No. of Characters', 'No. of Authors']).apply(aggregate)\n", + "grouped = grouped.reset_index()\n", + "grouped = pd.pivot(index=[ 'No. of Characters','No. of Authors'], columns=['target'],\n", + " values=['avg_instance', 'avg_tweet', 'avg_tweet_per_instance'], data=grouped)\n", + "\n", + "\n", + "\n", + "grouped" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 26, + "outputs": [], + "source": [ + "savedir = os.path.join(*ml_utils.split_path_unix_win('../../tex/tables'))\n", + "table = grouped.to_latex(sparsify=True,\n", + " multirow=True,\n", + " multicolumn=True,\n", + " caption='''Statistics of the Dataset''',\n", + " label='tab:dataset',\n", + " float_format=\"%.2f\")\n", + "table = re.sub(r'begin{table}', 'begin{table}[!ht]', table)\n", + "table = re.sub('& target &', '& Target &', table)\n", + "table = re.sub('& tweetLen &', r'& Min. \\\\No. of Characters &', table)\n", + "table = re.sub(r\"\\\\begin\\{tabular\", r\"\\\\begin{adjustbox}{max width=\\\\textwidth}\\n\\\\begin{tabular\", table)\n", + "table = re.sub(r\"\\\\end\\{tabular}\", r\"\\n\\\\end{tabular}\\\\end{adjustbox}\", table)\n", + "\n", + "with open(os.path.join(savedir, 'dataset.tex'), 'w') as w:\n", + " w.write(table)" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 27, + "outputs": [ + { + "data": { + "text/plain": " set target No. of Characters No. of Authors avg_instance avg_tweet \\\n0 test age 100 50 159.93 109.42 \n1 test age 100 150 161.05 107.75 \n2 test age 100 500 160.74 109.27 \n3 test age 100 1000 160.09 109.28 \n4 test age 250 50 313.19 108.30 \n\n avg_tweet_per_instance \n0 1.46 \n1 1.49 \n2 1.47 \n3 1.47 \n4 2.89 ", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>set</th>\n <th>target</th>\n <th>No. of Characters</th>\n <th>No. of Authors</th>\n <th>avg_instance</th>\n <th>avg_tweet</th>\n <th>avg_tweet_per_instance</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>test</td>\n <td>age</td>\n <td>100</td>\n <td>50</td>\n <td>159.93</td>\n <td>109.42</td>\n <td>1.46</td>\n </tr>\n <tr>\n <th>1</th>\n <td>test</td>\n <td>age</td>\n <td>100</td>\n <td>150</td>\n <td>161.05</td>\n <td>107.75</td>\n <td>1.49</td>\n </tr>\n <tr>\n <th>2</th>\n <td>test</td>\n <td>age</td>\n <td>100</td>\n <td>500</td>\n <td>160.74</td>\n <td>109.27</td>\n <td>1.47</td>\n </tr>\n <tr>\n <th>3</th>\n <td>test</td>\n <td>age</td>\n <td>100</td>\n <td>1000</td>\n <td>160.09</td>\n <td>109.28</td>\n <td>1.47</td>\n </tr>\n <tr>\n <th>4</th>\n <td>test</td>\n <td>age</td>\n <td>250</td>\n <td>50</td>\n <td>313.19</td>\n <td>108.30</td>\n <td>2.89</td>\n </tr>\n </tbody>\n</table>\n</div>" + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "grouped = ids.groupby(by=['set','target', 'No. of Characters', 'No. of Authors']).apply(aggregate)\n", + "grouped = grouped.reset_index()\n", + "grouped.head()" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 28, + "outputs": [], + "source": [ + "for st in ['train', 'val', 'test']:\n", + " pv = pd.pivot(index=[ 'No. of Characters','No. of Authors'], columns=['target'],\n", + " values=['avg_instance', 'avg_tweet', 'avg_tweet_per_instance'],\n", + " data=grouped.loc[grouped.set == st,:])\n", + "\n", + "\n", + "\n", + " savedir = os.path.join(*ml_utils.split_path_unix_win('../../tex/tables'))\n", + " table = pv.to_latex(sparsify=True,\n", + " multirow=True,\n", + " multicolumn=True,\n", + " caption='''Statistics of the Dataset''',\n", + " label='tab:dataset_{}'.format(st),\n", + " float_format=\"%.2f\")\n", + " table = re.sub(r'begin{table}', 'begin{table}[!ht]', table)\n", + " table = re.sub('& target &', '& Target &', table)\n", + " table = re.sub('& tweetLen &', r'& Min. No. of Characters &', table)\n", + " table = re.sub(r\"\\\\begin\\{tabular\", r\"\\\\begin{adjustbox}{max width=\\\\textwidth}\\n\\\\begin{tabular\", table)\n", + " table = re.sub(r\"\\\\end\\{tabular}\", r\"\\n\\\\end{tabular}\\\\end{adjustbox}\", table)\n", + "\n", + " with open(os.path.join(savedir, '{}_dataset.tex'.format(st)), 'w') as w:\n", + " w.write(table)" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 11, + "outputs": [ + { + "data": { + "text/plain": "508" + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "del ids\n", + "gc.collect()" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 30, "outputs": [ { "name": "stdout", @@ -97,19 +389,12 @@ "text/plain": " featuretypes # Authors subgrams modeltype name tweetLen target rank \\\n0 dist 150 2 cumulated dist 2 500 age 02 \n1 dist 150 2-3 cumulated dist 3 500 age 023 \n2 dist 150 2-3-4 cumulated dist 4 500 age 0234 \n3 dist 150 2-3-4-5 cumulated dist 5 500 age 02345 \n4 dist_char 150 2 stacked char 2 500 age 012 \n\n Average Spearman's Rho (ext.) Average Spearman's Rho (red.) \\\n0 0.187245 0.072675 \n1 0.114232 0.035884 \n2 0.026844 0.015722 \n3 0.021929 0.006432 \n4 0.073347 0.022784 \n\n set set_enum set_feat \n0 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n1 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n2 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n3 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n4 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA ", "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>featuretypes</th>\n <th># Authors</th>\n <th>subgrams</th>\n <th>modeltype</th>\n <th>name</th>\n <th>tweetLen</th>\n <th>target</th>\n <th>rank</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>set</th>\n <th>set_enum</th>\n <th>set_feat</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>dist</td>\n <td>150</td>\n <td>2</td>\n <td>cumulated</td>\n <td>dist 2</td>\n <td>500</td>\n <td>age</td>\n <td>02</td>\n <td>0.187245</td>\n <td>0.072675</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>1</th>\n <td>dist</td>\n <td>150</td>\n <td>2-3</td>\n <td>cumulated</td>\n <td>dist 3</td>\n <td>500</td>\n <td>age</td>\n <td>023</td>\n <td>0.114232</td>\n <td>0.035884</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>2</th>\n <td>dist</td>\n <td>150</td>\n <td>2-3-4</td>\n <td>cumulated</td>\n <td>dist 4</td>\n <td>500</td>\n <td>age</td>\n <td>0234</td>\n <td>0.026844</td>\n <td>0.015722</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>3</th>\n <td>dist</td>\n <td>150</td>\n <td>2-3-4-5</td>\n <td>cumulated</td>\n <td>dist 5</td>\n <td>500</td>\n <td>age</td>\n <td>02345</td>\n <td>0.021929</td>\n <td>0.006432</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>4</th>\n <td>dist_char</td>\n <td>150</td>\n <td>2</td>\n <td>stacked</td>\n <td>char 2</td>\n <td>500</td>\n <td>age</td>\n <td>012</td>\n <td>0.073347</td>\n <td>0.022784</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n </tbody>\n</table>\n</div>" }, - "execution_count": 34, + "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "path = os.path.join(*ml_utils.split_path_unix_win('../../Data/pan19-celebrity-profiling-training-dataset-2019-01-31/results/workset/creator'))\n", - "agen = 'age'\n", - "gendern = 'gender'\n", - "order = ['dist', 'char', 'asis', 'pos', 'tag', 'dep', 'lemma', 'word','emoticon_c','polarity', 'num']\n", - "order2 = []\n", - "for i in range(1, len(order)):\n", - " order2.append('_'.join(order[0:i]))\n", "\n", "age_files = {'acc':[], 'dist': []}\n", "gender_files = {'acc':[], 'dist': []}\n", @@ -200,7 +485,7 @@ "age_dist.drop_duplicates(colnames, inplace=True)\n", "print(age_dist.shape)\n", "print(age_acc.shape)\n", - "#age = age_acc.merge(age_dist.loc[:, ['set', 'tweetLen', '# Authors','rank',\n", + "#age = age_acc.merge(age_dist.loc[:, ['set', 'tweetLen', 'No. of Authors','rank',\n", "# 'featuretypes', 'modeltype', 'target',\n", "# \"Average Spearman's Rho (ext.)\",\n", " # \"Average Spearman's Rho (red.)\"]], how='left')\n", @@ -224,7 +509,7 @@ }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 31, "outputs": [ { "name": "stdout", @@ -282,7 +567,7 @@ "text/plain": " featuretypes # Authors subgrams modeltype name tweetLen target \\\n0 dist 150 2 cumulated dist 2 500 gender \n1 dist 150 2-3 cumulated dist 3 500 gender \n2 dist 150 2-3-4 cumulated dist 4 500 gender \n3 dist 150 2-3-4-5 cumulated dist 5 500 gender \n4 dist_char 150 2 stacked char 2 500 gender \n\n rank Average Spearman's Rho (ext.) Average Spearman's Rho (red.) \\\n0 02 0.085755 0.136993 \n1 023 0.153513 0.113376 \n2 0234 0.118509 -0.005042 \n3 02345 0.090370 0.054982 \n4 012 0.127436 0.053515 \n\n set set_enum set_feat \n0 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n1 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n2 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n3 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA \n4 dist-char-word-lemma 2 DIST-CHAR-WORD-LEMMA ", "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>featuretypes</th>\n <th># Authors</th>\n <th>subgrams</th>\n <th>modeltype</th>\n <th>name</th>\n <th>tweetLen</th>\n <th>target</th>\n <th>rank</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>set</th>\n <th>set_enum</th>\n <th>set_feat</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>dist</td>\n <td>150</td>\n <td>2</td>\n <td>cumulated</td>\n <td>dist 2</td>\n <td>500</td>\n <td>gender</td>\n <td>02</td>\n <td>0.085755</td>\n <td>0.136993</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>1</th>\n <td>dist</td>\n <td>150</td>\n <td>2-3</td>\n <td>cumulated</td>\n <td>dist 3</td>\n <td>500</td>\n <td>gender</td>\n <td>023</td>\n <td>0.153513</td>\n <td>0.113376</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>2</th>\n <td>dist</td>\n <td>150</td>\n <td>2-3-4</td>\n <td>cumulated</td>\n <td>dist 4</td>\n <td>500</td>\n <td>gender</td>\n <td>0234</td>\n <td>0.118509</td>\n <td>-0.005042</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>3</th>\n <td>dist</td>\n <td>150</td>\n <td>2-3-4-5</td>\n <td>cumulated</td>\n <td>dist 5</td>\n <td>500</td>\n <td>gender</td>\n <td>02345</td>\n <td>0.090370</td>\n <td>0.054982</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n <tr>\n <th>4</th>\n <td>dist_char</td>\n <td>150</td>\n <td>2</td>\n <td>stacked</td>\n <td>char 2</td>\n <td>500</td>\n <td>gender</td>\n <td>012</td>\n <td>0.127436</td>\n <td>0.053515</td>\n <td>dist-char-word-lemma</td>\n <td>2</td>\n <td>DIST-CHAR-WORD-LEMMA</td>\n </tr>\n </tbody>\n</table>\n</div>" }, - "execution_count": 35, + "execution_count": 31, "metadata": {}, "output_type": "execute_result" } @@ -366,7 +651,7 @@ "\n", "print(gender_dist.shape)\n", "print(gender_acc.shape)\n", - "#gender = gender_acc.merge(gender_dist.loc[:, ['set', 'tweetLen', '# Authors','rank',\n", + "#gender = gender_acc.merge(gender_dist.loc[:, ['set', 'tweetLen', 'No. of Authors','rank',\n", "# 'featuretypes', 'modeltype', 'target',\n", "# \"Average Spearman's Rho (ext.)\",\n", "# \"Average Spearman's Rho (red.)\"]], how='left')\n", @@ -389,11 +674,36 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 32, "outputs": [], "source": [ "dist = pd.concat([age_dist, gender_dist])\n", - "acc = pd.concat([age_acc, gender_acc])" + "acc = pd.concat([age_acc, gender_acc])\n", + "dist.rename(columns={'# Authors':'No. of Authors'}, inplace=True)\n", + "acc.rename(columns={'# Authors':'No. of Authors'}, inplace=True)" + ], + "metadata": { + "collapsed": false, + "pycharm": { + "name": "#%%\n" + } + } + }, + { + "cell_type": "code", + "execution_count": 33, + "outputs": [ + { + "data": { + "text/plain": "Index(['featuretypes', 'No. of Authors', 'subgrams', 'modeltype', 'name',\n 'tweetLen', 'target', 'rank', 'Average Spearman's Rho (ext.)',\n 'Average Spearman's Rho (red.)', 'set', 'set_enum', 'set_feat'],\n dtype='object')" + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dist.columns" ], "metadata": { "collapsed": false, @@ -404,14 +714,14 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 86, "outputs": [ { "data": { - "text/plain": "target age \\\ntweetLen 500 \n# Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.187245 \n 2-3 0.114232 \n 2-3-4 0.026844 \n 2-3-4-5 0.021929 \n dist_char 2 0.136581 \n... ... \nsingular baseline tag 1 0.088622 \n 1-2 0.017799 \n 1-2-3 0.082513 \n word 1 -0.058514 \n 1-2 -0.011166 \n\ntarget \\\ntweetLen 250 \n# Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.041580 \n 2-3 -0.022333 \n 2-3-4 0.002778 \n 2-3-4-5 0.004039 \n dist_char 2 0.061984 \n... ... \nsingular baseline tag 1 -0.018548 \n 1-2 0.045190 \n 1-2-3 0.040029 \n word 1 -0.118380 \n 1-2 -0.068614 \n\ntarget \\\ntweetLen 100 \n# Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.034811 \n 2-3 -0.005109 \n 2-3-4 -0.003334 \n 2-3-4-5 0.021338 \n dist_char 2 0.001302 \n... ... \nsingular baseline tag 1 0.113389 \n 1-2 0.064695 \n 1-2-3 0.033945 \n word 1 0.026580 \n 1-2 -0.010872 \n\ntarget \\\ntweetLen 500 \n# Authors 500 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.008349 \n 2-3 0.027542 \n 2-3-4 0.050173 \n 2-3-4-5 0.037073 \n dist_char 2 0.024354 \n... ... \nsingular baseline tag 1 0.071146 \n 1-2 -0.010918 \n 1-2-3 0.038633 \n word 1 0.042761 \n 1-2 0.001316 \n\ntarget \\\ntweetLen 100 \n# Authors 500 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.009855 \n 2-3 -0.006344 \n 2-3-4 0.024525 \n 2-3-4-5 -0.009718 \n dist_char 2 0.007699 \n... ... \nsingular baseline tag 1 -0.060031 \n 1-2 0.069371 \n 1-2-3 0.036958 \n word 1 0.027012 \n 1-2 0.003212 \n\ntarget \\\ntweetLen 250 \n# Authors 500 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.007215 \n 2-3 -0.013204 \n 2-3-4 0.025758 \n 2-3-4-5 0.027035 \n dist_char 2 0.012189 \n... ... \nsingular baseline tag 1 0.045259 \n 1-2 0.047406 \n 1-2-3 0.009889 \n word 1 -0.002993 \n 1-2 0.014187 \n\ntarget \\\ntweetLen \n# Authors 1000 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.015321 \n 2-3 0.008644 \n 2-3-4 0.027900 \n 2-3-4-5 -0.007913 \n dist_char 2 0.018137 \n... ... \nsingular baseline tag 1 0.025578 \n 1-2 0.046400 \n 1-2-3 0.001714 \n word 1 -0.008936 \n 1-2 -0.003547 \n\ntarget \\\ntweetLen 500 \n# Authors 1000 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.019163 \n 2-3 0.047782 \n 2-3-4 0.009939 \n 2-3-4-5 0.015407 \n dist_char 2 0.004790 \n... ... \nsingular baseline tag 1 -0.067977 \n 1-2 0.044056 \n 1-2-3 0.047400 \n word 1 0.015079 \n 1-2 0.011849 \n\ntarget \\\ntweetLen 100 \n# Authors 1000 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 -0.014053 \n 2-3 0.012595 \n 2-3-4 0.001973 \n 2-3-4-5 -0.020033 \n dist_char 2 0.004727 \n... ... \nsingular baseline tag 1 -0.052828 \n 1-2 0.034712 \n 1-2-3 0.000329 \n word 1 0.004566 \n 1-2 -0.000954 \n\ntarget gender \\\ntweetLen 500 \n# Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.085755 \n 2-3 0.153513 \n 2-3-4 0.118509 \n 2-3-4-5 0.090370 \n dist_char 2 0.091084 \n... ... \nsingular baseline tag 1 -0.008557 \n 1-2 0.154573 \n 1-2-3 0.051351 \n word 1 -0.030364 \n 1-2 -0.000287 \n\ntarget ... \\\ntweetLen ... \n# Authors ... \nScore ... \nset modeltype featuretypes subgrams ... \ndist-char-word-lemma cumulated dist 2 ... \n 2-3 ... \n 2-3-4 ... \n 2-3-4-5 ... \n dist_char 2 ... \n... ... \nsingular baseline tag 1 ... \n 1-2 ... \n 1-2-3 ... \n word 1 ... \n 1-2 ... \n\ntarget age \\\ntweetLen 100 \n# Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.017371 \n 2-3 0.045819 \n 2-3-4 0.020676 \n 2-3-4-5 -0.032071 \n dist_char 2 0.032844 \n... ... \nsingular baseline tag 1 -0.052828 \n 1-2 0.049368 \n 1-2-3 0.002219 \n word 1 -0.006523 \n 1-2 0.000597 \n\ntarget gender \\\ntweetLen 500 \n# Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.136993 \n 2-3 0.113376 \n 2-3-4 -0.005042 \n 2-3-4-5 0.054982 \n dist_char 2 0.026470 \n... ... \nsingular baseline tag 1 -0.008557 \n 1-2 0.132701 \n 1-2-3 0.057714 \n word 1 0.028155 \n 1-2 0.025200 \n\ntarget \\\ntweetLen 250 \n# Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.194533 \n 2-3 0.196929 \n 2-3-4 0.170263 \n 2-3-4-5 0.084400 \n dist_char 2 0.025105 \n... ... \nsingular baseline tag 1 0.027320 \n 1-2 0.079936 \n 1-2-3 -0.000031 \n word 1 -0.016220 \n 1-2 0.048501 \n\ntarget \\\ntweetLen 100 \n# Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.288756 \n 2-3 0.048504 \n 2-3-4 0.047140 \n 2-3-4-5 -0.006098 \n dist_char 2 -0.028486 \n... ... \nsingular baseline tag 1 -0.029294 \n 1-2 0.173908 \n 1-2-3 -0.019950 \n word 1 0.077121 \n 1-2 -0.030074 \n\ntarget \\\ntweetLen 250 \n# Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.093845 \n 2-3 0.145157 \n 2-3-4 0.010895 \n 2-3-4-5 0.017548 \n dist_char 2 0.085429 \n... ... \nsingular baseline tag 1 0.203978 \n 1-2 -0.104392 \n 1-2-3 0.003267 \n word 1 0.023986 \n 1-2 0.013636 \n\ntarget \\\ntweetLen 100 \n# Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 -0.025917 \n 2-3 0.007511 \n 2-3-4 0.094241 \n 2-3-4-5 -0.018271 \n dist_char 2 -0.062807 \n... ... \nsingular baseline tag 1 0.051619 \n 1-2 -0.123443 \n 1-2-3 0.019267 \n word 1 0.032958 \n 1-2 0.005569 \n\ntarget \\\ntweetLen 500 \n# Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.265406 \n 2-3 0.104863 \n 2-3-4 0.061039 \n 2-3-4-5 0.064423 \n dist_char 2 0.046563 \n... ... \nsingular baseline tag 1 -0.146045 \n 1-2 -0.027975 \n 1-2-3 -0.014083 \n word 1 -0.011463 \n 1-2 0.017931 \n\ntarget \\\ntweetLen 250 \n# Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.258740 \n 2-3 0.111348 \n 2-3-4 0.090751 \n 2-3-4-5 0.067456 \n dist_char 2 0.060031 \n... ... \nsingular baseline tag 1 0.043825 \n 1-2 -0.008411 \n 1-2-3 -0.028449 \n word 1 0.025321 \n 1-2 -0.007934 \n\ntarget \\\ntweetLen 500 \n# Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.283375 \n 2-3 0.187528 \n 2-3-4 0.035410 \n 2-3-4-5 0.070322 \n dist_char 2 0.088929 \n... ... \nsingular baseline tag 1 0.004342 \n 1-2 0.109083 \n 1-2-3 0.121241 \n word 1 0.052303 \n 1-2 -0.008001 \n\ntarget \ntweetLen 100 \n# Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 -0.078502 \n 2-3 0.061935 \n 2-3-4 -0.026524 \n 2-3-4-5 0.066062 \n dist_char 2 0.049725 \n... ... \nsingular baseline tag 1 -0.096762 \n 1-2 0.040120 \n 1-2-3 0.040217 \n word 1 0.016749 \n 1-2 0.028786 \n\n[108 rows x 36 columns]", - "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead tr th {\n text-align: left;\n }\n\n .dataframe thead tr:last-of-type th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>target</th>\n <th colspan=\"9\" halign=\"left\">age</th>\n <th>gender</th>\n <th>...</th>\n <th>age</th>\n <th colspan=\"9\" halign=\"left\">gender</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>tweetLen</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>500</th>\n <th>100</th>\n <th colspan=\"2\" halign=\"left\">250</th>\n <th>500</th>\n <th>100</th>\n <th>500</th>\n <th>...</th>\n <th>100</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>250</th>\n <th>100</th>\n <th>500</th>\n <th>250</th>\n <th>500</th>\n <th>100</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th># Authors</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n <th>1000</th>\n <th>150</th>\n <th>...</th>\n <th>1000</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n <th>1000</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>Score</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>...</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n </tr>\n <tr>\n <th>set</th>\n <th>modeltype</th>\n <th>featuretypes</th>\n <th>subgrams</th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th rowspan=\"5\" valign=\"top\">dist-char-word-lemma</th>\n <th rowspan=\"5\" valign=\"top\">cumulated</th>\n <th rowspan=\"4\" valign=\"top\">dist</th>\n <th>2</th>\n <td>0.187245</td>\n <td>0.041580</td>\n <td>0.034811</td>\n <td>0.008349</td>\n <td>0.009855</td>\n <td>0.007215</td>\n <td>0.015321</td>\n <td>0.019163</td>\n <td>-0.014053</td>\n <td>0.085755</td>\n <td>...</td>\n <td>0.017371</td>\n <td>0.136993</td>\n <td>0.194533</td>\n <td>0.288756</td>\n <td>0.093845</td>\n <td>-0.025917</td>\n <td>0.265406</td>\n <td>0.258740</td>\n <td>0.283375</td>\n <td>-0.078502</td>\n </tr>\n <tr>\n <th>2-3</th>\n <td>0.114232</td>\n <td>-0.022333</td>\n <td>-0.005109</td>\n <td>0.027542</td>\n <td>-0.006344</td>\n <td>-0.013204</td>\n <td>0.008644</td>\n <td>0.047782</td>\n <td>0.012595</td>\n <td>0.153513</td>\n <td>...</td>\n <td>0.045819</td>\n <td>0.113376</td>\n <td>0.196929</td>\n <td>0.048504</td>\n <td>0.145157</td>\n <td>0.007511</td>\n <td>0.104863</td>\n <td>0.111348</td>\n <td>0.187528</td>\n <td>0.061935</td>\n </tr>\n <tr>\n <th>2-3-4</th>\n <td>0.026844</td>\n <td>0.002778</td>\n <td>-0.003334</td>\n <td>0.050173</td>\n <td>0.024525</td>\n <td>0.025758</td>\n <td>0.027900</td>\n <td>0.009939</td>\n <td>0.001973</td>\n <td>0.118509</td>\n <td>...</td>\n <td>0.020676</td>\n <td>-0.005042</td>\n <td>0.170263</td>\n <td>0.047140</td>\n <td>0.010895</td>\n <td>0.094241</td>\n <td>0.061039</td>\n <td>0.090751</td>\n <td>0.035410</td>\n <td>-0.026524</td>\n </tr>\n <tr>\n <th>2-3-4-5</th>\n <td>0.021929</td>\n <td>0.004039</td>\n <td>0.021338</td>\n <td>0.037073</td>\n <td>-0.009718</td>\n <td>0.027035</td>\n <td>-0.007913</td>\n <td>0.015407</td>\n <td>-0.020033</td>\n <td>0.090370</td>\n <td>...</td>\n <td>-0.032071</td>\n <td>0.054982</td>\n <td>0.084400</td>\n <td>-0.006098</td>\n <td>0.017548</td>\n <td>-0.018271</td>\n <td>0.064423</td>\n <td>0.067456</td>\n <td>0.070322</td>\n <td>0.066062</td>\n </tr>\n <tr>\n <th>dist_char</th>\n <th>2</th>\n <td>0.136581</td>\n <td>0.061984</td>\n <td>0.001302</td>\n <td>0.024354</td>\n <td>0.007699</td>\n <td>0.012189</td>\n <td>0.018137</td>\n <td>0.004790</td>\n <td>0.004727</td>\n <td>0.091084</td>\n <td>...</td>\n <td>0.032844</td>\n <td>0.026470</td>\n <td>0.025105</td>\n <td>-0.028486</td>\n <td>0.085429</td>\n <td>-0.062807</td>\n <td>0.046563</td>\n <td>0.060031</td>\n <td>0.088929</td>\n <td>0.049725</td>\n </tr>\n <tr>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th rowspan=\"5\" valign=\"top\">singular</th>\n <th rowspan=\"5\" valign=\"top\">baseline</th>\n <th rowspan=\"3\" valign=\"top\">tag</th>\n <th>1</th>\n <td>0.088622</td>\n <td>-0.018548</td>\n <td>0.113389</td>\n <td>0.071146</td>\n <td>-0.060031</td>\n <td>0.045259</td>\n <td>0.025578</td>\n <td>-0.067977</td>\n <td>-0.052828</td>\n <td>-0.008557</td>\n <td>...</td>\n <td>-0.052828</td>\n <td>-0.008557</td>\n <td>0.027320</td>\n <td>-0.029294</td>\n <td>0.203978</td>\n <td>0.051619</td>\n <td>-0.146045</td>\n <td>0.043825</td>\n <td>0.004342</td>\n <td>-0.096762</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.017799</td>\n <td>0.045190</td>\n <td>0.064695</td>\n <td>-0.010918</td>\n <td>0.069371</td>\n <td>0.047406</td>\n <td>0.046400</td>\n <td>0.044056</td>\n <td>0.034712</td>\n <td>0.154573</td>\n <td>...</td>\n <td>0.049368</td>\n <td>0.132701</td>\n <td>0.079936</td>\n <td>0.173908</td>\n <td>-0.104392</td>\n <td>-0.123443</td>\n <td>-0.027975</td>\n <td>-0.008411</td>\n <td>0.109083</td>\n <td>0.040120</td>\n </tr>\n <tr>\n <th>1-2-3</th>\n <td>0.082513</td>\n <td>0.040029</td>\n <td>0.033945</td>\n <td>0.038633</td>\n <td>0.036958</td>\n <td>0.009889</td>\n <td>0.001714</td>\n <td>0.047400</td>\n <td>0.000329</td>\n <td>0.051351</td>\n <td>...</td>\n <td>0.002219</td>\n <td>0.057714</td>\n <td>-0.000031</td>\n <td>-0.019950</td>\n <td>0.003267</td>\n <td>0.019267</td>\n <td>-0.014083</td>\n <td>-0.028449</td>\n <td>0.121241</td>\n <td>0.040217</td>\n </tr>\n <tr>\n <th rowspan=\"2\" valign=\"top\">word</th>\n <th>1</th>\n <td>-0.058514</td>\n <td>-0.118380</td>\n <td>0.026580</td>\n <td>0.042761</td>\n <td>0.027012</td>\n <td>-0.002993</td>\n <td>-0.008936</td>\n <td>0.015079</td>\n <td>0.004566</td>\n <td>-0.030364</td>\n <td>...</td>\n <td>-0.006523</td>\n <td>0.028155</td>\n <td>-0.016220</td>\n <td>0.077121</td>\n <td>0.023986</td>\n <td>0.032958</td>\n <td>-0.011463</td>\n <td>0.025321</td>\n <td>0.052303</td>\n <td>0.016749</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>-0.011166</td>\n <td>-0.068614</td>\n <td>-0.010872</td>\n <td>0.001316</td>\n <td>0.003212</td>\n <td>0.014187</td>\n <td>-0.003547</td>\n <td>0.011849</td>\n <td>-0.000954</td>\n <td>-0.000287</td>\n <td>...</td>\n <td>0.000597</td>\n <td>0.025200</td>\n <td>0.048501</td>\n <td>-0.030074</td>\n <td>0.013636</td>\n <td>0.005569</td>\n <td>0.017931</td>\n <td>-0.007934</td>\n <td>-0.008001</td>\n <td>0.028786</td>\n </tr>\n </tbody>\n</table>\n<p>108 rows × 36 columns</p>\n</div>" + "text/plain": "target age \\\ntweetLen 500 \nNo. of Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.187245 \n 2-3 0.114232 \n 2-3-4 0.026844 \n 2-3-4-5 0.021929 \n dist_char 2 0.136581 \n... ... \nsingular baseline tag 1 0.088622 \n 1-2 0.017799 \n 1-2-3 0.082513 \n word 1 -0.058514 \n 1-2 -0.011166 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.041580 \n 2-3 -0.022333 \n 2-3-4 0.002778 \n 2-3-4-5 0.004039 \n dist_char 2 0.061984 \n... ... \nsingular baseline tag 1 -0.018548 \n 1-2 0.045190 \n 1-2-3 0.040029 \n word 1 -0.118380 \n 1-2 -0.068614 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.034811 \n 2-3 -0.005109 \n 2-3-4 -0.003334 \n 2-3-4-5 0.021338 \n dist_char 2 0.001302 \n... ... \nsingular baseline tag 1 0.113389 \n 1-2 0.064695 \n 1-2-3 0.033945 \n word 1 0.026580 \n 1-2 -0.010872 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 500 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.008349 \n 2-3 0.027542 \n 2-3-4 0.050173 \n 2-3-4-5 0.037073 \n dist_char 2 0.024354 \n... ... \nsingular baseline tag 1 0.071146 \n 1-2 -0.010918 \n 1-2-3 0.038633 \n word 1 0.042761 \n 1-2 0.001316 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 500 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.009855 \n 2-3 -0.006344 \n 2-3-4 0.024525 \n 2-3-4-5 -0.009718 \n dist_char 2 0.007699 \n... ... \nsingular baseline tag 1 -0.060031 \n 1-2 0.069371 \n 1-2-3 0.036958 \n word 1 0.027012 \n 1-2 0.003212 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 500 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.007215 \n 2-3 -0.013204 \n 2-3-4 0.025758 \n 2-3-4-5 0.027035 \n dist_char 2 0.012189 \n... ... \nsingular baseline tag 1 0.045259 \n 1-2 0.047406 \n 1-2-3 0.009889 \n word 1 -0.002993 \n 1-2 0.014187 \n\ntarget \\\ntweetLen \nNo. of Authors 1000 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.015321 \n 2-3 0.008644 \n 2-3-4 0.027900 \n 2-3-4-5 -0.007913 \n dist_char 2 0.018137 \n... ... \nsingular baseline tag 1 0.025578 \n 1-2 0.046400 \n 1-2-3 0.001714 \n word 1 -0.008936 \n 1-2 -0.003547 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 1000 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.019163 \n 2-3 0.047782 \n 2-3-4 0.009939 \n 2-3-4-5 0.015407 \n dist_char 2 0.004790 \n... ... \nsingular baseline tag 1 -0.067977 \n 1-2 0.044056 \n 1-2-3 0.047400 \n word 1 0.015079 \n 1-2 0.011849 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 1000 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 -0.014053 \n 2-3 0.012595 \n 2-3-4 0.001973 \n 2-3-4-5 -0.020033 \n dist_char 2 0.004727 \n... ... \nsingular baseline tag 1 -0.052828 \n 1-2 0.034712 \n 1-2-3 0.000329 \n word 1 0.004566 \n 1-2 -0.000954 \n\ntarget gender \\\ntweetLen 500 \nNo. of Authors 150 \nScore Average Spearman's Rho (ext.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.085755 \n 2-3 0.153513 \n 2-3-4 0.118509 \n 2-3-4-5 0.090370 \n dist_char 2 0.091084 \n... ... \nsingular baseline tag 1 -0.008557 \n 1-2 0.154573 \n 1-2-3 0.051351 \n word 1 -0.030364 \n 1-2 -0.000287 \n\ntarget ... \\\ntweetLen ... \nNo. of Authors ... \nScore ... \nset modeltype featuretypes subgrams ... \ndist-char-word-lemma cumulated dist 2 ... \n 2-3 ... \n 2-3-4 ... \n 2-3-4-5 ... \n dist_char 2 ... \n... ... \nsingular baseline tag 1 ... \n 1-2 ... \n 1-2-3 ... \n word 1 ... \n 1-2 ... \n\ntarget age \\\ntweetLen 100 \nNo. of Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.017371 \n 2-3 0.045819 \n 2-3-4 0.020676 \n 2-3-4-5 -0.032071 \n dist_char 2 0.032844 \n... ... \nsingular baseline tag 1 -0.052828 \n 1-2 0.049368 \n 1-2-3 0.002219 \n word 1 -0.006523 \n 1-2 0.000597 \n\ntarget gender \\\ntweetLen 500 \nNo. of Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.136993 \n 2-3 0.113376 \n 2-3-4 -0.005042 \n 2-3-4-5 0.054982 \n dist_char 2 0.026470 \n... ... \nsingular baseline tag 1 -0.008557 \n 1-2 0.132701 \n 1-2-3 0.057714 \n word 1 0.028155 \n 1-2 0.025200 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.194533 \n 2-3 0.196929 \n 2-3-4 0.170263 \n 2-3-4-5 0.084400 \n dist_char 2 0.025105 \n... ... \nsingular baseline tag 1 0.027320 \n 1-2 0.079936 \n 1-2-3 -0.000031 \n word 1 -0.016220 \n 1-2 0.048501 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.288756 \n 2-3 0.048504 \n 2-3-4 0.047140 \n 2-3-4-5 -0.006098 \n dist_char 2 -0.028486 \n... ... \nsingular baseline tag 1 -0.029294 \n 1-2 0.173908 \n 1-2-3 -0.019950 \n word 1 0.077121 \n 1-2 -0.030074 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.093845 \n 2-3 0.145157 \n 2-3-4 0.010895 \n 2-3-4-5 0.017548 \n dist_char 2 0.085429 \n... ... \nsingular baseline tag 1 0.203978 \n 1-2 -0.104392 \n 1-2-3 0.003267 \n word 1 0.023986 \n 1-2 0.013636 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 -0.025917 \n 2-3 0.007511 \n 2-3-4 0.094241 \n 2-3-4-5 -0.018271 \n dist_char 2 -0.062807 \n... ... \nsingular baseline tag 1 0.051619 \n 1-2 -0.123443 \n 1-2-3 0.019267 \n word 1 0.032958 \n 1-2 0.005569 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.265406 \n 2-3 0.104863 \n 2-3-4 0.061039 \n 2-3-4-5 0.064423 \n dist_char 2 0.046563 \n... ... \nsingular baseline tag 1 -0.146045 \n 1-2 -0.027975 \n 1-2-3 -0.014083 \n word 1 -0.011463 \n 1-2 0.017931 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.258740 \n 2-3 0.111348 \n 2-3-4 0.090751 \n 2-3-4-5 0.067456 \n dist_char 2 0.060031 \n... ... \nsingular baseline tag 1 0.043825 \n 1-2 -0.008411 \n 1-2-3 -0.028449 \n word 1 0.025321 \n 1-2 -0.007934 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 0.283375 \n 2-3 0.187528 \n 2-3-4 0.035410 \n 2-3-4-5 0.070322 \n dist_char 2 0.088929 \n... ... \nsingular baseline tag 1 0.004342 \n 1-2 0.109083 \n 1-2-3 0.121241 \n word 1 0.052303 \n 1-2 -0.008001 \n\ntarget \ntweetLen 100 \nNo. of Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist 2 -0.078502 \n 2-3 0.061935 \n 2-3-4 -0.026524 \n 2-3-4-5 0.066062 \n dist_char 2 0.049725 \n... ... \nsingular baseline tag 1 -0.096762 \n 1-2 0.040120 \n 1-2-3 0.040217 \n word 1 0.016749 \n 1-2 0.028786 \n\n[108 rows x 36 columns]", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead tr th {\n text-align: left;\n }\n\n .dataframe thead tr:last-of-type th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>target</th>\n <th colspan=\"9\" halign=\"left\">age</th>\n <th>gender</th>\n <th>...</th>\n <th>age</th>\n <th colspan=\"9\" halign=\"left\">gender</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>tweetLen</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>500</th>\n <th>100</th>\n <th colspan=\"2\" halign=\"left\">250</th>\n <th>500</th>\n <th>100</th>\n <th>500</th>\n <th>...</th>\n <th>100</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>250</th>\n <th>100</th>\n <th>500</th>\n <th>250</th>\n <th>500</th>\n <th>100</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>No. of Authors</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n <th>1000</th>\n <th>150</th>\n <th>...</th>\n <th>1000</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n <th>1000</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>Score</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>...</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n </tr>\n <tr>\n <th>set</th>\n <th>modeltype</th>\n <th>featuretypes</th>\n <th>subgrams</th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th rowspan=\"5\" valign=\"top\">dist-char-word-lemma</th>\n <th rowspan=\"5\" valign=\"top\">cumulated</th>\n <th rowspan=\"4\" valign=\"top\">dist</th>\n <th>2</th>\n <td>0.187245</td>\n <td>0.041580</td>\n <td>0.034811</td>\n <td>0.008349</td>\n <td>0.009855</td>\n <td>0.007215</td>\n <td>0.015321</td>\n <td>0.019163</td>\n <td>-0.014053</td>\n <td>0.085755</td>\n <td>...</td>\n <td>0.017371</td>\n <td>0.136993</td>\n <td>0.194533</td>\n <td>0.288756</td>\n <td>0.093845</td>\n <td>-0.025917</td>\n <td>0.265406</td>\n <td>0.258740</td>\n <td>0.283375</td>\n <td>-0.078502</td>\n </tr>\n <tr>\n <th>2-3</th>\n <td>0.114232</td>\n <td>-0.022333</td>\n <td>-0.005109</td>\n <td>0.027542</td>\n <td>-0.006344</td>\n <td>-0.013204</td>\n <td>0.008644</td>\n <td>0.047782</td>\n <td>0.012595</td>\n <td>0.153513</td>\n <td>...</td>\n <td>0.045819</td>\n <td>0.113376</td>\n <td>0.196929</td>\n <td>0.048504</td>\n <td>0.145157</td>\n <td>0.007511</td>\n <td>0.104863</td>\n <td>0.111348</td>\n <td>0.187528</td>\n <td>0.061935</td>\n </tr>\n <tr>\n <th>2-3-4</th>\n <td>0.026844</td>\n <td>0.002778</td>\n <td>-0.003334</td>\n <td>0.050173</td>\n <td>0.024525</td>\n <td>0.025758</td>\n <td>0.027900</td>\n <td>0.009939</td>\n <td>0.001973</td>\n <td>0.118509</td>\n <td>...</td>\n <td>0.020676</td>\n <td>-0.005042</td>\n <td>0.170263</td>\n <td>0.047140</td>\n <td>0.010895</td>\n <td>0.094241</td>\n <td>0.061039</td>\n <td>0.090751</td>\n <td>0.035410</td>\n <td>-0.026524</td>\n </tr>\n <tr>\n <th>2-3-4-5</th>\n <td>0.021929</td>\n <td>0.004039</td>\n <td>0.021338</td>\n <td>0.037073</td>\n <td>-0.009718</td>\n <td>0.027035</td>\n <td>-0.007913</td>\n <td>0.015407</td>\n <td>-0.020033</td>\n <td>0.090370</td>\n <td>...</td>\n <td>-0.032071</td>\n <td>0.054982</td>\n <td>0.084400</td>\n <td>-0.006098</td>\n <td>0.017548</td>\n <td>-0.018271</td>\n <td>0.064423</td>\n <td>0.067456</td>\n <td>0.070322</td>\n <td>0.066062</td>\n </tr>\n <tr>\n <th>dist_char</th>\n <th>2</th>\n <td>0.136581</td>\n <td>0.061984</td>\n <td>0.001302</td>\n <td>0.024354</td>\n <td>0.007699</td>\n <td>0.012189</td>\n <td>0.018137</td>\n <td>0.004790</td>\n <td>0.004727</td>\n <td>0.091084</td>\n <td>...</td>\n <td>0.032844</td>\n <td>0.026470</td>\n <td>0.025105</td>\n <td>-0.028486</td>\n <td>0.085429</td>\n <td>-0.062807</td>\n <td>0.046563</td>\n <td>0.060031</td>\n <td>0.088929</td>\n <td>0.049725</td>\n </tr>\n <tr>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th rowspan=\"5\" valign=\"top\">singular</th>\n <th rowspan=\"5\" valign=\"top\">baseline</th>\n <th rowspan=\"3\" valign=\"top\">tag</th>\n <th>1</th>\n <td>0.088622</td>\n <td>-0.018548</td>\n <td>0.113389</td>\n <td>0.071146</td>\n <td>-0.060031</td>\n <td>0.045259</td>\n <td>0.025578</td>\n <td>-0.067977</td>\n <td>-0.052828</td>\n <td>-0.008557</td>\n <td>...</td>\n <td>-0.052828</td>\n <td>-0.008557</td>\n <td>0.027320</td>\n <td>-0.029294</td>\n <td>0.203978</td>\n <td>0.051619</td>\n <td>-0.146045</td>\n <td>0.043825</td>\n <td>0.004342</td>\n <td>-0.096762</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.017799</td>\n <td>0.045190</td>\n <td>0.064695</td>\n <td>-0.010918</td>\n <td>0.069371</td>\n <td>0.047406</td>\n <td>0.046400</td>\n <td>0.044056</td>\n <td>0.034712</td>\n <td>0.154573</td>\n <td>...</td>\n <td>0.049368</td>\n <td>0.132701</td>\n <td>0.079936</td>\n <td>0.173908</td>\n <td>-0.104392</td>\n <td>-0.123443</td>\n <td>-0.027975</td>\n <td>-0.008411</td>\n <td>0.109083</td>\n <td>0.040120</td>\n </tr>\n <tr>\n <th>1-2-3</th>\n <td>0.082513</td>\n <td>0.040029</td>\n <td>0.033945</td>\n <td>0.038633</td>\n <td>0.036958</td>\n <td>0.009889</td>\n <td>0.001714</td>\n <td>0.047400</td>\n <td>0.000329</td>\n <td>0.051351</td>\n <td>...</td>\n <td>0.002219</td>\n <td>0.057714</td>\n <td>-0.000031</td>\n <td>-0.019950</td>\n <td>0.003267</td>\n <td>0.019267</td>\n <td>-0.014083</td>\n <td>-0.028449</td>\n <td>0.121241</td>\n <td>0.040217</td>\n </tr>\n <tr>\n <th rowspan=\"2\" valign=\"top\">word</th>\n <th>1</th>\n <td>-0.058514</td>\n <td>-0.118380</td>\n <td>0.026580</td>\n <td>0.042761</td>\n <td>0.027012</td>\n <td>-0.002993</td>\n <td>-0.008936</td>\n <td>0.015079</td>\n <td>0.004566</td>\n <td>-0.030364</td>\n <td>...</td>\n <td>-0.006523</td>\n <td>0.028155</td>\n <td>-0.016220</td>\n <td>0.077121</td>\n <td>0.023986</td>\n <td>0.032958</td>\n <td>-0.011463</td>\n <td>0.025321</td>\n <td>0.052303</td>\n <td>0.016749</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>-0.011166</td>\n <td>-0.068614</td>\n <td>-0.010872</td>\n <td>0.001316</td>\n <td>0.003212</td>\n <td>0.014187</td>\n <td>-0.003547</td>\n <td>0.011849</td>\n <td>-0.000954</td>\n <td>-0.000287</td>\n <td>...</td>\n <td>0.000597</td>\n <td>0.025200</td>\n <td>0.048501</td>\n <td>-0.030074</td>\n <td>0.013636</td>\n <td>0.005569</td>\n <td>0.017931</td>\n <td>-0.007934</td>\n <td>-0.008001</td>\n <td>0.028786</td>\n </tr>\n </tbody>\n</table>\n<p>108 rows × 36 columns</p>\n</div>" }, - "execution_count": 37, + "execution_count": 86, "metadata": {}, "output_type": "execute_result" } @@ -425,8 +735,9 @@ "df.head()\n", "ranks = df['rank']\n", "df = df.drop(['rank', 'name'], axis=1)\n", - "#sub.columns = pd.MultiIndex.from_product([sub['tweetLen'], sub['# Authors'], sub['Type']])\n", - "piv = df.pivot(index=['set','modeltype','featuretypes', 'subgrams'], columns=['target','tweetLen', '# Authors', 'Score'], values='result')\n", + "#sub.columns = pd.MultiIndex.from_product([sub['tweetLen'], sub['No. of Authors'], sub['Type']])\n", + "piv = df.pivot(index=['set','modeltype','featuretypes', 'subgrams'],\n", + " columns=['target','tweetLen', 'No. of Authors', 'Score'], values='result')\n", "piv" ], "metadata": { @@ -438,13 +749,13 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 87, "outputs": [ { "data": { "text/plain": "['dist-char-word-lemma', 'ordered-full', 'singular']" }, - "execution_count": 38, + "execution_count": 87, "metadata": {}, "output_type": "execute_result" } @@ -471,7 +782,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 88, "outputs": [], "source": [ "def rep(x):\n", @@ -505,19 +816,21 @@ " mod = 'feature-wise'\n", " l1 = 'baseline'\n", " if 'ordered-full' in st:\n", - " featureset = 'ordered, full Featureset'\n", + " featureset = 'ordered, full feature set'\n", " l2 = 'full'\n", " elif 'singular' in st:\n", - " featureset = 'individual Featuretypes'\n", + " featureset = 'individual feature types'\n", " l2 = 'individual'\n", " tmp = tmp.drop(labels=('polarity'), level=0, axis=0)\n", " elif 'dist-char' in st:\n", - " featureset = r'reduced Featureset (DIST, CHAR, LEMMA, WORD)'\n", + " featureset = r'reduced feature set (DIST, CHAR, LEMMA, WORD)'\n", " l2='dwald'\n", " if key == 'acc':\n", " sc = 'Accuracy and F1-scores'\n", + " elif key == 'f1_dist':\n", + " sc = 'F1-scores & stability of feature importance'\n", " else:\n", - " sc = 'Average Distortion of Features'\n", + " sc = 'Stability of feature importance'\n", " tmp.index = tmp.index.set_levels([el.upper() for el in tmp.index.levels[0]], level=0)\n", " os.makedirs(os.path.join(savedir, target, 'latex'), exist_ok=True)\n", " os.makedirs(os.path.join(savedir, target, 'html'), exist_ok=True)\n", @@ -529,20 +842,32 @@ " tmp.to_html(w, sparsify=True)\n", " with open(file_t, 'w') as w:\n", " table = tmp.to_latex(sparsify=True, multirow=True, multicolumn=True,\n", - " #caption='''{} for the prediction of {} on a minimal tweet length of {} chars using a {}\n", - " #model on the {}'''.format(sc, target, tweetLen, mod, featureset),\n", - " label='tab:{}_{}_{}_{}_{}'.format(target, key, tweetLen, l1,l2),\n", + " caption='''{} for the prediction of {} on a minimal input instance\n", + " length of {} characters using a {} model on the {}'''.format(sc, target, tweetLen, mod, featureset),\n", + " label='tab:{}_{}_{}_{}_{}'.format(target[0].upper()+target[1:], key, tweetLen, l1,l2),\n", " float_format=\"%.4f\")\n", " #table = re.sub(r'{table}', '{sidewaystable}', table)\n", - "\n", + " table = re.sub(r'begin{table}', 'begin{table}[!ht]', table)\n", + " #table = re.sub(r'\\\\begin\\{table}', '', table)\n", + " #table = re.sub(r'\\\\end\\{table}', '', table)\n", " table = re.sub(\"Average Spearman's Rho \\(ext.\\)\",\n", - " r\"\\\\thead{Average Spearman's \\\\\\\\ Rho (ext.)}\", table)\n", + " r\"\\\\thead{Avg. \\\\\\\\ Spearman's $\\\\rho$ (ext.)}\", table)\n", " table = re.sub(\"Average Spearman's Rho \\(red.\\)\",\n", - " r\"\\\\thead{Average Spearman's \\\\\\\\ Rho (red.)}\", table)\n", + " r\"\\\\thead{Avg. \\\\\\\\ Spearman's $\\\\rho$ (red.)}\", table)\n", + " table = re.sub('& target &', '& Target &', table)\n", + " table = re.sub('feature types &', 'Feature types &', table)\n", + " table = re.sub('featuretypes &', 'Feature types &', table)\n", + " table = re.sub('& subgrams &', '& N-gram ranges &', table)\n", + " table = re.sub('& tweetLen &', r'& Min. No. of Characters &', table)\n", + " table = re.sub('& f1-score', '& F1-score', table)\n", + " table = re.sub('& accuracy', '& Accuracy', table)\n", + " table = re.sub(r'\\{age}', '{Age}', table)\n", + " table = re.sub(r'\\{gender}', '{Gender}', table)\n", " table = re.sub(pat,rep, table)\n", " table = re.sub(r\"\\\\begin\\{tabular\", r\"\\\\begin{adjustbox}{max width=\\\\textwidth}\\n\\\\begin{tabular\", table)\n", " table = re.sub(r\"\\\\end\\{tabular}\", r\"\\n\\\\end{tabular}\\\\end{adjustbox}\", table)\n", - " #print(table)\n", + " table = re.sub(r\"0\\.0000\", '--', table)\n", + " #print(table)\n", " w.write(table)" ], "metadata": { @@ -554,14 +879,14 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 89, "outputs": [ { "data": { - "text/plain": "target age \\\ntweetLen 250 500 \n# Authors 50 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.677175 0.726180 \n 2-3 0.762708 0.819234 \n 2-3-4 0.753421 0.832146 \n 2-3-4-5 0.738025 0.823241 \n dist_char_asis 2 0.774927 0.850846 \n... ... ... \nsingular baseline tag 1 0.345308 0.408281 \n 1-2 0.507087 0.547640 \n 1-2-3 0.522483 0.587711 \n word 1 0.499756 0.628228 \n 1-2 0.509286 0.643811 \n\ntarget \\\ntweetLen 250 100 \n# Authors 150 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.577151 0.598279 \n 2-3 0.668444 0.690742 \n 2-3-4 0.670665 0.703102 \n 2-3-4-5 0.684733 0.680441 \n dist_char_asis 2 0.699319 0.716069 \n... ... ... \nsingular baseline tag 1 0.286687 0.263936 \n 1-2 0.371761 0.419535 \n 1-2-3 0.394713 0.448255 \n word 1 0.408485 0.419292 \n 1-2 0.423590 0.427412 \n\ntarget \\\ntweetLen 500 \n# Authors 150 1000 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.488672 0.446504 \n 2-3 0.559526 0.519917 \n 2-3-4 0.574910 0.543726 \n 2-3-4-5 0.537784 0.545106 \n dist_char_asis 2 0.582840 0.556557 \n... ... ... \nsingular baseline tag 1 0.215523 0.229119 \n 1-2 0.297047 0.299792 \n 1-2-3 0.342469 0.340174 \n word 1 0.300994 0.352343 \n 1-2 0.316853 0.355102 \n\ntarget \\\ntweetLen 250 500 \n# Authors 500 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.454316 0.513337 \n 2-3 0.523891 0.593752 \n 2-3-4 0.547140 0.615124 \n 2-3-4-5 0.545427 0.618594 \n dist_char_asis 2 0.560691 0.620310 \n... ... ... \nsingular baseline tag 1 0.219258 0.230052 \n 1-2 0.293479 0.331799 \n 1-2-3 0.338564 0.387528 \n word 1 0.301100 0.399306 \n 1-2 0.341047 0.416777 \n\ntarget \\\ntweetLen 100 \n# Authors 150 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.635018 0.373908 \n 2-3 0.734175 0.442379 \n 2-3-4 0.762293 0.452307 \n 2-3-4-5 0.759033 0.462428 \n dist_char_asis 2 0.772480 0.467655 \n... ... ... \nsingular baseline tag 1 0.331568 0.234941 \n 1-2 0.449199 0.274312 \n 1-2-3 0.485602 0.253952 \n word 1 0.543331 0.244099 \n 1-2 0.552431 0.256887 \n\ntarget ... gender \\\ntweetLen ... 250 \n# Authors ... 50 \nScore ... f1-score \nset modeltype featuretypes subgrams ... \ndist-char-word-lemma cumulated dist_char 2 ... 0.784084 \n 2-3 ... 0.824736 \n 2-3-4 ... 0.830936 \n 2-3-4-5 ... 0.831464 \n dist_char_asis 2 ... 0.843374 \n... ... ... \nsingular baseline tag 1 ... 0.626742 \n 1-2 ... 0.661869 \n 1-2-3 ... 0.676937 \n word 1 ... 0.696058 \n 1-2 ... 0.700032 \n\ntarget \\\ntweetLen 500 250 \n# Authors 150 150 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.786840 0.749260 \n 2-3 0.839235 0.773833 \n 2-3-4 0.849448 0.785765 \n 2-3-4-5 0.858279 0.792721 \n dist_char_asis 2 0.862321 0.800185 \n... ... ... \nsingular baseline tag 1 0.569969 0.585281 \n 1-2 0.670376 0.630576 \n 1-2-3 0.682818 0.654571 \n word 1 0.740779 0.686946 \n 1-2 0.753451 0.691202 \n\ntarget \\\ntweetLen 100 250 \n# Authors 150 500 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.694655 0.673562 \n 2-3 0.732961 0.721850 \n 2-3-4 0.736983 0.730540 \n 2-3-4-5 0.734179 0.727924 \n dist_char_asis 2 0.745258 0.741822 \n... ... ... \nsingular baseline tag 1 0.573962 0.564753 \n 1-2 0.611240 0.603915 \n 1-2-3 0.621303 0.613924 \n word 1 0.626975 0.635154 \n 1-2 0.629456 0.639614 \n\ntarget \\\ntweetLen 500 \n# Authors 500 1000 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.705783 0.676926 \n 2-3 0.769621 0.731095 \n 2-3-4 0.785189 0.739204 \n 2-3-4-5 0.764951 0.742888 \n dist_char_asis 2 0.744117 0.749447 \n... ... ... \nsingular baseline tag 1 0.589206 0.577137 \n 1-2 0.626504 0.613985 \n 1-2-3 0.623024 0.627792 \n word 1 0.694029 0.678234 \n 1-2 0.698088 0.683637 \n\ntarget \\\ntweetLen 100 250 \n# Authors 500 1000 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.627626 0.651106 \n 2-3 0.664470 0.691603 \n 2-3-4 0.671122 0.700129 \n 2-3-4-5 0.671008 0.699478 \n dist_char_asis 2 0.677461 0.708362 \n... ... ... \nsingular baseline tag 1 0.549581 0.564286 \n 1-2 0.574319 0.582854 \n 1-2-3 0.581983 0.601986 \n word 1 0.583415 0.629157 \n 1-2 0.590147 0.629844 \n\ntarget \ntweetLen 100 \n# Authors 1000 \nScore f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.596627 \n 2-3 0.630147 \n 2-3-4 0.631162 \n 2-3-4-5 0.630545 \n dist_char_asis 2 0.633999 \n... ... \nsingular baseline tag 1 0.549799 \n 1-2 0.569978 \n 1-2-3 0.577939 \n word 1 0.575988 \n 1-2 0.580928 \n\n[100 rows x 48 columns]", - "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead tr th {\n text-align: left;\n }\n\n .dataframe thead tr:last-of-type th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>target</th>\n <th colspan=\"10\" halign=\"left\">age</th>\n <th>...</th>\n <th colspan=\"10\" halign=\"left\">gender</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>tweetLen</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">100</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>...</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>250</th>\n <th>100</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th># Authors</th>\n <th>50</th>\n <th>50</th>\n <th>150</th>\n <th>50</th>\n <th>150</th>\n <th>1000</th>\n <th>500</th>\n <th>500</th>\n <th>150</th>\n <th>500</th>\n <th>...</th>\n <th>50</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>Score</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>...</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n </tr>\n <tr>\n <th>set</th>\n <th>modeltype</th>\n <th>featuretypes</th>\n <th>subgrams</th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th rowspan=\"5\" valign=\"top\">dist-char-word-lemma</th>\n <th rowspan=\"5\" valign=\"top\">cumulated</th>\n <th rowspan=\"4\" valign=\"top\">dist_char</th>\n <th>2</th>\n <td>0.677175</td>\n <td>0.726180</td>\n <td>0.577151</td>\n <td>0.598279</td>\n <td>0.488672</td>\n <td>0.446504</td>\n <td>0.454316</td>\n <td>0.513337</td>\n <td>0.635018</td>\n <td>0.373908</td>\n <td>...</td>\n <td>0.784084</td>\n <td>0.786840</td>\n <td>0.749260</td>\n <td>0.694655</td>\n <td>0.673562</td>\n <td>0.705783</td>\n <td>0.676926</td>\n <td>0.627626</td>\n <td>0.651106</td>\n <td>0.596627</td>\n </tr>\n <tr>\n <th>2-3</th>\n <td>0.762708</td>\n <td>0.819234</td>\n <td>0.668444</td>\n <td>0.690742</td>\n <td>0.559526</td>\n <td>0.519917</td>\n <td>0.523891</td>\n <td>0.593752</td>\n <td>0.734175</td>\n <td>0.442379</td>\n <td>...</td>\n <td>0.824736</td>\n <td>0.839235</td>\n <td>0.773833</td>\n <td>0.732961</td>\n <td>0.721850</td>\n <td>0.769621</td>\n <td>0.731095</td>\n <td>0.664470</td>\n <td>0.691603</td>\n <td>0.630147</td>\n </tr>\n <tr>\n <th>2-3-4</th>\n <td>0.753421</td>\n <td>0.832146</td>\n <td>0.670665</td>\n <td>0.703102</td>\n <td>0.574910</td>\n <td>0.543726</td>\n <td>0.547140</td>\n <td>0.615124</td>\n <td>0.762293</td>\n <td>0.452307</td>\n <td>...</td>\n <td>0.830936</td>\n <td>0.849448</td>\n <td>0.785765</td>\n <td>0.736983</td>\n <td>0.730540</td>\n <td>0.785189</td>\n <td>0.739204</td>\n <td>0.671122</td>\n <td>0.700129</td>\n <td>0.631162</td>\n </tr>\n <tr>\n <th>2-3-4-5</th>\n <td>0.738025</td>\n <td>0.823241</td>\n <td>0.684733</td>\n <td>0.680441</td>\n <td>0.537784</td>\n <td>0.545106</td>\n <td>0.545427</td>\n <td>0.618594</td>\n <td>0.759033</td>\n <td>0.462428</td>\n <td>...</td>\n <td>0.831464</td>\n <td>0.858279</td>\n <td>0.792721</td>\n <td>0.734179</td>\n <td>0.727924</td>\n <td>0.764951</td>\n <td>0.742888</td>\n <td>0.671008</td>\n <td>0.699478</td>\n <td>0.630545</td>\n </tr>\n <tr>\n <th>dist_char_asis</th>\n <th>2</th>\n <td>0.774927</td>\n <td>0.850846</td>\n <td>0.699319</td>\n <td>0.716069</td>\n <td>0.582840</td>\n <td>0.556557</td>\n <td>0.560691</td>\n <td>0.620310</td>\n <td>0.772480</td>\n <td>0.467655</td>\n <td>...</td>\n <td>0.843374</td>\n <td>0.862321</td>\n <td>0.800185</td>\n <td>0.745258</td>\n <td>0.741822</td>\n <td>0.744117</td>\n <td>0.749447</td>\n <td>0.677461</td>\n <td>0.708362</td>\n <td>0.633999</td>\n </tr>\n <tr>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th rowspan=\"5\" valign=\"top\">singular</th>\n <th rowspan=\"5\" valign=\"top\">baseline</th>\n <th rowspan=\"3\" valign=\"top\">tag</th>\n <th>1</th>\n <td>0.345308</td>\n <td>0.408281</td>\n <td>0.286687</td>\n <td>0.263936</td>\n <td>0.215523</td>\n <td>0.229119</td>\n <td>0.219258</td>\n <td>0.230052</td>\n <td>0.331568</td>\n <td>0.234941</td>\n <td>...</td>\n <td>0.626742</td>\n <td>0.569969</td>\n <td>0.585281</td>\n <td>0.573962</td>\n <td>0.564753</td>\n <td>0.589206</td>\n <td>0.577137</td>\n <td>0.549581</td>\n <td>0.564286</td>\n <td>0.549799</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.507087</td>\n <td>0.547640</td>\n <td>0.371761</td>\n <td>0.419535</td>\n <td>0.297047</td>\n <td>0.299792</td>\n <td>0.293479</td>\n <td>0.331799</td>\n <td>0.449199</td>\n <td>0.274312</td>\n <td>...</td>\n <td>0.661869</td>\n <td>0.670376</td>\n <td>0.630576</td>\n <td>0.611240</td>\n <td>0.603915</td>\n <td>0.626504</td>\n <td>0.613985</td>\n <td>0.574319</td>\n <td>0.582854</td>\n <td>0.569978</td>\n </tr>\n <tr>\n <th>1-2-3</th>\n <td>0.522483</td>\n <td>0.587711</td>\n <td>0.394713</td>\n <td>0.448255</td>\n <td>0.342469</td>\n <td>0.340174</td>\n <td>0.338564</td>\n <td>0.387528</td>\n <td>0.485602</td>\n <td>0.253952</td>\n <td>...</td>\n <td>0.676937</td>\n <td>0.682818</td>\n <td>0.654571</td>\n <td>0.621303</td>\n <td>0.613924</td>\n <td>0.623024</td>\n <td>0.627792</td>\n <td>0.581983</td>\n <td>0.601986</td>\n <td>0.577939</td>\n </tr>\n <tr>\n <th rowspan=\"2\" valign=\"top\">word</th>\n <th>1</th>\n <td>0.499756</td>\n <td>0.628228</td>\n <td>0.408485</td>\n <td>0.419292</td>\n <td>0.300994</td>\n <td>0.352343</td>\n <td>0.301100</td>\n <td>0.399306</td>\n <td>0.543331</td>\n <td>0.244099</td>\n <td>...</td>\n <td>0.696058</td>\n <td>0.740779</td>\n <td>0.686946</td>\n <td>0.626975</td>\n <td>0.635154</td>\n <td>0.694029</td>\n <td>0.678234</td>\n <td>0.583415</td>\n <td>0.629157</td>\n <td>0.575988</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.509286</td>\n <td>0.643811</td>\n <td>0.423590</td>\n <td>0.427412</td>\n <td>0.316853</td>\n <td>0.355102</td>\n <td>0.341047</td>\n <td>0.416777</td>\n <td>0.552431</td>\n <td>0.256887</td>\n <td>...</td>\n <td>0.700032</td>\n <td>0.753451</td>\n <td>0.691202</td>\n <td>0.629456</td>\n <td>0.639614</td>\n <td>0.698088</td>\n <td>0.683637</td>\n <td>0.590147</td>\n <td>0.629844</td>\n <td>0.580928</td>\n </tr>\n </tbody>\n</table>\n<p>100 rows × 48 columns</p>\n</div>" + "text/plain": "target age \\\ntweetLen 250 500 \nNo. of Authors 50 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.677175 0.726180 \n 2-3 0.762708 0.819234 \n 2-3-4 0.753421 0.832146 \n 2-3-4-5 0.738025 0.823241 \n dist_char_asis 2 0.774927 0.850846 \n... ... ... \nsingular baseline tag 1 0.345308 0.408281 \n 1-2 0.507087 0.547640 \n 1-2-3 0.522483 0.587711 \n word 1 0.499756 0.628228 \n 1-2 0.509286 0.643811 \n\ntarget \\\ntweetLen 250 100 \nNo. of Authors 150 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.577151 0.598279 \n 2-3 0.668444 0.690742 \n 2-3-4 0.670665 0.703102 \n 2-3-4-5 0.684733 0.680441 \n dist_char_asis 2 0.699319 0.716069 \n... ... ... \nsingular baseline tag 1 0.286687 0.263936 \n 1-2 0.371761 0.419535 \n 1-2-3 0.394713 0.448255 \n word 1 0.408485 0.419292 \n 1-2 0.423590 0.427412 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 150 1000 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.488672 0.446504 \n 2-3 0.559526 0.519917 \n 2-3-4 0.574910 0.543726 \n 2-3-4-5 0.537784 0.545106 \n dist_char_asis 2 0.582840 0.556557 \n... ... ... \nsingular baseline tag 1 0.215523 0.229119 \n 1-2 0.297047 0.299792 \n 1-2-3 0.342469 0.340174 \n word 1 0.300994 0.352343 \n 1-2 0.316853 0.355102 \n\ntarget \\\ntweetLen 250 500 \nNo. of Authors 500 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.454316 0.513337 \n 2-3 0.523891 0.593752 \n 2-3-4 0.547140 0.615124 \n 2-3-4-5 0.545427 0.618594 \n dist_char_asis 2 0.560691 0.620310 \n... ... ... \nsingular baseline tag 1 0.219258 0.230052 \n 1-2 0.293479 0.331799 \n 1-2-3 0.338564 0.387528 \n word 1 0.301100 0.399306 \n 1-2 0.341047 0.416777 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 150 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.635018 0.373908 \n 2-3 0.734175 0.442379 \n 2-3-4 0.762293 0.452307 \n 2-3-4-5 0.759033 0.462428 \n dist_char_asis 2 0.772480 0.467655 \n... ... ... \nsingular baseline tag 1 0.331568 0.234941 \n 1-2 0.449199 0.274312 \n 1-2-3 0.485602 0.253952 \n word 1 0.543331 0.244099 \n 1-2 0.552431 0.256887 \n\ntarget ... gender \\\ntweetLen ... 250 \nNo. of Authors ... 50 \nScore ... f1-score \nset modeltype featuretypes subgrams ... \ndist-char-word-lemma cumulated dist_char 2 ... 0.784084 \n 2-3 ... 0.824736 \n 2-3-4 ... 0.830936 \n 2-3-4-5 ... 0.831464 \n dist_char_asis 2 ... 0.843374 \n... ... ... \nsingular baseline tag 1 ... 0.626742 \n 1-2 ... 0.661869 \n 1-2-3 ... 0.676937 \n word 1 ... 0.696058 \n 1-2 ... 0.700032 \n\ntarget \\\ntweetLen 500 250 \nNo. of Authors 150 150 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.786840 0.749260 \n 2-3 0.839235 0.773833 \n 2-3-4 0.849448 0.785765 \n 2-3-4-5 0.858279 0.792721 \n dist_char_asis 2 0.862321 0.800185 \n... ... ... \nsingular baseline tag 1 0.569969 0.585281 \n 1-2 0.670376 0.630576 \n 1-2-3 0.682818 0.654571 \n word 1 0.740779 0.686946 \n 1-2 0.753451 0.691202 \n\ntarget \\\ntweetLen 100 250 \nNo. of Authors 150 500 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.694655 0.673562 \n 2-3 0.732961 0.721850 \n 2-3-4 0.736983 0.730540 \n 2-3-4-5 0.734179 0.727924 \n dist_char_asis 2 0.745258 0.741822 \n... ... ... \nsingular baseline tag 1 0.573962 0.564753 \n 1-2 0.611240 0.603915 \n 1-2-3 0.621303 0.613924 \n word 1 0.626975 0.635154 \n 1-2 0.629456 0.639614 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 500 1000 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.705783 0.676926 \n 2-3 0.769621 0.731095 \n 2-3-4 0.785189 0.739204 \n 2-3-4-5 0.764951 0.742888 \n dist_char_asis 2 0.744117 0.749447 \n... ... ... \nsingular baseline tag 1 0.589206 0.577137 \n 1-2 0.626504 0.613985 \n 1-2-3 0.623024 0.627792 \n word 1 0.694029 0.678234 \n 1-2 0.698088 0.683637 \n\ntarget \\\ntweetLen 100 250 \nNo. of Authors 500 1000 \nScore f1-score f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.627626 0.651106 \n 2-3 0.664470 0.691603 \n 2-3-4 0.671122 0.700129 \n 2-3-4-5 0.671008 0.699478 \n dist_char_asis 2 0.677461 0.708362 \n... ... ... \nsingular baseline tag 1 0.549581 0.564286 \n 1-2 0.574319 0.582854 \n 1-2-3 0.581983 0.601986 \n word 1 0.583415 0.629157 \n 1-2 0.590147 0.629844 \n\ntarget \ntweetLen 100 \nNo. of Authors 1000 \nScore f1-score \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.596627 \n 2-3 0.630147 \n 2-3-4 0.631162 \n 2-3-4-5 0.630545 \n dist_char_asis 2 0.633999 \n... ... \nsingular baseline tag 1 0.549799 \n 1-2 0.569978 \n 1-2-3 0.577939 \n word 1 0.575988 \n 1-2 0.580928 \n\n[100 rows x 48 columns]", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead tr th {\n text-align: left;\n }\n\n .dataframe thead tr:last-of-type th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>target</th>\n <th colspan=\"10\" halign=\"left\">age</th>\n <th>...</th>\n <th colspan=\"10\" halign=\"left\">gender</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>tweetLen</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">100</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>...</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>250</th>\n <th>100</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>No. of Authors</th>\n <th>50</th>\n <th>50</th>\n <th>150</th>\n <th>50</th>\n <th>150</th>\n <th>1000</th>\n <th>500</th>\n <th>500</th>\n <th>150</th>\n <th>500</th>\n <th>...</th>\n <th>50</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>Score</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>...</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n <th>f1-score</th>\n </tr>\n <tr>\n <th>set</th>\n <th>modeltype</th>\n <th>featuretypes</th>\n <th>subgrams</th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th rowspan=\"5\" valign=\"top\">dist-char-word-lemma</th>\n <th rowspan=\"5\" valign=\"top\">cumulated</th>\n <th rowspan=\"4\" valign=\"top\">dist_char</th>\n <th>2</th>\n <td>0.677175</td>\n <td>0.726180</td>\n <td>0.577151</td>\n <td>0.598279</td>\n <td>0.488672</td>\n <td>0.446504</td>\n <td>0.454316</td>\n <td>0.513337</td>\n <td>0.635018</td>\n <td>0.373908</td>\n <td>...</td>\n <td>0.784084</td>\n <td>0.786840</td>\n <td>0.749260</td>\n <td>0.694655</td>\n <td>0.673562</td>\n <td>0.705783</td>\n <td>0.676926</td>\n <td>0.627626</td>\n <td>0.651106</td>\n <td>0.596627</td>\n </tr>\n <tr>\n <th>2-3</th>\n <td>0.762708</td>\n <td>0.819234</td>\n <td>0.668444</td>\n <td>0.690742</td>\n <td>0.559526</td>\n <td>0.519917</td>\n <td>0.523891</td>\n <td>0.593752</td>\n <td>0.734175</td>\n <td>0.442379</td>\n <td>...</td>\n <td>0.824736</td>\n <td>0.839235</td>\n <td>0.773833</td>\n <td>0.732961</td>\n <td>0.721850</td>\n <td>0.769621</td>\n <td>0.731095</td>\n <td>0.664470</td>\n <td>0.691603</td>\n <td>0.630147</td>\n </tr>\n <tr>\n <th>2-3-4</th>\n <td>0.753421</td>\n <td>0.832146</td>\n <td>0.670665</td>\n <td>0.703102</td>\n <td>0.574910</td>\n <td>0.543726</td>\n <td>0.547140</td>\n <td>0.615124</td>\n <td>0.762293</td>\n <td>0.452307</td>\n <td>...</td>\n <td>0.830936</td>\n <td>0.849448</td>\n <td>0.785765</td>\n <td>0.736983</td>\n <td>0.730540</td>\n <td>0.785189</td>\n <td>0.739204</td>\n <td>0.671122</td>\n <td>0.700129</td>\n <td>0.631162</td>\n </tr>\n <tr>\n <th>2-3-4-5</th>\n <td>0.738025</td>\n <td>0.823241</td>\n <td>0.684733</td>\n <td>0.680441</td>\n <td>0.537784</td>\n <td>0.545106</td>\n <td>0.545427</td>\n <td>0.618594</td>\n <td>0.759033</td>\n <td>0.462428</td>\n <td>...</td>\n <td>0.831464</td>\n <td>0.858279</td>\n <td>0.792721</td>\n <td>0.734179</td>\n <td>0.727924</td>\n <td>0.764951</td>\n <td>0.742888</td>\n <td>0.671008</td>\n <td>0.699478</td>\n <td>0.630545</td>\n </tr>\n <tr>\n <th>dist_char_asis</th>\n <th>2</th>\n <td>0.774927</td>\n <td>0.850846</td>\n <td>0.699319</td>\n <td>0.716069</td>\n <td>0.582840</td>\n <td>0.556557</td>\n <td>0.560691</td>\n <td>0.620310</td>\n <td>0.772480</td>\n <td>0.467655</td>\n <td>...</td>\n <td>0.843374</td>\n <td>0.862321</td>\n <td>0.800185</td>\n <td>0.745258</td>\n <td>0.741822</td>\n <td>0.744117</td>\n <td>0.749447</td>\n <td>0.677461</td>\n <td>0.708362</td>\n <td>0.633999</td>\n </tr>\n <tr>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th rowspan=\"5\" valign=\"top\">singular</th>\n <th rowspan=\"5\" valign=\"top\">baseline</th>\n <th rowspan=\"3\" valign=\"top\">tag</th>\n <th>1</th>\n <td>0.345308</td>\n <td>0.408281</td>\n <td>0.286687</td>\n <td>0.263936</td>\n <td>0.215523</td>\n <td>0.229119</td>\n <td>0.219258</td>\n <td>0.230052</td>\n <td>0.331568</td>\n <td>0.234941</td>\n <td>...</td>\n <td>0.626742</td>\n <td>0.569969</td>\n <td>0.585281</td>\n <td>0.573962</td>\n <td>0.564753</td>\n <td>0.589206</td>\n <td>0.577137</td>\n <td>0.549581</td>\n <td>0.564286</td>\n <td>0.549799</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.507087</td>\n <td>0.547640</td>\n <td>0.371761</td>\n <td>0.419535</td>\n <td>0.297047</td>\n <td>0.299792</td>\n <td>0.293479</td>\n <td>0.331799</td>\n <td>0.449199</td>\n <td>0.274312</td>\n <td>...</td>\n <td>0.661869</td>\n <td>0.670376</td>\n <td>0.630576</td>\n <td>0.611240</td>\n <td>0.603915</td>\n <td>0.626504</td>\n <td>0.613985</td>\n <td>0.574319</td>\n <td>0.582854</td>\n <td>0.569978</td>\n </tr>\n <tr>\n <th>1-2-3</th>\n <td>0.522483</td>\n <td>0.587711</td>\n <td>0.394713</td>\n <td>0.448255</td>\n <td>0.342469</td>\n <td>0.340174</td>\n <td>0.338564</td>\n <td>0.387528</td>\n <td>0.485602</td>\n <td>0.253952</td>\n <td>...</td>\n <td>0.676937</td>\n <td>0.682818</td>\n <td>0.654571</td>\n <td>0.621303</td>\n <td>0.613924</td>\n <td>0.623024</td>\n <td>0.627792</td>\n <td>0.581983</td>\n <td>0.601986</td>\n <td>0.577939</td>\n </tr>\n <tr>\n <th rowspan=\"2\" valign=\"top\">word</th>\n <th>1</th>\n <td>0.499756</td>\n <td>0.628228</td>\n <td>0.408485</td>\n <td>0.419292</td>\n <td>0.300994</td>\n <td>0.352343</td>\n <td>0.301100</td>\n <td>0.399306</td>\n <td>0.543331</td>\n <td>0.244099</td>\n <td>...</td>\n <td>0.696058</td>\n <td>0.740779</td>\n <td>0.686946</td>\n <td>0.626975</td>\n <td>0.635154</td>\n <td>0.694029</td>\n <td>0.678234</td>\n <td>0.583415</td>\n <td>0.629157</td>\n <td>0.575988</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.509286</td>\n <td>0.643811</td>\n <td>0.423590</td>\n <td>0.427412</td>\n <td>0.316853</td>\n <td>0.355102</td>\n <td>0.341047</td>\n <td>0.416777</td>\n <td>0.552431</td>\n <td>0.256887</td>\n <td>...</td>\n <td>0.700032</td>\n <td>0.753451</td>\n <td>0.691202</td>\n <td>0.629456</td>\n <td>0.639614</td>\n <td>0.698088</td>\n <td>0.683637</td>\n <td>0.590147</td>\n <td>0.629844</td>\n <td>0.580928</td>\n </tr>\n </tbody>\n</table>\n<p>100 rows × 48 columns</p>\n</div>" }, - "execution_count": 40, + "execution_count": 89, "metadata": {}, "output_type": "execute_result" } @@ -575,8 +900,8 @@ "df.head()\n", "ranks = df['rank']\n", "df = df.drop(['rank', 'name'], axis=1)\n", - "#sub.columns = pd.MultiIndex.from_product([sub['tweetLen'], sub['# Authors'], sub['Type']])\n", - "piv = df.pivot(index=['set','modeltype','featuretypes', 'subgrams'], columns=['target','tweetLen', '# Authors', 'Score'], values='result')\n", + "#sub.columns = pd.MultiIndex.from_product([sub['tweetLen'], sub['No. of Authors'], sub['Type']])\n", + "piv = df.pivot(index=['set','modeltype','featuretypes', 'subgrams'], columns=['target','tweetLen', 'No. of Authors', 'Score'], values='result')\n", "piv" ], "metadata": { @@ -588,13 +913,13 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 90, "outputs": [ { "data": { "text/plain": "['dist-char-word-lemma', 'ordered-full', 'singular']" }, - "execution_count": 41, + "execution_count": 90, "metadata": {}, "output_type": "execute_result" } @@ -620,7 +945,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 91, "outputs": [], "source": [ "savedir = os.path.join(*ml_utils.split_path_unix_win('../../tex/tables'))\n", @@ -651,19 +976,21 @@ " mod = 'feature-wise'\n", " l1 = 'baseline'\n", " if 'ordered-full' in st:\n", - " featureset = 'ordered, full Featureset'\n", + " featureset = 'ordered, full feature set'\n", " l2 = 'full'\n", " elif 'singular' in st:\n", - " featureset = 'individual Featuretypes'\n", + " featureset = 'individual feature types'\n", " l2 = 'individual'\n", " tmp = tmp.drop(labels=('polarity'), level=0, axis=0)\n", " elif 'dist-char' in st:\n", - " featureset = r'reduced Featureset (DIST, CHAR, LEMMA, WORD)'\n", + " featureset = r'reduced feature set (DIST, CHAR, LEMMA, WORD)'\n", " l2='dwald'\n", " if key == 'acc':\n", " sc = 'Accuracy and F1-scores'\n", + " elif key == 'f1_dist':\n", + " sc = 'F1-scores & stability of feature importance'\n", " else:\n", - " sc = 'Average Distortion of Features'\n", + " sc = 'Stability of feature importance'\n", " tmp.index = tmp.index.set_levels([el.upper() for el in tmp.index.levels[0]], level=0)\n", " os.makedirs(os.path.join(savedir, target, 'latex'), exist_ok=True)\n", " os.makedirs(os.path.join(savedir, target, 'html'), exist_ok=True)\n", @@ -675,18 +1002,32 @@ " tmp.to_html(w, sparsify=True)\n", " with open(file_t, 'w') as w:\n", " table = tmp.to_latex(sparsify=True, multirow=True, multicolumn=True,\n", - " caption='''{} for the prediction of {} on a minimal tweet length of {} chars using a {}\n", - " model on the {}'''.format(sc, target, tweetLen, mod, featureset),\n", - " label='tab:{}_{}_{}_{}_{}'.format(target, key, tweetLen, l1,l2),\n", + " caption=''''{} for the prediction of {} on a minimal input instance\n", + " length of {} characters using a {} model on the {}'''.format(sc, target, tweetLen, mod, featureset),\n", + " label='tab:{}_{}_{}_{}_{}'.format(target[0].upper()+target[1:], key, tweetLen, l1,l2),\n", " float_format=\"%.4f\")\n", "\n", " #table = re.sub(r'{table}', '{sidewaystable}', table)\n", - " #table = re.sub(r\"Average Spearman's Rho (ext.)\",\n", - " # r\"\\\\thread{Average Spearman's \\\\\\\\ Rho (ext.)}\", table)\n", - " #table = re.sub(r\"Average Spearman's Rho (ext.)\",\n", - " # r\"\\\\thread{Average Spearman's \\\\\\\\ Rho (red.)}\", table)\n", + " table = re.sub(r'begin{table}', 'begin{table}[!ht]', table)\n", + " #table = re.sub(r'\\\\begin\\{table}', '', table)\n", + " #table = re.sub(r'\\\\end\\{table}', '', table)\n", + " table = re.sub(\"Average Spearman's Rho \\(ext.\\)\",\n", + " r\"\\\\thead{Avg. \\\\\\\\ Spearman's $\\\\rho$ (ext.)}\", table)\n", + " table = re.sub(\"Average Spearman's Rho \\(red.\\)\",\n", + " r\"\\\\thead{Avg. \\\\\\\\ Spearman's $\\\\rho$ (red.)}\", table)\n", + " table = re.sub('& target &', '& Target &', table)\n", + " table = re.sub('feature types &', 'Feature types &', table)\n", + " table = re.sub('featuretypes &', 'Feature types &', table)\n", + " table = re.sub('& subgrams &', '& N-gram ranges &', table)\n", + " table = re.sub('& tweetLen &', r'& Min. No. of Characters &', table)\n", + " table = re.sub('& f1-score', '& F1-score', table)\n", + " table = re.sub('& accuracy', '& Accuracy', table)\n", + " table = re.sub(r'\\{age}', '{Age}', table)\n", + " table = re.sub(r'\\{gender}', '{Gender}', table)\n", + " table = re.sub(pat,rep, table)\n", " table = re.sub(r\"\\\\begin\\{tabular\", r\"\\\\begin{adjustbox}{max width=\\\\textwidth}\\n\\\\begin{tabular\", table)\n", " table = re.sub(r\"\\\\end\\{tabular}\", r\"\\n\\\\end{tabular}\\\\end{adjustbox}\", table)\n", + " table = re.sub(r\"0\\.0000\", '--', table)\n", " w.write(table)" ], "metadata": { @@ -698,23 +1039,23 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 92, "outputs": [ { "data": { - "text/plain": " featuretypes # Authors subgrams \\\n2395 dist_char_asis_pos_tag_dep_lemma_word_emoticon 1000 1 \n2396 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 1 \n2397 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 1 \n2398 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 1 \n2399 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 1 \n\n modeltype name tweetLen target rank accuracy \\\n2395 cumulated emoticon 1 100 gender 01234567901 0.668297 \n2396 stacked polarity 1 100 gender 0123456791001 0.606557 \n2397 cumulated polarity 1 100 gender 0123456791001 0.667819 \n2398 stacked num 1 100 gender 012345679101101 0.603349 \n2399 cumulated num 1 100 gender 012345679101101 0.652245 \n\n f1-score set set_enum set_feat \\\n2395 0.667832 ordered-full 3 all \n2396 0.572559 ordered-full 3 all \n2397 0.667251 ordered-full 3 all \n2398 0.566807 ordered-full 3 all \n2399 0.648281 ordered-full 3 all \n\n Average Spearman's Rho (ext.) Average Spearman's Rho (red.) \n2395 0.044578 0.034959 \n2396 -0.011659 -0.005499 \n2397 -0.031285 -0.032979 \n2398 -0.028504 -0.022564 \n2399 0.000620 -0.000666 ", - "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>featuretypes</th>\n <th># Authors</th>\n <th>subgrams</th>\n <th>modeltype</th>\n <th>name</th>\n <th>tweetLen</th>\n <th>target</th>\n <th>rank</th>\n <th>accuracy</th>\n <th>f1-score</th>\n <th>set</th>\n <th>set_enum</th>\n <th>set_feat</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (red.)</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>2395</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon</td>\n <td>1000</td>\n <td>1</td>\n <td>cumulated</td>\n <td>emoticon 1</td>\n <td>100</td>\n <td>gender</td>\n <td>01234567901</td>\n <td>0.668297</td>\n <td>0.667832</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>0.044578</td>\n <td>0.034959</td>\n </tr>\n <tr>\n <th>2396</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>stacked</td>\n <td>polarity 1</td>\n <td>100</td>\n <td>gender</td>\n <td>0123456791001</td>\n <td>0.606557</td>\n <td>0.572559</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>-0.011659</td>\n <td>-0.005499</td>\n </tr>\n <tr>\n <th>2397</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>cumulated</td>\n <td>polarity 1</td>\n <td>100</td>\n <td>gender</td>\n <td>0123456791001</td>\n <td>0.667819</td>\n <td>0.667251</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>-0.031285</td>\n <td>-0.032979</td>\n </tr>\n <tr>\n <th>2398</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>stacked</td>\n <td>num 1</td>\n <td>100</td>\n <td>gender</td>\n <td>012345679101101</td>\n <td>0.603349</td>\n <td>0.566807</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>-0.028504</td>\n <td>-0.022564</td>\n </tr>\n <tr>\n <th>2399</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>cumulated</td>\n <td>num 1</td>\n <td>100</td>\n <td>gender</td>\n <td>012345679101101</td>\n <td>0.652245</td>\n <td>0.648281</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>0.000620</td>\n <td>-0.000666</td>\n </tr>\n </tbody>\n</table>\n</div>" + "text/plain": " featuretypes No. of Authors \\\n2395 dist_char_asis_pos_tag_dep_lemma_word_emoticon 1000 \n2396 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 \n2397 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 \n2398 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 \n2399 dist_char_asis_pos_tag_dep_lemma_word_emoticon... 1000 \n\n subgrams modeltype name tweetLen target rank \\\n2395 1 cumulated emoticon 1 100 gender 01234567901 \n2396 1 stacked polarity 1 100 gender 0123456791001 \n2397 1 cumulated polarity 1 100 gender 0123456791001 \n2398 1 stacked num 1 100 gender 012345679101101 \n2399 1 cumulated num 1 100 gender 012345679101101 \n\n accuracy f1-score set set_enum set_feat \\\n2395 0.668297 0.667832 ordered-full 3 all \n2396 0.606557 0.572559 ordered-full 3 all \n2397 0.667819 0.667251 ordered-full 3 all \n2398 0.603349 0.566807 ordered-full 3 all \n2399 0.652245 0.648281 ordered-full 3 all \n\n Average Spearman's Rho (ext.) Average Spearman's Rho (red.) \n2395 0.044578 0.034959 \n2396 -0.011659 -0.005499 \n2397 -0.031285 -0.032979 \n2398 -0.028504 -0.022564 \n2399 0.000620 -0.000666 ", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr style=\"text-align: right;\">\n <th></th>\n <th>featuretypes</th>\n <th>No. of Authors</th>\n <th>subgrams</th>\n <th>modeltype</th>\n <th>name</th>\n <th>tweetLen</th>\n <th>target</th>\n <th>rank</th>\n <th>accuracy</th>\n <th>f1-score</th>\n <th>set</th>\n <th>set_enum</th>\n <th>set_feat</th>\n <th>Average Spearman's Rho (ext.)</th>\n <th>Average Spearman's Rho (red.)</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>2395</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon</td>\n <td>1000</td>\n <td>1</td>\n <td>cumulated</td>\n <td>emoticon 1</td>\n <td>100</td>\n <td>gender</td>\n <td>01234567901</td>\n <td>0.668297</td>\n <td>0.667832</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>0.044578</td>\n <td>0.034959</td>\n </tr>\n <tr>\n <th>2396</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>stacked</td>\n <td>polarity 1</td>\n <td>100</td>\n <td>gender</td>\n <td>0123456791001</td>\n <td>0.606557</td>\n <td>0.572559</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>-0.011659</td>\n <td>-0.005499</td>\n </tr>\n <tr>\n <th>2397</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>cumulated</td>\n <td>polarity 1</td>\n <td>100</td>\n <td>gender</td>\n <td>0123456791001</td>\n <td>0.667819</td>\n <td>0.667251</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>-0.031285</td>\n <td>-0.032979</td>\n </tr>\n <tr>\n <th>2398</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>stacked</td>\n <td>num 1</td>\n <td>100</td>\n <td>gender</td>\n <td>012345679101101</td>\n <td>0.603349</td>\n <td>0.566807</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>-0.028504</td>\n <td>-0.022564</td>\n </tr>\n <tr>\n <th>2399</th>\n <td>dist_char_asis_pos_tag_dep_lemma_word_emoticon...</td>\n <td>1000</td>\n <td>1</td>\n <td>cumulated</td>\n <td>num 1</td>\n <td>100</td>\n <td>gender</td>\n <td>012345679101101</td>\n <td>0.652245</td>\n <td>0.648281</td>\n <td>ordered-full</td>\n <td>3</td>\n <td>all</td>\n <td>0.000620</td>\n <td>-0.000666</td>\n </tr>\n </tbody>\n</table>\n</div>" }, - "execution_count": 43, + "execution_count": 92, "metadata": {}, "output_type": "execute_result" } ], "source": [ "#make the combination table in which we only show f1 score and spearman extended\n", - "merger = ['tweetLen','target', 'set','set_enum', 'modeltype', 'featuretypes', 'subgrams', '# Authors']\n", + "merger = ['tweetLen','target', 'set','set_enum', 'modeltype', 'featuretypes', 'subgrams', 'No. of Authors']\n", "df = acc.merge(dist.loc[:, ['tweetLen','target', 'set','set_enum', 'modeltype',\n", - " 'featuretypes', 'subgrams', '# Authors',\"Average Spearman's Rho (ext.)\",\n", + " 'featuretypes', 'subgrams', 'No. of Authors',\"Average Spearman's Rho (ext.)\",\n", " \"Average Spearman's Rho (red.)\" ]], on=merger, how='left')\n", "df.loc[df[\"Average Spearman's Rho (ext.)\"].isna(),[\"Average Spearman's Rho (ext.)\",\"Average Spearman's Rho (red.)\"]] = 0\n", "df.tail()" @@ -728,14 +1069,14 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 93, "outputs": [ { "data": { - "text/plain": "target age \\\ntweetLen 250 500 \n# Authors 50 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.677175 0.726180 \n 2-3 0.762708 0.819234 \n 2-3-4 0.753421 0.832146 \n 2-3-4-5 0.738025 0.823241 \n dist_char_asis 2 0.774927 0.850846 \n... ... ... \nsingular baseline tag 1 0.345308 0.408281 \n 1-2 0.507087 0.547640 \n 1-2-3 0.522483 0.587711 \n word 1 0.499756 0.628228 \n 1-2 0.509286 0.643811 \n\ntarget \\\ntweetLen 250 100 \n# Authors 150 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.577151 0.598279 \n 2-3 0.668444 0.690742 \n 2-3-4 0.670665 0.703102 \n 2-3-4-5 0.684733 0.680441 \n dist_char_asis 2 0.699319 0.716069 \n... ... ... \nsingular baseline tag 1 0.286687 0.263936 \n 1-2 0.371761 0.419535 \n 1-2-3 0.394713 0.448255 \n word 1 0.408485 0.419292 \n 1-2 0.423590 0.427412 \n\ntarget \\\ntweetLen 500 \n# Authors 150 1000 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.488672 0.446504 \n 2-3 0.559526 0.519917 \n 2-3-4 0.574910 0.543726 \n 2-3-4-5 0.537784 0.545106 \n dist_char_asis 2 0.582840 0.556557 \n... ... ... \nsingular baseline tag 1 0.215523 0.229119 \n 1-2 0.297047 0.299792 \n 1-2-3 0.342469 0.340174 \n word 1 0.300994 0.352343 \n 1-2 0.316853 0.355102 \n\ntarget \\\ntweetLen 250 500 \n# Authors 500 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.454316 0.513337 \n 2-3 0.523891 0.593752 \n 2-3-4 0.547140 0.615124 \n 2-3-4-5 0.545427 0.618594 \n dist_char_asis 2 0.560691 0.620310 \n... ... ... \nsingular baseline tag 1 0.219258 0.230052 \n 1-2 0.293479 0.331799 \n 1-2-3 0.338564 0.387528 \n word 1 0.301100 0.399306 \n 1-2 0.341047 0.416777 \n\ntarget \\\ntweetLen 100 \n# Authors 150 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.635018 0.373908 \n 2-3 0.734175 0.442379 \n 2-3-4 0.762293 0.452307 \n 2-3-4-5 0.759033 0.462428 \n dist_char_asis 2 0.772480 0.467655 \n... ... ... \nsingular baseline tag 1 0.331568 0.234941 \n 1-2 0.449199 0.274312 \n 1-2-3 0.485602 0.253952 \n word 1 0.543331 0.244099 \n 1-2 0.552431 0.256887 \n\ntarget ... \\\ntweetLen ... \n# Authors ... \nScore ... \nset modeltype featuretypes subgrams ... \ndist-char-word-lemma cumulated dist_char 2 ... \n 2-3 ... \n 2-3-4 ... \n 2-3-4-5 ... \n dist_char_asis 2 ... \n... ... \nsingular baseline tag 1 ... \n 1-2 ... \n 1-2-3 ... \n word 1 ... \n 1-2 ... \n\ntarget gender \\\ntweetLen 250 \n# Authors 50 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.0 \n 2-3 0.0 \n 2-3-4 0.0 \n 2-3-4-5 0.0 \n dist_char_asis 2 0.0 \n... ... \nsingular baseline tag 1 0.0 \n 1-2 0.0 \n 1-2-3 0.0 \n word 1 0.0 \n 1-2 0.0 \n\ntarget \\\ntweetLen 500 \n# Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.026470 \n 2-3 -0.036546 \n 2-3-4 0.031449 \n 2-3-4-5 -0.012079 \n dist_char_asis 2 -0.021672 \n... ... \nsingular baseline tag 1 -0.008557 \n 1-2 0.132701 \n 1-2-3 0.057714 \n word 1 0.028155 \n 1-2 0.025200 \n\ntarget \\\ntweetLen 250 \n# Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.025105 \n 2-3 0.014135 \n 2-3-4 0.034523 \n 2-3-4-5 0.009622 \n dist_char_asis 2 0.045824 \n... ... \nsingular baseline tag 1 0.027320 \n 1-2 0.079936 \n 1-2-3 -0.000031 \n word 1 -0.016220 \n 1-2 0.048501 \n\ntarget \\\ntweetLen 100 \n# Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 -0.028486 \n 2-3 0.002831 \n 2-3-4 0.025852 \n 2-3-4-5 0.015653 \n dist_char_asis 2 0.013339 \n... ... \nsingular baseline tag 1 -0.029294 \n 1-2 0.173908 \n 1-2-3 -0.019950 \n word 1 0.077121 \n 1-2 -0.030074 \n\ntarget \\\ntweetLen 250 \n# Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.085429 \n 2-3 0.035659 \n 2-3-4 0.015212 \n 2-3-4-5 0.028261 \n dist_char_asis 2 -0.017280 \n... ... \nsingular baseline tag 1 0.203978 \n 1-2 -0.104392 \n 1-2-3 0.003267 \n word 1 0.023986 \n 1-2 0.013636 \n\ntarget \\\ntweetLen 500 \n# Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.046563 \n 2-3 0.027787 \n 2-3-4 0.026084 \n 2-3-4-5 0.036459 \n dist_char_asis 2 0.007673 \n... ... \nsingular baseline tag 1 -0.146045 \n 1-2 -0.027975 \n 1-2-3 -0.014083 \n word 1 -0.011463 \n 1-2 0.017931 \n\ntarget \\\ntweetLen \n# Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.088929 \n 2-3 0.041862 \n 2-3-4 0.036172 \n 2-3-4-5 0.023196 \n dist_char_asis 2 0.014127 \n... ... \nsingular baseline tag 1 0.004342 \n 1-2 0.109083 \n 1-2-3 0.121241 \n word 1 0.052303 \n 1-2 -0.008001 \n\ntarget \\\ntweetLen 100 \n# Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 -0.062807 \n 2-3 0.046394 \n 2-3-4 0.005221 \n 2-3-4-5 0.013836 \n dist_char_asis 2 0.005983 \n... ... \nsingular baseline tag 1 0.051619 \n 1-2 -0.123443 \n 1-2-3 0.019267 \n word 1 0.032958 \n 1-2 0.005569 \n\ntarget \\\ntweetLen 250 \n# Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.060031 \n 2-3 0.011727 \n 2-3-4 0.034497 \n 2-3-4-5 0.036985 \n dist_char_asis 2 -0.014717 \n... ... \nsingular baseline tag 1 0.043825 \n 1-2 -0.008411 \n 1-2-3 -0.028449 \n word 1 0.025321 \n 1-2 -0.007934 \n\ntarget \ntweetLen 100 \n# Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.049725 \n 2-3 0.055324 \n 2-3-4 0.023822 \n 2-3-4-5 0.002119 \n dist_char_asis 2 0.023177 \n... ... \nsingular baseline tag 1 -0.096762 \n 1-2 0.040120 \n 1-2-3 0.040217 \n word 1 0.016749 \n 1-2 0.028786 \n\n[100 rows x 96 columns]", - "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead tr th {\n text-align: left;\n }\n\n .dataframe thead tr:last-of-type th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>target</th>\n <th colspan=\"10\" halign=\"left\">age</th>\n <th>...</th>\n <th colspan=\"10\" halign=\"left\">gender</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>tweetLen</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">100</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>...</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>250</th>\n <th>100</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th># Authors</th>\n <th>50</th>\n <th>50</th>\n <th>150</th>\n <th>50</th>\n <th>150</th>\n <th>1000</th>\n <th>500</th>\n <th>500</th>\n <th>150</th>\n <th>500</th>\n <th>...</th>\n <th>50</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>Score</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>...</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n </tr>\n <tr>\n <th>set</th>\n <th>modeltype</th>\n <th>featuretypes</th>\n <th>subgrams</th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th rowspan=\"5\" valign=\"top\">dist-char-word-lemma</th>\n <th rowspan=\"5\" valign=\"top\">cumulated</th>\n <th rowspan=\"4\" valign=\"top\">dist_char</th>\n <th>2</th>\n <td>0.677175</td>\n <td>0.726180</td>\n <td>0.577151</td>\n <td>0.598279</td>\n <td>0.488672</td>\n <td>0.446504</td>\n <td>0.454316</td>\n <td>0.513337</td>\n <td>0.635018</td>\n <td>0.373908</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.026470</td>\n <td>0.025105</td>\n <td>-0.028486</td>\n <td>0.085429</td>\n <td>0.046563</td>\n <td>0.088929</td>\n <td>-0.062807</td>\n <td>0.060031</td>\n <td>0.049725</td>\n </tr>\n <tr>\n <th>2-3</th>\n <td>0.762708</td>\n <td>0.819234</td>\n <td>0.668444</td>\n <td>0.690742</td>\n <td>0.559526</td>\n <td>0.519917</td>\n <td>0.523891</td>\n <td>0.593752</td>\n <td>0.734175</td>\n <td>0.442379</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.036546</td>\n <td>0.014135</td>\n <td>0.002831</td>\n <td>0.035659</td>\n <td>0.027787</td>\n <td>0.041862</td>\n <td>0.046394</td>\n <td>0.011727</td>\n <td>0.055324</td>\n </tr>\n <tr>\n <th>2-3-4</th>\n <td>0.753421</td>\n <td>0.832146</td>\n <td>0.670665</td>\n <td>0.703102</td>\n <td>0.574910</td>\n <td>0.543726</td>\n <td>0.547140</td>\n <td>0.615124</td>\n <td>0.762293</td>\n <td>0.452307</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.031449</td>\n <td>0.034523</td>\n <td>0.025852</td>\n <td>0.015212</td>\n <td>0.026084</td>\n <td>0.036172</td>\n <td>0.005221</td>\n <td>0.034497</td>\n <td>0.023822</td>\n </tr>\n <tr>\n <th>2-3-4-5</th>\n <td>0.738025</td>\n <td>0.823241</td>\n <td>0.684733</td>\n <td>0.680441</td>\n <td>0.537784</td>\n <td>0.545106</td>\n <td>0.545427</td>\n <td>0.618594</td>\n <td>0.759033</td>\n <td>0.462428</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.012079</td>\n <td>0.009622</td>\n <td>0.015653</td>\n <td>0.028261</td>\n <td>0.036459</td>\n <td>0.023196</td>\n <td>0.013836</td>\n <td>0.036985</td>\n <td>0.002119</td>\n </tr>\n <tr>\n <th>dist_char_asis</th>\n <th>2</th>\n <td>0.774927</td>\n <td>0.850846</td>\n <td>0.699319</td>\n <td>0.716069</td>\n <td>0.582840</td>\n <td>0.556557</td>\n <td>0.560691</td>\n <td>0.620310</td>\n <td>0.772480</td>\n <td>0.467655</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.021672</td>\n <td>0.045824</td>\n <td>0.013339</td>\n <td>-0.017280</td>\n <td>0.007673</td>\n <td>0.014127</td>\n <td>0.005983</td>\n <td>-0.014717</td>\n <td>0.023177</td>\n </tr>\n <tr>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th rowspan=\"5\" valign=\"top\">singular</th>\n <th rowspan=\"5\" valign=\"top\">baseline</th>\n <th rowspan=\"3\" valign=\"top\">tag</th>\n <th>1</th>\n <td>0.345308</td>\n <td>0.408281</td>\n <td>0.286687</td>\n <td>0.263936</td>\n <td>0.215523</td>\n <td>0.229119</td>\n <td>0.219258</td>\n <td>0.230052</td>\n <td>0.331568</td>\n <td>0.234941</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.008557</td>\n <td>0.027320</td>\n <td>-0.029294</td>\n <td>0.203978</td>\n <td>-0.146045</td>\n <td>0.004342</td>\n <td>0.051619</td>\n <td>0.043825</td>\n <td>-0.096762</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.507087</td>\n <td>0.547640</td>\n <td>0.371761</td>\n <td>0.419535</td>\n <td>0.297047</td>\n <td>0.299792</td>\n <td>0.293479</td>\n <td>0.331799</td>\n <td>0.449199</td>\n <td>0.274312</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.132701</td>\n <td>0.079936</td>\n <td>0.173908</td>\n <td>-0.104392</td>\n <td>-0.027975</td>\n <td>0.109083</td>\n <td>-0.123443</td>\n <td>-0.008411</td>\n <td>0.040120</td>\n </tr>\n <tr>\n <th>1-2-3</th>\n <td>0.522483</td>\n <td>0.587711</td>\n <td>0.394713</td>\n <td>0.448255</td>\n <td>0.342469</td>\n <td>0.340174</td>\n <td>0.338564</td>\n <td>0.387528</td>\n <td>0.485602</td>\n <td>0.253952</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.057714</td>\n <td>-0.000031</td>\n <td>-0.019950</td>\n <td>0.003267</td>\n <td>-0.014083</td>\n <td>0.121241</td>\n <td>0.019267</td>\n <td>-0.028449</td>\n <td>0.040217</td>\n </tr>\n <tr>\n <th rowspan=\"2\" valign=\"top\">word</th>\n <th>1</th>\n <td>0.499756</td>\n <td>0.628228</td>\n <td>0.408485</td>\n <td>0.419292</td>\n <td>0.300994</td>\n <td>0.352343</td>\n <td>0.301100</td>\n <td>0.399306</td>\n <td>0.543331</td>\n <td>0.244099</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.028155</td>\n <td>-0.016220</td>\n <td>0.077121</td>\n <td>0.023986</td>\n <td>-0.011463</td>\n <td>0.052303</td>\n <td>0.032958</td>\n <td>0.025321</td>\n <td>0.016749</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.509286</td>\n <td>0.643811</td>\n <td>0.423590</td>\n <td>0.427412</td>\n <td>0.316853</td>\n <td>0.355102</td>\n <td>0.341047</td>\n <td>0.416777</td>\n <td>0.552431</td>\n <td>0.256887</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.025200</td>\n <td>0.048501</td>\n <td>-0.030074</td>\n <td>0.013636</td>\n <td>0.017931</td>\n <td>-0.008001</td>\n <td>0.005569</td>\n <td>-0.007934</td>\n <td>0.028786</td>\n </tr>\n </tbody>\n</table>\n<p>100 rows × 96 columns</p>\n</div>" + "text/plain": "target age \\\ntweetLen 250 500 \nNo. of Authors 50 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.677175 0.726180 \n 2-3 0.762708 0.819234 \n 2-3-4 0.753421 0.832146 \n 2-3-4-5 0.738025 0.823241 \n dist_char_asis 2 0.774927 0.850846 \n... ... ... \nsingular baseline tag 1 0.345308 0.408281 \n 1-2 0.507087 0.547640 \n 1-2-3 0.522483 0.587711 \n word 1 0.499756 0.628228 \n 1-2 0.509286 0.643811 \n\ntarget \\\ntweetLen 250 100 \nNo. of Authors 150 50 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.577151 0.598279 \n 2-3 0.668444 0.690742 \n 2-3-4 0.670665 0.703102 \n 2-3-4-5 0.684733 0.680441 \n dist_char_asis 2 0.699319 0.716069 \n... ... ... \nsingular baseline tag 1 0.286687 0.263936 \n 1-2 0.371761 0.419535 \n 1-2-3 0.394713 0.448255 \n word 1 0.408485 0.419292 \n 1-2 0.423590 0.427412 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 150 1000 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.488672 0.446504 \n 2-3 0.559526 0.519917 \n 2-3-4 0.574910 0.543726 \n 2-3-4-5 0.537784 0.545106 \n dist_char_asis 2 0.582840 0.556557 \n... ... ... \nsingular baseline tag 1 0.215523 0.229119 \n 1-2 0.297047 0.299792 \n 1-2-3 0.342469 0.340174 \n word 1 0.300994 0.352343 \n 1-2 0.316853 0.355102 \n\ntarget \\\ntweetLen 250 500 \nNo. of Authors 500 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.454316 0.513337 \n 2-3 0.523891 0.593752 \n 2-3-4 0.547140 0.615124 \n 2-3-4-5 0.545427 0.618594 \n dist_char_asis 2 0.560691 0.620310 \n... ... ... \nsingular baseline tag 1 0.219258 0.230052 \n 1-2 0.293479 0.331799 \n 1-2-3 0.338564 0.387528 \n word 1 0.301100 0.399306 \n 1-2 0.341047 0.416777 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 150 500 \nScore accuracy accuracy \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.635018 0.373908 \n 2-3 0.734175 0.442379 \n 2-3-4 0.762293 0.452307 \n 2-3-4-5 0.759033 0.462428 \n dist_char_asis 2 0.772480 0.467655 \n... ... ... \nsingular baseline tag 1 0.331568 0.234941 \n 1-2 0.449199 0.274312 \n 1-2-3 0.485602 0.253952 \n word 1 0.543331 0.244099 \n 1-2 0.552431 0.256887 \n\ntarget ... \\\ntweetLen ... \nNo. of Authors ... \nScore ... \nset modeltype featuretypes subgrams ... \ndist-char-word-lemma cumulated dist_char 2 ... \n 2-3 ... \n 2-3-4 ... \n 2-3-4-5 ... \n dist_char_asis 2 ... \n... ... \nsingular baseline tag 1 ... \n 1-2 ... \n 1-2-3 ... \n word 1 ... \n 1-2 ... \n\ntarget gender \\\ntweetLen 250 \nNo. of Authors 50 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.0 \n 2-3 0.0 \n 2-3-4 0.0 \n 2-3-4-5 0.0 \n dist_char_asis 2 0.0 \n... ... \nsingular baseline tag 1 0.0 \n 1-2 0.0 \n 1-2-3 0.0 \n word 1 0.0 \n 1-2 0.0 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.026470 \n 2-3 -0.036546 \n 2-3-4 0.031449 \n 2-3-4-5 -0.012079 \n dist_char_asis 2 -0.021672 \n... ... \nsingular baseline tag 1 -0.008557 \n 1-2 0.132701 \n 1-2-3 0.057714 \n word 1 0.028155 \n 1-2 0.025200 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.025105 \n 2-3 0.014135 \n 2-3-4 0.034523 \n 2-3-4-5 0.009622 \n dist_char_asis 2 0.045824 \n... ... \nsingular baseline tag 1 0.027320 \n 1-2 0.079936 \n 1-2-3 -0.000031 \n word 1 -0.016220 \n 1-2 0.048501 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 150 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 -0.028486 \n 2-3 0.002831 \n 2-3-4 0.025852 \n 2-3-4-5 0.015653 \n dist_char_asis 2 0.013339 \n... ... \nsingular baseline tag 1 -0.029294 \n 1-2 0.173908 \n 1-2-3 -0.019950 \n word 1 0.077121 \n 1-2 -0.030074 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.085429 \n 2-3 0.035659 \n 2-3-4 0.015212 \n 2-3-4-5 0.028261 \n dist_char_asis 2 -0.017280 \n... ... \nsingular baseline tag 1 0.203978 \n 1-2 -0.104392 \n 1-2-3 0.003267 \n word 1 0.023986 \n 1-2 0.013636 \n\ntarget \\\ntweetLen 500 \nNo. of Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.046563 \n 2-3 0.027787 \n 2-3-4 0.026084 \n 2-3-4-5 0.036459 \n dist_char_asis 2 0.007673 \n... ... \nsingular baseline tag 1 -0.146045 \n 1-2 -0.027975 \n 1-2-3 -0.014083 \n word 1 -0.011463 \n 1-2 0.017931 \n\ntarget \\\ntweetLen \nNo. of Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.088929 \n 2-3 0.041862 \n 2-3-4 0.036172 \n 2-3-4-5 0.023196 \n dist_char_asis 2 0.014127 \n... ... \nsingular baseline tag 1 0.004342 \n 1-2 0.109083 \n 1-2-3 0.121241 \n word 1 0.052303 \n 1-2 -0.008001 \n\ntarget \\\ntweetLen 100 \nNo. of Authors 500 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 -0.062807 \n 2-3 0.046394 \n 2-3-4 0.005221 \n 2-3-4-5 0.013836 \n dist_char_asis 2 0.005983 \n... ... \nsingular baseline tag 1 0.051619 \n 1-2 -0.123443 \n 1-2-3 0.019267 \n word 1 0.032958 \n 1-2 0.005569 \n\ntarget \\\ntweetLen 250 \nNo. of Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.060031 \n 2-3 0.011727 \n 2-3-4 0.034497 \n 2-3-4-5 0.036985 \n dist_char_asis 2 -0.014717 \n... ... \nsingular baseline tag 1 0.043825 \n 1-2 -0.008411 \n 1-2-3 -0.028449 \n word 1 0.025321 \n 1-2 -0.007934 \n\ntarget \ntweetLen 100 \nNo. of Authors 1000 \nScore Average Spearman's Rho (red.) \nset modeltype featuretypes subgrams \ndist-char-word-lemma cumulated dist_char 2 0.049725 \n 2-3 0.055324 \n 2-3-4 0.023822 \n 2-3-4-5 0.002119 \n dist_char_asis 2 0.023177 \n... ... \nsingular baseline tag 1 -0.096762 \n 1-2 0.040120 \n 1-2-3 0.040217 \n word 1 0.016749 \n 1-2 0.028786 \n\n[100 rows x 96 columns]", + "text/html": "<div>\n<style scoped>\n .dataframe tbody tr th:only-of-type {\n vertical-align: middle;\n }\n\n .dataframe tbody tr th {\n vertical-align: top;\n }\n\n .dataframe thead tr th {\n text-align: left;\n }\n\n .dataframe thead tr:last-of-type th {\n text-align: right;\n }\n</style>\n<table border=\"1\" class=\"dataframe\">\n <thead>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>target</th>\n <th colspan=\"10\" halign=\"left\">age</th>\n <th>...</th>\n <th colspan=\"10\" halign=\"left\">gender</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>tweetLen</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">100</th>\n <th>500</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>...</th>\n <th>250</th>\n <th>500</th>\n <th>250</th>\n <th>100</th>\n <th>250</th>\n <th colspan=\"2\" halign=\"left\">500</th>\n <th>100</th>\n <th>250</th>\n <th>100</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>No. of Authors</th>\n <th>50</th>\n <th>50</th>\n <th>150</th>\n <th>50</th>\n <th>150</th>\n <th>1000</th>\n <th>500</th>\n <th>500</th>\n <th>150</th>\n <th>500</th>\n <th>...</th>\n <th>50</th>\n <th>150</th>\n <th>150</th>\n <th>150</th>\n <th>500</th>\n <th>500</th>\n <th>1000</th>\n <th>500</th>\n <th>1000</th>\n <th>1000</th>\n </tr>\n <tr>\n <th></th>\n <th></th>\n <th></th>\n <th>Score</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>accuracy</th>\n <th>...</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n <th>Average Spearman's Rho (red.)</th>\n </tr>\n <tr>\n <th>set</th>\n <th>modeltype</th>\n <th>featuretypes</th>\n <th>subgrams</th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n <th></th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th rowspan=\"5\" valign=\"top\">dist-char-word-lemma</th>\n <th rowspan=\"5\" valign=\"top\">cumulated</th>\n <th rowspan=\"4\" valign=\"top\">dist_char</th>\n <th>2</th>\n <td>0.677175</td>\n <td>0.726180</td>\n <td>0.577151</td>\n <td>0.598279</td>\n <td>0.488672</td>\n <td>0.446504</td>\n <td>0.454316</td>\n <td>0.513337</td>\n <td>0.635018</td>\n <td>0.373908</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.026470</td>\n <td>0.025105</td>\n <td>-0.028486</td>\n <td>0.085429</td>\n <td>0.046563</td>\n <td>0.088929</td>\n <td>-0.062807</td>\n <td>0.060031</td>\n <td>0.049725</td>\n </tr>\n <tr>\n <th>2-3</th>\n <td>0.762708</td>\n <td>0.819234</td>\n <td>0.668444</td>\n <td>0.690742</td>\n <td>0.559526</td>\n <td>0.519917</td>\n <td>0.523891</td>\n <td>0.593752</td>\n <td>0.734175</td>\n <td>0.442379</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.036546</td>\n <td>0.014135</td>\n <td>0.002831</td>\n <td>0.035659</td>\n <td>0.027787</td>\n <td>0.041862</td>\n <td>0.046394</td>\n <td>0.011727</td>\n <td>0.055324</td>\n </tr>\n <tr>\n <th>2-3-4</th>\n <td>0.753421</td>\n <td>0.832146</td>\n <td>0.670665</td>\n <td>0.703102</td>\n <td>0.574910</td>\n <td>0.543726</td>\n <td>0.547140</td>\n <td>0.615124</td>\n <td>0.762293</td>\n <td>0.452307</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.031449</td>\n <td>0.034523</td>\n <td>0.025852</td>\n <td>0.015212</td>\n <td>0.026084</td>\n <td>0.036172</td>\n <td>0.005221</td>\n <td>0.034497</td>\n <td>0.023822</td>\n </tr>\n <tr>\n <th>2-3-4-5</th>\n <td>0.738025</td>\n <td>0.823241</td>\n <td>0.684733</td>\n <td>0.680441</td>\n <td>0.537784</td>\n <td>0.545106</td>\n <td>0.545427</td>\n <td>0.618594</td>\n <td>0.759033</td>\n <td>0.462428</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.012079</td>\n <td>0.009622</td>\n <td>0.015653</td>\n <td>0.028261</td>\n <td>0.036459</td>\n <td>0.023196</td>\n <td>0.013836</td>\n <td>0.036985</td>\n <td>0.002119</td>\n </tr>\n <tr>\n <th>dist_char_asis</th>\n <th>2</th>\n <td>0.774927</td>\n <td>0.850846</td>\n <td>0.699319</td>\n <td>0.716069</td>\n <td>0.582840</td>\n <td>0.556557</td>\n <td>0.560691</td>\n <td>0.620310</td>\n <td>0.772480</td>\n <td>0.467655</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.021672</td>\n <td>0.045824</td>\n <td>0.013339</td>\n <td>-0.017280</td>\n <td>0.007673</td>\n <td>0.014127</td>\n <td>0.005983</td>\n <td>-0.014717</td>\n <td>0.023177</td>\n </tr>\n <tr>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <th>...</th>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n <td>...</td>\n </tr>\n <tr>\n <th rowspan=\"5\" valign=\"top\">singular</th>\n <th rowspan=\"5\" valign=\"top\">baseline</th>\n <th rowspan=\"3\" valign=\"top\">tag</th>\n <th>1</th>\n <td>0.345308</td>\n <td>0.408281</td>\n <td>0.286687</td>\n <td>0.263936</td>\n <td>0.215523</td>\n <td>0.229119</td>\n <td>0.219258</td>\n <td>0.230052</td>\n <td>0.331568</td>\n <td>0.234941</td>\n <td>...</td>\n <td>0.0</td>\n <td>-0.008557</td>\n <td>0.027320</td>\n <td>-0.029294</td>\n <td>0.203978</td>\n <td>-0.146045</td>\n <td>0.004342</td>\n <td>0.051619</td>\n <td>0.043825</td>\n <td>-0.096762</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.507087</td>\n <td>0.547640</td>\n <td>0.371761</td>\n <td>0.419535</td>\n <td>0.297047</td>\n <td>0.299792</td>\n <td>0.293479</td>\n <td>0.331799</td>\n <td>0.449199</td>\n <td>0.274312</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.132701</td>\n <td>0.079936</td>\n <td>0.173908</td>\n <td>-0.104392</td>\n <td>-0.027975</td>\n <td>0.109083</td>\n <td>-0.123443</td>\n <td>-0.008411</td>\n <td>0.040120</td>\n </tr>\n <tr>\n <th>1-2-3</th>\n <td>0.522483</td>\n <td>0.587711</td>\n <td>0.394713</td>\n <td>0.448255</td>\n <td>0.342469</td>\n <td>0.340174</td>\n <td>0.338564</td>\n <td>0.387528</td>\n <td>0.485602</td>\n <td>0.253952</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.057714</td>\n <td>-0.000031</td>\n <td>-0.019950</td>\n <td>0.003267</td>\n <td>-0.014083</td>\n <td>0.121241</td>\n <td>0.019267</td>\n <td>-0.028449</td>\n <td>0.040217</td>\n </tr>\n <tr>\n <th rowspan=\"2\" valign=\"top\">word</th>\n <th>1</th>\n <td>0.499756</td>\n <td>0.628228</td>\n <td>0.408485</td>\n <td>0.419292</td>\n <td>0.300994</td>\n <td>0.352343</td>\n <td>0.301100</td>\n <td>0.399306</td>\n <td>0.543331</td>\n <td>0.244099</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.028155</td>\n <td>-0.016220</td>\n <td>0.077121</td>\n <td>0.023986</td>\n <td>-0.011463</td>\n <td>0.052303</td>\n <td>0.032958</td>\n <td>0.025321</td>\n <td>0.016749</td>\n </tr>\n <tr>\n <th>1-2</th>\n <td>0.509286</td>\n <td>0.643811</td>\n <td>0.423590</td>\n <td>0.427412</td>\n <td>0.316853</td>\n <td>0.355102</td>\n <td>0.341047</td>\n <td>0.416777</td>\n <td>0.552431</td>\n <td>0.256887</td>\n <td>...</td>\n <td>0.0</td>\n <td>0.025200</td>\n <td>0.048501</td>\n <td>-0.030074</td>\n <td>0.013636</td>\n <td>0.017931</td>\n <td>-0.008001</td>\n <td>0.005569</td>\n <td>-0.007934</td>\n <td>0.028786</td>\n </tr>\n </tbody>\n</table>\n<p>100 rows × 96 columns</p>\n</div>" }, - "execution_count": 44, + "execution_count": 93, "metadata": {}, "output_type": "execute_result" } @@ -748,8 +1089,8 @@ "df.head()\n", "ranks = df['rank']\n", "df = df.drop(['rank', 'name'], axis=1)\n", - "#sub.columns = pd.MultiIndex.from_product([sub['tweetLen'], sub['# Authors'], sub['Type']])\n", - "piv = df.pivot(index=['set','modeltype','featuretypes', 'subgrams'], columns=['target','tweetLen', '# Authors', 'Score'], values='result')\n", + "#sub.columns = pd.MultiIndex.from_product([sub['tweetLen'], sub['No. of Authors'], sub['Type']])\n", + "piv = df.pivot(index=['set','modeltype','featuretypes', 'subgrams'], columns=['target','tweetLen', 'No. of Authors', 'Score'], values='result')\n", "piv" ], "metadata": { @@ -761,13 +1102,13 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 94, "outputs": [ { "data": { "text/plain": "['dist-char-word-lemma', 'ordered-full', 'singular']" }, - "execution_count": 45, + "execution_count": 94, "metadata": {}, "output_type": "execute_result" } @@ -791,7 +1132,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 95, "outputs": [], "source": [ "savedir = os.path.join(*ml_utils.split_path_unix_win('../../tex/tables'))\n", @@ -811,60 +1152,69 @@ " tmp = tmp.reindex(order2, level=0)\n", " #print(tmp.head())\n", " #make text parts for captions modeltype\n", - " if 'stacked' in modeltype:\n", - " mod = 'stacked'\n", - " l1 = 'dynAA'\n", - " elif 'cumulated' in modeltype:\n", - " mod = 'cumulated'\n", - " l1 = 'direct'\n", - " elif 'baseline' in modeltype:\n", - " mod = 'feature-wise'\n", - " l1 = 'baseline'\n", - " if 'ordered-full' in st:\n", - " featureset = 'ordered, full Featureset'\n", - " l2 = 'full'\n", - " elif 'singular' in st:\n", - " featureset = 'individual Featuretypes'\n", - " l2 = 'individual'\n", - " tmp = tmp.drop(labels=('polarity'), level=0, axis=0)\n", - " elif 'dist-char' in st:\n", - " featureset = r'reduced Featureset (DIST, CHAR, LEMMA, WORD)'\n", - " l2='dwald'\n", - " if key == 'acc':\n", - " sc = 'Accuracy and F1-scores'\n", - " elif key == 'f1_dist':\n", - " sc = 'F1-Score and Average Distortion of Features'\n", - " else:\n", - " sc = 'Average Distortion of Features'\n", - " tmp.index = tmp.index.set_levels([el.upper() for el in tmp.index.levels[0]], level=0)\n", - " os.makedirs(os.path.join(savedir, target, 'latex'), exist_ok=True)\n", - " os.makedirs(os.path.join(savedir, target, 'html'), exist_ok=True)\n", - " file_h = os.path.join(savedir, target, 'html', 'results_{}_{}_{}_{}_{}.html'.format(target, l2, l1,\n", - " tweetLen, key))\n", - " file_t = os.path.join(savedir, target, 'latex', 'results_{}_{}_{}_{}_{}.tex'.format(target, l2, l1,\n", - " tweetLen, key))\n", - " tmp.index = tmp.index.set_levels([el.upper() for el in tmp.index.levels[0]], level=0)\n", - " #print(tmp.head())\n", - " with open(file_h, 'w') as w:\n", - " tmp.to_html(w, sparsify=True)\n", - " with open(file_t, 'w') as w:\n", - " table = tmp.to_latex(sparsify=True, multirow=True, multicolumn=True,\n", - " caption='''{} for the Prediction of {} on a Minimal Tweet Length of {} characters using a {}\n", - " model on the {}'''.format(sc, target[0].upper()+target[1:], tweetLen, mod, featureset),\n", - " label='tab:{}_{}_{}_{}_{}'.format(target, key, tweetLen, l1,l2),\n", - " float_format=\"%.4f\")\n", - "\n", - " #table = re.sub(r'{table}', '{sidewaystable}', table)\n", - " table = re.sub(\"Average Spearman's Rho \\(ext.\\)\",\n", - " r\"\\\\thead{Average Spearman's \\\\\\\\ Rho (ext.)}\", table)\n", - " table = re.sub(\"Average Spearman's Rho \\(red.\\)\",\n", - " r\"\\\\thead{Average Spearman's \\\\\\\\ Rho (red.)}\", table)\n", + " if 'stacked' in modeltype:\n", + " mod = 'stacked'\n", + " l1 = 'dynAA'\n", + " elif 'cumulated' in modeltype:\n", + " mod = 'cumulated'\n", + " l1 = 'direct'\n", + " elif 'baseline' in modeltype:\n", + " mod = 'feature-wise'\n", + " l1 = 'baseline'\n", + " if 'ordered-full' in st:\n", + " featureset = 'ordered, full feature set'\n", + " l2 = 'full'\n", + " elif 'singular' in st:\n", + " featureset = 'individual feature types'\n", + " l2 = 'individual'\n", + " tmp = tmp.drop(labels=('polarity'), level=0, axis=0)\n", + " elif 'dist-char' in st:\n", + " featureset = r'reduced feature set (DIST, CHAR, LEMMA, WORD)'\n", + " l2='dwald'\n", + " if key == 'acc':\n", + " sc = 'Accuracy and F1-scores'\n", + " elif key == 'f1_dist':\n", + " sc = 'F1-scores & stability of feature importance'\n", + " else:\n", + " sc = 'Stability of feature importance'\n", + " tmp.index = tmp.index.set_levels([el.upper() for el in tmp.index.levels[0]], level=0)\n", + " os.makedirs(os.path.join(savedir, target, 'latex'), exist_ok=True)\n", + " os.makedirs(os.path.join(savedir, target, 'html'), exist_ok=True)\n", + " file_h = os.path.join(savedir, target, 'html', 'results_{}_{}_{}_{}_{}.html'.format(target, l2, l1,\n", + " tweetLen, key))\n", + " file_t = os.path.join(savedir, target, 'latex', 'results_{}_{}_{}_{}_{}.tex'.format(target, l2, l1,\n", + " tweetLen, key))\n", + " with open(file_h, 'w') as w:\n", + " tmp.to_html(w, sparsify=True)\n", + " with open(file_t, 'w') as w:\n", + " table = tmp.to_latex(sparsify=True, multirow=True, multicolumn=True,\n", + " caption='''{} for the prediction of {} on a minimal input instance\n", + " length of {} characters using a {} model on the {}'''.format(sc, target, tweetLen, mod, featureset),\n", + " label='tab:{}_{}_{}_{}_{}'.format(target[0].upper()+target[1:], key, tweetLen, l1,l2),\n", + " float_format=\"%.4f\")\n", "\n", - " table = re.sub(pat,rep, table)\n", - " table = re.sub(r\"\\\\begin\\{tabular\", r\"\\\\begin{adjustbox}{max width=\\\\textwidth}\\n\\\\begin{tabular\", table)\n", - " table = re.sub(r\"\\\\end\\{tabular}\", r\"\\n\\\\end{tabular}\\\\end{adjustbox}\", table)\n", - " table = re.sub(r\"0\\.0000\", '--', table)\n", - " w.write(table)\n" + " #table = re.sub(r'{table}', '{sidewaystable}', table)\n", + " table = re.sub(r'begin{table}', 'begin{table}[!ht]', table)\n", + " #table = re.sub(r'\\\\begin\\{table}', '', table)\n", + " #table = re.sub(r'\\\\end\\{table}', '', table)\n", + " table = re.sub(\"Average Spearman's Rho \\(ext.\\)\",\n", + " r\"\\\\thead{Avg. \\\\\\\\ Spearman's $\\\\rho$ (ext.)}\", table)\n", + " table = re.sub(\"Average Spearman's Rho \\(red.\\)\",\n", + " r\"\\\\thead{Avg. \\\\\\\\ Spearman's $\\\\rho$ (red.)}\", table)\n", + " table = re.sub('& target &', '& Target &', table)\n", + " table = re.sub('feature types &', 'Feature types &', table)\n", + " table = re.sub('featuretypes &', 'Feature types &', table)\n", + " table = re.sub('& subgrams &', '& N-gram ranges &', table)\n", + " table = re.sub('& tweetLen &', r'& Min. No. of Characters &', table)\n", + " table = re.sub('& f1-score', '& F1-score', table)\n", + " table = re.sub('& accuracy', '& Accuracy', table)\n", + " table = re.sub(r'\\{age}', '{Age}', table)\n", + " table = re.sub(r'\\{gender}', '{Gender}', table)\n", + " table = re.sub(pat,rep, table)\n", + " table = re.sub(r\"\\\\begin\\{tabular\", r\"\\\\begin{adjustbox}{max width=\\\\textwidth}\\n\\\\begin{tabular\", table)\n", + " table = re.sub(r\"\\\\end\\{tabular}\", r\"\\n\\\\end{tabular}\\\\end{adjustbox}\", table)\n", + " table = re.sub(r\"0\\.0000\", '--', table)\n", + " w.write(table)\n" ], "metadata": { "collapsed": false, @@ -875,7 +1225,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 96, "outputs": [], "source": [ "grouped = dist.copy(deep=True).dropna().groupby(by=['tweetLen', 'target'])\n", @@ -894,7 +1244,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 97, "outputs": [ { "name": "stderr", @@ -906,7 +1256,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-58-c74abe33f89a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-97-56bc438b4e7a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -914,7 +1264,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-58-c74abe33f89a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-97-56bc438b4e7a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -922,7 +1272,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-58-c74abe33f89a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-97-56bc438b4e7a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -930,7 +1280,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-58-c74abe33f89a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-97-56bc438b4e7a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -938,7 +1288,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-58-c74abe33f89a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-97-56bc438b4e7a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -946,14 +1296,14 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-58-c74abe33f89a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-97-56bc438b4e7a>:29: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n" ] }, { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "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\n" + "image/png": "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\n" }, "metadata": { "needs_background": "light" @@ -963,7 +1313,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAvMAAAHrCAYAAABCaBK8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdeVwW1f7A8c8BAREeBARFBXEh97SruCJK7kupYWpuuKeZV9E2BVO0sptbacu1qyYgV8strwpUWm6ZuIaaoqKmsliCiIC7ML8/kPn58DwgKmrY9/16zatm5sw535kH8DvnOXNGaZqGEEIIIYQQouSxeNIBCCGEEEIIIR6MJPNCCCGEEEKUUJLMCyGEEEIIUUJJMi+EEEIIIUQJJcm8EEIIIYQQJZQk80IIIYQQQpRQpZ50ACWZi4uLVrVq1ScdhhBCCCGEeMrt378/VdM01/zbJZl/CFWrVmXfvn1POgwhhBBCCPGUU0qdNbddhtkIIYQQQghRQkkyL4QQQgghRAklybwQQgghhBAllIyZF0IIIR6RW7dukZiYyPXr1590KEKIEqJ06dK4u7tjZWVVpPKSzAshhBCPSGJiIgaDgapVq6KUetLhCCH+4jRN4+LFiyQmJlKtWrUiHSPDbIQQQohH5Pr165QrV04SeSFEkSilKFeu3H19myfJvBBCCPEISSIvhLgf9/s3Q5J5IYQQQgjxyM2ZM4f7fdlm1apVmTNnzqMJ6CkhybwQQgghHtqQIUNQSpkssbGxxVL/1q1bUUqRmppaLPUVxZAhQ3jhhRceW3sPKzU1lT59+uDk5ISDgwO+vr4cOnSoSMfmfV4///yz0fbs7GwqVaqEUorVq1c/irDFQ5IHYIUQQghRLNq3b8+yZcuMtrm4uDyhaAp28+ZNrK2tn3QYxe7tt98mJiaGDRs2ULFiRWJjY+9ryIaHhwdLliyhVatW+rbo6GhKlZJ08a9MeuaFEEIIUSxsbGxwc3MzWvISwQ0bNtC4cWNKly5NtWrVCA4O5ubNm/qxERERNGnSBIPBQPny5enduzdJSUkAnDlzhueffx4AV1dXlFIMGTIEAD8/P8aOHWsUR/4edT8/P1577TXefPNNXF1d8fHxAeDo0aN069ZNb7Nfv3788ccfAISEhBAWFkZkZKTea71161batm1r0l5GRgZlypRh7dq1QO7QkJCQEAYOHIi9vT1ubm4mQ0UuX77Mq6++Svny5TEYDLRp04Z9+/YZ7R80aBDly5endOnSVK9enU8++aTQ629hYUHz5s1p1aoVNWrUoFevXjz77LOFHpP/uq1atYqsrCx925IlSxg6dKhJ2XPnzvHSSy9hMBgwGAz4+/uTmJhoVGbWrFm4ublhb29PQECAUb15li5dSt26dSldujQ1a9bk448/Jicnp8gxC0nmhRBCCPGIff/99wwYMICxY8dy5MgRvvrqK1avXk1QUJBe5ubNm0yfPp2DBw+yceNGUlNT6devH5DbY7xmzRoAjhw5wvnz55k/f/59xRAREYGmaezYsYPw8HDOnz9P69atqV+/Pnv27GHz5s1kZWXRvXt3cnJyePPNN+nTpw/t27fn/PnznD9/npYtWzJy5EiWL1/OjRs39LpXrFiBvb09L774or5t3rx51KlThwMHDjB9+nSCgoL0ZF/TNLp160ZSUhIbN27k119/pXXr1rRt25bz588DMGXKFA4fPszGjRs5duwYX331FZUrVy70HHv06MG3335LZGTkfV2bPA0aNKBOnTp88803AFy4cIGoqCiTZF7TNHr27Mmff/7JTz/9xJYtW0hOTqZnz55omgbAypUrmTJlCtOnT+fAgQPUqlWLefPmGdWzaNEigoKCmDFjBnFxccydO5ePPvqIL7744oHi/9vSNE2WB1waN26sCSGEEAU5evTokw7hsRk8eLBmaWmp2dnZ6Uvnzp01TdM0X19fbcaMGUblv/32W83Ozk7LyckxW19cXJwGaAkJCZqmadqWLVs0QEtJSTEq16ZNG+311183iaVbt25GZZ599lmjMu+++67Wtm1bo21paWkaoO3evdtsPZqmadevX9fKlSunrVixQt/WtGlT7Y033tDXPT09tfbt2xsdN3z4cM3Hx0fTNE378ccfNTs7O+3q1atGZRo2bKh99NFHmqZp2osvvqgNGTLE3KUx68iRI5q9vb02c+ZMrUqVKtp///tffV98fLwGaMePHy/weEBbtWqV9sUXX2gtW7bUNE3TZs+erbVr185ov6Zp2g8//KBZWFhov//+u378qVOnNKWUtmnTJk3TNK1FixbaiBEjjNpo166d5unpqa97eHho4eHhRmU+/vhjrU6dOvq6p6enNnv27CJfh6eFub8dwD7NTD4q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\n" + "image/png": "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\n" }, "metadata": { "needs_background": "light" @@ -973,7 +1323,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "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\n" + "image/png": "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\n" }, "metadata": { "needs_background": "light" @@ -983,7 +1333,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAvMAAAHrCAYAAABCaBK8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzde5zVVb3w8c8XkIuAoDhoOlxEyVvlo6HlHdEeNSvNvJwyzXuKJmmW5RXsZHlFzymOjxdMNC0183kUqaPmvcS8JcrlDN5gBHFQQIXhJuv5Y++hYZjLD/beM7OHz/v1mtfMXr/1W/s7G4XvXnut74qUEpIkSZLKT6e2DkCSJEnS+jGZlyRJksqUybwkSZJUpkzmJUmSpDJlMi9JkiSVKZN5SZIkqUx1aesAytnmm2+eBg8e3NZhSJIkqYN78cUX56eUKhq2m8wXYPDgwbzwwgttHYYkSZI6uIh4p7F2l9lIkiRJZcpkXpIkSSpTJvOSJElSmTKZlyRJksqUybwkSZJUpkzmJUmSpDJlMi9JkiSVKZN5SZIkqUyZzEuSJEllymRekiRJKlMm85IkSVKZMpmXJEmSypTJvCRJklSmTOYlSZKkMmUyL0mSJJUpk3lJkiSpTJnMS5IkSWWqS1sHIEmS1JKxY8dSVVXVbJ/q6moAKisrm+wzdOhQzj333KLGJrUlk3lJktQh1NbWtnUIUqszmZckSe1eltn0kSNHAjBu3LhShyO1G66ZlyRJksqUybwkSZJUplxmU6Za2giUZRMQuBFIkiSpnJnMd1BuApIkSer4TObLVEuz6W4CkiRJ6vhcMy9JkiSVKZN5SZIkqUyZzEuSJEllymRekiRJKlMm85IkSVKZMpmXJEmSypTJvCRJklSmTOYlSZKkMmUyL0mSJJUpk3lJkiSpTJnMS5IkSWXKZF6SJEkqUybzkiRJUpkymZckSZLKlMm8JEmSVKZM5iVJkqQyZTIvSZIklSmTeUmSJKlMmcxLkiRJZcpkXpIkSSpTJvOSJElSmTKZlyRJksqUybwkSZJUpkzmJUmSpDJlMi9JkiSVKZN5SZIkqUyZzEuSJEllymRekiRJKlMm85IkSVKZMpmXJEmSypTJvCRJklSmTOYlSZKkMmUyL0mSJJUpk3lJkiSpTJnMS5IkSWXKZF6SJEkqUybzkiRJUpkqi2Q+InaKiMciYklEzImIyyOicwv3dI2IqyPi6YiojYjUTN/DI2JKRCyNiKkRcWzxfwtJkiSpuNp9Mh8RmwKPAgk4HLgc+BEwpoVbNwZOBZYAf2tm/H2APwKPA4cCE4G7I+J/Fxy8JEmSVEJd2jqADM4AegBHppQ+Ah6JiE2A0RFxVb5tLSmlhRGxWUopRcTZwIgmxr8EeCqldE7+8eMRsTNwKfDfxf1VJEmSpOJp9zPz5GbL/9Igaf89uQR//+ZuTCk1ubQGICK6AQcA9zS49Htgz4jos+7hSpIkSa2jHJL5HYDp9RtSSrPILZ/ZocCxtwU2ajg+MI3ca/PZAseXJEmSSqYckvlNgYWNtC/IXyt0bBoZf0GD65IkSVK7Uw7JPOQ2vzYUTbQXY/xo6nkj4vSIeCEiXqipqSnS00uSJEnrrhyS+QVA30ba+9D4jP26jk0j49c9Xmv8lNJNKaVhKaVhFRUVBT69JEmStP7KIZmfToO18RExAOjJ2mvd19UbwIqG4+cfrwL+p8DxJUmSpJIph2R+EnBwRPSu13YsUAs8WcjAKaVl5OrLH93g0rHA31NKiwoZX5IkSSqlcqgzfyNwDnB/RFwJDAFGA9fVL1cZETOBJ1NKp9RrO5TcDP7/yj8+Kn/pHymld/I//xx4IiKuBx4Avpr/OqSUv5QkSZJUqHafzKeUFkTEgcCvgQfJrWMfSy6hr68L0LlB238Bg+o9vjf//STgt/nxn8kn+f8OnAm8BXwnpeSBUZIkSWrX2n0yD5BSmkrTJ7jW9Rmcpa2Jex8gNysvSZIklY1yWDMvSZIkqREm85IkSVKZMpmXJEmSypTJvCRJklSmTOYlSZKkMmUyL0mSJJUpk3lJkiSpTJnMS5IkSWXKZF6SJEkqUybzkiRJUpkymZckSZLKlMm8JEmSVKZM5iVJkqQyZTIvSZIklSmTeUmSJKlMmcxLkiRJZcpkXpIkSSpTXbJ2jIiuwG7AVkAPYD4wI6X0dmlCkyRJktScZpP5iOgMfBM4Fdgf6ApEvS4pIt4F7gZuTinNLFWgkiRJ7cXYsWOpqqpq8np1dTUAlZWVzY4zdOhQzj333KLG1tZaem1gw359iq3JZTYR8S1gOnAnsAy4GPgKsAvwWeDLwHeA+4AjgGkRcXNEbFHqoCVJktqz2tpaamtr2zqMdsvXp3iam5n/T+Aq4LcppYVN9Hke+ANwXkR8CbgAOA3496JGKUmS1I60NFs8cuRIAMaNG9ca4bQrWWbSN+TXp9iaS+aHpJSWZh0opTQZODIiuhUeliRJkqSWNLnMZl0S+Qb3LVv/cCRJkiRlZWlKSZIkqUwVnMxHxCMR8VgxgpEkSZKUXeY6883YBmf4JUmSpFZXcDKfUtquGIFIkiRJWjfFmJmXJElab1kOGcqiboy6sofry4OKVE4yJfMR8SmwZ0rp+UaufRF4PqXUudjBSZKkjq+qqoqqqulst92Agsbp3j2X1qS0eL3HmDlzdkExSK0t68x8NHOtM5CKEIskSdpAbbfdAG644fy2DoNRo65p6xDWWZZPNqqrqwGorKxstp+fSpSfZpP5iOjEvxL5TvnH9fUADgXmlyA2SZIkFUFtbW1bh6ASaTKZj4jLgEvzDxPwbDPjeBavJElSG8gyk163j2DcOFO2jqa5mfkn8t+DXFJ/K1DdoM8yYCrwUNEjkyRJktSsJpP5lNKTwJMAEZGAm1NKc1orMEmSJEnNy3rY0y3NJfIRsWeR4pEkSZKUUdZqNv+MiFNTSg/Ub4yIAC4BLga6Fjs4SZIkqRAtVfsp90o/WWfm/wL8MSLGRUR3gIgYQG5d/cXAmNKEJ0mSJJVObW1tWVf7yTQzn1I6LiIeAf4D2C8ibgJGAwuB/VJKz5UuREmSJGn9tDSbXu6VfrLOzJNS+i2wL7AtMBaYCXzBRF6SJElqG5mT+Yj4AnAXsAJ4BBgGXBERrpWXJEmS2kCmZD4ifgBMBhYDu6aUDgFOBU4C/hERO5YuREmSJEmNyTozfz259fJ7pZTeAEgpjQe+SG6m/oXShCdJkiSpKVlLUx6cUnq0YWNK6X/yNeavKG5YkiRJklqStZrNWol8vWsrgB8XLSJJkiRJmazLBthdI+L+iJgfESsjYrd8+xURcUjpQpQkSZLUmKwbYPcB/g7sQK6iTf37VgFnFD80SZIkSc3JOjP/K3KnwO4MnNfg2kvAbsUMSpIkSVLLsm6A3Q04MqWUIiI1uDYfqChuWJIkSZJakjWZXwps3MS1zwCLihOOJCmrsWPHUlVV1Wyf6upqACorK5vtN3To0BaPPJcktT9Zl9k8A/wwIjrXa6uboT8F+GtRo5IkFUVtbS21tbVtHYYkqUSyzsxfAjwL/BO4j1wi/72IuI7cwVG7lya8DVOW2baW1N0/cuTIguNxxk5qn7L8f1n3d8C4ceNKHY4kqQ1krTP/z4jYD7gauAgI4GzgaWD/lNKM0oW44amqqqKqajrbbTdgvcfo3j33R5vS4oJimTlzdkH3S5IkqXSyzsyTUnoJODAiugObAQtTSktKFtkGbrvtBnDDDee3dRiMGnVNW4cgSZKkJmRO5uuklJYCc0oQiyRJkqR10OQG2Ig4Nz8Ln1lE7OZpsJIkSVLraG5m/gTggoj4LXB3SumfjXWKiE2BrwHHA/sAJxY5RmmdFKtcnxt/JUlSe9dcMr8buQT9R8BPIuIjYApQAywDNgWGANvmH/8B2Cml9HYpA5aKwVJ9kiSpI2gymU8pJWACMCEivgQcAnyJXALfHfiAXDWbXwD/N6W0sPThSi2zXJ9KqaVPfjykSZLUmrKWppwMTC5xLE2KiJ2A/wT2BBYCtwBjUkqftnBfH+B64Ahy+wMeAs5JKX1Qr89vge81cvuOKaXpRfkFJG0w/NRHktSa1rmaTWvLr8l/FJgKHE5uWc+15JLzi1u4/Q/A9sCpwCrgSuABYN8G/aYDJzVoe7uQuCV1TC3NpvupjySpNbX7ZB44A+gBHJlS+gh4JCI2AUZHxFX5trVExJ7AweQOtXoq3/YuMDkiDkopPVqv++KU0nOl/TUkSZKk4mqyNGU7cijwlwZJ++/JJfj7t3DfvLpEHiCl9DzwVv6aJEmSVNbKYWZ+B+Cv9RtSSrMiYkn+2oPN3NfYmvdp+Wv17ZSv1tMN+AdwUUrpyYKiliRJ6mCylH/Oom6MuqWJ68tiAuWRzG9KbtNrQwvy19bnviH1Hr9MbnPvVKCCXCnORyJin/xMviRJksgl4S9PeZ3oVVHQOGl5AuCVt95f/zE+qSkoho6iHJJ5gNRIWzTRvk73pZRuWONixERyif2F5Krg0OD66cDpAAMHDmzh6SVJkjqW6FVBl2FHtXUYrHzhPqqrqwue3S/WpwTQNp8UZE7mI2Jj4GRy69Q3I1dn/gngtymlJSWJLmcB0LeR9j40PvNe/77G3jb2be6+lFJtRDwMfL2J6zcBNwEMGzaspTcTkiRJBSnG0pZiJaxVVVXQpU9BYxRTbW0tL708hRTrH1OklQC8+MqsgmKJtKig+9dXpmQ+IrYkl7h/FngHeI/cUpWjgB9ExPCU0rwSxTidBmvcI2IA0JPG18TXv69hCUryYz2Q4XlN1CVJUpurqqrilalT2ahii/UeYyUBwOs1H7TQs3nLFy8m+rSfZB4gRR8+3Wjvtg6DziuebZPnzTozfxW5Nej7ppRWRxoRewF/JFe//cSiR5czCfhxRPROKX2cbzsWqAWa26Q6Cbgkv/b9mXy8w8i9CZnU1E0R0YNctZsXixG8JElSoTaq2IJ+R5/Q1mHw3m+ubusQ1EDW0pSHAj+rn8gDpJT+Ru7gpsOKHVg9NwLLgPsj4qD8mvXRwHX1y1VGxMyIuLVebH8H/gJMiIgjI+II4HfAM3U15iOiT0Q8HRHfj4gDI+JY4HFga+CKEv5OkiRJUsGyzsz3AuY0ca06f70kUkoLIuJA4NfkylAuBMaSS+jr6wJ0btD2b/m+48m9cXkIOKfe9WVADbk3JP2BpcDfyR009UJRfxFJkiSpyLIm8zOA44E/N3LtuzS/dr1gKaWpwIgW+gxupG0hcFL+q7F7lgJHFiFEqSxk2URVXV0NQGVlZbP9rO0rSVLby5rMX0NuucoWwF3AXGBLcjPfB5FL9CV1ALW1tW0dgiRJyihTMp9SujNfmvJy4JZ6l+YBZ6SU7ipFcCoPzvaWjyyvbV3ZsnHjxpU6HEmSVKDMdeZTSjdFxC3A9uTqzH8IzEgprSpVcOo4nO2VJJWL9nYQUXV1NXTrUfA46pjW6QTYfOI+rUSxqEw52ytJ6khqa2t5ffpUKgZsud5jpC65uu7vL/6woFhqZr9H184bmcyrSetyAuwmwFeBgUD3BpdTSunnxQxMkiSprVQM2JKjf/y9tg6De6++nUVzCjvoSR1b1hNg9yZXFrJvE10SYDIvSRsw989Iam3Lli0j0tI2O321vkiLVv8d15qyHhp1PfA2sDvQPaXUqcFXw/rukiStpba21j00klREWZfZ7Agck1J6sZTBSB1RS7OVzlSqo3D/jKTW1q1bN5at7ManG+3d1qHQecWzLf5bXgpZk/lZQLdSBqJ/qa6uZsmSTxg16pq2DoWqqtlsvHHJDvgVVvqRJEnrL2syPwb4aUQ8llL6qJQBSR1NS7OVzlRKkqT11WQyHxETGjRtAbwVEX8nV2O+vpRSavst3x1EZWUlKS3mhhvOb+tQGDXqGiJ6tnUYyijLBsSWFLM2skuDJEkqreZm5vcjV6WmTgI+AnZupG9qpE1SK6uqquKll6eQos96jxFpJQAvvjKroFgiLSrofkmS1LImk/mU0uBWjENSkaTo0242AkmSpNJapxNgmxIR3VJKy4oxliRJxVCsuvcuF5PUnmWtM9+oiOgeEecBbxYpHkmSWo117yWVu2Zn5iNiIPBvwEBgJnBbSmlRRHQFfgD8GOgP/K3UgUqStC6sey9tGCItKmhpZ6TFAKQCC3601V6x5qrZ7A1MBDap1/z9iPgGcD+5jbAvASenlB4uaZSSJElSAz169GDo0KEFjVG3HG/o0IEFx1NoLOujuZn5y4APgK+SS9q3Af6L3Cz8xsBJKaXbSx6hVE8xSi9C8covtre1tNXV1QXPUBRLpEWr1yNLklQKlZWVBX+yVu6f0DWXzO8OnJNSqltCMy0iRgKvAaNM5NUWqqqqeGXqVDaq2KKgcVYSALxe88F6j7GiZl5BMUiS2qdly5ZRM/s97r267VOdmtnvkVauyv+rJa2tuWS+D9BwCrTu8fOlCUdq2UYVW9Dv6BPaOgw+uLfhuWptr7KyknnzV7Wb0pTNVQiRJEmFa6k05acNHq/Kf19eglgkSZLaXLdu3eizVT+O/nHbH25/79W3s2jOByZealJLyfyYiJhf73Hdpzw/j4gP67WnlFLb/xcvSZLUwSxbtoyV789rF58IpxXLYcnCtg5D9TSXzM8Cdmyk/R1ylWzqS0WLSFJBNvQSXZIkbUiaTOZTSoNbMQ5JRVCMkljlXqJLkjqabt26EX03axf7xd77zdWwcd+2DkP1tLTMRhu46ur3Wbp0ZcElHItVCrK6uhq69ShojI6sGGUyy71ElyRJGxKTeTWrtnYZK1at4v3FH7bcuRmpS267RSHj1Mx+j66dNzKZlyRtcFbUFLZmfuXCBQB06btpQXGkFcvLrkxmS2fUZJ1wbG9ny9QxmVeLKgZs2a529EuStCEpyimnC3OTaUMr+hU0zmvz5rLi4xpWvnBfQeMUQ/q4hurqwuv89OhR3pOEJvOSJEntWHs65fQb3/gGNR+WV4GD9jibXkwm8yor7ak814r351G9rLatw1AH1tJHw1kUa78KtN+PmCW1nsrKSuav6EqXYUe1dSisfOE+Kiv7t3UYbc5kXpLaqaqqKl6fPpWKAVuu9xjF2K8CuT0r7Ukx3uhA8d7s+EZHUlvJlMxHxObAximlWfXavg98DvhLSumhEsUnraE9lef64N4JVBa49lBqSXvas9KeVFVV8fKU14leFQWNk5bnjkl55a3313+MT2oKikGSCpF1Zn48UA2MBIiIS4AxwAJgZER8J6X0h9KEKEmto70ta6murqbrphsXPE5HFb0q2s1H/SpMdXU1S5Z8wqhR17R1KFRVzWb58pVtHYaUWdZkfhhQf1rmDOCKlNLFEfEfwHmAybykslZVVUVV1XS2227Aeo/RvXvur9WUP0l3fc2cORvobDIvSWpW1mR+M2AeQER8DtiSfyX3DwBtv+ZBUouyzDyXe73dQm233QBuuOH8tg6DUaOuYebMOW0dhtQqKisrSWmx/+9J6yFrMv8BUJn/eQQwJ6VUlxFsBHQqdmCS2ka519uVJGlDkjWZfxQYnd8I+yNys/F1dgDeKXZgkoqvI86kS5K0Ics6o/4TYDbwS+ANcptf6xwHPFPkuCRJkiS1INPMfEppHvCVJi4fBCwtWkSSJEmSMin40KiU0kfFCESSJEnSumkymY+I8fUfp5ROLn04kiS1rLq6mvTxonZR4z19XEN19fK2DkPSBqq5mfltWi0KqUxVV1cXfDhQMQ8Z6qjlItX2Fr7/IYtWftBu/nv/5JNPCrpfkjqKJpP5lNIBrRmIVI5qa2sLPlK+GMfJg0fKq7RWLFvOilXwes0HBY2zkgAKG2dFzTx6brQR0XuzdnMCbGVl/xb7tXTOQ3V1NZCrud4c37S3jprZ73Hv1be33LEJC9//EIC+/TcrOI7+OxQ2hjq2gtfMSxs6j5RXqSxbtqzghKJYVixbTmzci35Ht/0ZgR/cOwEWftjWYRRdbW1tW4egvB49ejC0cmhBYyxamXvD2r9nYYl4/x02Y+jQwmJRx5Y5mY+ITsAewECge8PrKaUJRYxLatKKmnm5f8wLsHLhAgC69N20oDi6brRRQXFI2nC0NJtet/Ro3LhxrRGOmlFZWVnwn4N/nmotmZL5iNiJ3EFR20L+M9I1JcBkXiXXo0ePosxQVOVn9YZW9Fv/QSr6UV1dzeIVBYcjNapbt2702aofR//4e20dCuPOuRIKePPb0bl/RlJbyTozPy7f9xhgCrCsZBFJzSjGbAkUb8Zk5MiRzC9wrbuk8ldbW8tLL08hRZ/1HiPSSgBefGVWQbFEWlTQ/So/Le3HgOxvFn0jWH6yJvO7ASemlO4vZTCS1Jaqq6tZsuQTRo26pq1DoapqNsuXr2zrMJTRsmWFz3Gl6FmESHLqNtNKdXr06NHWIahEsibz8wGL6G6Ali1b3m424NXMfo/lvZa0dRjSBmnl8pWk9wvfr1IMK96fR0qr2mEJh5UFzop/mv/eueA4tGFxJn3DlvWvwrHAWRExKaX0aYu9JakMVVZWktJibrjh/LYOhVGjrmHmzDltHYYy6tu3b4slJaurq5utWLNkSW6yYuON16oxsYYePXpkKl8plUr6pKbgCmppyUIAYuO+BcUBLZeF7eiyJvMVwPbA1Ih4BGhYEyyllC4ramRqF7p160rfrfu3iw149159e8ElviStny5du0C/LdpNacquCz9sV/PPWfbzWGdeHUGx3ihWVeU+xRq6TSHJeH/fuJI9mb+43s+NvWoJMJmXJKkJJuDqCIr137GlO4snUzKfUupU6kAkSZIkrRuTdEmSJKlMtbtaAJIkZeEmPElah2Q+Ik4HziS3EbZbw+sppUJraUllp7q6mvTxooITimJIH9dQXW0FWW0YinYatJvwJJW5TMl8RJwA/CdwO7ALMB7YCPgGUAP8rlQBSpLUUHs7DVqS2krWmfkfAr8Efg6cCoxLKb0UEZsCTwAflCY8qX2rrKxk/oqudBl2VFuHwsoX7qOy0o/6JUnakGTdADsUeApYlf/qCpBSWgD8AhhVkugkSZIkNSlrMl8LdEopJeA9YEi9a58AWxU7sPoiYqeIeCwilkTEnIi4PCJaXKMfEX0i4raIWBARiyLidxHRr5F+h0fElIhYGhFTI+LY0vwmkiRJUvFkXWYzBdgOeBR4GrgwIt4CVgKjgekliQ7IL+V5FJgKHA5sC1xL7o3Ixc3cCvAHcht2TyX3icKVwAPAvvXG3wf4IzAOOAf4KnB3RCxIKf13UX8ZSZLUqJkzZzNq1DUFjVFd/T5AQUsOZ86czdChOxQUh9SasibzN/Gv2fhLyCXXz+QffwwcUeS46jsD6AEcmVL6CHgkIjYBRkfEVfm2tUTEnsDBwP4ppafybe8CkyPioJTSo/mulwBPpZTOyT9+PCJ2Bi4FTOYlSSqxYlUDWrp0JQARPQuIZQerE6msZD0B9g/1fp6ZT3b3BDYG/pZSml+i+AAOBf7SIGn/PblZ9v2BB5u5b15dIg+QUno+/4nCocCjEdENOIDcjHx9vwdui4g+KaVFRfo9ylbN7Pe49+rbCxpj4fsfAtC3/2YFxdF/h/W/X5LUPp177rlFGcfqRNoQrdehUSmlxeRm51vDDsBfGzz/rIhYkr/WVDK/A40v/5mWvwa5JTsbNdJvGrllPJ8F/rF+YXcMPXp0I5aupH/PwpLoRStzBY8KGaf/Dps5WyJJklTPOiXzETEAGAB0b3gtpfTXte8oik2BhY20L8hfW5/7htTrQyP9FjS4vsGqrOxPRM+CZzmcLZEkSSq+rIdGDSF3MNQedU357yn/cwJKeQJsaiysJtrX576Gj6OJ9rqTcE8HGDhwYAtPrw1BoUfKF+M4+bo4PFJekqQNS9aZ+VuAgeQOj5oOtOaZ8QuAxrKcPjQ+817/vopG2vvWu29BvbaGfWhs/JTSTeQ2BDNs2LCW3kyog2s/x8mDR8p3TIXuWSnGfhWAFcuWs1FBI0iSSiFrMr87cGJK6Y+lDKYJ0/nXGndg9XKfnjRfEnM69UpQ1rMDufKUAG8AK/JtTzboswr4n/ULWRuKYmzacgmSmtKjRw+GVhb2Bq0Y+1UAFm38QavO4kiSssmazFfTurPx9U0CfhwRvVNKH+fbjiV3kNWTTd/GJOCSiNgnpfQMQEQMI7defhJASmlZRDwOHA38n3r3Hgv83Uo2ktpSZWVlu9mvMnLkSF6v+aCgMSRJxZf1BNgrgAuikMKt6+9GYBlwf0QclF+zPhq4rn65yoiYGRG31j1OKf0d+AswISKOjIgjyK37f6ZejXmAnwPDI+L6iBgeEVeROzjq8pL/ZpIkSVIBstaZvyMidgDejojn+Nda83pd0veKHl1u4AURcSDwa3JlKBcCY8kl9PV1Ye1NuP+W7zue3BuXh2hQUz6l9ExEHAX8O3Am8BbwHU9/laQ1raiZxwf3TihojJULc/98dOm7/sXCVtTMg4p+BcUhSR1F1mo2JwI/Az4FdmPtJTcl3QiaUpoKjGihz+BG2hYCJ+W/mrv3Af61jl7SBqzQI+WLcZx8XRzt6Uj5Ym2urlqY25A7tJBkvKKfm70lKS/rmvkxwJ+AU/IJsiR1OMVIEItxnHwulvZ1pLwndEpS+5Q1me8HjDORVzkYO3YsVVVVzfapu16XWDRm6NChRUtgVB6sTiRJKjdZk/lngB2Bx0oYi9RqevTo0dYhSCox39hL2hBkTeZHAfdExALgz6y9AZaU0qpiBiatL//RlZSVb+wllbusyfy0/PemyhikdRhLkqSS8429pA1B1gT8ckpcsUbqqFr6qD/Lx/zgR/2SJGltLSbzEdGZXCWbOSmlmtKHJG1Y/JhfkiStrywz8wl4ATgM8CAlaR05my5JkkqlU0sd8htbZwOFFU2WJEmSVFQtJvN5/wf4YUR0LWUwkiRJkrLLugG2N7At8GZE/BmYy5obYlNK6bJiBydJkiSpaVmT+Qvr/XxyI9cTYDIvSZIktaJMyXxKKetyHEmSJEmtxCRdkiRJKlMm85IkSVKZypzMR8TpEfFyRCyJiE8bfpUySEmSJElry5TMR8QJwH8C/wC6A7cBdwIfAW8Al+J8NssAACAASURBVJcqQEmSJEmNyzoz/0Pgl8CZ+cfjUkrfA4YAtcAHJYhNkiRJUjOylqYcCjwFrMp/dQVIKS2IiF8AvwB+XZIIJUllYezYsVRVVTXbp+76yJEjm+03dOhQzj333KLFJkkdVdaZ+VqgU0opAe+Rm5Gv8wmwVbEDkyR1PD169KBHjx5tHYYkdRhZZ+anANsBjwJPAxdGxFvASmA0ML0k0UmSyoYz6ZLU+rIm8zfxr9n4S8gl9c/kH38MHFHkuCRJkiS1IOsJsH+o9/PMiNgZ2BPYGPhbSml+ieKTJElqd1raI7Ih7w9x/0zryjozv4aU0mJys/OSJElqwL0hzfP1KZ7MyXxE9AROAfYD+gGnp5SqIuLfgFdSSq6b30D5DlyStKHx36qm+dq0rkzJfEQMAJ4AKsltdv0c0Dt/+QDgIODUEsSnDsJ34JIkScWXdWb+WmAZuXrzc4Dl9a49Sa6ijTZQvgOXJElqG1mT+a+QW1YzKyI6N7j2LrB1ccOSJEmS1JKsh0Z1JVeCsjF9gBXFCUeSJElSVlmT+VeBbzVx7VDgxeKEI0mSJCmrrMtsrgbuiwiAu/JtO0XE4eQq3HyjBLFJkiRJakbWQ6Puj4iRwK+Ak/PNE8gtvTk7pfTnEsUnSZIkqQmZ68ynlG6MiDuAvYAK4ANyp782tZZekiRJUgmt0wmw+ZNfHylRLJLU7nmEuySpPVmXE2D7AucCe5IrRfku8Dfg+pTSwtKEJ0nlxQPSJEmtKesJsLsAj5IrQ/kcMBXYArgQGBkRB6aUppQsSklqJ5xNlyS1J1ln5v+D3Br5YSmld+oaI2Iw8GfgP4HhRY5NkiRJUjOy1pnfHbikfiIPkFJ6G7gM2KPIcUmSJElqQdaZ+Q+AZU1cW5q/LklqRS1txgU35EpSR5d1Zv6/gB9HRPf6jRHRAzgf+E2xA5MkFa5Hjx5uypWkDizrzPzGwCBgVkQ8DMwjtwH2q0At0DMiLs/3TSmly4oeqSRpDc6kS5KyJvMX1vv5hEauX1Tv50RuHb0kSZKkEsqUzKeUsi7HkSRJktRKTNIlSZKkMpX5BNg6EdENOAXYCZgL3JZSmlPswCRJkiQ1r8lkPr+h9VsppZ3rtXUDJgOfByLffE5EfDml9FZJI5UkSZK0huaW2RwEPNyg7SzgC8DVQB/gy8AK4OKSRCdJkiSpSc0ts9kWGNug7QhyS2t+llJKwPMRcTVgfbQimzlzNqNGXbPe91dXvw9AZWX/guMYOnSHgsaQJElSaTSXzPchV08egIjoCuwB3JdP5Ov8E/hMacLbMA0dOrTgMZYuXQlARM8CY9mhKPFIkiSp+JpL5t8FBgNP5R9/CegK/K1Bv42AxUWPbANWjINg6o5uHzduXMFjSZIkqX1qbs3808API6JvRARwDrAKmNig365AdYnikyRJktSE5mbmxwAvkltqsxToDdyYUnqnQb8TgSdKEZwkSZKkpjWZzKeU3oqI/wWcCmwKPJ9SuqN+n4jYCngMmFDSKCVJkiStpdlDo1JKs4BLm7k+B/hBsYOSJEmS1LLm1sxLkiRJasdM5iVJkqQyZTIvSZIklSmTeUmSJKlMlUUyHxGnRURVRCyNiBcj4sCM9+0dEZMjojYi3oqIcxrpkxr5eq74v4UkSZJUXM1Ws2koIjYHvgz0Ax5MKX0YEd2B5SmlVaUIMCL+DbgRGA08A5wEPBQRu6eUXmvmvu2AvwAPAT8D9gCui4glKaVbGnS/Friv3uOPi/cbSJIkSaWRKZnPnwB7FbkylF2BBOwOfAj8X3JJ9s9LFOMY4PaU0s/zsTxJ7tTZnwLfbea+HwNzgO+mlFYCf42IgcBlEXFrSinV6/t2SsnZeEmSJJWVrMtsfgacDVwOfAmIetceBL5W5LgAiIghwGeBe+ra8p8A3Asc2sLthwL35xP5Or8HKoHPFTlUSZIkqdVlTeZPBS5PKV0BvNTg2kxg26JG9S875L9Pb9A+DdgsIioauykiegIDmriv/rh1RkfEyoiYHxHjI2KzQoKWJEmSWkPWNfNbA00tQ1kO9CxOOGvZNP99YYP2BfWu1zRyX98M99W5ndynCzXAMOASYJeI2COl9GnDgSPidOB0gIEDB2b4FSRJkqTSyJrMv0tuacrjjVzbBXgr6xNGRB/gMy31SynVn1VPDS5HE+1rDdNSe0rpxHrtT0XENOBh4OvAA43EdRNwE8CwYcNaen5JkiSpZLIm8/cCl0bES/xrhj5FxGeBH5FPbjM6Grg5Q7/gXzPpfYFF9a41NfNOg/a+Ddqbmumv78/AJ8BuNJLMS5IkSe1F1jXzo8mtP38KqMq33QtMyT/+VdYnTCndklKKlr7y3etm5xuucd8B+DCl1NgSG1JKi4HZTdxXf9zG7q2bbXfWXZIkSe1apmQ+pVQLDAdOBP4GPAr8g9za8a+klJaXIriU0pvA/5CbzQcgIjrlH09q4fZJwDcjonO9tmPJJfnN1ac/BOgFvLieYUuSJEmtIvOhUfnNoHfkv1rTaODOiHgbeBb4HjAU+E5dh4jYH3gMODCl9GS++WrgOOCOiLiZXF387wNn1s2+5zezDiP35mQ+uaU1FwPPAxNL/YtJkiRJhVinE2DbQkrp7ojoBVxArtLM68DXGpz+GkBn6tW/TynNzM+yX0dulv494EcNTn99g9ybg28Bm+T7TAAuaaySjSRJktSeZD0B9i2aXkO+itzm1BeB/2iQZBdFSulmmtk0m1J6gjUPsqprfwbYo5n7HiM3oy9JkiSVnawbYJ8kN/P9GXJlKJ/Lf9+K3BuCd8iVcvxHROxVgjglSZIkNZA1mX+a3Oz7NimlA1NK30kpHQhsA3xEbhnLdsA/gTEliVSSJEnSGrIm8xcAl6eU3qvfmFKaC/w7cEG+HOQNNLOsRZIkSVLxZE3mBwDLmri2FNg6//O7QNdCg5IkSZLUsqzJ/DTgRxHRrX5jRHQHzs9fh9wa+nnFC0+SJElSU7KWpvwJ8BAwKyIeBt4H+gNfBfrmvwPsBfx3sYOUJEmStLZMyXxK6dGIqDtQaT9yVW3mkjts6d9TStPy/c4pVaCSJEmS1rQuJ8BOpd6pq5IkSZLaVtY185IkSZLamcwz8xHRH/g2sD3QvcHllFI6pZiBSZIkSWpepmQ+IrYnd+prZ6AnMB/YLP94AbkDpSRJkiS1oqzLbK4Gnge2AAI4FOgBnAosAb5ZkugkSZIkNSnrMpvdgTP418FRnVJKK4HxEbE5cD1wQAnikyRJktSErDPzvYAPU0qryC2p2bzetRfIJfuSJEmSWlHWZP5tYMv8zzOAo+td+xqwsIgxSZIkScogazL/CPCV/M/XASdFxIyIeB0YBYwvRXCSJEmSmpZ1zfzPgG4AKaV7IqIWOBbYGLgBuLk04UmSJElqSovJfER0BnYA5tS1pZQeBB4sYVySJEmSWpBlmU0it8l11xLHIkmSJGkdtJjM5yvYzCZ3WJQkSZKkdiLrBtj/A/wwIrqWMhhJkiRJ2WXdANsb2BZ4MyL+DMwlt/ymTkopXVbs4CRJkiQ1LWsyf2G9n09u5HoCTOYlSVJJjB07lqqqqmb71F0fOXJkk32GDh3KueeeW9TYpLaUKZlPKWVdjiNJktQmevTo0dYhSK0u68y8JElSm3E2XWpc5hn3yPlGRFwTEbdFxKB8+/4RsVXpQpQkSZLUmEwz8xGxKfAw8CXgI3IbYv8TeAc4DfgQOKdEMUqSJElqRNaZ+auBAcDewOZA1Lv2KHBgkeOSJEmS1IKsa+YPB85PKf09Ijo3uDaLXKIvSZLqWbFiBdXV1SxdurStQ5FUJrp3705lZSUbbbRRpv5Zk/lewLtNPSdrztRLkiSgurqa3r17M3jwYCL8p1JS81JKfPDBB1RXV7PNNttkuifrMpsZwP9u4tr+wJSM40iStMFYunQp/fr1M5GXlElE0K9fv3X6NC/rzPxvgN9ExCLgrnxb34g4CTgbOH2dIpUkaQNhIi9pXazr3xmZZuZTSjcD1wFjgJn55keAm4DrU0q/W6dnlSRJ0gblmmuuYfDgwet0z+DBg7nmmmtKE1AHkbnOfErpp8C2wPeBi4GRwPYppYtKFJskSSoTJ554IhGx1tcrr7xSlPGfeOIJIoL58+cXZbwsTjzxRL72ta+12vMVav78+RxzzDFsuummbLLJJuy77768+uqrme6t+/N65pln1mj/9NNP2WqrrYgI7rvvvlKErQJlrTPfOaX0aUrpHeCWEsckSZLK0EEHHcQdd9yxRtvmm2/eRtE0bfny5XTt2rWtwyi6n/zkJzz33HM8+OCDfOYzn+GVV15ZpyUbAwYM4NZbb2WfffZZ3TZp0iS6dMm6KlttIevM/JyIuD4ivljSaCRJUtnq1q0bW2655RpfdYnggw8+yBe/+EW6d+/ONttsw0UXXcTy5ctX33vnnXey++6707t3b/r378/RRx/Nu+/mCum9/fbbHHDAAQBUVFQQEZx44okADB8+nLPPPnuNOBrOqA8fPpwzzzyT888/n4qKCvbee28Apk6dymGHHbb6Ob/97W/z3nvvATB69Ghuv/12Jk6cuHrW+oknnmDEiBFrPd9HH33ExhtvzP333w/kloaMHj2a7373u/Tq1Ystt9xyraUiixYt4vTTT6d///707t2b/fffnxdeeGGN68cffzz9+/ene/fuDBkyhOuvv77Z179Tp058+ctfZp999mHbbbflW9/6Fp///Oebvafh63bvvffyySefrG679dZbOemkk9bqO2vWLL75zW/Su3dvevfuzZFHHkl1dfUafa666iq23HJLevXqxQknnLDGuHVuu+02dtppJ7p3785nP/tZxo4dy6pVqzLHrOzJ/P3Ad4HnI2JqRPw0IgaWMC5JktRB/OUvf+G4447j7LPP5vXXX2f8+PHcd999XHjhhav7LF++nDFjxvDPf/6Thx56iPnz5/Ptb38byM0Y//GPfwTg9ddfZ+7cudxwww3rFMOdd95JSomnn36aCRMmMHfuXPbbbz8+97nP8fzzz/Poo4/yySef8I1vfINVq1Zx/vnnc8wxx3DQQQcxd+5c5s6dy1577cVpp53GXXfdxbJly1aPfffdd9OrVy++/vWvr2677rrr2HHHHXnppZcYM2YMF1544epkP6XEYYcdxrvvvstDDz3Eyy+/zH777ceIESOYO3cuABdffDFTpkzhoYceYvr06YwfP56tt9662d/x8MMP509/+hMTJ05cp9emzhe+8AV23HFH/vCHPwDw/vvv8/DDD6+VzKeUOOKII5g3bx5//etfefzxx5kzZw5HHHEEKSUA7rnnHi6++GLGjBnDSy+9xPbbb8911123xjg333wzF154IZdffjnTpk3j2muv5corr2TcuHHrFf8GK6WU6QvYCDgC+CNQC6wE/gqcCPTOOk5H+vriF7+Y2qszzzwznXnmmW0dhiRt0KZOndrWIbSa733ve6lz586pZ8+eq78OOeSQlFJK++67b7r88svX6P+nP/0p9ezZM61atarR8aZNm5aANHv27JRSSo8//ngCUk1NzRr99t9//3TWWWetFcthhx22Rp/Pf/7za/S55JJL0ogRI9Zo+/DDDxOQJk+e3Og4KaW0dOnS1K9fv3T33Xevbttjjz3Sj370o9WPBw0alA466KA17jvllFPS3nvvnVJK6bHHHks9e/ZMS5YsWaPPLrvskq688sqUUkpf//rX04knntjYS9Oo119/PfXq1StdccUVaeDAgel3v/vd6mtVVVUJSDNmzGjyfiDde++9ady4cWmvvfZKKaV09dVXpwMPPHCN6yml9N///d+pU6dO6a233lp9/xtvvJEiIj3yyCMppZT23HPPdOqpp67xHAceeGAaNGjQ6scDBgxIEyZMWKPP2LFj04477rj68aBBg9LVV1+d+XXoKBr7uwN4ITWSj67LBtgVKaUHUkrfArYktwG2C7k19HOL89ZCkiSVq/32249XXnll9dctt+S22b344ov84he/oFevXqu/vvOd77B48eLVy1peeuklDj/8cAYNGkTv3r0ZNmwYkFvOUQxf/OKaK4VffPFFnnrqqTViGjAgd6D9G2+80eQ43bp14/jjj2f8+PFAbqnO888/z8knn7xGvz333HOtx1OnTl393EuWLKGiomKN53/ttddWP/eZZ57JPffcwy677ML555/Pk08+2ezvN3r0aL7yla/ws5/9jIkTJzJq1KjVn1689tprbLnllgwdOrSll4nvfOc7vPzyy8yYMYPx48dzyimnrNVn2rRpbLXVVmtUphkyZAhbbbXV6t9x2rRpjb4GdWpqapg9ezbf//7313gNfvrTnzb7+mtt67WjIaW0KCImAf2AIcBnihqVJEkqOxtvvDHbbbfdWu2rVq3isssu4+ijj17rWkVFBYsXL+bggw9evYG2f//+zJ8/n3333XeNdfWN6dSp0+qlHXVWrFixVr+ePXuuFdNhhx3WaNnDLbbYotnnPPXUU/nCF77ArFmzuPXWW9lzzz3Zaaedmr2n4XNvscUWPP3002td22STTQA49NBDeeedd5g0aRKPPfYYhx12GEcffTS33XZbo2O++uqrHHfccQB87nOfY9KkSRx44IHMmzePl156iZNOOinTZtg+ffpw5JFHcsYZZzB37ly++c1vrtUnpdTkWFk33Nati7/xxhvZa6+9Mt2jxq1TMh8RvYGjya2f3w9YCjwI3NHcfZIkacO12267MX369EYTfYB//vOfzJ8/nyuuuGL1EfZ168vr1FWf+fTTT9dor6ioWL3OvP54LdUz32233bjnnnsYNGgQG220UaN9unbtutbzAey888586Utf4uabb+bOO+/kF7/4xVp9nnvuubUe77jjjqufe968eXTq1IkhQ4Y0GePmm2/O8ccfz/HHH8+hhx7Kt7/9bW688Ua6deu2Vt+tt956jTcHw4YNY+LEiRx88MF06dKF3//+900+T0OnnHIKI0aM4KyzzqJ79+5rXd9pp5149913efvtt1e/zm+++SZz5sxZ/aZmxx135LnnnlvjE4v6r8kWW2zB1ltvzRtvvMEJJ5yQOTatLdMym4g4LCJ+D7wH3AwEuVNfP5NS+nZK6eESxihJksrYpZdeyl133cWll17Ka6+9xvTp07nvvvv4yU9+AsDAgQPp1q0bv/71r3nzzTeZOHEil1xyyRpjDBo0iIhg4sSJ1NTUrK6MMmLECCZNmsT/+3//jxkzZnDeeecxe/bsFmM666yzWLRoEcceeyyTJ0/mzTff5NFHH+X000/n448/BnJVaV577TVmzJjB/Pnz15jxP+2007jqqqtYvHgxxx577FrjP/fcc/zyl7+kqqqKm2++mQkTJnDuuecCuRKee++9N4cffjiTJk3irbfe4u9//zuXXXbZ6oT80ksv5YEHHqCqqopp06Zx//33M2TIkEYTeciVpXzsscc444wzmDJlyuqNxAC1tbWrN7VmccABB1BTU8O1117b6PWDDjqIXXbZheOOO44XX3yRF154geOOO47ddtuNESNGADBq1Chuv/12br75ZqqqqvjlL3/J5MmT1xhn9OjRXHXVVYwdO5YZM2bw2muvMWHCBH75y19mjlXZq9k8COwC/ALYJqV0QEppfErp49KFJkmSOoKDDz6YiRMn8vjjj7PHHnuwxx578Ktf/YqBA3OF8SoqKrj99tt54IEH2GmnnRgzZsxalU+23nprxowZw0UXXcQWW2yxujzkySefvPpr7733plevXo0uDWloq6224tlnn6VTp04ccsgh7Lzzzpx11ll069ZtdcJ82mmnseOOOzJs2DAqKip49tlnV99/7LHH0rVrV4455hh69+691vjnnXcer776KrvuuisXX3wxl19+OUcddRSQW4ry8MMPM2LECE477TS23357jjnmGGbMmMFWW20F5NbmX3TRReyyyy7svffefPzxxzz44IPNvsaPP/4406dPZ99992X48OHMmDGDv/3tb4wdO5azzjqLSZMmtfi61Nl8882bfOMQETzwwANUVFQwfPhwDjjgALbcckseeOCB1ctsjj32WEaPHs1FF13ErrvuypQpUzjvvPPWGOfUU09l/Pjx3HHHHeyyyy7su+++3HTTTas/nVE20XCdWaOdInZPKf2jiWv7A99LKZ3c2PWObNiwYal+Tdj2ZOTIkQCWd5KkNjRt2rTVSyvUscyZM4eBAwfy5JNPrq5bX2fw4MGcffbZnH/++W0UncpdY393RMSLKaVhDftmmplvmMhHxHYRcXlEvAU8DhxTQLySJEllYcWKFcyaNYsLLriAXXfdda1EXmptmUtTRkSfiDg9Ip4BZgAXAQuAM4GtShSfJElSu/Hss88yaNAgJk+ezM0339zW4UjNV7OJiE7AIcAJwDeA7sAc4DfAWcAPU0pPlTpISZKk9mD48OFrlcJs6O23326dYCSaSeYj4hrgOKA/uRKUfwJuBx4FNgHObo0AJUmSJDWuuZn584AEPAycmFL6oO5CRLS8a1aSJElSSTW3Zn488DFwGDAjIn4dEXu0TliSJEmSWtJkMp9SOhXYktxpry8CZwB/j4hpwAXkZu0lSZIktZFmq9mklJamlO5KKR0MDAAuBD4FfkruFNhfRcR3I2Lts34lSVK78LOf/Yzrr78+U9/hw4dzyy23APDb3/6WffbZJ9N969K3WEaPHs13v/tdAGbNmkWvXr349NNPCx73yCOP5M9//nPB40itIXNpypTS3JTSlSmlzwFfAsYBQ4EJwNwSxSdJkgpQU1PDhAkT+P73v9/WoZTUwIED+eSTT+jcuXPBY/30pz/loosuKkJUUullTubrSyn9I6V0Nrn68kcBTxY1KkmSVBS//e1v+epXv0qPHj3aOpSysccee/DRRx/RXk95l+prts58S1JKK4D781+SJKkZF1xwPh99tLBo422ySV+uvPKaZvtMmjSJk08+efXjBQsWcPzxxzN58mRWrlzJ3nvvzY033khlZWXB8aSU+MEPfsCECRP4zGc+w29+8xsOPPBAAG677Tauuuoqqqurqaio4IILLlj9acH8+fM58cQTeeaZZ+jUqRM777wzTz75JJ06dWLOnDn84Ac/4KmnnqJXr16ce+65nHPOOWs999tvv80222zDihUr6NKlC8OHD2ffffflr3/9K6+++ip77rknd911F5tvvjkAzz33HOeddx5Tp05l0KBB3HDDDQwfPnz1eMOHD2fixIkMGzas4NdFKqWCknlJkpTdRx8t5IYbRhVt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\n" + "image/png": "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f+8vf/lL9t13X/r168eQIUM48cQTefnlXPG8hQsXcthhhwEwePBgIoJx48YBMGrUKM4555wN4hg3bhyf/OQn6x+PGjWKs88+my9/+csMHjyYgw46CIC5c+cyZsyY+t95yimn8Oqrrzb53CoqKjZ4Xj179qxv++c//8nQoUN58803N7jn4osv5oMf/CDw3tKQO++8k/e///306tWLww47jOeff36De1p7nW6//XY++MEPUlFRwcCBAzn00EN57bXXmv0zqVtzPX78eHbZZRf23Xdfxo8f32z/xgYNGsSYMWO4/vrr69v+8Y9/MH/+fE444YSN+v/f//0fw4YNo0ePHgwbNoxf/OIXG1xfsGABo0aNolevXuy+++7cddddG43x8ssvc/LJJ7PVVlux1VZbMWbMGKqqqjLH3JllTeZvBz4LPBYRcyPiqxHhWzNJktSke++9l1NPPZVzzjmHZ599lqlTp3LbbbdtsNxjzZo1TJo0iaeeeoq77rqLpUuXcsoppwAwdOhQfvvb3wLw7LPP8sorr2wwI57FL3/5S1JKPPjgg0yfPp1XXnmFQw45hL333pvHHnuM+++/n3feeYejjz6a2traTRr7kEMOYbfddmP69On1bbW1tUyfPp0zzzyzvm316tVMmjSJ66+/nocffpj169fz6U9/mpRSptfp1Vdf5eSTT2bs2LHMmzePWbNmcdppp7UY2w477MC+++7LueeeS01NzSY9rzpnnnkmN9xwQ/3rct111/Gf//mf9OvXb4N+v/vd7zjnnHM4//zzeeaZZ5g4cSITJkzgzjvvrH9NPv3pT1NbW8vDDz/M1KlTueKKK1i9enX9GCtXruSwww6jV69ezJw5k4cffpjtttuO0aNHs3Llys2Kv1NJKWX6AroDxwK/BWqAdcCfgXFAv6zjdKSvj3zkI6m9Ovvss9PZZ5/d1mFIUqc2d+7ctg6hpMaOHZu6du2a+vTpU/915JFHppRS+uhHP5quvPLKDfr/7ne/S3369Em1tbVNjjdv3rwEpEWLFqWUUvrLX/6SgLRkyZIN+h166KHpi1/84kaxjBkzZoM+H/jABzboc+mll6aPfexjG7S9+eabCUiPPvpoq893zJgxaezYsfWPr7rqqjRixIj6x/fcc0/q0aNHWrp0aUoppeuvvz4Bafbs2fV9Fi5cmLp06ZLuu+++lFLrr9OcOXMSkBYuXNhqfHXGjx+fPvzhD6dzzz03HXzwwWnZsmX110499dR0yimnNHvv5Zdfnvbaa6+0bt26tP3226c//vGPadWqVWnQoEHpwQcfrL9e58ADD0zjx4/fYIyxY8emgw46KKWU0r333pu6dOmSXnzxxfrrDz74YALS9ddfn1JK6brrrkvDhg3b4L+LdevWpYEDB6abb745pZR7Lfv06ZP5NSh3Tf3dATyRmshHN2UD7NqU0h0ppeOBbcltgO1Gbg39K8V5ayFJksrJIYccwpNPPln/de21ua11c+bM4Vvf+hZ9+/at//rMZz7Du+++W7+s5W9/+xvHHHMMO+20E/369WPkyJEAvPTSS0WJ7SMf2XB18Jw5c5g1a9YGMQ0dmjvE/l//+tcmjz927Fief/55HnroISC3pvzYY49l0KBB9X26dOnCfvvtV/94p512Yvvtt2fu3Ln1MbX0On3oQx9i9OjR7L333hx//PH87//+L0uWLGk2prlz53L99dczbdo0fvSjH7HXXntxyCGHsHjxYgCeeeYZDjnkkFafW9euXRk7dixTp07ljjvuYNCgQRx88MEb9Zs3b179EqY6Bx98cP3zmzdvHjvssMMGa+33339/unR5LwWdM2cOL7zwAv369at/Dfr378+yZcs268+ls8laZ34DKaUVETEDGATsCmxX1KgkSVJZ6N27N8OGDduovba2lssvv5wTTzxxo2uDBw/m3Xff5YgjjqjfQDtkyBCWLl3KRz/60Q3WizelS5cu9ctU6qxdu3ajfn369NkopjFjxnD11Vdv1HebbbZp8Xc2ZfDgwRx99NFMnTqV3Xffnd///vf1y0uyau116tq1K3/84x955JFH+OMf/8h1113H1772NWbOnMmHPvShje75xz/+QdeuXfnABz4A5CrQjB07lgMPPJArr7ySBQsWcNJJJ2WK7YwzzuCDH/wgCxcu5Iwzzmi2X1N10evaGv85NaW2tpZ/+7d/4ze/+c1G19rjBuP2ZpOS+YjoB5xIbv38IcAq4E7gxpbukyRJncs+++zD/Pnzm0z0AZ566imWLl3Kt7/97fpj62+//fYN+tRVn1m/fv0G7YMHD+aVVzZcFPDUU09tUHmluZhuueUWdtppJ7p3774pT6dZ//Vf/8UJJ5zArrvuyjbbbLNRScfa2loef/xxDjzwQCD3qcPixYvZY4896mNq6XWCXGJ8wAEHcMABB3DZZZex1157cfPNNzeZzO+www6sX7+ehx56iIMOOoguXbowbdo0TjzxRMaOHctll13GVlttlem5DRs2jH333ZeHHnpooz+bOnvssQezZ8/eINmfPXs2e+65JwB77rknL7/8MosWLar/FOSxxx7bYI/CPvvsw69//Wu23nprBgwYkCk2vSfTMpuIGBMRvwFeBX4BBLlTX7dLKZ2SUrqnhDFKkqQyc9lll3HTTTdx2WWX8cwzzzB//nxuu+02/vu//xuAHXfckZ49e/KTn/yE559/nrvvvptLL710gzF22mknIoK7776bJUuW8M477wDwsY99jBkzZvD73/+e5557jgsvvJBFixa1GtMXv/hFVqxYwUknncSjjz7K888/z/33389ZZ53F22+/vVnP8+Mf/ziDBg1i0qRJjB8/foPlIwDdunXj/PPP5+GHH+bJJ59k7Nix7LXXXvVJf2uv0yOPPMI3v/lNHn/8cV566SV+//vfs2jRovpkubGDDz6Ygw8+mFNOOYXbb7+df/3rX9xzzz0899xz9OnTh1tvvZXly5dnfn4zZszg9ddfZ7vtml6EcdFFF3HjjTfy05/+lKqqKn784x/zq1/9qj7+0aNHM2LECE4//XSefPJJHn74YS644IL6ikcAp556Kttssw3HHHMMM2fO5IUXXmDWrFl86UtfsqJNBlnXzN8JfAj4FrBLSumwlNLUlNLm/ZcvSZI6tCOOOIK7776bv/zlL+y3337st99+fOc736lfOz148GBuuOEG7rjjDvbcc08mTZrED37wgw3G2GGHHZg0aRIXX3wx22yzTX05yjPOOKP+66CDDqJv3758+tOfbjWm7bffnr/+9a906dKFI488kr322osvfvGL9OzZk549e27W84wIxo8fz9q1a5ss/9izZ08uvvhiTj/9dPbff39qa2u5/fbb65ehtPY69e/fn7/+9a988pOfZPjw4XzpS1/i0ksv5bOf/Wyz8cyYMYOTTz6Ziy66iD333JOLLrqIcePG8cILL7Bu3TqOO+64Vpcy1endu3eLM/nHHnssP/7xj5k8eTJ77rkn11xzDVOmTOFTn/oUkFsS9bvf/Y7a2lr2339/Tj/9dC655JINXu/evXsza9Ysdt11V0488URGjBjB2LFjWbZsWeZPETqzyLKWKSL2TSk9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\n" }, "metadata": { "needs_background": "light" @@ -993,7 +1343,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAvMAAAHrCAYAAABCaBK8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzde1yP9//48cerVFLvVIpQcmgIYx9yTDRn2bCc5pTzh5kPsRPlQ2yzz5w2tvnY16nSh81pPqi2sTnN5LgwQhg62JSkclbX74/W9fP2fpcQxud5v92u21zX9bper+d1vas9r9f7db0upWkaQgghhBBCiGePxdMOQAghhBBCCPFwJJkXQgghhBDiGSXJvBBCCCGEEM8oSeaFEEIIIYR4RkkyL4QQQgghxDNKknkhhBBCCCGeUaWedgDPMhcXF61q1apPOwwhhBBCCPGcO3DgQLqmaa73bpdk/hFUrVqV/fv3P+0whBBCCCHEc04pdc7cdhlmI4QQQgghxDNKknkhhBBCCCGeUZLMCyGEEEII8YySMfNCCCHEY3L79m2Sk5O5cePG0w5FCPGMKF26NO7u7lhZWRWrvCTzQgghxGOSnJyMwWCgatWqKKWedjhCiL84TdO4dOkSycnJVKtWrVjHyDAbIYQQ4jG5ceMG5cqVk0ReCFEsSinKlSv3QN/mSTIvhBBCPEaSyAshHsSD/s2QZF4IIYQQQjx2s2fP5kFftlm1alVmz579eAJ6TkgyL4QQQohHNnjwYJRSJkt8fHyJ1L9t2zaUUqSnp5dIfcUxePBgXnnllSfW3qNKT0+nd+/eODk54eDggJ+fH4cPHy7WsQWf108//WS0PTc3l0qVKqGUYs2aNY8jbPGI5AFYIYQQQpSIdu3asXz5cqNtLi4uTymawt26dQtra+unHUaJe/fdd4mLi2Pjxo1UrFiR+Pj4Bxqy4eHhwZIlS2jZsqW+LTY2llKlJF38K5OeeSGEEEKUCBsbG9zc3IyWgkRw48aNNGrUiNKlS1OtWjVCQ0O5deuWfmxUVBSNGzfGYDBQvnx5evXqRUpKCgBnz57l5ZdfBsDV1RWlFIMHDwbA39+fMWPGGMVxb4+6v78/b7zxBm+//Taurq74+voCcOzYMbp06aK32bdvX37//XcAwsLCiIiIIDo6Wu+13rZtG23atDFpLysrizJlyrBu3Togf2hIWFgYAwYMwN7eHjc3N5OhIleuXOHvf/875cuXx2Aw0Lp1a/bv32+0f+DAgZQvX57SpUtTvXp1Pv300yKvv4WFBc2aNaNly5bUqFGDHj168OKLLxZ5zL3XbfXq1eTk5OjblixZwpAhQ0zKnj9/ntdeew2DwYDBYCAwMJDk5GSjMjNnzsTNzQ17e3uCgoKM6i2wbNky6tSpQ+nSpalZsyaffPIJeXl5xY5ZSDIvhBBCiMfsu+++o3///owZM4ajR4+ydOlS1qxZQ0hIiF7m1q1bTJs2jUOHDrFp0ybS09Pp27cvkN9jvHbtWgCOHj3KhQsXmDdv3gPFEBUVhaZp7Ny5k8jISC5cuECrVq2oV68ee/fuZcuWLeTk5NC1a1fy8vJ4++236d27N+3atePChQtcuHCBFi1aMGLECFasWMHNmzf1uleuXIm9vT2vvvqqvm3u3Ll4e3tz8OBBpk2bRkhIiJ7sa5pGly5dSElJYdOmTfzyyy+0atWKNm3acOHCBQAmT57MkSNH2LRpE8ePH2fp0qVUrly5yHPs1q0b33zzDdHR0Q90bQrUr18fb29vvv76awAuXrxITEyMSTKvaRrdu3fnjz/+4Mcff2Tr1q2kpqbSvXt3NE0DYNWqVUyePJlp06Zx8OBBatWqxdy5c43qWbRoESEhIUyfPp2EhATmzJnDxx9/zIIFCx4q/v9ZmqbJ8pBLo0aNNCGEEKIwx44de9ohPDGDBg3SLC0tNTs7O33p1KmTpmma5ufnp02fPt2o/DfffKPZ2dlpeXl5ZutLSEjQAC0pKUnTNE3bunWrBmhpaWlG5Vq3bq29+eabJrF06dLFqMyLL75oVOaf//yn1qZNG6NtGRkZGqDt2bPHbD2apmk3btzQypUrp61cuVLf1qRJE+2tt97S1z09PbV27doZHTds2DDN19dX0zRN++GHHzQ7Ozvt2rVrRmUaNGigffzxx5qmadqrr76qDR482NylMevo0aOavb29NmPGDK1KlSraf/7zH31fYmKiBmgnTpwo9HhAW716tbZgwQKtRYsWmqZp2qxZs7S2bdsa7dc0Tfv+++81CwsL7bffftOPP336tKaU0jZv3qxpmqY1b95cGz58uFEbbdu21Tw9PfV1Dw8PLTIy0qjMJ598onl7e+vrnp6e2qxZs4p9HZ4X5v52APs1M/mo9MwLIYQQokS0atWK+Ph4fVm8eDEABw4c4MMPP8Te3l5f+vXrx9WrV/VhLQcPHqRbt254enpiMBjw8fEB8odzlIRGjRoZrR84cIAdO3YYxeTh4QHA6dOnC63HxsaGgQMHsnTpUiB/qM7evXsZOnSoUbnmzZubrB87dkxv+9q1a7i6uhq1/+uvv+ptv/HGG6xatYoGDRrw9ttvs3379iLPLywsjPbt2zNp0iSio6MZN26c/u3Fr7/+ipubGy+88ML9LhP9+vXjl19+4cSJEyxdupRhw4aZlElISKBSpUpGM9NUr16dSpUq6eeYkJBg9hoUSEtLIykpiZEjRxpdg4kTJxZ5/YUpeaJBCCGEECWiTJkyeHl5mWzPy8tj6tSp9OrVy2Sfq6srV69epWPHjvoDtOXLlyc9PR0/Pz+jcfXmWFhY6EM7Cty+fduknJ2dnUlMXbp0MTvtYYUKFYpsc/jw4dSvX5/z58+zZMkSmjdvTp06dYo85t62K1SowM6dO032OTg4ANC5c2fOnTtHbGwsP/zwA126dKFXr14sW7bMbJ2HDx+mf//+ANSrV4/Y2Fjatm3LH3/8wcGDBxkyZEixHoYtW7YsgYGBjBo1igsXLvDaa6+ZlNE0rdC6ivvAbcG4+IULF9KiRYtiHSPMk2ReCCGEEI9Vw4YNOX78uNlEH+DQoUOkp6czY8YM/RX2BePLCxTMPpObm2u03dXVVR9nfnd995vPvGHDhqxatQpPT0+srKzMlrG2tjZpD6Bu3bo0bdqURYsWERUVxYcffmhSJi4uzmTd29tbb/uPP/7AwsKC6tWrFxqji4sLAwcOZODAgXTu3Jm+ffuycOFCbGxsTMpWrlzZ6ObAx8eH6OhoOnbsSKlSpfjqq68Kbedew4YNo02bNrz55puULl3aZH+dOnVISUnh7Nmz+nU+c+YMqamp+k2Nt7c3cXFxRt9Y3H1NKlSoQOXKlTl9+jRBQUHFjk2YkmE2QgghhHispkyZwooVK5gyZQq//vorx48fZ82aNbz77rsAVKlSBRsbGz7//HPOnDlDdHQ0//znP43q8PT0RClFdHQ0aWlp+swobdq0ITY2lg0bNnDixAkmTJhAUlLSfWN68803uXLlCn369GHPnj2cOXOGLVu28Pe//53s7Gwgf1aaX3/9lRMnTpCenm7U4z9ixAhmzpzJ1atX6dOnj0n9cXFxfPTRRyQmJrJo0SIiIyMZP348kD+Fp6+vL926dSM2NpbffvuN3bt3M3XqVD0hnzJlCuvXrycxMZGEhATWrVtH9erVzSbykD8t5Q8//MCoUaM4cuSI/iAxwPXr1/WHWovj5ZdfJi0tjTlz5pjd365dOxo0aED//v05cOAA+/fvp3///jRs2JA2bdoAMG7cOCIiIli0aBGJiYl89NFH7Nmzx6iesLAwZs6cySeffMKJEyf49ddfiYyM5KOPPip2rEJ65p9Zn3zyCYmJiYXuL5geyt3dvch6XnjhBf2PixBCCPE4dOzYkejoaN5//31mz55NqVKlqFmzpj69pKurKxEREYSEhPDFF19Qv3595s6dS6dOnfQ6KleuzLRp0wgNDWX48OEEBQURHh7O0KFDOXz4sN4DPHr0aF577bX7vlyqUqVK7Nq1i0mTJtGpUydu3LhBlSpV6NChg54wjxgxgm3btuHj40NOTg5bt27F398fgD59+jB27Fh69eqFwWAwqX/ChAkcPnyYDz/8EDs7O6ZPn07Pnj2B/KEoMTExTJ48mREjRnDx4kUqVKiAr6+v3kttY2NDaGgov/32G6VLl6ZZs2Zs3LixyGu8detWpkyZgp+fH0op/P39+fnnn/npp5948803qVKlCp07dy7WZ1bU+wGUUqxfv56xY8fq16Ndu3Z89tln+jCbPn36cObMGUJDQ7l27Rpdu3ZlwoQJhIeH6/UMHz4cOzs7Zs2axaRJk7C1taVu3bomU3+Koql7x5mJ4vPx8dHunhP2SbpfMl+w734Pu0gyL4QQj09CQoI+tEI8X1JTU6lSpQrbt2/X560vULVqVcaMGcPbb7/9lKITzzpzfzuUUgc0TfO5t6z0zD+j7peAjx49GkDmahVCCCFK0O3bt7lw4QKhoaH87W9/M0nkhXjSZMy8EEIIIUQx7dq1C09PT/bs2cOiRYuedjhCSM+8EEIIIURx+fv7m0yFea+zZ88+mWCEQHrmhRBCCCGEeGZJMi+EEEIIIcQzSpJ5IYQQQgghnlGSzAshhBBCCPGMkmReCCGEeM5NmjSJTz/9tFhl/f39Wbx4MQDh4eG0bNmyWMc9SNmSEhYWxoABAwA4f/489vb25ObmPnK9gYGBfPvtt49cjxBPgsxmI4QQQjzH0tLSiIyM5NSpU087lMeqSpUq5OTklEhdEydO5I033jB6A60Qf1XSMy+EEEI8x8LDwwkICMDW1vZph/LMaNKkCVlZWTytt7wL8SCkZ14IIYR4Qt57722ysjJLrD4HB0c+/nh2kWViY2MZOnSovn758mUGDhzInj17uHPnDr6+vixcuBB3d/dHjkfTNP7xj38QGRlJxYoV+eKLL2jbti0Ay5YtY+bMmSQnJ+Pq6sp7773HyJEjAUhPT2fw4MH89NNPWFhYULduXbZv346FhQWpqan84x//YMeOHdjb2zN+/HjGjh1r0vbZs2epVq0at2/fplSpUvj7++Pn58ePP/7I4cOHad68OStWrMDFxQWAuLg4JkyYwLFjx/D09GTevHn4+/vr9fn7+xMdHY2Pj88jXxchHidJ5oUQQognJCsrk3nzxpVYfePGzbtvmSNHjlCrVi19PS8vjyFDhrBq1Spyc3MZOnQoY8aMYf369Y8cz549e+jZsyfp6emsW7eOwMBAfvvtN5ydnSlfvjybNm2ievXq7Nixg86dO9O4cWMaNmzInDlzcHd3Jy0tDchPtJVS5OXl8eqrr9KtWzdWrlxJcnIy7dq1o1atWnTs2PG+8axYsYLY2Fg8PDzo3Lkzs2fP5l//+hcpKSl06dKF5cuX06lTJ3744Qd69OjB8ePHcXV1BcDb25uffvrpka+JEI+bDLMRQgghnmOZmZkYDAZ9vVy5cvTo0YMyZcpgMBgIDQ1l+/btJdJW+fLlCQ4OxsrKij59+lCrVi2io6MB6NKlCzVq1EApRevWrenQoQM7d+4EwMrKigsXLnDu3DmsrKzw8/NDKcW+fftIS0tjypQpWFtbU716dUaMGMFXX31VrHiGDBlCzZo1sbW1pXfv3sTHxwMQFRVFQEAAAQEBWFhY0L59e3x8fIiJidGPNRgMZGaW3LcoQjwukswLIYQQzzEnJyeys7P19WvXrjFy5Eg8PT1xcHCgVatWZGZmlsgsMJUrV0Yppa97enqSmpoK5A/3adasGc7Ozjg6OhITE0N6ejoA77zzDl5eXnTo0IHq1avzr3/9C4Bz586RmpqKo6OjvsyYMYM//vijWPG4ubnp/y5Tpoz+gOy5c+dYvXq1Ub0//fQTFy5c0MtnZ2fj6Oj4aBdEiCdAhtkIIYQQz7H69etz8uRJGjduDMCcOXM4ceIEe/bswc3Njfj4eP72t7+hadojt5WSkoKmaXpCf/78ebp27crNmzfp0aMHkZGRdOvWDSsrK7p37663aTAYmDNnDnPmzOHo0aO8/PLLNG7cGA8PD6pVq0ZiYuIjx3Y3Dw8PBg4cyKJFiwotk5CQQIMGDUq0XSEeB+mZF0IIIZ5jAQEBRsNosrOzsbW1xdHRkYyMDKZNm1bsuvz9/QkLCyt0/8WLF5k/fz63b99m9erVJCQkEBAQwK1bt7h58yaurq6UKlWK2NhYvv/+e/24TZs2cerUKTRNw8HBAUtLSywtLWnSpAkODg58/PHHXL9+ndzcXH799Vf27dv3UNeiwIABA9i4cSPfffcdubm53Lhxg23btpGcnKyX2b59O507d36kdoR4Ep6JZF4pVUcp9YNS6ppSKlUpNV0pZXmfYxorpZYppU79edwJpdRUpVRpM2W7KaWOKKVuKKWOKaX6PL6zEUIIIZ6coKAgYmJiuH79OgDBwcFcv34dFxcXmjVr9kBzqSclJeHr61vo/qZNm5KYmIiLiwuhoaGsWbOGcuXKYTAYmD9/Pr1798bJyYkVK1bQtWtX/bjExETatWuHvb09zZs3Z/To0fj7+2NpacnGjRuJj4+nWrVquLi4MHz4cK5cufLwF4T8nvn//ve/zJgxA1dXVzw8PJg1axZ5eXkA7Nu3Dzs7O5o0afJI7QjxJKiS+FrtcVJKOQFHgWPAx0ANYA7wiaZpk4s4bjbQBFgOJAL1gfeBLZqm9birXEtgG7AA+AYIAN4COmma9j1F8PHx0f6qc9COHj0agAULFjzlSIQQ4n9XQkIC3t7e+vrTmJoSICQkRH849WElJyfTq1cvdu/e/dB1PCt69OjBsGHDCAgIeNqhiP9R9/7tAFBKHdA0zWSu1GchmZ8EvAt4apqW9ee2d4EwwK1gm5njXDVNS7tn29+BL4Gqmqad+3Pbd4CVpmlt7ioXAzhomlbke6klmRdCCFEUc/9DFkKI+3mQZP5ZGGbTGfjunqT9K8AWaF3YQfcm8n/65c//lgdQStkALwOr7in3FdBcKVX2YYMWQgghhBDicXsWkvnawPG7N2iadh649ue+B9ECyANO/LleA7C6t34ggfxrU/NBgxVCCCGEEOJJeRaSeSfA3ADDy3/uKxallBsQCiy/q5e/4Ph76798z34hhBBCCCH+cp6FZB7A3MB+Vch204JKWZM/lCYHGF+M+lUh21FK/V0ptV8ptb/gtdNCCCGEEEI8Dc9CMn8ZMPcKtrKY77E3ovLfXBEJ1AUCNE27fNfugn/fW3/Bukn9mqb9n6ZpPpqm+bi6ut6veSGEEEIIIR6bZyGZP849Y+OVUh6AHaZj3c35BOgGdNM07d7yp4Hb99b/53oecPJhAhZCCCGEEOJJeBaS+Vigo1LKcNe2PsB1YLv5Q/L9Oa3lP4ABmqb9dO9+TdNuAluBXvfs6gPs1jTt0d5KIYQQQvwFTJo0iU8//bRYZf39/Vm8eDEA4eHhtGxZ5CzNfzlVq1Zly5YtT6StwYMHM3ly/itvDh8+TIsWLZ5Iu0Lc7VlI5hcCN4F1Sql2f84VHwbMvXu6yj/f9LrkrvV+wAzyh9ikKKWa3bXcPT7mfcBfKfWpUspfKTWT/BdHTX/8pyaEEEI8XmlpaURGRjJy5MinHcpfjlKKU6dOlUhd9evXx9HRkY0bN5ZIfUIU118+mf9zjHtbwBLYCEwjf+jM1HuKlvqzTIEOf/53MLD7nqXLXfX/BPQE2gHfAV2Bfvd7+6sQQgjxLAgPDycgIABbW9unHcpzr3///nz55ZdPOwzxP6bU0w6gODRNOwa0uU+ZqvesDyY/kS9O/euB9Q8XnRBCCFE849+eQEbm5fsXLCZnRyc+mT23yDKxsbEMHTpUX798+TIDBw5kz5493LlzB19fXxYuXIi7u/sjx7No0SLmzp1LcnIyHh4eREVF0bBhQ5RSJCYm4uXlBeQPT3F3d+eDDz5g27ZtDBgwgLFjxzJ79mwsLS3597//jbW1NcHBwaSnp/P2228TEhJiciygH5+cnGwSz969exk3bhwJCQnY2trSo0cP5s6di7W1Na1atQKgQYMGKKVYsmQJffr0YdOmTUyePJmzZ89Sp04dFi5cSP369QH45ZdfGDZsGImJiQQEBJA/x8b/5+/vz/Dhw7l58yY2NjaPfD2FKI5nIpkXQgghngcZmZcJCO5dYvXFfHrvC8xNHTlyhFq1aunreXl5DBkyhFWrVpGbm8vQoUMZM2YM69c/Wp/W6tWrCQsLY/369fj4+HD69GmsrKyKdezvv//OjRs3SElJITw8nBEjRtC+fXsOHDjA+fPnadSoEa+//jrVq1d/oJgsLS355JNP8PHxITk5mc6dO7NgwQKCg4PZsWMHSikOHTqk32QcPHiQoUOHsnHjRnx8fIiKiqJr166cOHECpRTdu3cnODiYMWPG8N///pe+ffvy3nvv6e1VrlwZKysrTpw4od8ACPG4/eWH2QghhBDi4WVmZmIw/P85JMqVK0ePHj0oU6YMBoOB0NBQtm8vcj6JYlm8eDHvvvsujRs3RimFl5cXnp6exTrWysqK0NBQrKyseP3110lPT2fcuHEYDAbq1q1L3bp1OXz48APH1KhRI5o1a0apUqWoWrUqI0eOLPJcFy1axMiRI2natCmWlpYMGjQIGxsb4uLiiIuL4/bt2wQHB2NlZUXPnj1p3LixSR0Gg4HMzPvOnC1EiZGeeSGEEOI55uTkRHZ2tr5+7do1xo8fz7fffsvly/lDfrKzs8nNzcXS0rKwau4rKSmJGjVqPNSx5cqV09suGNtfoUIFfb+trS05OTkPXO/JkyeZMGEC+/fv59q1a9y5c4dGjRoVWv7cuXNERETw2Wef6dtu3bpFamoqSikqV65sNLTG3M1KdnY2jo7mXo8jxOMhPfNCCCHEc6x+/fqcPPn/X5syZ84cTpw4wZ49e8jKymLHjh0AaFqxXqpeKA8PD06fPm12X5kyZbh27Zq+/vvvvz90O3Z2dsWu64033qB27dokJiaSlZXFjBkzijxPDw8PQkNDyczM1Jdr167Rt29fKlasSEpKitHx58+fNzo+NTWVW7duGQ1rEuJxk2ReCCGEeI4FBAQYDS3Jzs7G1tYWR0dHMjIymDZtWrHr8vf3JywszOy+4cOHM3v2bA4cOICmaZw6dYpz584B8NJLL7FixQpyc3P59ttvH2lYz0svvURMTAwZGRn8/vvvRc6fn52djYODA/b29hw/fpx///vfRvsrVKjAmTNn9PURI0awcOFC9uzZg6ZpXL16lejoaLKzs2nevDmlSpVi/vz53Llzh3Xr1rF3716j+rZt20abNm3k4VfxREkyL4QQQjzHgoKCiImJ4fr16wAEBwdz/fp1XFxcaNasGZ06dSp2XUlJSfj6+prd16tXL0JDQ+nXrx8Gg4Hu3buTkZEBwLx589i4cSOOjo785z//oXv37g99PgMHDqRBgwZUrVqVDh060KdPn0LLzp49mxUrVmAwGBgxYoRJ2bCwMAYNGoSjoyOrVq3Cx8eHRYsWMWbMGJycnPDy8iI8PBwAa2tr1q1bR3h4OE5OTnz99dcEBgYa1fef//yHUaNGPfS5CfEw1KN+rfa/zMfHR9u/f//TDsOs0aNHA7BgwYKnHIkQQvzvSkhIwNvbW19/GlNTAoSEhFC+fHmCg4Mfuq3k5GR69erF7t27H7qO59mRI0f4+9//LtdHlIh7/3YAKKUOaJrmc29ZeQBWCCGEeEKKk3g/DjNmzHjkOtzd3SVRLcKLL74o10c8FTLMRgghhBBCiGeUJPNCCCGEEEI8oySZF0IIIYQQ4hklybwQQgghhBDPKEnmhRBCCCGEeEZJMi+EEEIIIcQzSpJ5IYQQ4jk3adKkIt+Uejd/f38WL14MQHh4OC1btnycoT2Qbdu24e7uXiJ1KaU4deoUABMmTGDhwoUlUq8QT5rMMy+EEEI8x9LS0oiMjNQT16dBKUViYiJeXl5PLYaivPPOOzRp0oShQ4dibW39tMMR4oFIz7wQQgjxHAsPDycgIABbW9unHcpfVsWKFalduzYbNmx42qEI8cCkZ14IIYR4QkaPn8DFjMslVl95ZycWfFL0W2VjY2MZOnSovn758mUGDhzInj17uHPnDr6+vixcuPCRh6+cOnWKYcOGER8fj5WVFW3btuXrr7+mVatWADRo0AClFEuWLKFDhw5FxpCRkcFbb73Fd999x/Xr12ndujXr1683aXP+/PksXLiQ77//HldXV0JDQ1m1ahU3b97ktdde45NPPtFvYmbNmsXcuXNRSvHBBx+Y1OXv7090dDQ9e/Z8pOsgxJMmybwQQgjxhFzMuExel5JLFi9Gr7lvmSNHjlCrVi19PS8vjyFDhrBq1Spyc3MZOnQoY8aMMZssP4h//vOfdOjQga1bt3Lr1i32798PwI4dO1BKcejQIX2YzaVLl4qMYeDAgdjb23P06FHs7e35+eefTdp7//33+eabb9i+fTuurq4EBwdz5swZ/WaiX79+TJ8+nY8++ohvv/2W2bNn88MPP1CtWjVGjBhhUp+3tzdr1659pGsgxNMgybwQQgjxHMvMzMRgMOjr5cqVo0ePHvp6aGgoL7/88iO3Y2Vlxblz50hNTcXd3b3IB2eLiuHChQvExsZy6dIlnJycAGjdurVeVtM0JkyYwN69e9m6dStly5ZF0zQWLVrE4cOHcXZ2BiAkJIR+/frx0UcfsWrVKoYMGUK9evUACAsLY+XKlUYxGQwGMjMzH/k6CPGkyZh5IYQQ4jnm5OREdna2vn7t2jVGjhyJp6cnDg4OtGrViszMTHJzcx+pnZkzZ6JpGk2aNKFu3bosXbq00LJFxZCUlISzs7OeyN8rMzOT//u//2PSpEmULVsWyH/I99q1azRq1AhHR0ccHR3p1KkTaWlpAKSmpuLh4aHX4enpaVJvdnY2jo6Oj3IJhHgqJJkXQgghnmP169fn5MmT+vqcOXM4ceIEe/bsISsrix07dgD5Pd6Pws3NjUWLFpGamsqXX37J6NGjC51Bp6gYPDw8yMjIKLSX3MnJiU2bNjFkyBB27doFgIuLC7a2thw9epTMzEwyMzO5cuUKOTk5QP4DrklJSXod58+fN6k3ISGBBg0aPGh5mwkAACAASURBVNI1EOJpkGReCCGEeI4FBASwfft2fT07OxtbW1scHR3JyMhg2rRpxa7L39+fsLAws/tWr15NcnIykJ9wK6WwtLQEoEKFCpw5c6ZYMVSsWJHOnTszevRoLl++zO3bt/Vk/+44/vOf//Daa6+xZ88eLCwsGDFiBOPHj+fixYsApKSk8N133wHQu3dvwsPDOXbsGNeuXTN7ztu3b6dz587FvhZC/FVIMi+EEEI8x4KCgoiJieH69esABAcHc/36dVxcXGjWrBmdOnUqdl1JSUn4+vqa3bdv3z6aNm2Kvb09Xbt2Zd68eVSrVg3IH6M+aNAgHB0dWbVq1X1jWL58OVZWVtSuXZvy5cubfeFV+/btWbZsGV27duXAgQN8/PHHeHl50axZMxwcHGjXrh0nTpwAoHPnzgQHB9OmTRu8vLxo06aNUV0XLlzg2LFjdO/evdjXQoi/CvWoX6v9L/Px8dEKntb/qxk9ejQACxYseMqRCCHE/66EhAS8vb319acxNSXkPwxavnx5goODH7qt5ORkevXqxe7dux+6jr+qt956ixo1auj/7xTiabv3bweAUuqApmk+95aV2WyEEEKIJ6Q4iffjMGPGjEeuw93d/blM5CF/DL8QzyoZZiOEEEIIIcQzSpJ5IYQQQgghnlGSzAshhBBCCPGMkmReCCGEEEKIZ5Qk80IIIYQQQjyjJJkXQgghhBDiGSXJvBBCCPGcmzRpktkXLwnxv04pxalTp55IW/7+/ixevBiADRs28Prrr5dIvZLMCyGEEM+xtLQ0IiMjGTlyJADbtm3DwsICe3t77O3tcXd3p3fv3uzbt8/ouLuTnMzMTIYOHYqbmxsGg4GaNWvy8ccfc/78eb0ee3t7lFLY2dnp6zt37jSJ58KFCwwbNoyKFStiMBioXbs2U6dO5erVqybtFggLC2PAgAFG2zRNo3r16tSpU8ekDX9/f0qXLo29vT0uLi4EBgZy4cIFs9enY8eOzJw5U19PSUlBKWV22++//65fjzfeeAM3NzfKlCnDiy++yLJly4zqrVq1Kra2ttjb2+Pm5sbgwYPJycnR9w8ePBhra2sMBgMGg4F69eoxadIkrly5YjbOAoUln+Hh4VhaWhp9Hvb29qSmpurxWFtbk56ebnTcSy+9hFKKs2fP6nEppdiwYYNRueDgYJRShIeHG23ftm2byfV6Hp09exalFHfu3CmR+rp27cqvv/7K4cOHH7kuSeaFEEKI51h4eDgBAQHY2trq2ypVqkROTg7Z2dnExcVRu3Zt/Pz8+OGHH8zWMX78eHJyckhISODKlSts2LCBGjVqUKVKFXJycvQF4NChQ/q6n5+fUT0ZGRk0b96c69evs3v3brKzs9m8eTOZmZmcPn36gc5rx44dXLx4kTNnzpjciAB8/vnn5OTkcOrUKXJycnj77bfN1tOqVSu2b99uVG/t2rVNtr3wwgu4ublx69Yt2rVrx7lz59i9ezdXrlxh1qxZTJw4kblzjV8KtnHjRnJycoiPj+eXX37ho48+Mtr/7rvvkp2dTVpaGsuWLSMuLg5fX1/9xuZBNW/e3OjzyMnJoVKlSvr+atWqsXLlSn39yJEjXL9+3aSemjVrEhERoa/fuXOH1atXU6NGDZOyERERODs7G5UXxdO3b1/+7//+75HrkWReCCGEeEJGjR1PYL9BJbaMGjv+vm3GxsbSunVrs/uUUri7uzN9+nSGDx/Oe++9Z7bcvn376NevH05OTlhYWFC7dm169uz5wOc/d+5cDAYDUVFRVK1aFQAPDw/mzZtH/fr1H6iuiIgIunXrRkBAQJGJpKOjI927dyc+Pt7s/latWrFr1y7y8vIA2LlzJ8HBwezfv99oW6tWrQBYvnw558+fZ/Xq1VSrVg0rKys6derE/PnzmTJlCllZWSZtuLm50bFjx0JjKF26NI0bN2bDhg1cunTJpJe/pAwcOJDIyEh9PSIigqCgIJNyr776Krt27eLy5csAfPvtt9SvXx83NzejcteuXWPNmjV88cUXJCYmsn///mLHkpuby4wZM6hRowYGg4FGjRqRlJRktgf87uEp4eHh+Pr6Mn78eBwdHalevTo///wz4eHheHh4UL58eaOfh7uPLTi+ZcuWZmOKjo7mb3/7Gw4ODnh4eBAWFqbvK/j8HR0dsbe319+GvHTpUry9vXFycqJjx46cO3dOP2bz5s3Url2bsmXLMmbMGDRNM2rP39+f6OjoYl+zwkgyL4QQQjwhF9MzSK/RucSWi+kZ923zyJEj1KpV677lAgMDOXjwoNle4WbNmhEaGsqyZctITEx8qHMH2LJlC4GBgVhYPFr6UZBE9u/fn/79+/PVV19x69Yts2UvXbrEunXr8PLyMru/SZMm3Lx5k0OHDgH5vfDt27fHy8vLaFtBMrd582Y6d+6MnZ2dUT09evTgxo0bepJ3t+TkZGJjYwuNoYDBYKB9+/ZmhyeVhGbNmpGVlUVCQgK5ubl8/fXXJsOXIP/momvXrnz11VcAREZGmk36165di729Pb169aJjx45GNwr3M3fuXFauXElMTAxZWVksXbqUMmXKFOvYPXv2UL9+fS5dukS/fv14/fXX2bdvH6dOnSIqKooxY8YYDWkqLjs7OyIjI8nMzCQ6Opp///vfrF+/Hsj/GYD8IVY5OTk0b96c9evXM2PGDNatW0daWhp+fn707dsXgPT0dHr06MEHH3xAeno6NWrUYNeuXUbteXt7c/bsWbM3gA9CknkhhBDiOZaZmYnBYLhvuUqVKqFpGpmZmSb7PvvsM/r378/nn39OnTp18PLyIjY29oFjuXTpEhUrVrxvuYYNG+Lo6Kgv//rXv4z2r1u3DhsbGzp06MArr7zCnTt3THo4x44dS9myZXFxcSE9PZ3PPvvMbFs2NjY0bdqUHTt2kJGRQWZmJtWrV8fPz0/fduzYMf3bjfT0dLPnUKpUKb2tAt27d8dgMOg9xtOmTbvvuVeqVImMjPvfpJkTFxdndN3MDYsp6J0v6DWuXLmy2bqCgoKIjIzkypUrbN++ne7du5uUiYiIoE+fPlhaWtKvXz9WrlzJ7du3ixXr4sWL+eCDD6hVqxZKKRo0aEC5cuWKdWy1atUYMmQIlpaW9OnTh6SkJKZMmaL/TFhbWz/UQ63+/v68+OKLWFhYUL9+ffr27Ws03OpeX375JZMmTcLb25tSpUoREhJCfHw8586dIyYmhjp16tCzZ0+srKwIDg42+Waj4PfS3O/cg5BkXgghhHiOOTk5kZ2dfd9yBQ95Ojo6muyztbUlJCSEAwcOcOnSJXr37k2vXr2KTDp37typP4RZt25dAMqVK1fog6h3O3jwIJmZmfoyceJEo/0RERH07t2bUqVKYWNjQ2BgoMlQm/nz53PlyhUOHz7M5cuXSU5OBmDGjBl6XKNGjQLyh1Ds2LGDnTt36kMwWrZsqW/z8PDA09MTABcXF7PncOfOHdLT03FxcdG3rV+/nuzsbLZt28bx48dNHj41JyUlBWdnZwDq1q1b5MPE92rWrJnRdTP3HMLAgQNZsWIF4eHhZnvbC7Rs2ZK0tDQ++OADXnnlFaNnLgCSkpLYunUr/fv3B6Bbt27cuHGj2MNGkpKSzN5sFEeFChX0fxfEde+2h+mZ37NnDy+//DKurq6ULVuWhQsXFvmZnTt3jnHjxuk3T87OzmiaRkpKCqmpqXh4eOhllVJG64D+e2nud+5BSDIvhBBCPMfq16/PyZMn71vum2++oWHDhibDR+7l4OBASEgIV69e5bfffiu0nJ+fn/4Q5tGjRwFo164d33zzjT4W/WEkJyfz448/EhUVhZubG25ubqxZs4aYmBizideLL77I5MmTefPNN9E0jZCQED2uhQsXAvnJ/M6dO9mxY4f+0K6vry+7du0yGmJTcA6xsbEmw5HWrl2LjY0NzZo1M4mhdevWDB48uNCHcAvk5OSwZcsWPYajR48W+jDxw/L09KRatWrExMQQGBhYZNkBAwYwZ84cs0n/8uXLycvL49VXX8XNzY3q1atz48aNYg+18fDwMHuzUfDzd+3aNX1bwSxCD8POzq7YdfXr14+uXbuSlJTElStXGDVqlD7OXSll9hy+/PJLoxuo69ev06JFCypWrEhSUpJeVtM0o3WAhIQEqlatioODw0OfH0gyL4QQQjzXAgICCh0qUNCLOG3aNBYvXsyMGTPMlnv//ffZt28ft27d4saNG8ybNw9HR8dijcW/24QJE8jKymLQoEH6g4IpKSlMmDCh2FP0LV++nJo1a3LixAni4+OJj4/n5MmTuLu7G83UcrdBgwZx8eJFk+kWC7Ro0YLMzEyioqL0pNnJyQlXV1eioqKMkvmBAwfi7u5Or169OHv2LLdv3+a7775j7NixhIWFUbZsWbNtBAcHs3nzZrMPwd68eZMDBw7QvXt3nJycGDJkSJHXoOBzKFhyc3OLLH+vJUuW8OOPP973xm3s2LFs3rzZ6PwLREZGMnXqVP0ziI+PZ+3atURHR3Pp0iUgfzrMe6eyLDB8+HD++c9/kpiYiKZpHD58mEuXLuHq6krlypWJiooiNzeXpUuXPvBMR3d76aWXWLduHdeuXePUqVMsWbKk0LLZ2dk4OztTunRp9u7dy4oVK/R9rq6uWFhYcObMGX3bqFGj+Oijj/Sb1StXrrB69WoAunTpwtGjR1m3bh137txh/vz5JjcS27dvp3Pnzg99bgUkmRdCCCGeY0FBQcTExBhNQZiamqoP32jcuDFHjhxh27ZtdOjQwWwdSimGDBmCi4sLlSpVYvPmzURHR2Nvb/9AsTg7O/Pzzz9jZWVF06ZNMRgMtG3blrJly9734dACERERjB49Wu+VL1hGjRpV6Kw21tbWjB07lvfff9/s/jJlytCoUSNu3rxJvXr19O1+fn5cvHjRKJm1sbFhy5YteHh40LRpUxwcHJgwYQIffvgh77zzTqFxu7q6EhQUZBTDzJkzMRgMODs7ExQURKNGjfj555/vm2TXrVsXW1tbfSmY/Wb37t0m88ybm7azRo0a+Pj4FNkG5H9ebdu2NemVjouL4+zZs7z55ptGn0HXrl3x8vJi5cqV3Lp1i0uXLpn9pgLyb+x69+5Nhw4dcHBwYNiwYfrP6KJFi5g1axblypXj6NGjtGjR4r6xFmb8+PFYW1tToUIFBg0apA8LMmfBggVMmTIFg8HA9OnT6d27t76vTJkyhIaG4uvri6OjI3Fxcbz22mu89957vP766zg4OFCvXj39WRIXFxdWr17NxIkTKVeuHImJifj6+hq1t3LlSv39D49C3TtNjig+Hx8f7UGmYXqSRo8eDeT/YAohhHg6EhIS8Pb21tdHjR1frBloiqu8izML539y33IhISGUL1+e4ODgEmtbiKL89NNPfPHFF4V+W/K/buPGjSxfvpxVq1aZ3X/v3w4ApdQBTdNM7sJKPZ4QhRBCCHGv4iTej0Nhw2eEeFxatmxZ6HzuIn8u/1dffbVE6ip2Mq+UsgYaApUAWyAdOKFp2tkSiUQIIYQQQgjxQIpM5pVSlsBrwHCgNWAN3D1wSlNKpQArgUWapj34pJ5CCCGEEEKIh1LoA7BKqR7AcSAKuAlMBtoDDYCaQDOgH7AG6A4kKKUWKaUqmK9RCCGEEEIIUZKK6pn/DJgJhGuaVtirqfYCXwMTlFJNgfeAEcAHJRqlEEIIIYQQwkRRyXx1TdNuFLciTdP2AIFKKZtHD0sIIYQQQghxP4UOs3mQRP6e424+fDhCCCGEEEKI4pKXRgkhhBDPuUmTJvHpp58+7TCEeKLCw8NLZHrMs2fPopTizp07AAQGBvLtt98+cr0l5ZGTeaXUZqXUDyURjBBCCCFKVlpaGpGRkfqbJrdt24aFhYX+hlB3d3d69+5t8qZQpRSnTuVPUpeZmcnQoUNxc3PDYDBQs2ZNPv74Y86fP2/0tlGlFHZ2dvr6zp07TeK5cOECw4YNo2LFihgMBmrXrs3UqVO5evWqSbsFwsLCGDBggNE2TdOoXr06derUMWnD39+f0qVLY29vj4uLC4GBgVy4cMHs9enYsSMzZ87U11NSUlBKmd32+++/69fjjTfewM3NjTJlyvDiiy/qb2EtULVqVWxtbbG3t8fNzY3BgweTk5Oj7x88eDDW1tYYDAYMBgP16tVj0qRJXLlyxWycBcxdH8hPXC0tLU3eAJuamqrHY21tTXp6utFxL730Ekopzp49q8ellGLDhg1G5YKDg1FKER4ebrR927ZtJtfrUdybOP8VTZw4kdDQ0Kcdhq4keuar/bkIIYQQ4i8mPDycgIAAbG1t9W2VKlUiJyeH7Oxs4uLiqF27Nn5+fvzwg/m+ufHjx5OTk0NCQgJXrlxhw4YN1KhRgypVqpCTk6MvAIcOHdLX/fz8jOrJyMigefPmXL9+nd27d5Odnc3mzZvJzMzk9OnTD3ReO3bs4OLFi5w5c8bkRgTg888/Jycnh1OnTpGTk8Pbb79ttp5WrVqxfft2o3pr165tsu2FF17Azc2NW7du0a5dO86dO8fu3bu5cuUKs2bNYuLEicydO9eo7o0bN5KTk0N8fDy//PILH330kdH+d999l+zsbNLS0li2bBlxcXH4+vrqNzYPqnnz5kafR05ODpUqVdL3V6tWzeiNrEeOHOH69esm9dSsWZOIiAh9/c6dO6xevZoaNWqYlI2IiMDZ2dmo/POuSZMmZGVlsX///qcdClACb4DVNM2rJAIRQgghnncjR43lj4uXSqy+CuXL8eXC+UWWiY2NZejQoWb3KaVwd3dn+vTpZGRk8N5775lNUPbt28cHH3yAk5MTALVr16Z27doPHO/cuXMxGAxERUVhYZHfn+jh4cG8efMeuK6IiAi6devG9evXiYiIoHHjxmbLOTo60r17d7744guz+1u1asWsWbPIy8vDwsKCnTt3EhwczJQpU4y2tWrVCoDly5dz/vx5tm/fjp2dHQCdOnVi/vz5DBs2jOHDh+Pg4GDUhpubGx07diQ+Pt5sDKVLl6Zx48Zs2LCBmjVrsmzZMsaMGfPA1+R+Bg4cSGRkJP/4xz+A/GsYFBTE5MmTjcq9+uqrREVFcfnyZZycnPj222+pX78+2dnZRuWuXbvGmjVrWLRoEUFBQezfvx8fH59ixbJ3715Gjx7NyZMnsbW1pX///sydO1e/zo6OjgBs3ryZ8uXLM2LECA4dOoRSio4dO/LFF1/oZZKSkhg3bhw7d+4kLy+Pvn378vnnn5u0+c4777B7926io6MBmDBhAjExMVhYWDBkyBCmTZuGpaUlubm5vPfee4SHh+Pg4MBbb71lUpe/vz/R0dHFPt/HScbMCyGEEE/IHxcvkXypXoktxbkxOHLkCLVq1bpvucDAQA4ePGi2V7hZs2aEhoaybNkyEhMTH+rcAbZs2UJgYKCeyD+sgiSyf//+9O/fn6+++opbt26ZLXvp0iXWrVuHl5f5vscmTZpw8+ZNDh06BOT3wrdv3x4vLy+jbQVJ5ubNm+ncubOeyBfo0aMHN27cYPfu3SZtJCcnExsbW2gMBQwGA+3btzc7PKkkNGvWjKysLBISEsjNzeXrr782Gb4E+TcXXbt25auvvgIgMjKSoKAgk3Jr167F3t6eXr160bFjRyIjI4sdy7hx4xg3bhxZWVmcPn2a3r17A/nXGvKHMuXk5NC8eXM0TWPSpEmkpqaSkJBAUlISYWFhAOTm5vLKK6/g6enJ2bNnSUlJ4fXXXzdqKy8vjxEjRnD48GG+//57ypYty6BBgyhVqhSnTp3il19+4fvvv2fx4sUALFq0iE2bNvHLL7+wf/9+1qxZYxK/t7e3/vPxtBXrt0kplauUalLIvkZKqdySDUsIIYQQJSEzMxODwXDfcpUqVULTNDIzTV8t89lnn9G/f38+//xz6tSpg5eXF7GxsQ8cy6VLl6hYseJ9yzVs2BBHR0d9+de//mW0f926ddjY2NChQwdeeeUV7ty5o/e2Fhg7dixly5bFxcWF9PR0PvvsM7Nt2djY0LRpU3bs2EFGRgaZmZlUr14dPz8/fduxY8do3bo1AOnp6WbPoVSpUnpbBbp3747BYMDDw4Py5cszbdq0+557pUqVyMjIuG85c+Li4oyum7lhMQW985s3b6Z27dpUrlzZbF1BQUFERkZy5coVtm/fTvfu3U3KRERE0KdPHywtLenXrx8rV67k9u3bxYrVysqKU6dOkZ6ejr29Pc2aNSu0rJeXF+3bt8fGxgZXV1cmTJigD4Pau3cvqampzJo1Czs7O0qXLm300Ovt27fp27cvGRkZbNy4kTJlyvDHH38QGxvLp59+ip2dHeXLl2f8+PH6zcuqVasIDg7Gw8MDZ2dnJk2aZBKTwWAw+7vyNBT31lgVsc8S0EogFiGEEEKUMCcnJ5PhEeYUPORZMHThbra2toSEhHDgwAEuXbpE79696dWrV5FJ586dO/WHMOvWrQtAuXLlCn0Q9W4HDx4kMzNTXyZOnGi0PyIigt69e1OqVClsbGwIDAw0GbM9f/58rly5wuHDh7l8+TLJyckAzJgxQ49r1KhRQP5Qmx07drBz5049EWzZsqW+zcPDA09PTwBcXFzMnsOdO3dIT0/HxcVF37Z+/Xqys7PZtm0bx48fN3n41JyUlBScnZ0BqFu3bpEPE9+rWbNmRtfN3HMIAwcOZMWKFYSHh5vtbS/QsmVL0tLS+OCDD3jllVeMnrmA/KEtW7dupX///gB069aNGzdumNxUFWbJkiWcPHmS2rVr07hxYzZt2lRo2YsXL/L6669TuXJlHBwcGDBggH4tk5KS8PT0pFQp8yPHT506xX//+1+mTp2KtbU1AOfOneP27dtUrFhRv/EZOXIkFy9eBCA1NRUPDw+9joLP/m7Z2dlmf1eehiKTeaWUhVLKsqDsn+t3L3ZAZ+D+P51CCCGEeOLq16/PyZMn71vum2++oWHDhibDR+7l4OBASEgIV69e5bfffiu0nJ+fn/4Q5tGjRwFo164d33zzDXl5eQ92EndJTk7mxx9/JCoqCjc3N9zc3FizZg0xMTFmk+UXX3yRyZMn8+abb6JpGiEhIXpcCxcuBPKT+Z07d7Jjxw79oV1fX1927dplNMSm4BxiY2NNhiOtXbsWGxsbsz3MrVu3ZvDgwYU+hFsgJyeHLVu26DEcPXq00IeJH5anpyfVqlUjJiaGwMDAIssOGDCAOXPmmE36ly9fTl5eHq+++ipubm5Ur16dGzduFHuozQsvvMDKlSu5ePEi7733Hj179uTq1asoZdp/PGnSJJRSHD58mKysLKKiotC0/H5kDw8Pzp8/X+jsN97e3ixbtozOnTtz4sQJ/RgbGxvS09P1G5+srCz957RixYokJSXpdZw/f96k3oSEBBo0aFCsc33cCk3mlVJTgdvALfJ73nf9uX73kgVMAVY/9kiFEEII8cACAgKMZma5m6ZppKSkMG3aNBYvXsyMGTPMlnv//ffZt28ft27d4saNG8ybNw9HR8dijcW/24QJE8jKymLQoEGcO3cOyO+JnjBhAocPHy5WHcuXL6dmzZqcOHGC+Ph44uPjOXnyJO7u7kYztdxt0KBBXLx40WS6xQItWrQgMzOTqKgoPWl2cnLC1dWVqKgoo2R+4MCBuLu706tXL86ePcvt27f57rvvGDt2LGFhYZQtW9ZsG8HBwWzevNnsQ7A3b97kwIEDdO/eHScnJ4YMGVLkNSj4HAqW3NwHG+28ZMkSfvzxx/veuI0dO5bNmzcbnX+ByMhIpk6dqn8G8fHxrF27lujoaC5dyn+Wo2rVqiZTWRaIiooiLS0NCwsLvYfb0tISV1dXLCwsOHPmjF42Ozsbe3t7HB0dSUlJYdasWfq+Jk2aULFiRSZOnMjVq1e5ceMGu3btMmqrb9++zJgxg3bt2nH69GkqVqxIhw4deOutt8jKyiIvL4/Tp0/rvye9e/dm/vz5JCcnc/nyZZNhXgDbt2+nc+fORV6/J6WonvltwHTgffKH2Sz9c/3uJRR4DRj3OINUStVRSv2glLqmlEpVSk2/6xuDwo6xVkrNUkrtVEpdV0qZHQqklApXSmlmlgd/TF8IIYT4iwkKCiImJsZoCsLU1FR9+Ebjxo05cuQI27Zto0OHDmbrUEoxZMgQXFxcqFSpEps3byY6Ohp7e/sHisXZ2Zmff/4ZKysrmjZtisFgoG3btpQtW/a+D4cWiIiIYPTo0XqvfMEyatSoQqdHtLa2ZuzYsbz//vtm95cpU4ZGjRpx8+ZN6tWrp2/38/Pj4sWLRsmsjY0NW7ZswcPDg6ZNm+Lg4MCECRP48MMPeeeddwqN29XVlaCgIKMYZs6cicFgwNnZmaCgIBo1asTPP/983yS7bt262Nra6kvBHPe7d+82mWfe3LSdNWrUKNYsLM7OzrRt29aktzwuLo6zZ8/y5ptvGn0GXbt2xcvLi5UrV3Lr1i0uXbpU6Fj4b7/9Vh9GNG7cOL766itKly5NmTJlCA0NxdfXF0dHR+Li4pg6dSoHDx6kbNmydOnSxegbBUtLSzZu3MipU6eoUqUK7u7ufP311ybtDRo0iClTptCmTRvOnj1LZGQkt27dok6dOjg5OdGzZ099+NSIESPo2LEjDRo0oGHDhibfYOzbtw87OzuaNDH7OOkTpwq+piiyUH4v/SJN01Iff0gmbTsBR4FjwMdADWAO8ImmaZOLOM4R+A3YS/4UnG00TTP57kYpFQ40Be69DY7XNO1GUbH5+Phof5U5Ru81evRoABYsWPCUIxFCiP9dCQkJeHt76+tPY2pKgJCQEMqXL09wcHCJtS1EUX766Se++OKLQr8teZb16NGDYcOGERAQ8NjauPdvB4BS6oCmaSZ3YcWdZ35xUYm8Uqq5pmmmczGVjFGALRCoaVoWsFkp5QCEKaVm/rnNhKZpmUopZ03TNKXUGKBNEW1c551VAwAAIABJREFU1TQtruRDF0IIIf6/4iTej0Nhw2eEeFxatmxpNKvM82Tt2rVPOwQjxZ3N5pBSymROIpVvCmB+MF7J6Ax8d0/S/hX5CX7rog7UivO1gxBCCCGEEM+o4ibz3wFrlVILlFKlAZRSHuSPq58M3H/i1IdXGzh+9wZN084D1/7cVxLqKKWylFI3lVI/KaWKvEkQQgghhPh/7d15mGRlefD/783AMMM6LDNuPSNbh3F545JRX6IRFRNFYzQGgnEBFF+iEwNO1ESNyOISFXUk6qjEIKBxgxD9ISCCC4iKCopBWexRtpJtGGaGZZpZmPv3x6mGoqa6+3TXqa6q7u/nuurqruc556m7e+b0ueupZ5F6QalkPjNfAxwFvBa4IiKOAX4FLASem5kf6FyI7Aa0WpV/Tb2uXb8E3ga8DHgNxbr5F422SZYkSZLUK8qOmSczT4+IXwKXA8uBKykmld7XqeAaX75FWYxSPrGGM095RKMR51FMtn030Gpo0dHA0QCLFi1q9+UlSdNcZrZcO1uSWpnoKPGyw2yIiD8GvkyxvvxFwBLggxExe0KvOHFrgFZbbO1K6x77tmTmMHA+8PRR6k/NzCWZuWT+/PlVv7wkaRqZM2cOq1evnvDNWdLMlJmsXr2aOXPmlD6nVM98RPwj8BHgauBpmfm7iHgDcApwYES8KjOvnUzQJVxH09j4+nj9HWkaS18x//JKktoyMDBArVZj1apV3Q5FUp+YM2cOAwMDpY8vO8zmE8BHgX/NzM0AmXlaRFxG0Vt/BUVy3QkXAO+IiJ0z89562WHAMB1YRSci5lKsoHNl1W1LkmaW7bbbjr333rvbYUiaxsom8y/KzIubCzPztxFxANDJBWw/CxwDnBMRHwb2AU4APt64XGVErAQuycyjGsoOpniT8dT680PqVT/PzJsiYlfgW8CXgJXAnsAy4HHA33bwZ5IkSZLaViqZb5XIN9RtAkbfv7hNmbkmIg4CPgWcSzFOfjlFQt9oW4qVaBp9Bnh8w/Oz6l9fD5wObABWUSyvuQB4APgJcGBm9ubWrpIkSVJd6dVsIuJpwHHAcykmpD4zM38RER8ELs3Mb3coRjLzGsbewZXM3KtMWVP9A8Ar24lNkiRJ6pZSq9lExHMoeqwXU4yRbzxvC/Cm6kOTJEmSNJayS1N+iGIX2CcB/9RU9wtGWcZRkiRJUueUHWbzdOCVmZkR0bxk412AC65LkiRJU6xsz/wDwA6j1D0GWFdNOJIkSZLKKpvMXwa8NSIaV4sZ6aE/CvhepVFJkiRJGlfZYTbHAT8CfgWcTZHIHxERHwf+BHhGZ8KTJEmSNJpSPfOZ+SuKJSnvAP4VCOAt9eoDM/P6zoQnSZIkaTSl15nPzF8AB0XEHGB3YG1mru9YZJIkSZLGVDqZH1HfaOnWDsQiSZIkaQJGHWYTEcvqvfClRcTTI+LF7YclSZIkaTxjjZk/HLgxIj4UEU8Z7aCI2C0iXhcR36FY9WaXqoOUJEmStLWxhtk8HXgd8DbgnyPiHuBqYBWwAdgN2AfYt/78a8ATM/PGTgYs9Zvly5czNDQ0an2tVgNgYGBgzHYGBwdZtmxZpbFJkqT+Nmoyn5kJnAmcGRHPAl4MPIsigZ8DrAZ+CHwA+GZmru18uNL0Mzw83O0QJElSnyo1ATYzfwr8tMOxSNPSeL3pS5cuBWDFihVTEY4kSZpGyu4AK0mSJKnHmMxLkiRJfcpkXpIkSepTE940Sp033uonZYycPzIeux2uoiJJktSbTOZ70NDQEEND17Hffgsn3cacOcU/beb9bcWycuUtbZ0vSZKkzjGZ71H77beQU055e7fD4NhjP9rtECRJkjSK0sl8ROwAvAE4ENidYp35HwCnZ+b6jkQnSZIkaVSlJsBGxKOBXwD/DiwBdgCeAXwKuDIiHtWxCCVJkiS1VHY1m48AuwF/lpl7Z+YBmbk38BxgHvDhTgUoSZIkqbWyyfzBwLsy80eNhZn5Y+A9wEurDkySJEnS2Mom8zsBt45SV6vXS5IkSZpCZZP564HXjVL3WuC6asKRJEmSVFbZ1Ww+CpxZn+j6ZeA24NHAq4AXMnqiL0mSJKlDSiXzmfml+tKUJwGfb6i6A3hTZn65E8FJkiRJGl3pdeYz89SI+DywP8U683cD12fmlk4FJ0mSJGl0E9oBtp64X9uhWCRJkiRNwER2gN0FeAmwCJjTVJ2Z+b4qA5MkSZI0tlLJfEQ8GziXYoOoVhIwmZckSZKmUNmlKT8B3Ag8A5iTmds0PWZ1LEJJkiRJLZUdZvME4G8z88pOBiNJkiSpvLI98zcD23cyEEmSJEkTUzaZPxF4Z30SrCRJkqQeMOowm4g4s6noUcANEfETijXmG2VmHlF1cJIkSZJGN9aY+edSrFIzIoF7gCe1ODZblEmSJEnqoFGT+czcawrjkCRJkjRBZcfMjykinBwrSZIkTbHSO8C2EhFzgKXA24DHVRKR+s7y5csZGhoa85harQbAwMDAmMcNDg6ybNmyymKTJEmazsZM5iNiEfAqYBGwEvhCZq6LiNnAPwLvABYAP+50oOpvw8PD3Q5BkiRp2hlrNZtnA+cBjctR/n1E/BVwDsVE2F8Ab8jM8zsapXpamZ70pUuXArBixYpOhyNJkjRjjDVm/nhgNfAcYAeK5P0Oil74fYDXZ+YSE3lJkiSpO8YaZvMM4JjMHBlCc21ELAV+DRybmWd0PDpJkiRJoxqrZ35XoHlW48jzn3UmHEmSJElljbc05YNNz7fUv27sQCySJEmSJmC8pSlPjIi7Gp5H/ev7IuLuhvLMzCOqDU2SJEnSWMZK5m8GntCi/CaKybCNsrKIJEmSJJUyajKfmXtNYRySJEmSJqitHWClma7M7rfjGTl/ZC3+driDriRJM4vJvNSGoaEhfnn1b4id5k+6jdxYjFK76oY724ol71vV1vmSJKn/mMxLbYqd5rPtkkO6HQabrzi72yFIkqQpNt7SlJIkSZJ6lMm8JEmS1KdM5iVJkqQ+VSqZj4g9I2JRU9nfR8QnI+IvOxOaJEmSpLGU7Zk/DXjnyJOIOA74DPBq4JsRcVgHYpMkSZI0hrLJ/BLguw3P3wR8MDP3AD4N/FPVgUmSJEkaW9lkfnfgDoCIeDLwaOCMet03gP2rD+1hEfHEiPhuRKyPiFsj4qSImDXOObMj4uSI+GFEDEdEjnHsyyPi6oh4ICKu8ZMGSZIk9YOyyfxqYKD+/QuAWzNzZNvL7SbQzoRFxG7AxUACLwdOAt4GnDjOqTsAbwTWAz8eo/3nAP8NfB84GDgP+EpE/EXbwUuSJEkdVHbTqIuBEyJiT4pE+hsNdYuBm6oOrMGbgLnAKzPzHuCiiNilHs9H6mVbycy1EbF7ZmZEvIXiTUgrxwGXZuYx9effj4gnAe8FvlPtjyJJkiRVp2yP+j8DtwD/BvyOR/aKvwa4rOK4Gh0MXNiUtH+VIsE/cKwTM3PUoTUAEbE98Hzg601VXwUOiIhdJx6uJEmSNDVK9cxn5h3An49S/ULggcoi2tpi4HtN8dwcEevrdee20fa+FMOErmsqv5bijc4fAT9vo31JkiSpY8oOsxnVaMNcKrQbsLZF+Zp6Xbtt06L9NU31kiRJUs8ZNZmPiNMan2fmGzofzqhaDZeJUcqraD9Ge92IOBo4GmDRokXN1dNOrXYnDzywmaVLl7bVztBQMV+63XYGBwdZtmxZW21IkiRNF2P1zO89ZVGMbQ0wr0X5rrTusZ9o27Rof+T5Vu1n5qnAqQBLliyp6s1Ezxoe3sCmLVu48/6722onty3eH7XTzqpbbm8rBkmSpOlm1GQ+M58/lYGM4TqKsfEPiYiFwI5sPdZ9on4HbKq3f0lD+WJgC/DbNtufFuYvfDSHvuOIbofBWSefMf5BkiRJM0jH1oev0AXAiyJi54ayw4BhHpmAT1hmbqBYX/7QpqrDgJ9k5rp22pckSZI6qfQE2IjYBngmsAiY01yfmWdWGFejzwLHAOdExIeBfYATgI83Tr6NiJXAJZl5VEPZwRQ9+E+tPz+kXvXzzBxZG/99wA8i4hMU6+e/pP54cYd+HkmSJKkSpZL5iHgiRaK7Lw9PDm2UQEeS+cxcExEHAZ+iWIZyLbCcIqFvtC0wq6nsM8DjG56fVf/6euD0evuX1ZP89wNvBm4AXp2ZbhglSZKknla2Z35F/di/Ba4GNnQsohYy8xpG38F15Ji9ypSNcu43eOSutpIkSVLPK5vMPx04MjPP6WQwkiRJksorOwH2LmBjJwORJEmSNDFlk/nlwD9ERPOYdEmSJEldUnaYzXxgf+CaiLgIaN75JzPz+EojkyRJkjSmssn8exq+H2xRn4DJvCRJkjSFSiXzmdkPm0tJkiRJM0rpTaM0dWq1GuvX38exx36026EwPLwB7mweVSVJkqReYI+7JEmS1KdK98xHxNEUO6TuD2zfXJ+ZrnRTkYGBATLv55RT3t7tUHjJS45l3oLdux2GJEmSWiiVzEfE4cAngTOApwCnAdsBfwWsAv6rUwFKE7V8+XKGhobGPKZWqwHFG6fRDA4OsmzZskpjkyRJqlLZYTZvBf6NomceYEVmHgHsAwwDqzsQm9Qxw8PDDA8PdzsMSZKktpQdZjMIXApsqT9mA2Tmmoj4APAB4FMdiVCaoDK96UuXLgVgxYoVnQ5HkiSpY8r2zA8D22RmArdT9MiPuA94bNWBSZIkSRpb2Z75q4H9gIuBHwLvjogbgM3ACcB1HYlOkiRJ0qjKJvOn8nBv/HEUSf1l9ef3Aq+oOC5JkiRJ4yi7A+zXGr5fGRFPAg4AdgB+nJl3dSg+qafVajXy3nVsvuLsbodC3ruKWm1jt8OQJElTaFI7wGbm/RS985IkSZK6ZELJfEQsBBYCc5rrMvN7VQWl3rFhw0ZW3XI7Z518RrdDYdUtt7Nxp/XdDuMRBgYGuGvTbLZdcki3Q2HzFWczMLCg22FIkqQpVHbTqH0oNoZ65khR/WvWv0/AHWAlSZKkKVS2Z/7zwCKKzaOuAxyYO0Nsv/1s5j1uAYe+44huh8JZJ5/Bgh1373YYfa2q3XHBHXIlSeoFZZP5ZwBHZuZ/dzIYSd3nzriSJPWPssl8DXvjpb7n7riSJE0vZXeA/SDwLxGxYyeDkSRJklRe2XXmvxgRi4EbI+JyYM3Wh2T3B1VLkiRJM0jZ1WyOBN4FPAg8na2H3GS1YUmSJEkaT9kx8ycC/wMclZlrOxiPJEmSpJLKjpnfA1hhIi9JkiT1jrLJ/GXAEzoZiCRJkqSJKTvM5ljg6xGxBvg2W0+AJTO3VBmYeseqW27nrJPPaKuNtXfeDcC8BZPf9GnVLbezYLGbRkmSJI0om8xfW/965ij1OYG21Efmzt2eeGBz2zuvrtu8GqCtdhYs3p3BwcG24pjuarXaQ+vET9bIDrHttgPuEitJUqeVTcBPwhVrZqSBgQVE7Nj2BkJuRDQ1hoeH+cUvryZj10m3EbkZgCuvurmtWCLXtXW+JEka37jJfETMoljJ5tbMXNX5kCS1I2NXHtzu2d0Og1mbftTtECRJmvbK9MwncAXwUuA7nQ1H6j953yo2X3H25M9fXywSFTvMazsO5sxuqw1JktRfxk3mM3NLRNwC7DgF8Uh9pYox/ENDxXCUwb0XtNnSAmq1Gvfc71z0Tlq+fPlD8wpaqdVqAAwMDIzZjvMJJElVKDtm/nPAWyPivMxs3v1VmjLjJVJlVTXJc3BwsKfmEyxdupQ77mpvrLvaMzw83O0QJEkzSNlkfmdgX+D3EfFt4DYeOSE2M/P4qoOTmg0NDXHVNdew3fxHtdXOZgKA36xaPek2Nq26o60Y1J/G6013srckaSqVTebf3fD9G1rUJ2Ayrymx3fxHscehh3c7DFafNdpKrZIkSVOjVDKfmWV3ipUkSZI0RUzSJUmSpD5lMi9JkiT1qdLJfEQcHRG/jIj1EfFg86OTQUqSJEnaWqlkPiIOBz4J/ByYA3wB+BJwD/A74KROBShJkiSptbI9828F/g14c/35isw8AtgHGAYmv76fJEmSpEkpm8wPApcCW+qP2QCZuQb4AHBsR6KTJEmSNKqy68wPA9tkZkbE7RQ98pfX6+4DHtuJ4KRmtVqNTevu6Yk13jfdeQe1Db2122etViNyHbM2/ajboRC5jlqt1u0wJEma1som81cD+wEXAz8E3h0RNwCbgROA6zoSnSRJkqRRlU3mT6XojQc4jiKpv6z+/F7gFRXHJbU0MDDAuu1X98wOsAPz9+h2GI8wMDDAHXdt4cHtnt3tUJi16UcMDAx0OwxJkqa1sjvAfq3h+5UR8STgAGAH4MeZeVeH4pMkSZI0irI984+QmfdT9M5LkiRJ6pKJbBq1Y0QcExFnR8T3I2KwXv6qiFjcuRAlSZIktVKqZz4iFgI/AAYoJrs+Gdi5Xv184IXAGzsQnyRJkqRRlO2Z/xiwgWK9+T8BoqHuEuC5FcclSZIkaRxlx8z/OXB0Zt4cEbOa6v4APK7asCRJkiSNp2zP/GyKJShb2RXYVE04kiRJksoqm8z/L/A3o9QdDFxZTTiSJEmSyio7zOZk4OyIAPhyveyJEfFy4CjgrzoQmyRJkqQxlN006pyIWAp8CHhDvfhMiqE3b8nMb3coPmkrm1bdweqzzmyrjc1r1wCw7bzd2oqDHtsBVpIkzSylN43KzM9GxBeBPwXmA6spdn8dbSy9Zojly5czNDQ05jEj9UuXLh3zuMHBQZYtWzZmfRWG1t5dtNdOMj5/j8riqVLkOmZt+lEb598PQMaObcchSZI6a0I7wNZ3fr2oQ7FoGps7d24l7YyV6E/EyJuKFStWVNJer6jizcXIG6/BwUVtt9WLb3YkSZpOSifzETEPWAYcQLEU5R+AHwOfyMy1nQnvodd+IvDJ+muvBT4PnJiZD45z3q7AJ4BXUEz2/RZwTGaubjjmdOCIFqc/ITOvq+QHmOaqSrDVvir+LabrGx1JkqajsjvAPgW4mGIZysuBa4BHAe8GlkbEQZl5dScCjIjd6q99DfByYF+KTay2Ad4zzulfA/an2J12C/Bh4BvAnzUddx3w+qayG9uJW5IkSeq0sj3z/04xRn5JZt40UhgRewHfpug1f17FsY14EzAXeGVm3gNcFBG7ACdExEfqZVuJiAOAFwEHZual9bI/AD+NiBdm5sUNh9+fmZd3KH5JkiSpI8quM/8M4LjGRB4gM28EjgeeWXFcjQ4GLmxK2r9KkeAfOM55d4wk8gCZ+TPghnqdJEmS1NfK9syvBjaMUvdAvb5TFgPfayzIzJsjYn297twxzms15v3ael2jJ0bEPcD2wM+Bf83MS9qKWpI6rMxKUrVaDYCBgYExjxtvJSlJUm8q2zP/GeAdETGnsTAi5gJvBz5ddWANdqOY9NpsTb2u3fN+CbwNeBnwGmAWxVCeTn7aIElTYnh4mOHh4W6HIUnqkLI98zsAjwdujojzgTsoJsC+BBgGdoyIk+rHZmYeX3Gc2aIsRimf0HmZecojKiPOo5hs+26KVXBoqj8aOBpg0aL2l+6TpMkq05Pu6kSSNL2VTebf3fD94S3q/7Xh+6QYR1+VNcC8FuW70rrnvfG8+S3K5411XmYO19+wvGyU+lOBUwGWLFky3psJSZIkqWNKJfOZWXY4TidcR9MY94hYCOxI6zHxjec1L0FJva1vlHhdE3VJknpEVXNEqpofMl48zlfRVOlmkl7WBcCLImLnhrLDKIb3jDVJ9QLg0RHxnJGCiFgC7FOva6k+D+Bg4Mp2gpYkSVOrl+aI9FIsmt5K7wA7IiK2B44CngjcBnwhM2+tOrAGnwWOAc6JiA9TJOMnAB9vXK4yIlYCl2TmUQCZ+ZOIuBA4MyLezsObRl02ssZ8fYfYbwFfAlYCe1Lscvs44G87+DNJkqQJ6LU5IuPF43wVTZVRk/n6hNa/ycwnNZRtD/wU+D8UE0kBjomI/5uZN3QiwMxcExEHAZ+iWIZyLbCcIqFvtC3FSjSNXlU/9jSKTyG+RfHGYMQGYBXFTrILKJbZ/AnFRlNXVPqDSJIkSRUbq2f+hcD5TWX/APwx8BHgA8ATgHMokuGjOhEgQGZeA7xgnGP2alG2Fnh9/dHqnAeAV1YQonpImXGVI/UjPSetTMdxjFX9bmB6/n4kSeo3Y42Z3xf4WVPZKyiG1rwrM++t76h6MnBQh+KTOmLu3LnMnTu322H0JH83kiT1j7F65nelWE8egIiYDTwTODszG1d6+RXwmM6EJ02cvcWj83cjSdL0MlbP/B+AvRqePwuYDfy46bjtgPurDUuSJEnSeMZK5n8IvDUi5kVEUEwc3QKc13Tc04Bah+KTJEmSNIqxhtmcSLHW+h0Uq7zsDHw2M29qOu5I4AedCE6SJEnS6EZN5jPzhoh4KvBGYDfgZ5n5xcZjIuKxwHeBMzsapSRJkqStjLlpVGbeDLx3jPpbgX+sOihJkiRJ4xtrzLwkSZKkHmYyL0mSJPUpk3lJkiSpT405Zl6SpH61fPlyhoaGxjymVitWVh4YGBj1mMHBQTdck9SzTOYlSTPW8PBwt0OQpLZMKJmPiD2B/wvsAZybmXdHxBxgY2Zu6USAkiRNRpne9KVLlwKwYsWKToejMZT5FKWMkTZG/l0ny09j1E9KJfP1HWA/QrEM5WwggWcAdwPfBC4D3tehGCVJ0jQ2NDTE0NB17LffwrbamTOnSGsy7590GytX3tJWDNJUK9sz/y7gLcBJwEXATxvqzgVeh8m8pD5XRe9gVT2DYO+gZpb99lvIKae8vdthcOyxH+12CNKElE3m3wiclJn/FhGzmupWAvtWG5ZWrrylrT8otdqdAAwMLGg7jsHBxW21IfWLKnoHq+gZBHsHJUnllE3mHwdcPkrdRmDHasIRFL1x7Xrggc0ARLT3TzM4uLiSeKR+Ye+gJKmflE3m/wA8Gfh+i7qnADdUFpEq+VjdSV2SJE1OrVZre6icQ+40Vcom82cB742IX/BwD31GxB8BbwNO7URwkiRJU214eJjfXHcN8xc+etJt5LYBwJ33391WLKtuub2t8zX9lU3mTwD+FLgUuKledhawEPgx8KHKI5OkGc7eQal75i98NIe+44huh8FZJ5/R7RDU40ol85k5HBHPA14NvIhi0utqihVs/iszN3csQkmaoewdlCSNp/SmUZn5IPDF+kOSNAXsHZQkjWWbbgcgSZIkaXLK7gB7A8Wur61sAdYBVwL/npm/rig2SZIkSWMo2zN/CTALeAzFMpSX178+luINwU3Ay4CfR8SfdiBOSZIkSU3KJvM/pOh93zszD8rMV2fmQcDewD3ABcB+wK+AEzsSqSRJkqRHKJvM/wtwUmY+YjmDzLwNeD/wL1nsXX4K8MxqQ5QkSZLUStnVbBYCG0apewB4XP37PwCz2w1KkqSxLF++/KE19NtR1Tr8rsEvqVvKJvPXAm+LiO9k5kNJfUTMAd5er4diDP0d1YYoSdIjDQ0N8curf0PsNL+tdnJjsbbDVTfcOfk27lvVVgyS1I6yyfw/A98Cbo6I84E7gQXAS4B59a9Q7BL7naqDlCSpWew0n22XHNLtMNh8xdndDkHSDFZ2B9iLI+LpwHuA51KsanMbcDHw/sy8tn7cMZ0KVJLU28oMfanVagAMDAyMeZzDViSpnInsAHsN8OoOxiJJmuaGh4e7HYIkTSulk3lJkzNeb2XZCXj2VKrXlfn/OfL/fMWKFZ0OR5JmhNLJfEQsAP4O2B+Y01SdmXlUlYFJM8XcuXO7HYIkSepTpZL5iNifYtfXWcCOwF3A7vXnayg2lJLUgr3pktRfNmzYwKpbbuesk8/odiisuuV2Nu60vtthqIeV3TTqZOBnwKOAAA4G5gJvBNYDf92R6CRJkiSNquwwm2cAb+LhjaO2yczNwGkRsSfwCeD5HYhPkmYsewel7th+++3Z9bF7cOg7juh2KJx18hks2HH3boehHlY2md8JuDszt0TEOmDPhrorgPdWHpkkSaOo1Wrkvet6Yo33vHcVtdrGbochaYYqm8zfCDy6/v31wKHAt+vP/xJYW21YkiR7ByVJ4ymbzF8E/DlwFvBx4KsR8RxgM7AY+EBnwpMkaWsDAwPctWl2z+wAOzCwoNthSJqhyibz7wK2B8jMr0fEMHAYsANwCvAfnQlPkiRJY3H35Zlt3GQ+ImZR9L7fOlKWmecC53YwLkkStD0Bdu2ddwMwb0F7Q2RW3XI7CxY7zEbqV+6+PH2V6ZlPikmuLwW+09lwJEkj5s6dy+DAYFttrNu8GqDt8e4LFu/O4GB7scx04/We2nOqyeq13Zf9pGBqjZvM11ewuYVisyhJ0hQZGBho+8Y7lTdwtceeU80k/n+vTtkx858D3hoR52Wm629Jkrou71vV9tKUub5YjC12mNdWHDD+BNjxehd946Xpotc+KZjuyibzOwP7Ar+PiG8Dt1EMvxmRmXl81cFJktRKVUN+hobWFe3t3c5qNAscgiSpa8om8+9u+P4NLeoTMJmXpGmqzBjYMkbaGOmVm6zBwcFKevTsHZTU70ol85m5TacDkST1rqGhIa665hq2m/+ottrZTADwm1WrJ93GplV3tBWD1G9qtVrbb4CreiMNTkrtNWV75iVJM9x28x/FHoce3u0wWH3Wmd0OQRWr1WqsX38fxx770W6HwtDQLWzcuLmnloWdPWu7tt9MV/FGGmDjbX9gaGio7U/qqvyUbqa/sSidzEdEAC8DngvsAZyQmTdFxIHAUGbeOmYDktTjei2h2GGHnbodhjQjbbvttixevLitNqpcFrZWq7Fx3u498Wb69k+fzH0PbOSqG+5sq53cWEy9bKedYvK5SiXzEbEbcD7wLOAeigmxnwRuAv4fcDdwTIdilCR1Wa1WY9O6e3qiV3zTnXdQ29Bby9pVMadgJg+DGBgYIPN+Tjnv4gWZAAAWmklEQVTl7d0OhWOP/SgRO/bUsrBLly5lXZs96lWKneaz7ZJDuh1G26tZTRdle+ZPBhYCzwZ+DjQuT3kx8I6K45KkKdeLCYX6w9DQEL/45dVk7DrpNiI3A3DlVTe3FUvkurbOl8aSmzfDve0vC1tJLPeuolZzxfSyyfzLgbdn5k8iYlZT3c0Uib4kaQqV6Q0u29s7Xk/uwMAA67Zf3RMf868+60wG5u/R7TC2krErD2737G6HwaxNP+p2CJKmUNlkfifgD6PUzYH6rApJUk+ZO3dut0OQNI3EttvCDnv2zDCbgYF29oiYHsom89cDf0ExpKbZgcDVlUUkSSqln8ZES5o++m335fE+xazVakDxCeRYenUuStlk/tPApyNiHfDletm8iHg98Bbg6E4EJ0lSP6jVakSu64khLpHrHkpOpKrF7NnsSLa5a3Jv7b48PNxbE+onquymUf8REfsCJwIn1YsvArYAH8nM/+pQfJIkSTNaL60mlRs3MnfXXXpqtZ/xjNeb3u87QZdeZz4z3xkRnwH+nOIzjdXARZn5+04FJ0nSZFU1QbjMR+sDAwPccdeWnpkAO95wAbVvvP9fVU0+l8ZTdp35WZn5YGbeBHy+wzFJknrQplV3tN0zuHntGgC2nbdbW3FQ0Wo2ThBWp1T5f8vVpEbnHg/le+ZvjYivAF/MzCs7GVArEfFEik2qDgDWUryhODEzHxznvF2BTwCvALYBvgUck5mrm457OfB+YBD4fb3tr1X9c0hSv6piXCrA0Npii/vBdpKB+XuUimeqb6jtjpmPvB+AbHN/AdeZnxr2pvcG93gon8yfA7wW+MeIuB44E/hyZrb3U5dQ3332YuAaivXu9wU+RpGcv2ec078G7A+8kWJ8/4eBbwB/1tD+c4D/BlZQ7GL7EuArEbEmM79T6Q8jqeetXHkLxx770UmfX6sVW5O3u1zaypW3MDjY3nbyVaoqcen3samjqeLNzkjv4ODgorbbqurNlzQZU7kHBrjHQ9kJsG+OiGOAlwKvA44H3h8Rl1Ik9v+dmfd2KMY3AXOBV2bmPcBFEbELcEJEfKRetpWIOAB4EXBgZl5aL/sD8NOIeGFmjiyzeRxwaWYeU3/+/Yh4EvBewGRemkGqSIAeeKDo4Wl399bBwcUmZH2kijc70/WNjqrR7jC3Koa4jcRRxTA3h7hVZyITYDdR9Gp/oz585TCK3vrPA5+i2FiqEw4GLmxK2r9K0ct+IHDuGOfdMZLIA2TmzyLihnrdxRGxPfB8ih75Rl8FvhARu2b6eaU0U5iQSd3T7qdiUM0nY732qRhU9MlPFUPcoNQwN4cgTa3SyXyjzFwXERcAewD7AI+pNKpHWgx8r+n1b46I9fW60ZL5xcB1LcqvrddBMWRnuxbHXUsxjOePgJ9PLmxJklRGVZ9CVfHJWC9+KmZHw+jc42GCyXxE7AwcStEj/1zgAYpk+ovVh/aQ3SgmvTZbU6+bzHn7NBxDi+PWNNVLkqQOcU6GNHlll6YcGSv/MmAOcCnFrq9ndXCsfKNsFdYo5ZM5r/l5jHZ+RBxNfcfbRYvan6QkSZKkyXGPh/I98+cC1wMfAL40FavYNFgDzGtRviute94bz5vfonxew3lrGsqaj6FV+5l5KnAqwJIlS8Z7MyFJkiR1zDYlj3tWZj4hMz/YnMhHxIERcVoHYhtxHQ+PcR95zYXAjrQeEz/qeXWNY+l/B2xqcdxiiqUsfzuJeCVJkqQpUXZpykdMAo2I/YDDKYbePB5YD7yh8ugKFwDviIidG4b0HAYMA5eMc95xEfGczLysHvcSivHyFwBk5oaI+D7FPIDPNZx7GPATV7KRJEm9bqrXde81M33DttITYBuWozycYidWgF8BHwK+Un1oD/ksxdKR50TEhymS8ROAjzcuVxkRK4FLMvMogMz8SURcCJwZEW/n4U2jLmtYYx7gfcAPIuITFEtvvqT+eHEHfyZJkqQpM13XdXfDtnGS+YjYhiKpPRz4K4rJr7cCnwb+AXhr4zrunZCZayLiIIq17M+lGMe+nCKhb7QtMKup7FX1Y0+jGFL0LZrWlM/MyyLiEOD9wJuBG4BXu/urJEnqB/3Wk14ll+0cI5mPiI8CrwEWUCxB+T/AGcDFwC7AW6YiQIDMvAZ4wTjH7NWibC3w+vpjrHO/QdErL0mSJPWNsXrm/4liacbzgSMzc/VIRUS4ioskSRMw3rjm6TymWeqm6X7tjZXMnwYcArwUuD4ivgqcmZk/m5LIJEl9ZaZPwmvXdB3TLPW6fr/2Rk3mM/ONEfEW4JXAEcCbgDdHxG8phtzYOy9JmpB+v2m2Y6a9OZF6xXS/9sacAJuZDwBfBr4cEY/h4eUo31k/5EMRsQI4u36sJGmGmu43TEnqRWU3jSIzb8vMD2fmk4FnASuAQeBM4LYOxSdJkiRpFKWT+UaZ+fPMfAvwWIpx9WNt3iRJkiSpA0pvGtVKZm4Czqk/JEmSOqKqCdYzcXK1pre2knlJkqReMZMnWGvmMpmXJEk9z950qbVJjZmXJEmS1H0m85IkSVKfMpmXJEmS+pTJvCRJktSnTOYlSZKkPmUyL0mSJPUpk3lJkiSpT5nMS5IkSX3KZF6SJEnqUybzkiRJUp8ymZckSZL6lMm8JEmS1KdM5iVJkqQ+tW23A5CkfrJ8+XKGhoZGrR+pW7p06ZjtDA4OsmzZskpjkyTNPCbzklShuXPndjsESdIMYjIvSRNgb7okqZc4Zl6SJEnqUybzkiRJUp8ymZckSZL6lMm8JEmS1KdM5iVJkqQ+ZTIvSZIk9SmTeUmSJKlPmcxLkiRJfcpkXpIkSepTJvOSJElSnzKZlyRJkvqUybwkSZLUp0zmJUmSpD5lMi9JkiT1KZN5SZIkqU+ZzEuSJEl9ymRekiRJ6lMm85IkSVKfMpmXJEmS+pTJvCRJktSnTOYlSZKkPmUyL0mSJPUpk3lJkiSpT5nMS5IkSX3KZF6SJEnqUybzkiRJUp8ymZckSZL6lMm8JEmS1KdM5iVJkqQ+ZTIvSZIk9SmTeUmSJKlPmcxLkiRJfcpkXpIkSepTJvOSJElSn+qLZD4i/l9EDEXEAxFxZUQcVPK8Z0fETyNiOCJuiIhjWhyTLR6XV/9TSJIkSdXq+WQ+Il4FfBY4EzgY+A3wrYh48jjn7QdcCNwAvBT4HPDxiHhji8M/BhzQ8Diqsh9AkiRJ6pBtux1ACScCZ2Tm+wAi4hLgacA7gdeOcd47gFuB12bmZuB7EbEIOD4i/jMzs+HYGzPT3nhJkiT1lZ7umY+IfYA/Ar4+UpaZW4CzKHrpx3IwcE49kR/xVWAAGLNXX5IkSeoHPZ3MA4vrX69rKr8W2D0i5rc6KSJ2BBaOcl5juyNOiIjNEXFXRJwWEbu3E7QkSZI0FXp9mM1u9a9rm8rXNNSvanHevBLnjTgDOLfezhLgOOApEfHMzHxwMkFLkiRJU2HKk/mI2BV4zHjHZWZjr3o2Vcco5Vs1M155Zh7ZUH5pRFwLnA+8DPhG84kRcTRwNMCiRYvGeXlJkiSpc7rRM38o8B8ljgse7kmfB6xrqBut552m8nlN5aP19Df6NnAf8HRaJPOZeSpwKsCSJUvGezMhSZIkdcyUj5nPzM9nZoz3qB8+0jvfPMZ9MXB3ZrYaYkNm3g/cMsp5je22OnckQTdRlyRJUk/r6Qmwmfl74LcUvfkARMQ29ecXjHP6BcBfR8SshrLDKJL8X492UkS8GNgJuHKSYUuSJElTotcnwAKcAHwpIm4EfgQcAQwCrx45ICIOBL4LHJSZl9SLTwZeA3wxIv4DeAbw98CbR3rf6+PflwAXA3dRDK15D/Az4LxO/2CSJElSO3o+mc/Mr0TETsC/UKw08xvgLzOzsXc9gFk8PDGWzFxZ72X/OEUv/e3A2zLz8w3n/Y7izcHfALvUjzkTOM6VbCRJktTrej6ZB8jM/2CMSbOZ+QMaEvmG8suAZ45x3ncpevQlSZKkvtPTY+YlSZIkjc5kXpIkSepTJvOSJElSnzKZlyRJkvpUX0yA1daWL1/O0NDQqPUjdUuXLh2zncHBQZYtW1ZpbJIkSZoaJvPT1Ny5c7sdgiRJkjrMZL5P2ZsuSZIkx8xLkiRJfcpkXpIkSepTJvOSJElSnzKZlyRJkvqUybwkSZLUp0zmJUmSpD5lMi9JkiT1KZN5SZIkqU+ZzEuSJEl9ymRekiRJ6lMm85IkSVKfMpmXJEmS+pTJvCRJktSnTOYlSZKkPmUyL0mSJPUpk3lJkiSpT5nMS5IkSX3KZF6SJEnqU5GZ3Y6hb0XEKuCmbsehSdsTuKvbQUgzkNee1B1ee/3t8Zk5v7nQZF4zVkRckZlLuh2HNNN47Und4bU3PTnMRpIkSepTJvOSJElSnzKZ10x2arcDkGYorz2pO7z2piHHzEuSJEl9yp55SZIkqU+ZzKsnRcSREZEtHm9qOCYi4t0RcUtEDEfEpRHx1KZ29qqft1dD2X4R8bmI+FVEPBgRPxglhhtbvP7tLY57YkR8NyLWR8StEXFSRMyq7JchdVCZ66HKayEiTo+I0zvY/rh/F6SpVtU9rX7cZK+zpRFxXkSsrr/280aJtbLrzPvj1Ni22wFI43gBMNzw/PcN378TOA54B3Ad8E/AxRHx5MzcKhFo8CTgJcDlwOxxXv/LwCcbnm9srIyI3YCLgWuAlwP7Ah+jeKP8nnHalnpB2euh09dCVe1P9u+CNBXauqe1eZ0dDiRwIfB3rQ6o8jrz/jiFMtOHj557AEdS/NHZaZT6OcA64L0NZTsCq4D3N5TtVW9nr4aybRq+Pxv4wSivcSPw0XHifBewBtiloeyfgfWNZT589OqjzPVQ5bUAnA6c3on2y/5d8OFjqh8V3tPauc62qX99cj2W57WIo7LrzPvj1D0cZqN+9afALsDXRwoy837gXODgsU7MzC0VxnEwcGFm3tNQ9lVgLnBgha8jdUSF10Onr4Uy7U/674LUZWX/7076Oit5rVd5nXl/nCIm8+p1v4uIzRFxfUT8fUP5YuBBYKjp+GvrdVV5Q0RsjIh1EXF2RDy+qX4xxUeMD8nMmyl6HqqMQ+q2Tl8LVbQ/VX8XpMlq957W6XtOldeZ98cp4ph59arbKMbj/QyYRTG+77MRsUNmLgd2A+7LzAebzlsD7BARszNzI+35JsU44hrwBOB44IcR8X8yc139mN2AtS3OXVOvk6aDTl8LVbU/FX8XpMmo6p7W6XtOldeZ98cpYjKvnpSZF1JM0hlxQURsD7wnIk4ZOazFqTFG3URjOLbh6Q8j4sfAVcDrgU80HjpKHG7ioGmh09dCxe139O+CNBkV39M6fc+p8jrz/jgFHGajfnI2sDvFpNY1wM4tlriaB6zPzE1Vv3hm/hq4Hnh6Q/Ga+ms225XWPRJS3+v0tdBG+1P+d0Fqw2TuaZ2+51R5nXl/nCIm8+pHSTEObxawX1PdVmP0OvT6I66jaexfRCykmNnf6Tikbuv0tTDR9rv5d0GarInc0zp9z6nyOvP+OEVM5tVP/ga4C7gJ+DFwD3DoSGVE7AC8DLigEy8eEU8G9geubCi+AHhRROzcUHYYxTrCl3QiDqnbOn0ttNH+lP9dkNowmXtap+85VV5n3h+niGPm1ZMi4r8pJgr9L0UPwGH1xzH15bUeiIgPAcdFxBoe3rRiGx658Uyrtneg2CQH4HHALhFxSP35+Zm5PiJeCrwW+BZwK0XvwnuAmynW7x3xWeAY4JyI+DCwD3AC8PGm5biknjTe9QA8nw5eC1Vea5k56b8LUidVeE+b9D0nIpZQDOlZWC86MCL2BG7MzCvKtj+B68z741Tp9kL3Pny0egAfpBgzu57iXfyVwOuajgngXylWwBgGfgg8remYvdh606iRslaPverH/DHwXYpNMDYBt1MkFo9tEesTge/VY7gNeB8wq9u/Qx8+yjzGux6qvhZo2symA+2P+3fBh4+pflR1T6sfN+HrrKGs1XXefFxl15n3x6l5RP2XLU1LEbEXcAOwd2be2NVgJBERpwNk5pHdjUSavrzOZhbHzEuSJEl9ymRekiRJ6lMm85IkSVKfcsy8JEmS1KfsmZckSZL6lMm8JEmS1KdM5iVJkqQ+ZTIvSdNcRBweETc1PL82It48wTYWRsSDEbGxvmtkO/G8NSJe2aL8hIjIiHB3ckkqyWRekqa/P6HYcZKI2An4o5HnE3A4xT1jO+Dv2oznrcBWybwkaeJM5iVp+nsoma9/vwX43wm2cTjwa+Bm4IjqQptaEbF9t2OQpCqZzEvSNBYR2wBPBX5RL/oT4JrMfGACbRxA0Zt/JvBF4E8i4klNx+xVHyJzZFP58+rlz6s/vxF4PPCaenmObD3fYO+IOC8i7ouImyLivfWfo7Hd/SPifyJibUQMR8TlEfHipmNGhu08OSIujIj7gK/X614UET+KiHX117k+It5b9nciSb3CZF6SpqGIuDEiEngQ2BE4v/78Y8AfNyTSe5Vo7giK3vz/okjooeipn4y/Bm4HLgQOqD/e13TM/wDfA14BfAM4kYZPAyLiscBlwFOAtwB/C6wFzouIg1u85jeBS4C/ApZHxD7A/wfcCBxWL/84xe9JkvqKk4wkaXp6CTCbIul+EfCaevmlwPHA9+vPbx2rkfqwlMOAizPz1nrZ5cBrI+JdmbllIkFl5i8jYgNwV2ZePsphH8vML9S/vzgiXkAxTn+k7J+A3YADMnNlPabzgWuADwAXNLX375l5SsPPdAjF7+bNmXlPvfh7E/k5JKlX2DMvSdNQZl6TmVcBC4Ef1L+/H9gZOCszr6o/No7T1MuBeTzcIw9wBvBY4IUdCB3gvKbnvwYWNTx/LnD5SCIPkJkPAl8BnhoRuzSd/z9Nz68CNgFfjYhDImJBNWFL0tQzmZekaSYiZkXEtvUlHp8N/KT+/Z8BfwBur9dHieaOANYD34+IeRExj2KIzCY6NxH27qbnG4A5Dc93B25rcd7tQFD02jd6xLH1NwEvorgHfpHi9/HTiDiwnaAlqRtM5iVp+vkuRbK9CXgMRcK6CfhP4HENdWMmrxHxKOAvgB0o3gSsqT9+T7FE5V9HxM71w0cm1M5uamaPNn+WVu4GHt2i/NFAsvWbgWw+MDO/n5kvpvjU4YUUv4/z2l1DX5KmmmPmJWn6+XuK4TSHUUwiHVkX/nzgFIqedYDrx2nntRT3iTcD1zXVPQX4BHAocBpwB0UP+pObjntpi3Y3AHPH+yHGcAnw1ojYKzNvhOLTCIqf95eZeW/ZhjJzA/C9+vr73wT2Bu5qIzZJmlIm85I0zWTm9QARcRxwXmZeERH7A3sC/5mZt5ds6nDgBuBzmfmI3u2I+CHwzxRDbU7LzIyIrwFHRcRvKd4ovBR4Xot2rwH+LCL+kmJozF0jSXlJy4EjgYsi4njgHmApxfKZrd48PEJEvIli3P35wC0Uv5d3UUwG/vUE4pCkrnOYjSRNQxExGzgI+Ha96GCKXutSiXxEPA34Y+ALzYk8PDTh9HSKpHzvevGxwDnACcDXKMa5/2OL5t9Fkex/Hfh5/fjS6qvqPAf4DfAZ4GyKcfQvzcxvj3Vu3a8olqH8N+A7wKco3rS8IDOHJxKLJHVbtPgbLUmSJKkP2DMvSZIk9SmTeUmSJKlPmcxLkiRJfcpkXpIkSepTJvOSJElSnzKZlyRJkvqUybwkSZLUp0zmJUmSpD5lMi9JkiT1qf8fofr/ObWIMYcAAAAASUVORK5CYII=\n" + "image/png": "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jp2dnVEfrq6udOrUiZiYGJMxlC9fnmbNmrFp0yZq167N8uXLGTNmzD2fk5IMGTKEsLAw3nrrLSD/HPr5+fHBBx8Y1Xv11VcJDw/n8uXLODg48N1339GwYUOys7ON6l29epW1a9eyePFi/Pz8OHToEE2bNi1VLAcOHGD06NGcPn0aa2trBg0axNy5c/XzbG9vD8C2bduoVKkSI0aM4MiRIyil6NSpE19++aVeJyEhgXHjxrFz507y8vIYMGAAX3zxRaE+3333Xfbu3cuWLVsAmDBhAhEREZiZmREQEMC0adMwNzcnNzeX999/n5CQEOzs7Hj77bcLteXj48OWLVtKfbwPk4yZF0IIIR6R/15KIzGtQZktpbkwOHbsGHXq1CmxXs+ePfn5559N3hVu2bIlQUFBLF++nDNnztzXsQNs376dnj176on8/SpIIgcNGsSgQYP4+uuvuXnzpsm6aWlprF+/Hk9P0/cemzdvzo0bNzhy5AiQfxe+Q4cOeHp6Gm0rSDK3bdtGly5d9ES+QK9evbh+/Tp79+4t1EdiYiKRkZFFxlDAYDDQoUMHk8OTykLLli3JysoiNjaW3Nxcvvnmm0LDlyD/4qJbt258/fXXAISFheHn51eo3rp167C1taVPnz506tSJsLCwUscybtw4xo0bR1ZWFmfPnqVv375A/rmG/KFMOTk5tGrVCk3TmDRpEsnJycTGxpKQkEBwcDAAubm5vPLKK3h4eBAfH09SUhL9+/c36isvL48RI0Zw9OhRvv/+eypWrIi/vz/lypUjLi6OX375he+//54lS5YAsHjxYr799lt++eUXDh06xNq1awvFX7duXf3n43Er1W+TUipXKdW8iLImSqncsg1LCCGEEGUhIyMDg8FQYr2qVauiaRoZGYVfLbNgwQIGDRrEF198Qb169fD09CQyMvKeY0lLS6NKlSol1mvcuDH29vb68s9//tOofP369VhZWdGxY0deeeUVbt++rd9tLTB27FgqVqyIs7MzqampLFiwwGRfVlZWtGjRgujoaNLT08nIyKBmzZq0adNG33bixAnatWsHQGpqqsljKFeunN5XgR49emAwGHB3d6dSpUpMmzatxGOvWrUq6enpJdYzZd++fUbnzdSwmIK789u2bcPLy4tq1aqZbMvPz4+wsDAyMzOJioqiR48eheqEhobSr18/zM3NGThw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\n" }, "metadata": { "needs_background": "light" @@ -1003,7 +1353,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "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\n" + "image/png": "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\n" }, "metadata": { "needs_background": "light" @@ -1013,17 +1363,17 @@ ], "source": [ "for group in grouped.groups.keys():\n", - " #gr2= grouped.get_group(group).groupby(by=['set', 'modeltype', '# Authors'], as_index=False).mean()\n", + " #gr2= grouped.get_group(group).groupby(by=['set', 'modeltype', 'No. of Authors'], as_index=False).mean()\n", " gr2 = grouped.get_group(group)\n", - " gr2.loc[:, ['Featuretypes & Model']] = gr2.apply(lambda x: '({}, {})'.format(str(x['set_feat']), x['modeltype']), axis=1)\n", - " #print(np.unique(gr2['Featureset & Model']))\n", + " gr2.loc[:, ['Feature Types & Model']] = gr2.apply(lambda x: '({}, {})'.format(str(x['set_feat']), x['modeltype']), axis=1)\n", + " #print(np.unique(gr2['Feature Set & Model']))\n", " #print(gr2.head())\n", " fig, ax = plt.subplots(figsize=(12,8))\n", " #print(gr2.head())\n", " #sel = (gr2[\"Average Spearman's Rho (ext.)\"]>= -0.15) & (gr2[\"Average Spearman's Rho (ext.)\"]<=0.15)\n", " sel = [True for _ in range(gr2.shape[0])]\n", " #print(gr2.loc[sel, : ].head())\n", - " sns.boxplot(x='# Authors', y=\"Average Spearman's Rho (ext.)\", hue='Featuretypes & Model',\n", + " sns.boxplot(x='No. of Authors', y=\"Average Spearman's Rho (ext.)\", hue='Feature Types & Model',\n", " data=gr2.loc[sel, : ], #exclude outliers\n", " palette=colors, dodge=True, ax=ax, showfliers=False,\n", " hue_order=list(colors.keys()))\n", @@ -1034,7 +1384,7 @@ " ax.tick_params(axis='both', which='major', labelsize=15)\n", " ax.tick_params(axis='both', which='minor', labelsize=13)\n", " ax.set_ylabel(\"Average Spearman's Rho (ext.)\", fontsize=16)\n", - " ax.set_xlabel(\"# Authors\", fontsize=16)\n", + " ax.set_xlabel(\"No. of Authors\", fontsize=16)\n", " plt.setp(ax.get_legend().get_texts(), fontsize='12')\n", " plt.setp(ax.get_legend().get_title(), fontsize='14')\n", " os.makedirs(os.path.join(savedir, '..', 'figures', str(group[1])), exist_ok=True)\n", @@ -1051,7 +1401,7 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 98, "outputs": [ { "name": "stderr", @@ -1063,7 +1413,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-60-8ff6affd3a9e>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-98-c07dc11c6ad2>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -1071,7 +1421,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-60-8ff6affd3a9e>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-98-c07dc11c6ad2>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -1079,7 +1429,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-60-8ff6affd3a9e>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-98-c07dc11c6ad2>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -1087,7 +1437,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-60-8ff6affd3a9e>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-98-c07dc11c6ad2>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -1095,7 +1445,7 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-60-8ff6affd3a9e>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-98-c07dc11c6ad2>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n", "C:\\Users\\schubert\\anaconda3\\lib\\site-packages\\pandas\\core\\indexing.py:1676: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame.\n", @@ -1103,14 +1453,14 @@ "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " self._setitem_single_column(ilocs[0], value, pi)\n", - "<ipython-input-60-8ff6affd3a9e>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", + "<ipython-input-98-c07dc11c6ad2>:37: UserWarning: Matplotlib is currently using module://ipykernel.pylab.backend_inline, which is a non-GUI backend, so cannot show the figure.\n", " fig.show()\n" ] }, { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "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\n" + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAt0AAAHqCAYAAADYoPJ6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdeXhN1/rA8e9OZJIckkgiSJogiKGhZk1E2hoqFDUPlQjVASXoJFFD6+qI0mrdi0oit9R8KdHSVgyNuUFJSWjIoFcGITEn2b8/crN/jnMykUF5P89znsfee+213r1PEu9ZZ621FVVVEUIIIYQQQlQck6oOQAghhBBCiEedJN1CCCGEEEJUMEm6hRBCCCGEqGCSdAshhBBCCFHBJOkWQgghhBCigknSLYQQQgghRAWrVtUBVAYHBwfV3d29qsMQQgghhBCPuCNHjqSrqup47/7HIul2d3fn8OHDVR2GEEIIIYR4xCmKct7YfhleIoQQQgghRAWTpFsIIYQQQogKJkm3EEIIIYQQFeyxGNMthBBCFOXOnTskJydz8+bNqg5FCPE3YmlpiYuLC2ZmZqUqL0m3EEKIx1pycjI6nQ53d3cURanqcIQQfwOqqpKRkUFycjL169cv1TkyvEQIIcRj7ebNm9SqVUsSbiFEqSmKQq1atcr0DZkk3UIIIR57knALIcqqrH83JOkWQgghhBBG2djYEBYWVuryYWFh2NjYVFxAf2OSdAshhBCPuFGjRqEoisErNja2XOrftWsXiqKQnp5eLvWVVVhYmNHru/u1a9euKomtJN9++y1NmzbF0tISNzc3QkJCSnXerFmzUBSFrl27Ghz76quvUBSFFi1alHe44gFI0i2EEEI8Brp27crFixf1Xg9jUnb79u0ynzNkyBC96+ratSuDBw/W2/f0009XQLQPJjExkZEjR9K7d2/i4uJYt24djRo1KvX5zs7O7Nmzh8TERL3933zzDU888UQ5RyselCTdQgghxGPAwsICZ2dnvVe1agWLmG3ZsoU2bdpgaWlJ/fr1CQ0N1Ut+IyMjadeuHTqdDicnJwYNGkRKSgpQkDg+88wzADg6OqIoCqNGjQLAz8+PCRMm6MUxatQoevfurW37+fnx+uuv8+abb+Lo6Ii3tzcAp06dolevXlqbw4YN46+//jJ6bVZWVnrXZWFhoe07c+YMrq6uZGZm6p0TGhqKl5cX8P9DIrZs2ULjxo2xtLTkmWee4dy5c3rnlHSfNmzYgJeXF1ZWVtjb29OlSxf++9//FvmeFI4JDgoKon79+rRr146goKAiy9+rVq1a9OrVixUrVmj7jh8/zh9//MHAgQMNyv/zn//Ew8MDc3NzPDw8WLp0qd7xhIQE/Pz8sLS0pEmTJnz//fcGdaSkpDB06FDs7Oyws7OjV69exMfHlzrmx5kk3UIIIcRj7IcffmDEiBFMmDCBkydP8s0337Bu3Tq9YQ63b99m9uzZHDt2jO+//5709HSGDRsGgKurK+vXrwfg5MmTXLx4kYULF5YphsjISFRVZc+ePURERHDx4kV8fX1p0aIFBw8eZOfOneTk5NCnTx/y8/PLVLevry8NGzYkIiJC25efn09ERARjxozR9t26dYvZs2ezYsUKYmJiyMvL48UXX0RV1VLdp7/++ouhQ4cSGBhIXFwcu3fvZuTIkcXGVq9ePdq1a8cbb7zBjRs3ynRdhcaMGUN4eLh2X5YvX87gwYPR6XR65TZu3MiECRMIDg7m999/Z9KkSYwbN44tW7Zo9+TFF18kPz+fmJgYvvnmG2bNmsWtW7e0Oq5fv84zzzyDpaUl0dHRxMTEUKdOHbp27cr169fvK/7Hiqqqj/yrTZs2qhBCCGHMqVOnqjqEChcYGKiampqq1tbW2uv5559XVVVVO3furL7//vt65Tdu3KhaW1ur+fn5RuuLi4tTATUpKUlVVVX95ZdfVEBNS0vTK9elSxd1/PjxBrH06tVLr8yTTz6pV+a9995Tn332Wb19mZmZKqAeOHCgxOvt1auXGhgYqG1/+umnqqenp7a9bds21dzcXE1PT1dVVVVXrFihAurevXu1MomJiaqJiYm6Y8cOVVVLvk9HjhxRATUxMbHE+AoFBQWpTz31lPrGG2+oPj4+6uXLl7VjI0aMUIcNG1bkuTNnzlSbN2+u5ubmqnXr1lV//PFH9ebNm2qtWrXUPXv2aMcLPf3002pQUJBeHYGBgaq3t7eqqqr6ww8/qCYmJur58+e143v27FEBdcWKFaqqqury5ctVDw8PvZ+L3Nxc1d7eXv3uu+9UVS24l9bW1qW+B393xv5+AIdVI/mo9HQLIYQQjwFfX19iY2O117JlywA4cuQI//jHP7CxsdFew4cP59q1a9pwjqNHj9K3b1/c3NzQ6XS0bdsWgAsXLpRLbG3atNHbPnLkCLt379aLydXVFYCzZ8+Wuf7AwEDOnTvHr7/+ChSMee7Xrx+1atXSypiYmNC+fXtt283Njbp163Lq1CktpuLuU8uWLenatSstWrRgwIABfP3116SlpRUZ06lTp1ixYgVhYWEsWrSI5s2b4+vrS2pqKgC///47vr6+JV6bqakpgYGBfPPNN2zatIlatWrh4+NjUC4uLk4bulPIx8dHu764uDjq1aunNxa8Q4cOmJj8f6p45MgR/vzzT3Q6nXYPatasyeXLl+/rfXncyBMphRBCiMdA9erV8fDwMNifn5/PzJkzGTRokMExR0dHrl27Ro8ePejatSsrV67EycmJ9PR0OnfuXOKkRxMTE214RqE7d+4YlLO2tjaIqVevXnz22WcGZWvXrl1sm8Y4OjrSp08fvvnmG5o0acLmzZu1YRWlVdJ9MjU15ccff2T//v38+OOPLF++nGnTphEdHU3Lli0Nzjl+/DimpqY8+eSTQMGKI4GBgTz99NO8//77JCQkMGTIkFLFNnr0aLy8vEhMTGT06NFFljO2rnThvnvfJ2Py8/Np1aoVq1evNjhmb29fqlgfZ5J0CyGEEI+x1q1b88cffxhNyAGOHTtGeno6c+fO1R53vWHDBr0y5ubmAOTl5entd3R05OLFiwb1ubu7lxjTmjVrcHNzw8zMrCyXU6SxY8cycOBAGjRoQO3atQ2W2svPz+fQoUPaKicXLlwgNTWVpk2bajEVd5+gIIHt1KkTnTp1YsaMGTRv3pzvvvvOaNJdr1498vLy+PXXX/H29sbExISwsDAGDRpEYGAgM2bMwM7OrlTX5uHhQbt27fj1118N3ptCTZs2Ze/evXpJ+d69e2nWrBkAzZo1IyUlhaSkJO1bhYMHD+qNoW/dujWrVq3CwcEBW1vbUsUm/p8MLxFCCCEeYzNmzODbb79lxowZ/P777/zxxx+sW7eOt99+G4AnnngCCwsLvvzyS86dO8fWrVt577339Opwc3NDURS2bt1KWloaOTk5ADz77LNERUWxefNmTp8+zZQpU0hKSioxpvHjx3PlyhWGDBnCgQMHOHfuHDt37uSVV14hOzv7vq6zW7du1KpVi9mzZxMUFKQ3bAKgWrVqBAcHExMTQ2xsLIGBgTRv3lxLzku6T/v372fOnDkcOnSICxcusHnzZpKSkrSk9l4+Pj74+PgwbNgwNmzYwNmzZ9m2bRunT5/G2tqatWvXkpWVVerri4qK4tKlS9SpU8fo8bfeeouVK1eyePFi4uPj+eKLL/j3v/+txd+1a1c8PT0JCAggNjaWmJgYJk+erK1wAzBixAhq165N3759iY6O5s8//2T37t1MnTpVVjApBUm6hRBCiMdYjx492Lp1K7/88gvt27enffv2fPTRR9rYXkdHR8LDw9m0aRPNmjVj9uzZzJ8/X6+OevXqMXv2bEJDQ6ldu7a2TODo0aO1l7e3NzY2Nrz44oslxlS3bl327duHiYkJzz//PM2bN2f8+PFYWFhgYWFxX9epKApBQUHcuXPH6LJ8FhYWhIaGEhAQQIcOHcjPz2fDhg3a8IuS7lPNmjXZt28fvXv3plGjRkydOpX33nuPl156qch4oqKiGDp0KG+99RbNmjXjrbfeYtSoUfz555/k5ubSv3//Uq9bXr169WJ7xvv168cXX3zBggULaNasGQsXLuSrr77ihRdeAAqGAm3cuJH8/Hw6dOhAQEAA06dP17vf1atXZ/fu3TRo0IBBgwbh6elJYGAgly9fLnWv/ONMKc0Ynr+7tm3bqocPH67qMIQQQjyE4uLitCEE4tH2+uuvk5CQwI4dO/T2h4WFMWHCBK2HXojSMvb3Q1GUI6qqtr23rIzpFkIIIcQj7cqVKxw5coSIiAjWrFlT1eGIx5Qk3UIIIYR4pPXt25eDBw8yZswYevXqVdXhiMeUJN1CCCGEeKTt2rWr2OOjRo3SHl0vREWRiZRCCCGEEEJUMEm6hRBCCCGEqGCSdAshhBBCCFHBJOkWQgghhBCigknSLYQQQjwEpk2bxueff16qsn5+fixbtgwoWGPax8enVOeVpWx5mTVrlvaAmAsXLmBjY2PwuPj70b9/f7Zv3/7A9QhRWWT1EiGEEKKKpaWlERERQUJCQlWHUqGeeOKJcnsAzbvvvsvrr7/O888/Xy71CVHRpKdbCCGEqGJhYWH4+/tjZWVV1aH8bbRv356rV68iT5wWfxfS0y2EEELc5Z133uTq1axyq69GDVs+/vizYstERUUxevRobfvy5cuMHDmSAwcOkJubi7e3N0uWLMHFxeWB41FVlTfeeIOIiAjq1KnD4sWLee655wBYsWIFn3zyCcnJyTg6OvLOO+/w6quvApCens6oUaPYu3cvJiYmNG/enOjoaExMTEhNTeWNN95g9+7d2NjYMHnyZCZOnGjQdmJiIvXr1+fOnTtUq1YNPz8/OnfuzM8//8zx48fp1KkT3377LQ4ODgDs37+fKVOmcOrUKdzc3Fi4cCF+fn5afX5+fmzdupW2bQ2euC3EQ0eSbiGEEOIuV69msXDhpHKrb9KkhSWWOXHiBE2aNNG28/PzCQoKYs2aNeTl5TF69GgmTJjApk2bHjieAwcOMHDgQNLT09mwYQP9+/fnzz//xN7eHicnJ77//nsaNGjA7t276dmzJ+3ataN169bMmzcPFxcX0tLSgIKEWFEU8vPzeeGFF+jbty+rVq0iOTmZrl270qRJE3r06FFiPN9++y1RUVG4urrSs2dPPvvsMz766CNSUlLo1asXK1eu5Pnnn+enn35iwIAB/PHHHzg6OgLQtGlT9u7d+8D3RIjKIMNLhBBCiCqWlZWFTqfTtmvVqsWAAQOoXr06Op2O0NBQoqOjy6UtJycngoODMTMzY8iQITRp0oStW7cC0KtXLxo2bIiiKHTp0oXu3buzZ88eAMzMzLh48SLnz5/HzMyMzp07oygKhw4dIi0tjRkzZmBubk6DBg0YO3Ysq1evLlU8QUFBNG7cGCsrKwYPHkxsbCwAkZGR+Pv74+/vj4mJCd26daNt27Zs27ZNO1en05GVVX7fSghRkSTpFkIIIaqYnZ0d2dnZ2vb169d59dVXcXNzo0aNGvj6+pKVlVUuq37Uq1cPRVG0bTc3N1JTU4GCYS4dO3bE3t4eW1tbtm3bRnp6OgBvvfUWHh4edO/enQYNGvDRRx8BcP78eVJTU7G1tdVec+fO5b///W+p4nF2dtb+Xb16dW2i5fnz51m7dq1evXv37uXixYta+ezsbGxtbR/shghRSWR4iRBCCFHFvLy8OHPmDO3atQNg3rx5nD59mgMHDuDs7ExsbCxPPfUUqqo+cFspKSmoqqol3hcuXKBPnz7cunWLAQMGEBERQd++fTEzM6Nfv35amzqdjnnz5jFv3jxOnjzJM888Q7t27XB1daV+/frEx8c/cGx3c3V1ZeTIkSxdurTIMnFxcbRs2bJc2xWiokhPtxBCCFHF/P399YaPZGdnY2Vlha2tLZmZmcyePbvUdfn5+TFr1qwij1+6dIlFixZx584d1q5dS1xcHP7+/ty+fZtbt27h6OhItWrViIqK4scff9TO+/7770lISEBVVWrUqIGpqSmmpqa0b9+eGjVq8PHHH3Pjxg3y8vL4/fffOXTo0H3di0IvvfQSW7Zs4YcffiAvL4+bN2+ya9cukpOTtTLR0dH07NnzgdoRorJIT/ffxIIFC4rsRSj8A2RsVnujRo2YPHlyhcb2IIq6ruKuCR7+6xJCiLIICAigVatW3LhxAysrK4KDgxk+fDgODg7UrVuXqVOnlnoSZVJSEt7e3kUe79ChA/Hx8Tg4OFC7dm3WrVtHrVq1AFi0aBGDBw/m1q1bvPDCC/Tp00c7Lz4+ngkTJpCWloadnR3jxo3TVhLZsmULU6dOpX79+ty6dYsmTZowZ86c+78hFPR0/+c//+Htt99m2LBhWoL/9ddfA3Do0CGsra1p3779A7UjRGVRyuOrqodd27Zt1b/7Op7FJd2F+xs1amRw7GFPTou6ruKuqXD/w3xdQoi/j7i4OJo2baptV8WSgQAhISHaJMf7lZyczKBBg4iJibnvOv4uBgwYwJgxY/D396/qUMRj7N6/HwCKohxRVdVgHUtJuh8B48aNA+Crr76q4kjKz6N4TUKIh5Ox/zSFEKI0ypJ0y5huIYQQQgghKpiM6RYVrrihMUUpLF/Y410WMvRECCGEEA8bSbpFhYuPj+e3EydRbBxLfY56u2DYU+yfl8rUlpqTVqbyQgghhBCVQZJuUSkUG0eqtR1Y4e3kHl5X4W0IIYQQQpSVjOkWQgghhBCigklPtzDwqK4JLoQQQghRVaSnW5TJjRs3uHHjRlWHIYQQj5xp06bx+eefl6qsn58fy5YtAyAsLAwfH5+KDK3cubu7s3Pnzkppa9SoUUyfPh2A48eP8/TTT1dKu0LcS3q6hYHieqtl/WwhhCh/aWlpREREkJCQUNWhPHQURSE+Ph4PD48HrsvLywtbW1u2bNnCCy+8UA7RCVF60tMthBBCVLGwsDD8/f2xsrKq6lAeeSNGjOCf//xnVYchHkPS0y0qXHJyMmr2lUpZWUTNTiM5+XaFtyOEeHRNfnMKmVmXy60+e1s7Fnw2v9gyUVFRjB49Wtu+fPkyI0eO5MCBA+Tm5uLt7c2SJUuMzqcpq6VLlzJ//nySk5NxdXUlMjKS1q1bG/Qojxo1ChcXF+bMmcOuXbt46aWXmDhxIp999hmmpqZ8/fXXmJubExwcTHp6Om+++SYhISEG5wLa+YXzgu528OBBJk2aRFxcHFZWVgwYMID58+djbm6Or68vAC1btkRRFJYvX86QIUP4/vvvmT59OomJiTRr1owlS5bg5eUFwG+//caYMWOIj4/H398fRVH02vPz8+Pll1/m1q1bWFhYPPD9FKK0JOl+jFXWQ2uysrIApcRyQgjxMMjMuox/8OByq2/b52tKLHPixAmaNGmibefn5xMUFMSaNWvIy8tj9OjRTJgwgU2bNj1QLGvXrmXWrFls2rSJtm3bcvbsWczMzEp17l9//cXNmzdJSUkhLCyMsWPH0q1bN44cOcKFCxdo06YNQ4cOpUGDBmWKydTUlAULFtC2bVuSk5Pp2bMnX331FcHBwezevRtFUTh27Jj2YeDo0aOMHj2aLVu20LZtWyIjI+nTpw+nT59GURT69etHcHAwEyZM4D//+Q/Dhg3jnXfe0dqrV68eZmZmnD59WkvUhagMknQ/xuLj44k9dQozx9qlPif3f8nzybSMUp9zJzcXpWbdSlun28XFyeixoj5kFLciC8iqLEKIipeVlYVOp9O2a9WqxYABA7Tt0NBQnnnmmQduZ9myZbz99tu0a9cOoEzjpM3MzAgNDcXU1JShQ4fyyiuvMGnSJHQ6Hc2bN6d58+YcP368zEl3mzZttH+7u7vz6quvEh0dTXBwsNHyS5cu5dVXX6VDhw4ABAYGMnfuXPbv34+iKNy5c4fg4GAURWHgwIHMn2/4LYNOp/tfh5AQlUeS7gf0d07kkpOTQS3bOdVs7e6rLfV65fxxU69nER9/xWhPfHJystGVV65fvw5Q5KosycnJRt/jh+E9FEI8Guzs7MjOzta2r1+/zuTJk9m+fTuXLxcMdcnOziYvLw9TU9P7bicpKYmGDRve17m1atXS2i4ce1679v932lhZWZGTk1Pmes+cOcOUKVM4fPgw169fJzc3Vy8Rv9f58+cJDw/niy++0Pbdvn2b1NRUFEWhXr16ekNK3NzcDOrIzs7G1ta2zLEK8SAk6a4g97usXmUN+QDu64/jQy/vDtk5+RyJvVBEAcPxe4qaC8DVa8bH9l29ls9/0/XrU9QrDxSmEELczcvLizNnzmg90PPmzeP06dMcOHAAZ2dnYmNjeeqpp1DVMvaU3MPV1ZWzZ88aPVa9enWtEwIKhpPc7xhya2trg7qK8vrrr/PUU0+xatUqdDodn3/+OevWFT0HyNXVldDQUEJDQw2ORUdHk5KSgqqqWuJ94cIFvQ8aqamp3L59W284jxCVQZLuB1RUT+f9Lq0XHx/PyT9O4ejqXOpz1GoFf1guXcss9TlpSX9hbmoG+fllii/3f5OLytrjrVSvvB4FValJnpl3hbZhemdfhdYvhHi8+Pv7Ex0dzYgRI4CCnlgrKytsbW3JzMxk9uzZpa7Lz88PPz8/Zs2aZXDs5ZdfZsqUKfj4+NC6dWttTLebmxutWrXi22+/pXnz5uzYsYPo6Gjatm17X9fTqlUr5s2bx/Tp07l9+3ax649nZ2dTo0YNbGxs+OOPP/j6669xdHTUjteuXZtz585pQ2HGjh3Liy++SNeuXWnfvj3Xr19n165d+Pr60qlTJ6pVq8aiRYsYP348mzdv5uDBg3pDc3bt2sWzzz4rkyhFpZOk+yHk6OrMoLcCK7SNtZ+Gc/vydRo1alSm8+KzChL7Ro61ynTOtTK18gDyc1HUKxWeFCvqFaOz8IUQ4n4EBATQqlUrbty4gZWVFcHBwQwfPhwHBwfq1q3L1KlTSz2JMikpCW9v4x0PgwYNIiMjg+HDh5OSkoK7uzsrV67Ezc2NhQsXEhgYyOLFi+nXrx/9+vW77+sZOXIkO3fuxN3dHXd3d4KCgpg3b57Rsp999hmvvPIKn3zyCU899RRDhgzh559/1o7PmjWLwMBAbty4wb/+9S8GDx7M0qVLmTBhAvHx8VhZWeHj44Ovry/m5uZs2LCBsWPHMn36dPz9/enfv79ee//+97957bXX7vvahLhfyoN+VfV30LZtW/Xw4cOV2ub99nSPGzeOS9cyKyXpdrK2NxpfcUNcCvcbS9aLGuM8btw4Yv+8VCkTKe/89AWqaoKq1KzQdhT1Ck6OdmzevLlC2xFCVLy4uDiaNm2qbVfFkoEAISEhODk5FTmBsDSSk5MZNGgQMTEx913Ho+zEiRO88sorcn9Eubn37weAoihHVFU1+JpIerpFmTz0D24wqYaar6uU4SXlsV6uEOLhU5oEuSLMnTv3getwcXGRhLIYTz75pNwfUWUk6RYGZEUOIYQQQojyJY+BF0IIIYQQooJJ0i2EEEIIIUQFk6RbCCGEEEKICiZJtxBCCCGEEBVMkm4hhBBCCCEqmCTdQgghxENg2rRpxT658W5+fn4sW7YMgLCwMHx8fCoytDLZtWtXuS2pqigKCQkJAEyZMoUlS5aUS71CVAVZMvAhk5yczJWcq6z9NLxC20lL+ovbNtcrtA0hhBClk5aWRkREhJZgVgVFUYiPj9cet/6weeutt2jfvj2jR4/G3Ny8qsMRoswqvadbUZRmiqL8pCjKdUVRUhVFeV9RFNMSzpmlKIpaxGtaZcUuhBBCVISwsDD8/f0f/geQVaE6derg6ekpTwIWf1uV2tOtKIodsBM4BfQFGgLzKEj+pxdz6jJg+z37+gHvAFHlH2nVcXFxwbwSHwMvhBBC37jJU7iUWX6PgXeyt+OrBcU/5TIqKorRo0dr25cvX2bkyJEcOHCA3NxcvL29WbJkyQMP20hISGDMmDHExsZiZmbGc889x3fffYevry8ALVu2RFEUli9fTvfu3YuNITMzk6lTp/LDDz9w48YNunTpwqZNmwzaXLRoEUuWLOHHH3/E0dGR0NBQ1qxZw61bt3jxxRdZsGCB9mHj008/Zf78+SiKwpw5cwzq8vPzY+vWrQwcOPCB7oMQVaGyh5e8BlgB/VVVvQrsUBSlBjBLUZRP/rfPgKqqyUDy3fsURXkP+ENV1diKDloIIcTj41LmZfJ7lV9Sd2nruhLLnDhxgiZNmmjb+fn5BAUFsWbNGvLy8hg9ejQTJkwwmtSWxXvvvUf37t355ZdfuH37NocPHwZg9+7dKIrCsWPHtOElGRkZxcYwcuRIbGxsOHnyJDY2Nvz6668G7X3wwQds3LiR6OhoHB0dCQ4O5ty5c1rSP3z4cN5//30+/PBDtm/fzmeffcZPP/1E/fr1GTt2rEF9TZs2Zf369Q90D4SoKpU9vKQn8MM9yfVqChLxLqWtRFEUe6AbsKp8wxNCCCEqX1ZWFjqdTtuuVasWAwYMoHr16uh0OkJDQ4mOjn7gdszMzDh//jypqalYWloWOwGzuBguXrxIVFQUS5Yswc7ODjMzM7p0+f//xlVVZcqUKfzwww/88ssvODo6oqoqS5cuZcGCBdjb26PT6QgJCWH16tUArFmzhqCgIFq0aIG1tTWzZs0yiEmn05GVlfXA90GIqlDZPd2ewM9371BV9YKiKNf/d2xLKesZCJhRkLCLvwE1J43cwyX39mjlrxf8UVWq25atobw7oJTtFCGEqGp2dnZkZ2dr29evX2fy5Mls376dy5cLhrpkZ2eTl5eHqWmx06CK9cknn/Dee+/Rvn177OzsmDp1qt6wlrsVF0NSUhL29vbY2dkZPTcrK4t//etffPfdd9SsWRMomCx6/fp12rRpo5VTVZW8vDwAUlNT9Y65ubkZ1JudnY2tbRn/XxDiIVHZSbcdYOwj6uX/HSutocBRVVXPlEtUokI1atSozOfEx18pOLe+U5nPu3qtzM0JIUSV8vLy4syZM7Rr1w6AefPmcfr0aQ4cOICzszOxsbE89dRTqKr6QO04OzuzdOlSAPbu3UvXrl3x9fU1umJJcTG4urqSmZlJVlaW0STYzs6OyMhIBr6HmI8AACAASURBVA8ezMaNG/H29sbBwQErKytOnjxJvXr1DM6pU6cOSUlJ2vaFCxcMysTFxdGyZcsHuQVCVJmqWDLQ2F8MpYj9hgUVpQ4FQ1HeKaHcK8ArAE888UQZQxTlafLkyWU+Z9y4cQB89dVXZT7vSKzhH2ohhHiY+fv7Ex0dzYgRI4CCHl0rKytsbW3JzMxk9uzZpa7Lz88PPz8/o8Mz1q5dS6dOnXBxccHOzg5FUbSe89q1a3Pu3DktAS8uhjp16tCzZ0/GjRvH4sWLsbGxISYmRpuQWRjHv//9b1588UW2bNlChw4dGDt2LJMnT+bLL7/EycmJlJQUfv/9d3r06MHgwYMJCgoiICAAd3d3o9ccHR3Nyy+/XOp7IcTDpLLHdF8GjH0vVBPjPeDGDKYgSf+uuEKqqv5LVdW2qqq2dXR0LFuUQgghRCUKCAhg27Zt3LhxA4Dg4GBu3LiBg4MDHTt25Pnnny91XUlJSXh7exs9dujQITp06ICNjQ19+vRh4cKF1K9fH4BZs2YRGBiIra0ta9asKTGGlStXYmZmhqenJ05OTkYf7NOtWzdWrFhBnz59OHLkCB9//DEeHh507NiRGjVq0LVrV06fPg1Az549CQ4O5tlnn8XDw4Nnn31Wr66LFy9y6tQp+vXrV+p7IcTDRHnQr6rK1Jii7AZSVFUddtc+V+AC0EdV1RLHdCuKEgPcUVXVt6Syhdq2basWztCuLA/SU3upEpcMLGt8leVBe7rzzIz/h1NeTO/so02rJx7a+yeEKL24uDiaNm2qbVfFkoEAISEhODk5ERwcfN9tJScnM2jQIGJiYu67jofV1KlTadiwofb/gxAPg3v/fgAoinJEVdW295at7OElUcBbiqLoVFUtnDEyBLgBlDgtW1EUd6AjIL9xQgghKkRpEuSKMHfu3Aeuw8XF5ZFMuKFgjLkQf2eVPbxkCXAL2KAoStf/jbueBcy/exlBRVESFEVZbuT8oUAuUPplMIQQQgghhKhildrTrarqZUVRngO+pGB5wCxgAQWJ971xGVsTaSjwk6qqaRUZpxBCCCGEEOWp0lcvUVX1FPBsCWXci9jfqiJiEkIIIYQQoiJVxZKBogRpSX+x9tPwUpfPupQJgK2TfZnacPIsfXkhhBBCCHH/JOl+yNzPg2Su5GYA4GRd+iTaydP+vtoSQgghhBBlJ0n3Q6YyHyQjhBBCCCEqR2WvXiKEEEIII6ZNm2b0ATNCPO4URSEhIaFS2vLz82PZsmUAbN68maFDh5Zb3ZJ0CyGEEFUsLS2NiIgIXn31VQB27dqFiYkJNjY22NjY4OLiwuDBgzl06JDeeXcnI1lZWYwePRpnZ2d0Oh2NGzfm448/5sKFC1o9NjY2KIqCtbW1tr1nzx6DeC5evMiYMWOoU6cOOp0OT09PZs6cybVr1wzaLTRr1ixeeuklvX2qqtKgQQOaNWtm0Iafnx+WlpbY2Njg4OBA//79uXjxotH706NHDz755BNtOyUlBUVRjO7766+/tPvx+uuv4+zsTPXq1XnyySdZsWKFXr3u7u5YWVlhY2ODs7Mzo0aNIicnRzs+atQozM3N0el06HQ6WrRowbRp07hy5YrROAsVlSSGhYVhamqq937Y2NiQmpqqxWNubk56erreea1atUJRFBITE7W4FEVh8+bNeuWCg4NRFIWwsDC9/bt27TK4X4+ixMREFEUhNze3XOrr06cPv//+O8ePHy+X+iTpFkIIIapYWFgY/v7+WFlZafvq1q1LTk4O2dnZ7N+/H09PTzp37sxPP/1ktI7JkyeTk5NDXFwcV65cYfPmzTRs2JAnnniCnJwc7QVw7Ngxbbtz58569WRmZtKpUydu3LhBTEwM2dnZ7Nixg6ysLM6ePVum69q9ezeXLl3i3LlzBh8YAL788ktycnJISEggJyeHN99802g9vr6+REf//zP0du/ejaenp8G+Ro0a4ezszO3bt+natSvnz58nJiaGK1eu8Omnn/Luu+8yf77+w4+2bNlCTk4OsbGx/Pbbb3z44Yd6x99++22ys7NJS0tjxYoV7N+/H29vb+0DSFl16tRJ7/3Iycmhbt262vH69euzatUqbfvEiRPcuHHDoJ7GjRsTHv7/iy7k5uaydu1aGjZsaFA2PDwce3t7vfKidIYNG8a//vWvcqlLkm4hhBDiLq9NnEz/4YHl9nptYslzdaKioujSpYvRY4qi4OLiwvvvv8/LL7/MO++8Y7TcoUOHGD58OHZ2dpiYmODp6cnAgQPLfP3z589Hp9MRGRmJu7s7AK6urixcuBAvL68y1RUeHk7fvn3x9/cvNuGztbWlX79+xMbGGj3u6+vLvn37yM/PB2DPnj0EBwdz+PBhvX2+vr4ArFy5kgsXLrB27Vrq16+PmZkZzz//PIsWLWLGjBlcvXrVoA1nZ2d69OhRZAyWlpa0a9eOzZs3k5GRYdBrXl5GjhxJRESEth0eHk5AQIBBuRdeeIF9+/Zx+fJlALZv346XlxfOzs565a5fv866detYvHgx8fHxHD58uNSx5OXlMXfuXBo2bIhOp6NNmzYkJSUZ7VG+e1hGWFgY3t7eTJ48GVtbWxo0aMCvv/5KWFgYrq6uODk56f083H1u4fk+Pj5GY9q6dStPPfUUNWrUwNXVlVmzZmnHCt9/W1tbbGxstKezfvPNNzRt2hQ7Ozt69OjB+fPntXN27NiBp6cnNWvWZMKECaiqqteen58fW7duLfU9K44k3UIIIcRdLqVnkt6wZ7m9LqVnltjmiRMnaNKkSYnl+vfvz9GjR432snbs2JHQ0FBWrFhBfHz8fV07wM6dO+nfvz8mJg+WIhQmeyNGjGDEiBGsXr2a27dvGy2bkZHBhg0b8PDwMHq8ffv23Lp1i2PHjgEFvdrdunXDw8NDb19h0rVjxw569uyJtbW1Xj0DBgzg5s2bWjJ2t+TkZKKiooqMoZBOp6Nbt25Gh+WUh44dO3L16lXi4uLIy8vju+++Mxi2AwUfAvr06cPq1asBiIiIMJqcr1+/HhsbGwYNGkSPHj30EvqSzJ8/n1WrVrFt2zauXr3KN998Q/Xq1Ut17oEDB/Dy8iIjI4Phw4czdOhQDh06REJCApGRkUyYMEFvKE9pWVtbExERQVZWFlu3buXrr79m06ZNQMHPABQMLcrJyaFTp05s2rSJuXPnsmHDBtLS0ujcuTPDhg0DID09nQEDBjBnzhzS09Np2LAh+/bt02uvadOmJCYmGv2gVlaSdAshhBBVLCsrC51OV2K5unXroqoqWVlZBse++OILRowYwZdffkmzZs3w8PAgKiqqzLFkZGRQp06dEsu1bt0aW1tb7fXRRx/pHd+wYQMWFhZ0796d3r17k5uba9BjOHHiRGrWrImDgwPp6el88cUXRtuysLCgQ4cO7N69m8zMTLKysmjQoAGdO3fW9p06dUr7tiA9Pd3oNVSrVk1rq1C/fv3Q6XRaD+zs2bNLvPa6deuSmVnyhylj9u/fr3ffjA0HKeztLuyFrVevntG6AgICiIiI4MqVK0RHR9OvXz+DMuHh4QwZMgRTU1OGDx/OqlWruHPnTqliXbZsGXPmzKFJkyYoikLLli2pVatWqc6tX78+QUFBmJqaMmTIEJKSkpgxY4b2M2Fubn5fkyP9/Px48sknMTExwcvLi2HDhukNM7rXP//5T6ZNm0bTpk2pVq0aISEhxMbGcv78ebZt20azZs0YOHAgZmZmBAcHG3xTUPh7aex3rqwk6RZCCCGqmJ2dHdnZ2SWWK5wsaGtra3DMysqKkJAQjhw5QkZGBoMHD2bQoEHFJod79uzRJvM1b94cgFq1ahU5ofFuR48eJSsrS3u9++67esfDw8MZPHgw1apVw8LCgv79+xsMMVm0aBFXrlzh+PHjXL58meTkZADmzp2rxfXaa68BBUMHdu/ezZ49e7ShBz4+Pto+V1dX3NzcAHBwcDB6Dbm5uaSnp+Pg4KDt27RpE9nZ2ezatYs//vjDYBKjMSkpKdjbFzwbo3nz5sVOSr1Xx44d9e6bsXHyI0eO5NtvvyUsLMxo73UhHx8f0tLSmDNnDr1799abEwCQlJTEL7/8wogRIwDo27cvN2/eLPVwiaSkJKMfCkqjdu3a2r8L47p33/30dB84cIBnnnkGR0dHatasyZIlS4p9z86fP8+kSZO0Dzn29vaoqkpKSgqpqam4urpqZRVF0dsGtN9LY79zZSXrdP9NLFiwoMivCwv3F67XfbdGjRrd19rflaWo6yrumuDhvy4hhCgLLy8vzpw5Q7t27Yott3HjRlq3bm0wbOJeNWrUICQkhA8//JA///xTSxDv1blzZ4PEp2vXrmzcuJGZM2fe9xCT5ORkfv75Zw4ePMj69euBguEmN2/eNEh6AZ588kmmT5/O+PHjOXr0KCEhIYSEhOiV8fX1ZcmSJbi7u2uTP729vXn55Zdxd3fXhpYUXkNISAjXrl3Tu1fr16/HwsKCjh07GsTcpUsXRo0axZtvvqkNVzAmJyeHnTt3EhoaCsDJkyfLeHdK5ubmRv369dm2bRvLly8vtuxLL73E+++/zy+//GJwbOXKleTn5/PCCy9o+27evElERITRXvF7ubq6cvbsWVq0aKG3v/CeXr9+nRo1agBoq8bcD2tra65fv65tF1fX8OHDmTBhAlFRUVhaWhIcHKwl3YqiGL2G0NBQ7YPH3eLj40lKStK2VVXV2waIi4vD3d1du84HIT3djwArKyuDT7d/d4/iNQkhRFH8/f2L/Iq8sFdu9uzZLFu2jLlz5xot98EHH3Do0CFu377NzZs3WbhwIba2tqUaK363KVOmcPXqVQIDA7UJZykpKUyZMqXUS6etXLmSxo0bc/r0aWJjY4mNjeXMmTO4uLjorcxxt8DAQC5dumSwDF6hp59+mqysLCIjI7Wk287ODkdHRyIjI/WS7pEjR+Li4sKgQYNITEzkzp07/PDDD0ycOJFZs2ZRs2ZNo20EBwezY8cOo5Mpb926xZEjR+jXrx92dnYEBQUVew8K34fCV15eXrHl77V8+XJ+/vnnEj9gTZw4kR07duhdf6GIiAhmzpypvQexsbGsX7+erVu3kpFR8DRrd3d3gyUGC7388su89957xMfHo6oqx48fJyMjA0dHR+rVq0dkZCR5eXl88803ZV7Z5m6tWrViw4YNXL9+nYSEhGI/aGRnZ2Nvb4+lpSUHDx7k22+/1Y45OjpiYmLCuXPntH2vvfYaH374ofbh6MqVK6xduxaAXr16cfLkSTZs2EBubi6LFi0ySPijo6Pp2bPnfV/b3aSn+2/iUe3VfVSvSwghyiIgIIBWrVpx48YNrcMhNTUVGxsbVFWlZs2aPP300+zatctoLy0U9PIFBQVx4cIFqlWrhpeXF1u3bsXGxqZMsdjb2/Prr78yffp0OnTowLVr16hXrx7Dhg0rcZJhofDwcMaPH28wPva1114jPDycN954w+Acc3NzJk6cyAcffEDfvn0NjlevXp02bdoQFxen1/PauXNnvv76a72k08LCgp07dzJt2jQ6dOjA1atXadCgAf/4xz94+eWXi4zb0dGRgIAAPvjgA62H/pNPPmHhwoXk5+fj7u5O7969WbduXYnJcOFwnUJLly6lWrVqxMTEGLwnv/zyi8G3HKUd1mFvb89zzz1nsH///v0kJiYyfvx4HB0dtf19+vTBw8ODVatW8corr5CRkVHkz9SUKVO4desW3bt3Jz09HU9PTzZu3Khdz7hx4wgJCWHMmDE8/fTTpYrXmMmTJ3Po0CFq166Nl5cXI0aMYOfOnUbLfvXVV0ydOpUJEybQpUsXBg8erI23rl69OqGhoXh7e3Pnzh22b9/Oiy++SE5ODkOHDuX8+fPUrFmTbt26MWjQIBwcHFi7di0TJ04kKCiIkSNH4u3trdfeqlWriIyMvO9ru5ty79Ioj6K2bduqZVkipzzIo9mrxrhx4zgSe4E8M++SCz8A0zv7aNPqCXl/hXgExMXF0bRpU237tYmTS7XiSGk5OdizZNGCEsuFhITg5OREcHBwubUtRHH27t3L4sWLi/z24XG3ZcsWVq5cyZo1a4osc+/fDwBFUY6oqtr23rLS0y2EEELcpTQJckUoatiIEBXFx8enyPWwRcFa6HePh39QMqZbCCGEEEKICiZJtxBCCCGEEBVMhpeIR46iXsH0zr6SC2rlC57spirFT4q5tw0hhBBCiNKSpFs8Uho1alTmcwrXBG/U6IkKb0sIIYQQjydJusUj5X6WIJSVZoQQQghR0WRMtxBCCCGEEBVMkm4hhBDiITBt2jQ+//zzqg5DiEoVFhZWLssWJiYmoigKubm5APTv35/t27c/cL3lSZJuIYQQooqlpaURERHBq6++CsCuXbswMTHBxsYGGxsbXFxcGDx4MIcOHdI7T1EUEhISAMjKymL06NE4Ozuj0+lo3LgxH3/8MRcuXNDqsbGxQVEUrK2tte09e/YYxHPx4kXGjBlDnTp10Ol0eHp6MnPmTK5du2bQbqFZs2bx0ksv6e1TVZUGDRrQrFkzgzb8/PywtLTExsYGBwcH+vfvz8WLF43enx49evDJJ59o2ykpKSiKYnRf4WO8s7KyeP3113F2dqZ69eo8+eSTrFixQq9ed3d3rKyssLGxwdnZmVGjRpGTk6MdHzVqFObm5uh0OnQ6HS1atGDatGlcuVL8ZHpj9wcKEkxTU1O998PGxobU1FQtHnNzc9LT0/XOa9WqFYqikJiYqMWlKAqbN2/WKxccHIyiKAaPdd+1a5fB/XoQ9ya4D6N3332X0NDQqg5DjyTdQgghRBULCwvD399fewQ8QN26dcnJySE7O5v9+/fj6elJ586d+emnn4zWMXnyZHJycoiLi+PKlSts3ryZhg0b8sQTT5CTk6O9AI4dO6Ztd+7cWa+ezMxMOnXqxI0bN4iJiSE7O5sdO3aQlZXF2bNny3Rdu3fv5tKlS5w7d87gAwPAl19+SU5ODgkJCeTk5PDmm28arcfX15fo6Gi9ej09PQ32NWrUCGdnZ27fvk3Xrl05f/48MTExXLlyhU8//ZR3332X+fPn69W9ZcsWcnJyiI2N5bfffuPDDz/UO/7222+TnZ1NWloaK1asYP/+/Xh7e2sfQMqqU6dOeu9HTk4OdevW1Y7Xr19f7wmRJ06c4MaNGwb1NG7cmPDwcG07NzeXtWvXGn18fHh4OPb29nrlH3Xt27fn6tWrVPYTyYsjEymFEEKIu7z62kT+eymj3Oqr7VSLfy5ZVGyZqKgoRo8ebfSYoii4uLjw/vvvk5mZyTvvvGM0kTh06BBz5szBzs4OAE9PTzw9Pcsc7/z589HpdERGRmJiUtA35+rqysKFC8tcV3h4OH379uXGjRuEh4fTrl07o+VsbW3p168fixcvNnrc19eXTz/9lPz8fExMTNizZw/BwcHMmDFDb5+vry8AK1eu5MKFC0RHR2NtXbAc7PPPP8+iRYsYM2YML7/8MjVq1NBrw9nZmR49ehAbG2s0BktLS9q1a8fmzZtp3LgxK1asYMKECWW+JyUZOXIkERERvPHGG0DBPQwICGD69Ol65V544QUiIyO5fPkydnZ2bN++HS8vL7Kzs/XKXb9+nXXr1rF06VICAgI4fPgwbdsaPKHcqIMHDzJu3DjOnDmDlZUVI0aMYP78+dp9trW1BWDHjh04OTkxduxYjh07hqIo9OjRg8WLF2tlkpKSmDRpEnv27CE/P59hw4bx5ZdfGrT51ltvERMTw9atWwGYMmUK27Ztw8TEhKCgIGbPno2pqSl5eXm88847hIWFUaNGDaZOnWpQl5+fH1u3bi319VY06ekWQggh7vLfSxkkZ7Qot1dpEvgTJ07QpEmTEsv179+fo0ePGu1l7dixI6GhoaxYsUJbCvV+7Ny5k/79+2sJ9/0qTPZGjBjBiBEjWL16Nbdv3zZaNiMjgw0bNuDh4WH0ePv27bl16xbHjh0DCnq1u3XrhoeHh96+wmRwx44d9OzZU0u4Cw0YMICbN28SExNj0EZycjJRUVFFxlBIp9PRrVs3o8NyykPHjh25evUqcXFx5OXl8d133xkM24GCDwF9+vRh9erVAERERBAQEGBQbv369djY2DBo0CB69OhBREREqWOZNGkSkyZN4urVq5w9e5bBgwcDBfcaCobw5OTk0KlTJ1RVZdq0aaSmphIXF0dSUhKzZs0CIC8vj969e+Pm5kZiYiIpKSkMHTpUr638/HzGjh3L8ePH+fHHH6lZsyaBgYFUq1aNhIQEfvvtN3788UeWLVsGwNKlS/n+++/57bffOHz4MOvWrTOIv2nTptrPx8NAkm4hhBCiimVlZaHT6UosV7duXVRVJSsry+DYF198wYgRI/jyyy9p1qwZHh4eREVFlTmWjIwM6tSpU2K51q1bY2trq70++ugjveMbNmzAwsKC7t2707t3b3Jzc7Xey0ITJ06kZs2aODg4kJ6ezhdffGG0LQsLCzp06MDu3bvJzMwkKyuLBg0a0LlzZ23fqVOn6NKlCwDp6elGr6FatWpaW4X69euHTqfD1dUVJycnZs+eXeK1161bl8zMzBLLGbN//369+2ZsOEhhb/eOHTvw9PSkXr16RusKCAggIiKCK1euEB0dTb9+/QzKhIeHM2TIEExNTRk+fDirVq3izp07pYrVzMyMhIQE0tPTsbGxoWPHjkWW9fDwoFu3blhYWODo6MiUKVO04T8HDx4kNTWVTz/9FGtraywtLfUmT965c4dhw4aRmZnJli1bqF69Ov/973+Jiori888/x9raGicnJyZPnqx9yFizZg3BwcG4urpib2/PtGnTDGLS6XRGf1eqiiTdQgghRBWzs7MzGBZgTOFkwcKv7O9mZWVFSEgIR44cISMjg8GDBzNo0KBik8M9e/Zok/maN28OQK1atYqc0Hi3o0ePkpWVpb3effddvePh4eEMHjyYatWqYWFhQf/+/Q3GFC9atIgrV65w/PhxLl++THJyMgBz587V4nrttdeAgiEmu3fvZs+ePVrC5uPjo+1zdXXFzc0NAAcHB6PXkJubS3p6Og4ODtq+TZs2kZ2dza5du/jjjz8MJjEak5KSgr29PQDNmzcvdlLqvTp27Kh334yNkx85ciTffvstYWFhRnuvC/n4+JCWlsacOXPo3bu33pwAKBjS8csvvzBixAgA+vbty82bNw0+/BRl+fLlnDlzBk9PT9q1a8f3339fZNlLly4xdOhQ6tWrR40aNXjppZe0e5mUlISbmxvVqhkf1ZyQkMB//vMfZs6cibm5OQDnz5/nzp071KlTR/uA8uqrr3Lp0iUAUlNTcXV11eoofO/vlp2dbfR3papI0i2EEEJUMS8vL86cOVNiuY0bN9K6dWuDYRP3qlGjBiEhIVy7do0///yzyHKdO3fWJvOdPHkSgK5du7Jx40by8/PLdhF3SU5O5ueffyYyMhJnZ2ecnZ1Zt24d27ZtM5rUPvnkk0yfPp3x48ejqiohISFaXEuWLAEKku49e/awe/dubfKnt7c3+/bt0xtaUngNUVFRBsNw1q9fj4WFhdEe2y5dujBq1KgiJ3MWysnJYefOnVoMJ0+eLHJS6v1yc3Ojfv36bNu2jf79+xdb9qWXXmLevHlGk/OVK1eSn5/PCy+8gLOzMw0aNODmzZulHmLSqFEjVq1axaVLl3jnnXcYOHAg165dQ1EUg7LTpk1DURSOHz/O1atXiYyMRFVVoGBOwIULF4pc7aRp06asWLGCnj17cvr0ae0cCwsL0tPTtQ8oV69e1X5O69SpQ1JSklbHhQsXDOqNi4ujZcuWpbrWyiBJtxBCCFHF/P399VbiuJuqqqSkpDB79myWLVvG3LlzjZb74IMPOHToELdv3+bmzZssXLgQW1vbUo0Vv9uUKVO4evUqgYGBnD9/Hijo2Z0yZQrHjx8vVR0rV66kcePGnD59mtjYWGJjYzlz5gwuLi56K3PcLTAwkEuXLhksg1fo6aefJisri8jISC25tbOzw9HRkcjISL2ke+TIkbi4uDBo0CASExO5c+cOP/zwAxMnTmTWrFnUrFnTaBvBwcHs2LHD6GTKW7duceTIEfr164ednR1BQUHF3oPC96HwlZeXV2z5ey1fvpyff/65xA9YEydOZMeOHXrXXygiIoKZM2dq70FsbCzr169n69atZGQUzDVwd3c3WGKwUGRkJGlpaZiYmGg9xqampjg6OmJiYsK5c+e0stnZ2djY2GBra0tKSgqffvqpdqx9+/bUqVOHd999l2vXrnHz5k327dun19awYcOYO3cuXbt25ezZs9SpU4fu3bszdepUrl69Sn5+PmfPntV+TwYPHsyiRYtITk7m8uXLBsObAKKjo+nZs2ex968ySdIthBBCVLGAgAC2bdumtzRcamqqNmyhXbt2nDhxgl27dtG9e3ejdSiKQlBQEA4ODtStW5cdO3awdetWbGxsyhSLvb09v/76K2ZmZnTo0AGdTsdzzz1HzZo1S5xkWCg8PJxx48ZpvdyFr9dee63IZevMzc2ZOHEiH3zwgdHj1atXp02bNty6dYsWLVpo+zt37sylS5f0kk4LCwt27tyJq6srHTp0oEaNGkyZMoV//OMfvPXWW0XG7ejoSEBAgF4Mn3zyCTqdDnt7ewICAmjTpg2//vpriclw8+bNsbKy0l6Fa4THxMQYrNNtbDnFhg0blmrVDXt7e5577jmD3uf9+/eTmJjI+PHj9d6DPn364OHhwapVq7h9+zYZGRlFjtXevn27Nnxm0qRJrF69GktLS6pXr05oaCje3t7Y2tqyf/9+Zs6cydGjR6lZsya9evXS66E3NTVly5YtJCQk8MQTT+Di4sJ3331n0F5gYCAzZszg2WefJTExkYiICG7fvk2zZs2ws7Nj4MCB2rChsWPH0qNHD1q2bEnr1q0NvhE4dOgQ4F1LOwAAIABJREFU1tbWtG/fvsR7WFmUwq7/R1nbtm3Vyl6ncdy4cQB89dVXldquKDt5r4R4vMXFxdG0aVNtuyqWDAQICQnBycmJ4ODgcmtbiOLs3buXxYsXF/ntw9/ZgAEDGDNmDP7+/hXazr1/PwAURTmiqqrBJyZZp1sIIYS4S2kS5IpQ1LARISqKj49PuTyC/WG0fv36qg7BgAwvEUIIIYQQooJJ0i2EEEIIIUQFk6RbCCGEEEKICiZjusVjY8GCBUYfjVy4r3BC5b0aNWrE5MmTKzQ2IUTVUlXV6NrDQghRlLIuRiI93eKxV7ickxDi8WRpaUlGRkaZ/wMVQjy+VFUlIyMDS0vLUp8jPd3isSG91UIIY1xcXEhOTiYtLa2qQxFC/I1YWlri4uJS6vKSdAshhHismZmZUb9+/aoOQwjxiJPhJUIIIYQQQlQwSbqFEEIIIYSoYJJ0CyGEEEIIUcEk6RZCCCGEEKKCSdIthBBCCCFEBZOkWwghhBBCiAomSbcQQgghhBAVTJJuIYQQQgghKpgk3UIIIYQQQlQwSbqFEEIIIYSoYJJ0CyGEEEIIUcEk6RZCCCGEEKKCSdIthBBCCCFEBZOkWwghhBBCiAomSbcQQgghhBAVTJJuIYQQQgghKpgk3UIIIYQQQlQwSbqFEEIIIYSoYJJ0CyGEEEIIUcEk6RZCCCGEEKKCSdIthBBCCCFEBZOkWwghhBBCiAomSbcQQgghhBAVTJJuIYT4v/buPc6usj70/+dLQsgQLgmYiHWCKJmflFrr6UnrtUWl1h9W6++glGq9649qjiXiAa9UEbWVi6RUjYrWKt74FUrrwQMi6DFarVVQLBrDb0cRsuWSAXIhyUAufM8fa49uJnvPrD2z156ZPZ/367Vfk/08a63nO+Ny851nvut5JEmqmEm3JEmSVDGTbkmSJKliJt2SJElSxUy6JUmSpIqZdEuSJEkVm9/JwRHxROAPgSOBj2fmXRGxArg7M++vIkBJkiRptiuVdEfEQcDngJOBABK4CrgLOB/4/4G3VRSjJEmSNKuVLS95P/BHwMuBR1Ik3qOuAZ7b5bgkSZKkvlG2vOQlwNmZ+YWImDem71bgmK5GJUmSJPWRsjPdRwI/HecaB3UnHEmSJKn/lE26bwWe2qbv94FbuhOOJEmS1H/KJt2XAm+LiL8AFjTaMiKeBZwBfKqK4CRJkqR+UDbpPh/4X8Bngfsabf8GXA98JTM/VEFskiRJUl8o9SBlZu4D/jwiPkKxUsky4F6KhHtdhfFJkiRJs96ESXdELAC+C7wtM78KfKvyqCRJkqQ+MmF5SWbuBh4L7K0+HEmSJKn/lK3pvg744yoDkSRJkvpV2c1xPgR8LiLmA/8K3EmxFfyvZObPuxybJEmS1BfKJt2jD0u+mWKJwFbG7lQpSZIkifJJ96srjUKSJEnqY2WXDPxMtwaMiOMpylWeCmwFPgm8p7Es4UTnngy8HXgCsAv4PvCizNzZrfgkCWDNmjXUarWWffV6HYDBwcH9+oaGhjjjjHZ/EJQkzVVlZ7oBiIgAjgeOoFin+6eZmeOf9bDzl1BsqLMeeCFwLPBBigc6z57g3NcBH6bYqOcsYAnw7E6/B0maqpGRkekOQZI0y5ROWBtJ7/uApU3NmyPi7Mz8h5KXeT0wAJycmduB6yLiMOCciDi/0dZq7EcAa4C/ysxPNHX9S9n4JakT481Wr1q1CoC1a9f2KhxJ0ixXasnAiPgL4BLgZuA1wPMaX28GLomIl5Qc7yTg2jHJ9WUUifgJ45z3Z42vXStzkSRJknql7Ez3W4DPZ+bLx7R/JiI+C7wV+GKJ6xwHfL25ITNvj4hdjb6r2pz3ZOAW4LUR8U7gkcAPgDMy8zslvwdJFWlX/zxe7TNY/yxJmjvKbo7zeOBzbfo+1+gvYwnFw5NjbWn0tXNUY4yzKRL8FwA7ga9ExCNbnRARp0XEDRFxw/DwcMnwJHXTyMiI9c+SJFF+pvt+oPVUVdF+fwdjtnrwMtq0jzoAOAQ4JTO/AhAR3wFuA94I/PV+g2ReQlESw8qVK0s/7Cmpc+1mq619liSpUHam+xrgbyLiD5obI+KpFA9XXlPyOluAxS3aD6f1DPio+xpfvzHa0KgLv5FiNRVJkiRpxuqkpvspwDci4pcU28AfRTHLvbHRX8YGitrtX4mI5cCiRl87P6WYCY8x7QE8VHJsSdrPeOtxtzN6/OhMflnWsEvS3FV2c5y7IuJJFCuW/AHFOt2/oNge/tOZuavkeNcAZ0XEoZk5WpJyKjDCr7eab+XLwLuBZwFXA0TE4cB/BS4sObakKejX5LRWq/HDm39CHLJ04oMbcndRsXbTrZvLn7PDZ0skaS4rvU53I7H+cOM1WR8DTgeujIjzgMcB5wAXNS8jGBEbgXWZ+drG2DdExJeAf4iItwH3UMyu7wE+MoV4JJVUq9X4yYb1LF1+VOlzcn7xx6nNO++b4MhfG950V8exTVUcspT5K19c6Rh7b7ii0utLkma2sut0PyUi/qxN3ykR8eQy18nMLcCJwDyK5QHfQ7HpzbvHHDq/cUyzlwH/ClwEXEGRcD+7cU1JFRtd/q8Ti5cdweJlR/RkLEmSZrKyM91/C3yzTd9vAm+g2JJ9Qpm5fqJjM/OYFm07GuO8ocw4klRGvV4n799W+Ux03j9Mvb670jEkSTNX2aT7d4Dz2/R9j6JkRFIfGxwcZMHO+zjlrFdWOs7lF3yGZYs6nx2XJGkmK5t0L6R9Kco8itVHJGnWGRwc5J49C3pS0z04uKzSMSRJM1fZdbp/Cvxpm74/pdiiXZIkSVILZWe6PwZ8PCK2A58A6sCjgdOA1wKdrQcmSZIkzSFl1+n+REQ8HjgDeHNzF7CmseW6JFVqvLXCR1c8GRwcbNnvxjSSpOnUyTrdZ0bER4E/Ao6kWCv7+sz8eVXBSVJZIyMj0x3CpE32lwl/kZCk2aN00g2QmT8DflZRLJIEwIYNG3jOc57T0Tm7dhUb47ZLXmu1GldfffV+7fv27YODql8tJXdtpVbb1nJ3znq93vaXhtHvq1V/vV5v+/2akEvSzNI26Y6IA4GB5p0iG+1LgbOA44E7gLWZeVOlUUqaU/bu3cvIAw8QBy4ofU5S7H65c/ee8ufs2c2B8+fDQR2H2Ll9e7h/x0PceNPtbQ5oHUTkXgC279y/f/vOh7j7nv2vF7lt0mFKkqox3kz3BcDzgRWjDRFxOPADiocotwCHA38REU838ZbULQcddBB7DziAA5c+8mHte7duIXe33mAm5o//h7tYsID5i5c8rG3P8N0cdOCB7J1auKVlHM6+A59e+Tjz9ny78jEkSZ0Z779SzwA+P6btTRQJ9xszc21EPAr4OvB24NRqQpQ01wwMDDA0NLRfe/3BEUbISV5zIYNLj3x449Ijqdfr7Cw/OT55D+0lcltPEuLIbb+qBZckzQzjJd2PAcbOXj8fuDUz1wJk5p0RcRFwTjXhSZqLBgcHWbt2bU/GWrVqFffcurknY0mS5q7xku5FwH2jbyLiYOBJwKVjjrsFeET3Q5s5xltZoJ3R41s9NDUeH36S+tQB88mHDu1ZeUm7pRMlSdNjvKR7E/B4YF3j/TMotnz/tzHHHQxsp4/VajVqtQ2sWLG89DkLFxY/2sydpc/ZuHFTx7FJkiRp5hsv6b4WeEtEfAe4G3gbsBv4X2OOewrQ7nH8vrFixXIuvvjMSsdYvfrCSq8vSZKk6TFe0v0+4E+BHzXeB/CuzPxV8WNEzANeDVxRWYSSJqVdWZQ7N0qS1Httk+7M3BwRvw2cAiwBvpeZ3xpz2COAvwe+XF2IkrppKjs3Dm+6i8sv+Ezp47duLh4LWbys/OYzw5vuYtlx1W9WI0lSL427sG1m3g98apz+u4EPdjsoSVPXbrZ69OHeTlcHabWE30S27b0XgGWLyifRy447YlJjSZI0k3W0DTxARBwAXA/8ZWZ2tqSHpFlrMiUnk03wJUnqNx0n3RS13c8EDu1uKJI0PXLHMHtvKP9oSu7aCkAcvLj8IPv20NipXpI0B00m6ZakvjGZUpZabVtx7mOXdXTO9vIriEqS+oxJt6Q5rVdlM6tWreLGm/p+dVVJUhsHTOKch4D3AHd0ORZJkiSpL3U8052ZSZF0S5I6ELmNeXu+3eE5RU1KxqKOxpEkzSxTLi+JiKOBZ2bmpV2IR5L60mSXQRzd4Gho6OiejCdJqkY3arp/D/hHwKRbktqY7C6fLrsoSf1hMjXdkiRJkjrQdqY7Ir5e8hpLuxSLJEmS1JfGKy85AdjUeI1nXvfCkSRJkvrPeEn3RuDfM/NV410gIl4M/H/dDEqSJEnqJ+PVdN8ArCxxjcTNjSVJkqS2xpvp/iIwUuIa3wde3Z1wJEmSpP7TNunOzC8DX57oApl5O/CZbgYlSZIk9ROXDJQkSZIq1jbpjohLI+KxY9oeFxEHVh+WJEmS1D/Gm+l+GU1rcEfEPKAG/HbVQUmSJEn9pNPyElcpkSRJkjpkTbckSZJUMZNuSZIkqWLjrdMNcFpEPL/x76DYCOcNEXHnmOMyM9/d9egkaQ5Ys2YNtVqtZd9o+6pVq/brGxoa4owzzqg0NklSd0yUdL+mRdtrW7QlYNItSV02MDAw3SFIkrpgvM1xLD2RpB5wtlqS+t9EM92SNKF25RHjlUbAzC6PsORDktRNJt2SKtOvpRH9+n1Jkqpj0i1pyvpxZrcfvydJ0vSxbluSJEmqmEm3JEmSVDGTbkmSJKliHdV0R8QjgKcARwJXZeZ9EbEQ2J2ZD1URoCRJkjTblZrpjsIFQB34n8CngGMa3V8C3llJdJIkSVIfKFte8nbgjcC5wJMptoQfdRXw/FYnSZIkSSpfXvI64NzM/NuImDembyNwbHfDkiRJkvpH2ZnuRwPfbdO3G1jUnXAkSZKk/lM26f4l8IQ2fb8D3NqdcCRJkqT+Uzbpvhx4V0Q8vaktI+L/Av4HcFnXI5MkSZL6RNmk+xxgA/BNoNZouxy4ufH+A12PTJIkSeoTpR6kzMyRiHgm8FLguRQPT94LvBf4fGburSxCSZIkaZYrvTlOZu4DPtt4SZIkSSrJbeAlSZKkipWa6Y6IW4Fs0/0QsA24Efj7zPxxl2KTJEmS+kLZme51wDzgURTLA3638fU3KBL324AXAN+PiKdVEKckSZI0a5VNur9FMZv92Mw8MTNfmpknAo8FtgPXACuAHwHvqSRSSZIkaZYqm3S/lWIb+LuaGzPzTuB9wFszcydwMfD73Q1RkiRJmt3KJt3LgQfb9D1AsU08FDtXLphqUJIkSVI/KZt0/xT4HxFxUHNjRCwEzmz0Q1Hjffd4F4qI4yPiaxGxKyLuiIhzI2LeBOccExHZ4uVOmJIkSZrxyq7T/Rbgy8DtEXE1sBlYBjwPWNz4CvA04KvtLhIRS4DrgfXAC4FjgQ9SJP9nl4jjTODbTe/vKRm/JEmSNG3K7kh5fUT8LkVi/IcUq5jcSZFAvy8zf9o47vQJLvV6YAA4OTO3A9dFxGHAORFxfqNtPLdk5nfLxCxJkiTNFJ3sSLmeYhv4qTgJuHZMcn0ZcB5wAnDVFK8vSZIkzTi93pHyOGBDc0Nm3g7savRN5B8jYl9E3BkRF0XEQBVBSpIkSd1UeqY7IpYBLwEeDywc052Z+doSl1kCbG3RvqXR186DwEco6sW3A8+kWMbwWIracEmSJGnGKrsN/OMpdqGcByyieIDxiMb7LRQb55TVajv5aNNenFCsB/7GpqZvRMTdwNqIeFJm3tQi5tOA0wCOPvroDsKTJEmSuqtseckFwPeAR1IkyCdRPBD5OorSkP9W8jpbKFY7GetwWs+Aj+eKxtffbdWZmZdk5srMXLl06dIOLy1JkiR1T9nykt+jWHlkdIOcAzJzL/CpiHgE8HfAs0pcZwNjarcjYjnF7PmGlme0l2O+SpIkSTNS2ZnuQ4D7MvMhilKSRzT13UCRlJdxDfDciDi0qe1UYARYV/Iao17c+Hpjh+dJkiRJPVV2pvsXwFGNf98CnAJ8pfH++ZQvDfkYcDpwZUScBzwOOAe4qHkZwYjYCKwbfTgzIs4BDqXYGGc7xVrhZwFXZuZ/lhxbkiRJmhZlk+7rgOcAlwMXAZdFxDOAvRTlIu8vc5HM3BIRJwIfpliTeyuwhiLxHhtX89bwGyh2o3wdRS357RR15qXGlSRJkqZT2aT77cBBAJn5TxExQlEWcjBwMfCJsgM2Ntl59gTHHDPm/WUUm+hIkiRJs86ESXdEzKOYzb5jtC0zr8LdIyVJkqRSyjxImRQPS/6XimORJEmS+tKEM92Z+VBEbKJY1k+SpFljzZo11Gq1ln31eh2AwcHB/fqGhoY444wzKo1N0txSdsnAjwNviogFVQYjSVKvjIyMMDIyMt1hSJojyj5IeShwLPDziPgKcCcP35QmM/Pd3Q5OkqQyxpvRnoxarcaqVata9s2EWfB23+94s/cwM2KX5qqySfc7mv79mhb9CZh0S5KmRa1W4ycb1rN0+VETH9yQ8wOAzTvvK33O8Ka7Oo6tl5y5l2auUkl3ZpYtQ5EkaVosXX4Up5z1ykrHuPyCz1R6/Wbdnr2H9jP4zoBL1Ss70y1JknqoVqvxw5t/QhyytPQ5ubuo/Lzp1s3lz9kx3HFskjpXOumOiABeQLEF+5HAOZl5W0ScANQy845xLyBJkjoShyxl/soXVzrG3huuqPT6kgqlku6IWAJcDTwZ2E7xYOWHgNuA/xe4Dzi9ohglSRpXvV5n247tlZd/DG+6i92H7Kp0DEn9qWyt9gXAcuDpwCOAaOq7Hjixy3FJkiRJfaNseckLgTMz898b28I3u50iIZckaVoMDg6yYOd9PXmQctmiIyodQ1J/Kpt0HwL8sk3fQh4+8y1JkqaoXq+T92+rvOY67x+mXt9d6RiSypeX3AL8cZu+E4CbuxOOJEmS1H/KznR/BPhIRGwDvtBoWxwRrwbeCJxWRXCSJJU1vOmujh6k3Lq52BRn8bLy5SLDm+5i2XG9KS8ZHBzknj0LerJ6yeDgskrHkFR+c5xPRMSxwHuAcxvN1wEPAedn5ucrik+S1GfG2/RlvG3Mx9vAZWhoqOM4tu29F6CjGu1lxx3RdqzZvDV7vV5vuWlOvV6f9C6XAwMDHf/vKPWz0ut0Z+bbIuKjwHOAZcC9wHWZ+fOqgpMkzS2TTfAmk8SNJplr164tfc4rXvEKrr76aq6++ur9+h588EH27du3X/tDDz0EwL333tvymj/+8Y9bXm/Xrl3k/IHSsU3FyMgIP/jhzWQc/rD2yJ3A3kld8/4de7n7ntvHXG/bZEOUZr2y63TPy8x9mXkb8MmKY5Ik9bHxEuTJJMK9tHXrVnbs3EkcuGD/zjgA5rd4VGpvkbTm/Nb/yd0L7N29Z7/2bCTrvZJxOPsOfHqlY8zb8+1Kry/NZGVnuu+IiC8Cn83MG6sMSJKkmWpwcJBtBw1w5CmvqHysuz5yARy8uPJxoJilj3yg8qQ4ctuvym2kuabs6iVXAi8DvhcR6yPibRFxdIVxSZIkSX2j7IOUb4iI04E/AV4OvBt4X0R8E7gU+OfMvL+6MCVJUlUOOuggHtx7UE/KS9o9UCr1u04epNwD/CvwrxFxOHAqxez3J4EPU2ygI0mSuiR3DHe0OU7u2gpAdFCWkjuGYWGLGnVJXVU66W6Wmdsi4hrgSOBxwKO6GpWkUsZbeq2d0eNbLQ82EZf6knonFixgEcnQY8uvoV2rFauDdHIOLKNer7N9Z28f3JTmmo6S7og4FDiFYob7D4EHgKuAz3Y/NEkTqdVq1GobWLFieelzFi4s/m+fubOjsTZu3NTR8ZKmZv7iJQwtPbKjlVwmu/rLqlWr9lveT1J3lV0ycLSW+wXAQuCbFLtQXm4ttzS9VqxYzsUXn1n5OKtXX1j5GJIk9auyM91XAbcA7wc+l5n+OixJmpP2DN/NvZdfWvr4vVu3AMXMdafjsPTIjs6RNHOVTbqfnJnfb9UREScAr8zM13QvLEmSZp7JbDdf23pfcW6nCfTSIyc1nqSZqeySgQ9LuCNiBfAKipKTxwC7AJNuSVJf69V285L6T+kHKZuWCXwF8NRG84+ADwBf7H5okiRNzXgr/Iy3ks9kVuppN9ZEKwa5KpA0N4ybdEfEAcD/TZFo/ynFQ5R3AB8B/jvwpsz8ZtVBSpLUbQMDA301zlRFbutoG/horICUsaijMaS5qm3SHREXAn8BLKNYGvBfgM8A1wOHAW/sRYCSJE1WL2eQZ/Ns9aRq1Rsz+ENDR1c+ltQPxpvpfjOQwNXAqzLz3tGOiMiqA5MkSb1hrbpUvfGS7k8BLwb+BLglIi4DLs3M7/UkMkmS1JL149Lsc0C7jsx8HXAUxe6TNwKvB/49In4KvJViFlySJM0QAwMDs6aGXJprxn2QMjMfAL4AfCEiHsWvlwl8W+OQD0TEWuCKxrGSJKlizlb3h3Z/sajX6wAMDg62PM+/WMxObWe6x8rMOzPzvMx8AvBkYC0wBFwK3FlRfJIkSXPKyMgIIyMj0x2Guqz0Ot3NGpvlfD8izgBeQDEDLkmSpJLazVbP5odUx1sbf7wZ/Lkwez+ppHtUZu4Brmy8JEmSpJbm+uz9lJJuSZIkadR4s9WzeQa/G0y6JUmSKjJeuUU7Ey392M5cKNGYzUy6JUmSKlKr1fjJhvUsXX5U6XNyfgCweed9pc8Z3nRXx7FNhb9MdM6kW5IkqUJLlx/FKWe9stIxLr/gM5Vef6xarcYPb/4JccjS0ufk7mKLl5tu3Vz+nB3DHcc2U5l0S5IkVaRer7Ntx/bKk+LhTXex+5BdlY4xVhyylPkrX1zpGHtvuKLS6/eSSbckSVKDG9aUU6/Xyfu3VZ4U5/3D1Ou7Kx2jV0y6JUmSJjDZ5e4GBwdZsPO+npSXLFt0RKVjaGpMukuo1+vs2rWD1asvrHScWm0TBx98SKVjSJJU1ngPy030UNxsnfntxw1rqjA4OMg9exb0pLxkcHBZpWP0ikm3JEnq2MDAwHSHMGsMb7qro5rurZuLVUsWLys/cz286S6WHedM90xm0l3C4OAgmTu5+OIzKx1n9eoLiVhU6RiSJJU1G2eqZ5qhoaGOz9m2916AjspFlh13xKTGUu+YdEuSJFVkMr+4WMrSnw7o9YARcXxEfC0idkXEHRFxbkTM6+D8AyLixojIiHh+lbFKkiRJ3dDTme6IWAJcD6wHXggcC3yQIvk/u+RlXgc8upIAJUmSpAr0eqb79cAAcHJmXpeZHwPeA7w5Ig6b6ORG0v5+4J3VhilJkiR1T69ruk8Crs3M7U1tlwHnAScAV01w/nuBbwNfqyY8SZKk3mi3JGO/Lsc41/V6pvs4YENzQ2beDuxq9LUVEU8EXg1Uu4SIJEnSNBoYGHBJxj7U65nuJcDWFu1bGn3j+RDwkczcGBHHTDRQRJwGnAZw9NFHdxalJElSxZytnlt6vnoJkC3aok170Rnx58DjgfeVHiTzksxcmZkrly5d2nmUkiRJUpf0OuneAixu0X44rWfAiYgDgQso6r4PiIjFwOhDl4si4tAqApUkSZK6pddJ9wbG1G5HxHJgEWNqvZssAgaBiyiS9i3Ajxp9lwE/rCRSSZIkqUt6XdN9DXBWRByamfc32k4FRoB1bc7ZATxrTNtRwBeBdwBfryJQSZIkqVt6nXR/DDgduDIizgMeB5wDXNS8jGBEbATWZeZrM3Mv8I3mizQ9SHlzZv5H9WFLkiRJk9fTpDszt0TEicCHKdbk3gqsoUi8x8ZVemt4SZIkaSbr9Uw3mbkeePYExxwzQf8vKFY8kSRJ0jTIHcPsveGK8sfvKtbMiINbranRfgxY1mloM1LPk25JkiTNbkNDQx2fU6ttK859bCdJ9LJJjTUTmXRLkiSpI5PZ2Gd0W/u1a9d2O5xZYTo2x5EkSZLmFJNuSZIkqWKWl0iSJPWxNWvWUKvVWvbV63UABgcH9+sbGhqaVBmJWjPpliRJmqNGRkamO4Q5w6RbkiSpj403Wz3XH27sJZNuSZIkdcV4pSyj7aOJfrO5UMpi0i1JkqTKDQwMTHcI08qkW5IkSV3R77PVU+GSgZIkSVLFTLolSZKkipl0S5IkSRWzpluSJEmzTruVUsbb8Aemb6UUk25JkiT1jZm64Y9JtyRJkmaddrPVM3XDH2u6JUmSpIo50y1JktQHxtsNsp3xdokcz1zYQbLbTLolSZL6QK1W46b16zlw6SNLn7OXAOAnw/eWPmfP8N0dxyaTbkmSpL5x4NJHcuQpr6h0jHsvv7TS6/crk25JkqQ+UK/X2bNte+VJ8Z7Nd1N/sDcrhPSyZAaqLZsx6ZYkVcL6UklTVavV+MEPbybj8NLnRO4F4Mabbu9orMhtHR3fKZPukjZu3MTq1ReWPr5e3wzA4OCyjsYYGjqu49gkaSaq1WrUahtYsWJ56XMWLiz+s5S5s/Q5Gzdu6jg2qR8NDg6y7aB7e1JeMrj0yErHaJZxOPsOfHrl48zb8+1Kr2/SXcLQ0FDH5zzwQPFbVsSiDsY5blJjSdJMtWLFci6++MxKx+hkQkSSpotJdwmT+ZPlTF2YXZIkSb1n0i1JkqQZqV6vE7mt8tIPKGq66/V6Zdd3R0pJkiSpYs50S5IkaUYaHBzk7nse6tmDlIODg5Vd35luSZIkqWLOdEuSJPWJPcN3d7Q5zt6tWwCYv3hJR2PQwyUD+4VJtyRJUh+YzLLDta33Fed2kkQvPdIljifBpFuSJKkPuMTxzGZNtyRJklQxk25JkiSpYibdkiRJUsV6nnRHxPER8bWI2BURd0TEuRExb4JzfisivtI4/sGIuD0iPhkRj+pV3JIkSdJk9fRByohYAlwPrAdeCBwLfJAi+T97nFMPB24FLgXuAB4LvBv4rxHxe5m5t8q4pZmqXq+za9cOVq/pB8PvAAASOElEQVS+sPKxarVNHHzwIZWPI0lSP+r16iWvBwaAkzNzO3BdRBwGnBMR5zfa9pOZ3wG+09T0jYioA18Fngj8oOK4JUmSpEnrddJ9EnDtmOT6MuA84ATgqg6udW/j64IuxSbNOoODg2Tu5OKLz6x8rNWrLyRiUeXjSJLUj3pd030csKG5ITNvB3Y1+sYVEQdExIKIeDzwAeD7wPeqCFSSJEnqll7PdC8BtrZo39Lom8jVwHMb/74ReF5mPtSl2CRJkvrOmjVrqNVqLftG20c3yWk2NDQ0qQ131Np0LBmYLdqiTftYfwU8BXg5cAhwTUQsbHVgRJwWETdExA3Dw8OTDlaSJKlfDQwMMDAwMN1hzAm9nuneAixu0X44rWfAHyYzR39N+4+I+BbFiiYvBT7V4thLgEsAVq5cWSahlyRJ6juzfbY6chvz9ny7g+N3ApAdPocUua2j4zvV66R7A2NqtyNiObCIMbXeE8nM2yLiPuBx3QtPkiRJM8XQ0FDH54yWzAwNHd2T8crqddJ9DXBWRByamfc32k4FRoB1nVyo8TDlkRSz3ZIkSaWMV+Pczni1z+OxLnpqJvOzG/3faO3atd0OZ0p6nXR/DDgduDIizqOYpT4HuKh5GcGI2Aisy8zXNt5fCOwF/oOiDOU3gbcAP6NYclCSJKmUWq1GrbaBFSuWlz5n4cIiZcpG6UIZGzdu6jg29a+eJt2ZuSUiTgQ+TLEm91ZgDUXiPTau5q3hb6B4iPI0YCFwO/DPwN9mJ3e/JEkSsGLF8sr3OOjFbsGaPXo9001mrgeePcExx4x5fxnOaEuSJKmhXZnQRKVA01Xy0/OkW5IkSarKTF0C0aRbkiRJs85se0B1OjbHkSRJkuYUk25JkiSpYibdkiRJUsVMuiVJkqSKmXRLkiRJFTPpliRJkipm0i1JkiRVzKRbkiRJqphJtyRJklQxk25JkiSpYibdkiRJUsVMuiVJkqSKmXRLkiRJFTPpliRJkipm0i1JkiRVzKRbkiRJqphJtyRJklQxk25JkiSpYibdkiRJUsXmT3cAkqT+VK/X2bVrB6tXX1jpOLXaJg4++JBKx5CkqXKmW5IkSaqYM92SpEoMDg6SuZOLLz6z0nFWr76QiEWVjiFJU+VMtyRJklQxk25JkiSpYj0vL4mI44EPAU8FtgKfBN6TmfvGOef3gFXAHwC/AWwCvgCcl5kPVB60NINt3LipowfV6vXNAAwOLut4nKGh4zo6R5IkFXqadEfEEuB6YD3wQuBY4IMUM+5nj3PqqY1jzwNqwBOB9za+vqjCkKUZbWhoqONzHnhgL0DHNbBDQ8dNajxJktT7me7XAwPAyZm5HbguIg4DzomI8xttrZyXmcNN778REQ8AH4+Ix2TmbRXHLc1IZ5xxRsfnrFq1CoC1a9d2OxxJktRGr2u6TwKuHZNcX0aRiJ/Q7qQxCfeoHza+dvY3ckmSJKnHep10HwdsaG7IzNuBXY2+TjwNeAi4pTuhSZIkSdXoddK9hOLhybG2NPpKiYijgHcCn21XkhIRp0XEDRFxw/Bwq4lySZIkqTemY8nAbNEWbdr3PzBiAfBPwA6gbUFrZl6SmSszc+XSpUsnFagkSZLUDb1+kHILsLhF++G0ngF/mIgI4FLgt4CnZ+aW7oYnSZIkdV+vk+4NjKndjojlwCLG1Hq3sYZiqcHnZGaZ4yVJ06gX68i7hrw6Va/X2bVrR0f35mTUaps4+OBDKh1Ds0evk+5rgLMi4tDMvL/RdiowAqwb78SIeDvwV8CfZea/VRumJGmqerWOvGvIS5oNep10fww4HbgyIs4DHgecA1zU/EBkRGwE1mXmaxvvXwr8DfBp4JcR8ZSma/6szZKCkqRp5DrymqkGBwfJ3MnFF59Z6TirV1/Y8UZk6l89Tbozc0tEnAh8GLiKoo57DUXiPTaueU3v/7jx9VWNV7NXUyTjkiRJ0ozU65luMnM98OwJjjlmzPtXsX+yLUmSJM0K07FkoCRJkjSnmHRLkiRJFTPpliRJkipm0i1JkiRVzKRbkiRJqphJtyRJklSxni8ZKEmSNN02btzU0Tbw9fpmAAYHl3U0xtDQcR3Hpv5k0i1JkuaUoaGhjs954IG9AB3tMDk0dNykxlJ/MumWJElzyhlnnNHxOatWrQJg7dq13Q5Hc4Q13ZIkSVLFTLolSZKkipl0S5IkSRUz6ZYkSZIqZtItSZIkVcykW5IkSaqYSwZO0Zo1a6jVavu1j7aNLjE01tDQ0KSWLJIkSdLsY9JdkYGBgekOQZIkSTNEz5PuiDge+BDwVGAr8EngPZm5b5xzFgDvB54CrAQWZmb0INwJOVstSZKkifQ06Y6IJcD1wHrghcCxwAcpasvPHufUg4HXAd8DvgM8u9pIpdnP0idJkmaOXs90vx4YAE7OzO3AdRFxGHBORJzfaNtPZm6NiCMyMyPijZh0S5Nm6ZMkSb3X66T7JODaMcn1ZcB5wAnAVe1OzMysODaprzhbrZmq3V9hYPy/xPhXGEmzWa+XDDwO2NDckJm3A7safZKkOWxgYMC/xkjqS72e6V5C8fDkWFsafZKkPudstaS5aDo2x2lVJhJt2ictIk6LiBsi4obh4eFuXlqSJEnqSK+T7i3A4hbth9N6BnzSMvOSzFyZmSuXLl3azUtLkiRJHel1eckGxtRuR8RyYBFjar0lSZJ6zeVWVZVez3RfAzw3Ig5tajsVGAHW9TgWSZKkUnzIV1PV65nujwGnA1dGxHnA44BzgIualxGMiI3Ausx8bVPbSRQz4k9qvH9xo+v7mXlbb8KXJEn9zNlqVaWnSXdmbomIE4EPU6zJvRVYQ5F4j41r3pi2jwKPaXp/eePrq4FPdztWSZIkqVt6PdNNZq5ngh0lM/OYMm2SJEnSbDAdSwZKkiRJc4pJtyRJklQxk25JkiSpYibdkiRJUsUis6u7r89IETEMuKxg9zwCuGe6g5Ba8N7UTOW9qZnM+7O7HpOZ+22HPieSbnVXRNyQmSunOw5pLO9NzVTem5rJvD97w/ISSZIkqWIm3ZIkSVLFTLo1GZdMdwBSG96bmqm8NzWTeX/2gDXdkiRJUsWc6ZYkSZIqZtKth4mIV0VEtni9vumYiIh3RMSmiBiJiG9GxJOmM271n4hYEREfj4gfRcS+iPhGi2N+0eJevavFccdHxNciYldE3BER50bEvJ58I+o73fyc9N7UVJX8rOza/WgOMHnzpzsAzVjPBkaa3v+86d9vA/4aOAvYALwZuD4inpCZ+yU80iT9FvA84LvAgnGO+wLwoab3u5s7I2IJcD2wHnghcCzwQYpJh7O7GK/mnil9TnpvqkvKfFZ28340B5iszPTl61cv4FVAAoe06V8IbAPe1dS2CBgG3jfd8fvqnxdwQNO/rwC+0eKYXwAXTnCdtwNbgMOa2t4C7Gpu8+Wr7Ktbn5Pem7668Zros7Kb96M5wNRelpeoU08DDgP+abQhM3cCVwEnTVdQ6j+Z+VCXLnUScG1mbm9quwwYAE7o0hhSs7Kfk96bmrISn5XdvB/NAabApFvt/Cwi9kbELRHxl03txwH7gNqY43/a6JN67TURsTsitkXEFRHxmDH9x1H8CfRXMvN2itkb71lNxVQ/J7031QvdvB/NAabAmm6NdSdFrdb3gHnAS4CPRcTBmbkGWALsyMx9Y87bAhwcEQsyczdSb3yJoo6xDvwm8G7gWxHx25m5rXHMEmBri3O3NPqkTnXrc9J7U73QzfvRHGAKTLr1MJl5LXBtU9M1EXEQcHZEXDx6WItTY5w+qRKZubrp7bci4jvATcCrgb9rPrTF6dGmXRpXlz8nvTfVC928H80BJsnyEpVxBXAEcAzFb7OHtljSajGwKzP39Dg26Vcy88fALcDvNjVvobg/xzqc1rM60mRM5nPSe1O90M370RxgCky61YmkqPeaB6wY07dfLZg0jZpnWzYwptYwIpZTPHHvPatu6+Rz0ntTvdDN+9EcYApMulXGi4B7gNuA7wDbgVNGOyPiYOAFwDXTEp3UEBFPAB4P3NjUfA3w3Ig4tKntVIr1ldf1MDz1t8l8Tnpvqhe6eT+aA0yBNd16mIj4Z4qHg/6T4rfZUxuv0xvLEj0QER8A/joitvDrhfEP4OEblEhT0vggf17j7aOBwyLixY33VwPPAl4GfBm4g2Km5WzgduDTTZf6GHA6cGVEnAc8DjgHuGjM0lhSKV38nPTe1JRN9FmZmbu6dT9mpjnAFERjYXMJgIj4G4oZm+UUD0asB/4uMz/bdEwA7wDeABwJ3EDxH5sf9j5i9auIOAa4tU33YynWil0DPJGinvBe4CvAOzLzjjHXOh74MPBUitrETwLntHgCX5pQNz8nvTc1VRN9VmbmL7p5P5oDTJ5JtyRJklQxa7olSZKkipl0S5IkSRUz6ZYkSZIqZtItSZIkVcykW5IkSaqYSbckSZJUMZNuSZqEiHhVRGREbI2IJWP65jf6zpmm8JpjWRQRn42IzY2Y/q7EOc9oHHt3RExpE7WIOCcint2i/dMRUZ/KtSVpNjHplqSpORx463QHMY7/DrwEOJNiw4s1Jc55ZePrMuCkKY7/bmC/pFuS5hqTbkmamq8CfxURR013IG38JnBHZl6amd/NzNvGOzgiBoBTgG8Au/h1Aj7rRMRB0x2DJI0y6ZakqXlf4+s7JzowIn4/Iq6PiB0RsTMivhYRvz/ZgSPiZRHxo4h4ICLuaZSRPKqpP4FXAcsb5SIZEc+c4LL/D8Xs/VrgX4DntyifeWarazWV3BzTND7AO5vGP2fMOf8lIr4VEbsiohYRr2/xfU74cxstV4mIp0bEdyJiBDi/0ffSiPhh4/xtEXFzRPzlBD8HSeoqk25Jmpo7gQ8Dp0XEY9odFBFPBNYBSygS4VcAhwHrIuJ3Oh00Ik4DPgv8FDgZeBvw3Mb1Dmkc9lTgWuCuxr+fCvxggku/EtgK/E/gUuAg4M87ja9pfIBPN43/yab+w4AvAJ8DXgh8H/hoRDxr9IAOf26HA5cBX6Qoi/lCRDyjcf11FL9QnAJ8Alg8ye9JkiZlSg/ISJIAOA/4S4r65de0OeZdwIPAiZm5FSAirgN+0Tjv5LKDRcQ84L3ANzLzz5vaNwDfasTw95n53Yi4B3gwM79b4rq/AfwR8A+Z+WBEXA/8kiIR/2jZ+EY1xgf4ZZvxDwVWZeb/boz/TeCPKWrQ/3fjmE5+bocAL8vMLzV9T2cCWzPzTU3HfbXT70WSpsqZbkmaosy8D/gg8IqIeHybw/4Q+PJo4tg4bzvFjPIJHQ75eIqHHD8/Jo5/A26bxPVGvQyYRzHDTWY+RDFL/ORxvq+p2DWacDfGexCoAUc3HdPJz20v8OUxbd8HlkTE5yLi+RHhDLekaWHSLUndsQa4Dzi3Tf8RFKUoY91FUTrRiSMaX9td74gW7WW8Argd+ElELG4kqF9q6uu2LS3aHgQWNr3v5Oe2OTP3NTdk5jqKkpLlFDXqw4368CdOOmpJmgSTbknqgszcAfwtRYL3pBaH3Ae0WuHkqEZfJ0aPb3e9ezu8HhGxEvgtilnmLU2v7zQOeXlEjP4344HG1wVjLnNkp+OW0MnPLVscR2ZekZknUCTp/w14FPCVpu9HkirnB44kdc9aihro97XoWwf8SUQcOtrQ+PcLGn2duAW4mzEPOEbE04DHTOJ6UNRtJ/Ai4FljXh+gmCl+ZuPY0WUHnzDmGs9rcd3dwMAk4hnVtZ9bZu7IzC8DH6dIvKv4JUGSWvJBSknqksbDh+cCl7Tofi/wfOBrEXEeRYL7VuBgmkpSIuIfgFdmZtvP58zcFxHvAj4eEZ+jqLt+NPB+iprof+wk7og4kCKBX5eZV7bovwl4E0Vi/vXMvDMi1gFvbzyouZmiHvzYFpdfT5E0f4Vi5vyOzLyjg/BK/dzG+d7OBR5J8WDmHcAgcDpwU2YOdxCHJE2JM92S1F3/SJH4Pkxm/ifFTPF24DMUy/3tAE7IzB81HTqv8RpXZl4CvBz4bYq66/OB6xrX29FhzM8HHgF8qs1YW4ErgRc1LUf4MuC7wN9TLAl4O61n+N8I7ASuonio8bROAuvg59bOfwDHUNTcX0ex0sw64E86iUOSpioyW5bASZIkSeoSZ7olSZKkipl0S5IkSRUz6ZYkSZIqZtItSZIkVcykW5IkSaqYSbckSZJUMZNuSZIkqWIm3ZIkSVLFTLolSZKkiv0fjAtAngczqfUAAAAASUVORK5CYII=\n" }, "metadata": { "needs_background": "light" @@ -1120,7 +1470,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAucAAAHqCAYAAACnceCLAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzde1yO9//A8ddVKqmbUhFqlfOZOQ0lzRhyCsMccj6M+ZLDhhjZfG1jGNt8bU6VNpvTfJG2YRSbw7AcG5lRyXcKt4qUdP3+SNfP3X2Xcshh7+fjcT8eu67P8bpKe1+f+/P5XIqqqgghhBBCCCGePrOn3QEhhBBCCCFEDgnOhRBCCCGEeEZIcC6EEEIIIcQzQoJzIYQQQgghnhESnAshhBBCCPGMkOBcCCGEEEKIZ0SJp92BZ4Wjo6Pq7u7+tLshhBBCCCFecEeOHElWVdXJVJoE5/e4u7tz+PDhp90NIYQQQgjxglMU5WJ+aTKtRQghhBBCiGeEBOdCCCGEEEI8IyQ4F0IIIYQQ4hkhc86FEEKIQrhz5w4JCQncvn37aXdFCPGcKFmyJC4uLlhYWBS6jATnQgghRCEkJCSg0+lwd3dHUZSn3R0hxDNOVVWuXr1KQkICHh4ehS4n01qEEEKIQrh9+zYODg4SmAshCkVRFBwcHIr8bZsE50IIIUQhSWAuhCiKh/mbIcG5EEIIIYQosk8++YSivsDR3d2dTz755Ml06AUhwbkQQgghjAwePBhFUYw+0dHRj6X+PXv2oCgKycnJj6W+whg8eDCdO3cutvYeVXJyMr1798be3p7SpUvTqlUrjh8/XqiyuT+vffv2GZy/e/cuFStWRFEUNmzY8CS6LR6RLAgVQgghhElt27ZlzZo1BuccHR2fUm/yl5mZiaWl5dPuxmP37rvvcuDAAbZu3UqFChWIjo4u0jQJV1dXVq5ciZeXl3YuIiKCEiUk/HuWyci5EEIIIUyysrLC2dnZ4JMb2G3dupXGjRtTsmRJPDw8mD59OpmZmVrZsLAwmjZtik6no1y5cvTq1YtLly4BcOHCBV599VUAnJycUBSFwYMHA+Dj48PYsWMN+pF3xNvHx4fRo0czefJknJyc8PT0BOD06dN06tRJa7Nv377873//AyAoKIiQkBDCw8O1UeU9e/bQpk0bo/ZSUlIoVaoUmzZtAnKmYgQFBTFgwABsbW1xdnY2mppx48YNRo4cSbly5dDpdLRu3ZrDhw8bpPv7+1OuXDlKlixJ5cqV+fTTTwu8/2ZmZjRv3hwvLy+qVKlCz549qVevXoFl8t639evXk5aWpp1buXIlQ4YMMcobFxdH9+7d0el06HQ6evToQUJCgkGeefPm4ezsjK2tLQMHDjSoN9fq1aupXbs2JUuWpHr16ixatIjs7OxC91lIcC6EEEKIIvrxxx/p378/Y8eO5dSpU6xatYoNGzYQGBio5cnMzGT27NkcO3aMbdu2kZycTN++fYGcEd2NGzcCcOrUKS5fvszixYuL1IewsDBUVWXv3r2EhoZy+fJlvL29qVu3LocOHWLnzp2kpaXRtWtXsrOzmTx5Mr1796Zt27ZcvnyZy5cv07JlS0aMGME333xDRkaGVvfatWuxtbWlS5cu2rmFCxdSq1Ytjh49yuzZswkMDNSCd1VV6dSpE5cuXWLbtm38/vvveHt706ZNGy5fvgzAjBkzOHHiBNu2beOPP/5g1apVVKpUqcBr7NatG99//z3h4eFFuje56tevT61atfjuu+8AuHLlCtu3bzcKzlVVxc/Pj7///puff/6Z3bt3k5iYiJ+fH6qqArBu3TpmzJjB7NmzOXr0KDVq1GDhwoUG9SxfvpzAwEDef/99YmJiWLBgAR9//DFLly59qP7/Y6mqKh9VpXHjxqoQQgiRn9OnTz/tLhSrQYMGqebm5qqNjY326dChg6qqqtqqVSv1/fffN8j//fffqzY2Nmp2drbJ+mJiYlRAjY+PV1VVVXfv3q0CalJSkkG+1q1bq2+//bZRXzp16mSQp169egZ53nvvPbVNmzYG565du6YC6sGDB03Wo6qqevv2bdXBwUFdu3atdq5Zs2bqpEmTtGM3Nze1bdu2BuWGDRumenp6qqqqqrt27VJtbGzUW7duGeRp0KCB+vHHH6uqqqpdunRRBw8ebOrWmHTq1CnV1tZWnTt3rvrSSy+pX3/9tZYWGxurAuqZM2fyLQ+o69evV5cuXaq2bNlSVVVVnT9/vvraa68ZpKuqqv7000+qmZmZ+tdff2nl//zzT1VRFHXHjh2qqqpqixYt1OHDhxu08dprr6lubm7asaurqxoaGmqQZ9GiRWqtWrW0Yzc3N3X+/PmFvg8vAlN/O4DDaj4xqYycCyGEEMIkb29voqOjtc+KFSsAOHLkCP/+97+xtbXVPv369ePmzZvaNJKjR4/SrVs33Nzc0Ol0NGnSBMiZPvE4NG7c2OD4yJEjREVFGfTJ1dUVgD///DPfeqysrPD392fVqlVAztSYQ4cOMXToUIN8LVq0MDo+ffq01vatW7dwcnIyaP/kyZNa26NHj2bdunU0aNCAyZMnExkZWeD1BQUF0a5dO6ZNm0Z4eDjjx4/Xvl04efIkzs7OVKtW7UG3iX79+vH7779z5swZVq1axbBhw4zyxMTEULFiRYOdVypXrkzFihW1a4yJiTF5D3IlJSURHx/PqFGjDO7B1KlTC7z/wpisCBBCCCGESaVKlaJq1apG57Ozs5k1axa9evUySnNycuLmzZu0b99eW1Barlw5kpOTadWqlcG8dFPMzMy0qRS57ty5Y5TPxsbGqE+dOnUyuU1f+fLlC2xz+PDh1K9fn7i4OFauXEmLFi2oXbt2gWXytl2+fHn27t1rlFa6dGkAOnbsyMWLF4mIiGDXrl106tSJXr16sXr1apN1Hj9+nP79+wNQt25dIiIieO211/j77785evQoQ4YMKdTi0DJlytCjRw/eeustLl++TPfu3Y3yqKqab12FXYCaO6982bJltGzZslBlhGkSnAshhBCiSBo1asQff/xhMnAHOHbsGMnJycydO1d7bXnu/Oxcubur3L171+C8k5OTNk/7/voetJ92o0aNWLduHW5ublhYWJjMY2lpadQeQJ06dXjllVdYvnw5YWFh/Pvf/zbKc+DAAaPjWrVqaW3//fffmJmZUbly5Xz76OjoiL+/P/7+/nTs2JG+ffuybNkyrKysjPJWqlTJINhv0qQJ4eHhtG/fnhIlSvDtt9/m205ew4YNo02bNrz99tuULFnSKL127dpcunSJCxcuaPf5/PnzJCYmag8ptWrV4sCBAwbfKNx/T8qXL0+lSpX4888/GThwYKH7JozJtBYhhBBCFMnMmTP55ptvmDlzJidPnuSPP/5gw4YNvPvuuwC89NJLWFlZ8fnnn3P+/HnCw8N57733DOpwc3NDURTCw8NJSkrSdv5o06YNERERbNmyhTNnzjBx4kTi4+Mf2Ke3336bGzdu0KdPHw4ePMj58+fZuXMnI0eOJDU1FcjZdeXkyZOcOXOG5ORkgxH5ESNGMG/ePG7evEmfPn2M6j9w4AAffvghsbGxLF++nNDQUCZMmADkbDnp6elJt27diIiI4K+//mL//v3MmjVLC7BnzpzJ5s2biY2NJSYmhk2bNlG5cmWTgTnkbKO4a9cu3nrrLU6cOKEtrAVIT0/XFnkWxquvvkpSUhILFiwwmd62bVsaNGhA//79OXLkCIcPH6Z///40atSINm3aADB+/HhCQkJYvnw5sbGxfPjhhxw8eNCgnqCgIObNm8eiRYs4c+YMJ0+eJDQ0lA8//LDQfRXIgtDcjywIFUIIUZB/4oLQvIsn7/fjjz+qXl5eqrW1tarT6dTGjRurn332mZb+7bffqpUrV1atrKzUpk2bqj/88IMKqLt379byvP/++6qzs7OqKIo6aNAgVVVVNTMzUx0zZozq4OCgOjg4qO+9957JBaF5F42qqqqePXtW7dmzp2pnZ6eWLFlSrV69ujp27Fg1IyNDVVVVvXLlitquXTvV1tbWqC83b95UbW1t1SFDhhjV6+bmps6aNUt98803VRsbG7VcuXLqRx99ZJAnJSVFHTdunFqpUiXVwsJCdXFxUfv06aOeO3dOVVVVnTNnjlq7dm3V2tpatbe3Vzt27PjA36nIyEi1devWapkyZVQ7OzvVz89PjY6OVj///HPV3Nxc3b59e75luW/BZ2HSL168qHbr1k21tbVVbW1tVT8/P23xbq65c+eqTk5Oqo2Njdq3b1911qxZBgtCVVVVv/nmG/Xll19WraysVDs7O9XT09Ngsa0sCM1BAQtCFTXPvK5/qiZNmqj370cqhBBC3C8mJkabxiBePImJibz00ktERkZq+6bncnd3Z+zYsUyePPkp9U48z0z97VAU5Yiqqk1M5Zc550IIIYT4x7pz5w6XL19m+vTpvPzyy0aBuRDFTeacCyGEEOIf65dffsHNzY2DBw+yfPnyp90dIWTkXAghhBD/XD4+PkZbN+Z14cKF4umMEMjIuRBCCCGEEM8MCc6FEEIIIYR4RkhwLoQQQgghxDNCgnMhhBBCCCGeERKcCyGEEM+RadOm8emnnxYqr4+PDytWrAAgODgYLy+vQpUrSt7HJSgoiAEDBgAQFxeHra0td+/efeR6e/TowQ8//PDI9QhRXGS3FvHMW7RoEbGxsSbTEhISAHBxcTFKq1atmvZqZSGEeBEkJSURGhrKuXPnnnZXnqiXXnqJtLS0x1LX1KlTGT16NB06dHgs9QnxpMnIuXiupaenk56e/rS7IYQQxSI4OBhfX1+sra2fdleeG82aNSMlJQV5C7h4XhT7yLmiKLWBz4AWgB5YAcxWVbXA764URWkCzAUaAwpwFJiuqurBPPm6AXOAasD5e3V/97ivQxSfgka/x4wZA8DSpUuLqztCCAHAlCmTSUnRP7b6Spe24+OPPykwT0REBEOHDtWOr1+/jr+/PwcPHiQrKwtPT0+WLVtm8tvEolJVlX/961+EhoZSoUIFvvjiC1577TUAVq9ezbx580hISMDJyYkpU6YwatQoAJKTkxk8eDD79u3DzMyMOnXqEBkZiZmZGYmJifzrX/8iKioKW1tbJkyYwLhx44zavnDhAh4eHty5c4cSJUrg4+NDq1at+Pnnnzl+/DgtWrTgm2++wdHREYADBw4wceJETp8+jZubG4sXL8bHx0erz8fHh/DwcJo0Mfm2dCGeKcUanCuKYg/sBE4D3YAqwAJyRvBnFFDO9V65o8DAe6ffAX5SFKW+qqoX7+XzAjYCS4FxgC+wVlGU66qq/vRELkoIIcQ/UkqKnsWLxz+2+saPX/zAPCdOnKBGjRracXZ2NkOGDGHdunXcvXuXoUOHMnbsWDZv3vzI/Tl48CBvvPEGycnJbNq0iR49evDXX39RtmxZypUrx7Zt26hcuTJRUVF07NiRpk2b0qhRIxYsWICLiwtJSUlATuCsKArZ2dl06dKFbt26sXbtWhISEmjbti01atSgffv2D+zPN998Q0REBK6urnTs2JFPPvmEjz76iEuXLtGpUyfWrFlDhw4d2LVrFz179uSPP/7AyckJgFq1arFv375HvidCFIfintbyFmAN9FBVdYeqqsuA2cBERVFKF1CuE6C7Vy5cVdVwoDtgS04Anus9IEpV1XGqqu5WVfUd4Adg5pO4GCGEEKI46fV6dDqdduzg4EDPnj0pVaoUOp2O6dOnExkZ+VjaKleuHAEBAVhYWNCnTx9q1KhBeHg4AJ06daJKlSooikLr1q15/fXX2bt3LwAWFhZcvnyZixcvYmFhQatWrVAUhd9++42kpCRmzpyJpaUllStXZsSIEXz77beF6s+QIUOoXr061tbW9O7dm+joaADCwsLw9fXF19cXMzMz2rVrR5MmTdi+fbtWVqfTodc/vm85hHiSintaS0fgR1VVU+479y3wMdAa2JpPOQsgC7h/dUjavXMKgKIoVsCr5IyY3+9bYLWiKGVUVb3xyFfwjMtv8WRBCydBFk8KIcTzwN7entTUVO341q1bTJgwgR9++IHr168DkJqayt27dzE3N3+ktipVqoSiKNqxm5sbiYmJQM70mtmzZ3P27Fmys7O5desW9erVA+Cdd94hKCiI119/HYCRI0cydepULl68SGJiInZ2dlqdd+/epVWrVoXqj7Ozs/bfpUqV0haMXrx4kfXr17N16/+HEHfu3OHVV1/VjlNTUw3aFeJZVtwj5zWBP+4/oapqHHDrXlp+Nt7Ls0BRlHKKopQDFgHXgfX38lQhJ4j/I0/ZGHKus/oj9/45JgsnhRDi+Ve/fn3Onj2rHS9YsIAzZ85w8OBBUlJSiIqKAnLmiz+qS5cuGdQTFxdHxYoVycjIoGfPnkyePJm///4bvV6Pr6+vllen07FgwQLOnz/P1q1bWbhwIbt27cLV1RUPDw/0er32SU1NNRjhfhiurq74+/sb1Hvz5k2mTp2q5YmJiaFBgwaP1I4QxaW4R87tyVkEmtf1e2kmqaqaqCjKq8A2/n9k/DLQXlXVpPvqxkT91/Okv9DyG/1+HhZOFrRlYn5y8+deX2HJNwVCiOeRr68vkZGR9O/fH8gZEba2tsbOzo5r164xe/bsQtfl4+ODj48PQUFBJtOvXLnCkiVLGDNmDJs3byYmJgZfX18yMzPJyMjAycmJEiVKEBERwU8//UTdunUB2LZtGzVr1qRKlSqULl0ac3NzzM3NadasGaVLl+bjjz9m3LhxWFpaEhMTQ3p6Ok2bNn3oezJgwACaNm3Kjz/+SNu2bblz5w4HDhygatWq2rfFkZGRhIWFPXQbQhSnp7HPuanHeSWf8zmJilIB2AAcAYbfO/02EK4oSst7o+/51a/kcx5FUUYCIyFnT1XxdMXGxvL7iVMotk6FLqNm5vxYo/+6UvgyaUkPziSEEM+ggQMH0rBhQ9LT07G2tiYgIIB+/frh6OhIxYoVmTRpUqEXg8bHx+Pp6Zlv+iuvvEJsbCyOjo6UL1+eDRs24ODgAMCSJUvo3bs3GRkZdOnSha5du2rlYmNjGTt2LElJSdjb2zNmzBht55StW7cyadIkPDw8yMjIoEaNGsyZM+fhbwg5I+f//e9/effdd+nbt6/2IPCf//wHgN9++w0bGxuaNWv2SO0IUVyUx/HVV6EbU5QrwBeqqs7Ocz6NnC0P5+dTbiHQA6imquqde+csgVjgv6qqjru3ReMpwEdV1cj7yjYFDgHNVFX9Lb++NWnSRH2R90B9HkbOx4wZQ/RfVyjR5I0n2k7W4Q009Cj3TN8LIcSzJyYmhlq1amnHT2MrRYDAwEBtsebDSkhIoFevXuzfv/+h63he9OzZk2HDhuHr6/vgzEI8AXn/dgAoinJEVVWTe3sW98j5H+SZW35vm0QbjOeK368mcCo3MAdQVTVTUZRT5Mw1B/gTuHMvb2SestnAWYQQQojHpDCB9JMwd+7cR67DxcXlHxGYA2zcuPFpd0GIIinuBaERQHtFUXT3nesDpGMYUOd1Eah7b7Qc0HZnqQtcAFBVNQPYDfTKU7YPsP+fsFOLEEIIIYR4vhV3cL4MyAA2KYrS9t6c7yBg4f3bKyqKck5RlJX3lVsBVAS+VxSlk6IonYHNQAXgq/vyfQD4KIryqaIoPoqizCNnH/T3n+hVCSGEEEII8RgUa3Cuqup14DXAnJw9zWeTsyXirDxZS9zLk1vuCNCBnBcRrQFCgVJAO1VVj92Xbx/wBtAW+BHoCvSTt4MKIYQQQojnQbHv1qKq6mmgzQPyuJs4twvYVYj6N5Mzqv7Cki0HhRBCCCFeTE9jK0XxiGJjYzn1x2mcXJ0fnPketUTOjpJXbl4rdJmk+P8VuW9CCCGEEOLhSXD+nHJydabXO4OeaBvr54c80frzSkhIQE29QdbhDU+0HTU1iYSEzCfahhBCCCHEwyjuBaFCCCGEeATTpk3j008/LVReHx8fVqxYAUBwcDBeXl5PsmuPnbu7Ozt37iyWtgYPHsyMGTMAOH78OC1btiyWdoXIS0bOxUPLb+57QkICgPba5Lzym8fu4uJC8h3LYnkJkYtLuSfahhBCPAlJSUmEhoZy7ty5p92VZ46iKMTGxlK1atVHrqt+/frY2dmxdetWunTp8hh6J0Thyci5eOzS09NJT09/2t0QQogXTnBwML6+vlhbWz/trrzw+vfvz5dffvm0uyH+gWTk/DmUkJDAjbSUJz4nPCn+f2Ta3so3Pb9dXHJ3hFm6dOkT6deTVNBOOAV9IyC72gjxzzNh8kSu6a8/tvrK2tmz6JOFBeaJiIhg6NCh2vH169fx9/fn4MGDZGVl4enpybJly/L95rIoli9fzsKFC0lISMDV1ZWwsDAaNWpkNEI9ePBgXFxcmDNnDnv27GHAgAGMGzeOTz75BHNzc/7zn/9gaWlJQEAAycnJTJ48mcDAQKOygFY+9+/t/Q4dOsT48eOJiYnB2tqanj17snDhQiwtLfH29gagQYMGKIrCypUr6dOnD9u2bWPGjBlcuHCB2rVrs2zZMurXrw/A77//zrBhw4iNjcXX1xdFUQza8/HxYfjw4WRkZGBlZfXI91OIwpLgXPwjJSQkmNxWMiEhId9R/1u3ch5UTKUnJCTkG9RL4C7Ei+ma/jq+Ab0fW33bP133wDwnTpygRo0a2nF2djZDhgxh3bp13L17l6FDhzJ27Fg2b360HYXXr19PUFAQmzdvpkmTJvz5559YWFgUquz//vc/bt++zaVLlwgODmbEiBG0a9eOI0eOEBcXR+PGjXnzzTepXLlykfpkbm7OokWLaNKkCQkJCXTs2JGlS5cSEBBAVFQUiqJw7Ngx7aHh6NGjDB06lK1bt9KkSRPCwsLo2rUrZ86cQVEU/Pz8CAgIYOzYsfz3v/+lb9++TJkyRWuvUqVKWFhYcObMGS2gF6I4SHD+HHJxccHy5rVi2a0l8/qtIu+N/rB7queMlFgWqczDSk9P5+jvJ1CVMiZSTY+QKGoWACk3jdNTbmbzd3KciTI3HqmfQghxP71ej06n044dHBzo2bOndjx9+nReffXVR25nxYoVvPvuuzRt2hSgSPO4LSwsmD59Oubm5rz55puMHDmS8ePHo9PpqFOnDnXq1OH48eNFDs4bN26s/be7uzujRo0iMjKSgIAAk/mXL1/OqFGjeOWVVwAYNGgQc+fO5cCBAyiKwp07dwgICEBRFN544w0WLjT+1kKn06HX64vUTyEelQTnokDp6elEnz6NhVP5QpfJIuerwVNJVwtd5k7S39hYWECJ4gnOAVSlDHctPJ9oG+Z3fnmi9Qsh/lns7e1JTU3Vjm/dusWECRP44YcfuH49Z4pNamoqd+/exdzcPL9qHig+Pp4qVao8VFkHBwet7dy58eXL////Q6ytrUlLSytyvWfPnmXixIkcPnyYW7dukZWVZRCw53Xx4kVCQkL47LPPtHOZmZkkJiaiKAqVKlUymMri5uZmVEdqaip2dnZF7qsQj0KCc1GgjIwMUIq2briEnX3RG1LvtVVMv5EZGRko6u0nHjwr6g2TcyeFEOJh1K9fn7Nnz2oj2gsWLODMmTMcPHgQZ2dnoqOjefnll1FV9ZHacXV15c8//zSZVqpUKW2aH+RMY3nYOe42NjZGdeVn9OjRvPzyy6xduxadTsenn37Khg35vxfD1dWV6dOnM336dKO0yMhILl26hKqqWoAeFxdn8ECSmJhIZmamwTQiIYqDBOfFQBYZCiGEeBx8fX2JjIykf//+QM7IrrW1NXZ2dly7do3Zs2cXui4fHx98fHwICgoyShs+fDgTJ07Ey8uLRo0aaXPO3dzcaNiwId988w116tRhx44dREZG0qRJk4e6noYNG7JgwQJmzJhBZmZmgfu3p6amUrp0aWxtbfnjjz/4z3/+g5OTk5Zevnx5zp8/r03BGTFiBN27d6dt27Y0a9aMW7dusWfPHry9vWnRogUlSpRgyZIlvP3222zZsoVDhw4ZTAnas2cPbdq0kcWgothJcP6UPetbDlpZWaHYlcWh18An2s7V9aFY6q+R9URb+X9WVlZkZFkVy7SWx7FrghBCAAwcOJCGDRuSnp6OtbU1AQEB9OvXD0dHRypWrMikSZMKvRg0Pj4eT0/TfwN79erF1atX6devH5cuXcLd3Z01a9bg5ubG4sWLGTRoEF988QV+fn74+fk99PX4+/uzc+dO3N3dcXd3Z8iQISxYsMBk3k8++YSRI0cyb948Xn75Zfr06cPPP/+spQcFBTFo0CDS09P56quv6N27N8uXL2fs2LHExsZibW2Nl5cX3t7eWFpasmnTJkaMGMGMGTPw9fWlR48eBu19/fXXvPXWWw99bUI8LOVRv/p6UTRp0kQ9fPhwsbf7MNsOjhkzhlN/nMbJ1bnQZfRXrgFgV65socskxf8PS3MLMosxOE+7nYli6/TgAveot3IW6iilCj8nUE1LwrakJSk3iyc4b9zwpedyW0khhKGYmBhq1aqlHT+NrRQBAgMDKVeuXL4LIQsjISGBXr16sX///oeu40V24sQJRo4cKfdHPBZ5/3YAKIpyRFVVk185ycj5c6hatWpFLnMjK2dxZjmbwgfn5WqWJSEhgcwit/ZwrK2ti3xtsbE5u6FU8yjKGz/LkZCQQMrN7CK1JYQQ9ytMIP0kzJ0795HrcHFxkcCzAPXq1ZP7I54aCc6fQw8zD/1hXww0ZswYbhRh15VH4eLi8lD9g4e7LlNbHwohhBBCPE1F24ZDCCGEEEII8cRIcC6EEEIIIcQzQoJzIYQQQgghnhESnAshhBBCCPGMkOBcCCGEEEKIZ4QE50IIIcRzZNq0aQW+SfN+Pj4+rFixAoDg4GC8vLyeZNeKZM+ePY/tJW2KonDu3DkAJk6cyLJlyx5LvUI8DbKVohBCCPGcSEpKIjQ0VAtEnwZFUYiNjaVq1apPrQ8Feeedd2jWrBlDhw7F0tLyaXdHiCKTkXMhhBDiOREcHIyvry/W1tZPuyvPrAoVKlCzZk22bNnytLsixEORkXMhhBDiIYyZMJEr164/tvrKlbVn6aKC3zoaERHB0KFDtePr16/j7+/PwYMHyc+Pp2sAACAASURBVMrKwtPTk2XLlj3ydJFz584xbNgwoqOjsbCw4LXXXuO7777D29sbgAYNGqAoCitXruT1118vsA/Xrl1j0qRJ/Pjjj6Snp9O6dWs2b95s1OaSJUtYtmwZP/30E05OTkyfPp1169aRkZFB9+7dWbRokfZQMn/+fBYuXIiiKMyZM8eoLh8fH8LDw3njjTce6T4I8TRIcC6EEEI8hCvXrpPd6fEFf1fCNzwwz4kTJ6hRo4Z2nJ2dzZAhQ1i3bh13795l6NChjB071mTwWxTvvfcer7/+Ort37yYzM5PDhw8DEBUVhaIoHDt2TJvWcvXq1QL74O/vj62tLadOncLW1pZff/3VqL0PPviA77//nsjISJycnAgICOD8+fPaw0G/fv14//33+fDDD/nhhx/45JNP2LVrFx4eHowYMcKovlq1arFx48ZHugdCPC0SnAshhBDPCb1ej06n044dHBzo2bOndjx9+nReffXVR27HwsKCixcvkpiYiIuLS4ELSQvqw+XLl4mIiODq1avY29sD0Lp1ay2vqqpMnDiRQ4cOsXv3bsqUKYOqqixfvpzjx49TtmxZAAIDA+nXrx8ffvgh69atY8iQIdStWxeAoKAg1q5da9AnnU6HXq9/5PsgxNMgc86FEEKI54S9vT2pqana8a1btxg1ahRubm6ULl0ab29v9Ho9d+/efaR25s2bh6qqNGvWjDp16rBq1ap88xbUh/j4eMqWLasF5nnp9Xq++uorpk2bRpkyZYCcRa+3bt2icePG2NnZYWdnR4cOHUhKSgIgMTERV1dXrQ43NzejelNTU7Gzs3uUWyDEUyPBuRBCCPGcqF+/PmfPntWOFyxYwJkzZzh48CApKSlERUUBOSPSj8LZ2Znly5eTmJjIl19+yZgxY/LdIaagPri6unLt2rV8R7Ht7e3Ztm0bQ4YM4ZdffgHA0dERa2trTp06hV6vR6/Xc+PGDdLS0oCcBZ/x8fFaHXFxcUb1xsTE0KBBg0e6B0I8LRKcCyGEEM8JX19fIiMjtePU1FSsra2xs7Pj2rVrzJ49u9B1+fj4EBQUZDJt/fr1JCQkADkBtKIomJubA1C+fHnOnz9fqD5UqFCBjh07MmbMGK5fv86dO3e04P3+fnz99dd0796dgwcPYmZmxogRI5gwYQJXrlwB4NKlS/z4448A9O7dm+DgYE6fPs2tW7dMXnNkZCQdO3Ys9L0Q4lkic87FA91J+pur60MLnT9Ln7N7QQk7019j5tcGTg5F7tujUNQbmN/5pQj5bwKgKjZFakMIIR6XgQMH0rBhQ9LT07G2tiYgIIB+/frh6OhIxYoVmTRpUqEXg8bHx+Pp6Wky7bfffiMgIIAbN25Qvnx5Fi9ejIeHB5Azx3vQoEGkp6fz1VdfPbAPa9asYcKECdSsWZPMzExeffVVbdeXXO3atWP16tV07dqV7du38/HHH/P+++/TvHlzkpOTqVSpEqNHj6Z9+/Z07NiRgIAA2rRpg5mZGXPmzOHrr7/W6rp8+TKnT5/Gz8+vqLdXiGeC8qhffb0omjRpouauRi9OY8aMAWDp0qXPZDuLFi0iNja2SGVy81erVq1I5apVq8aECROKVOZFvS4hxLMnJiaGWrVqacdPYytFyFkcWa5cOQICAh66rYSEBHr16sX+/fsfuo5n1aRJk6hSpYr2/wchnra8fzsAFEU5oqpqE1P5JTi/50UJzvMLOh8UWD7OALK4rgkKvq7HHRQX14OUEOLZZOp/sEII8SBFDc5lWss/xIv6NrkX9bqEEEII8c8kwfkL5kWcPvEiXpMQQgghhCmyW4sQQgghhBDPCAnOhRBCCCGEeEZIcC6EEEIIIcQzQoJzIYQQQgghnhESnAshhBDPkWnTpvHpp58+7W4I8cxRFIVz584VS1s+Pj6sWLECgC1btvDmm28+trolOBdCCCGeE0lJSYSGhjJq1CgA9uzZg5mZGba2ttja2uLi4kLv3r357bffDMrdH7To9XqGDh2Ks7MzOp2O6tWr8/HHHxMXF6fVY2tri6Io2NjYaMd79+416s/ly5cZNmwYFSpUQKfTUbNmTWbNmsXNmzeN2s0VFBTEgAEDDM6pqkrlypWpXbu2URs+Pj6ULFkSW1tbHB0d6dGjB5cvXzZ5f9q3b8+8efO040uXLqEoislz//vf/7T7MXr0aJydnSlVqhT16tVj9erVBvW6u7tjbW2Nra0tzs7ODB48mLS0NC198ODBWFpaotPp0Ol01K1bl2nTpnHjRsFvic4vmAwODsbc3Nzg52Fra0tiYqLWH0tLS5KTkw3KNWzYEEVRuHDhgtYvRVHYsmWLQb6AgAAURSE4ONjg/J49e4zu14vowoULKIpCVlbWY6mva9eunDx5kuPHjz+W+iQ4F0IIIZ4TwcHB+Pr6GrzjoWLFiqSlpZGamsqBAweoWbMmrVq1YteuXSbrmDBhAmlpacTExHDjxg22bNlClSpVeOmll0hLS9M+AMeOHdOOW7VqZVDPtWvXaNGiBenp6ezfv5/U1FR27NiBXq/nzz//LNJ1RUVFceXKFc6fP2/0YAHw+eefk5aWxrlz50hLS2Py5Mkm6/H29iYyMtKg3po1axqdq1atGs7OzmRmZtK2bVsuXrzI/v37uXHjBvPnz2fq1KksXGj4ttatW7eSlpZGdHQ0v//+Ox9++KFB+rvvvktqaipJSUmsXr2aAwcO4OnpqT2oFFWLFi0Mfh5paWlUrFhRS/fw8GDt2rXa8YkTJ0hPTzeqp3r16oSEhGjHWVlZrF+/nipVqhjlDQkJoWzZsgb5ReH07duXr7766rHUJcG5EEII8RDeGjeBHv0GPbbPW+Me/E6HiIgIWrdubTJNURRcXFx4//33GT58OFOmTDGZ77fffqNfv37Y29tjZmZGzZo1eeONN4p8/QsXLkSn0xEWFoa7uzsArq6uLF68mPr16xeprpCQELp164avr2+BgaGdnR1+fn5ER0ebTPf29uaXX34hOzsbgL179xIQEMDhw4cNznl7ewOwZs0a4uLiWL9+PR4eHlhYWNChQweWLFnCzJkzSUlJMWrD2dmZ9u3b59uHkiVL0rRpU7Zs2cLVq1eNRuEfF39/f0JDQ7XjkJAQBg4caJSvS5cu/PLLL1y/fh2AH374gfr16+Ps7GyQ79atW2zYsIEvvviC2NhYivLW9Lt37zJ37lyqVKmCTqejcePGxMfHmxyhvn86SHBwMJ6enkyYMAE7OzsqV67Mr7/+SnBwMK6urpQrV87g9+H+srnlvby8TPYpPDycl19+mdKlS+Pq6kpQUJCWlvvzt7Ozw9bWlv379wOwatUqatWqhb29Pe3bt+fixYtamR07dlCzZk3KlCnD2LFjUVXVoD0fHx/Cw8MLfc8KIi8hEg9t0aJFxMbGGp3PPZf7uvu8qlWr9sy+WCi/a4KCr+tZviYhxJNxJfkayVU6Pr4K/4x4YJYTJ05Qo0aNB+br0aMHS5cu5ebNm9jY2BikNW/enOnTp3P9+nW8vLyoVq3aQ3V3586d9OjRAzOzRxvnyw0Kv/32W9LT0xk1ahQLFy7E0tLSKO/Vq1fZtGkTVatWNVlXs2bNyMjI4NixY7z88stERUUxefJkQkNDDc69++67QE7A1bFjR6N71LNnT/r378/+/ftp3769QVpCQgIRERG0adOmwOvS6XS0a9eOvXv3Mnbs2KLckkJp3rw5a9asISYmhurVq/Pdd9+xb98+ZsyYYZCvZMmSdO3alW+//ZbRo0cTGhrKwIED+eKLLwzybdy4EVtbW3r16sXXX39NaGgoTZqYfLu8kYULF7J27Vq2b99O9erVOX78OKVKlSI1NfWBZQ8ePMjw4cO5evUqs2bN4s0336RLly6cO3eOyMhIevbsSc+ePbG1tS38zQFsbGwIDQ2lTp06nDx5knbt2tGwYUP8/PyIiorCw8MDvV5PiRI5ofDmzZuZO3cuW7dupVq1anz00Uf07duXX3/9leTkZHr27MmqVavo1q0bn3/+OcuWLcPf319rr1atWly4cIGUlBRKly5dpL7mJSPn4rGztrY2+Mr1RfGiXpcQ4vmh1+vR6XQPzFexYkVUVUWv1xulffbZZ/Tv35/PP/+c2rVrU7VqVSIiHvxgkNfVq1epUKHCA/M1atQIOzs77fPRRx8ZpG/atAkrKytef/11OnfuTFZWltEI5Lhx4yhTpgyOjo4kJyfz2WefmWzLysqKV155haioKK5du4Zer6dy5cq0atVKO3f69Gnt24fk5GST11CiRAmtrVx+fn7odDptRHf27NkPvPaKFSty7dq1B+Yz5cCBAwb3zdQ0lNzR89xR3UqVKpmsa+DAgYSGhnLjxg0iIyPx8/MzyhMSEkKfPn0wNzenX79+rF27ljt37hSqrytWrGDOnDnUqFEDRVFo0KABDg4OhSrr4eHBkCFDMDc3p0+fPsTHxzNz5kztd8LS0vKhFnn6+PhQr149zMzMqF+/Pn379jWY3pTXl19+ybRp06hVqxYlSpQgMDCQ6OhoLl68yPbt26lduzZvvPEGFhYWBAQEGH3zkPvv0tS/uaKSkXPx0F7EkeIX8ZqEEC8Oe3v7Qo1G5i56tLOzM0qztrYmMDCQwMBAUlJS+Oijj+jVqxdxcXGULVvWZH179+6lY8ecbwnc3Nw4deoUDg4O+S7MvN/Ro0cNRrqDgoIMgq2QkBB69+5NiRIlKFGiBD169CAkJITu3btreZYsWcLw4cM5ceIEnTt3JiEhgZdeeom5c+cyd+5cAAYMGMCyZcvw9vYmKioKd3d3bcqDl5cXq1evxt3dHVdXV9zc3ABwdHQ0eQ1ZWVkkJyfj6Oiondu8eTNt27YlMjKSfv36kZycbPL+3u/SpUvaPa1Tp442TSIiIsJoDn9ezZs3Z9++fQXm8ff3x9vbm7/++svklJZcXl5eJCUlMWfOHDp37mw00BQfH8/u3bu1efTdunVj5MiRhIeHmwzk84qPjzf58FAY5cuX1/47t195z92/+LawDh48yNSpUzl58iSZmZlkZGTQq1evfPNfvHiR8ePHM2nSJO2cqqpcunSJxMREXF1dtfOKohgcA9q/ywf9ThSGjJwLIYQQz4n69etz9uzZB+b7/vvvadSokdF0jbxKly5NYGAgN2/e5K+//so3X6tWrbRFiadOnQKgbdu2fP/999pc7oeRkJDAzz//TFhYGM7Ozjg7O7Nhwwa2b99utBMJQL169ZgxYwZvv/02qqoSGBio9WvZsmVAznzivXv3EhUVpQXAnp6e/PLLL0RFRWnzjXOvISIiwmjR5saNG7GysqJ58+ZGfWjdujWDBw/Od1FqrrS0NHbu3Kn14dSpU/kurn1Ybm5ueHh4sH37dnr06FFg3gEDBrBgwQKTQfyaNWvIzs6mS5cuODs7U7lyZW7fvm0wp70grq6uJhcB5/7+3bp1SzuXu0vOw7CxsSl0Xf369aNr167Ex8dz48YN3nrrLW2euKIoJq/hyy+/RK/Xa5/09HRatmxJhQoViI+P1/KqqmpwDBATE4O7u/sjT2kBCc6FEEKI54avr2++X83njvLNnj2bFStWaCPKeX3wwQf89ttvZGZmcvv2bRYvXoydnV2h5rLfb+LEiaSkpDBo0CBtRPjSpUtMnDix0FvKrVmzhurVq3PmzBmio6OJjo7m7NmzuLi4GOxEcr9BgwZx5coVo+0Bc7Vs2RK9Xk9YWJgWBNvb2+Pk5ERYWJhBcO7v74+Liwu9evXiwoUL3Llzhx9//JFx48YRFBREmTJlTLYREBDAjh07TC4KzcjI4MiRI/j5+WFvb8+QIUMKvAe5P4fcz927dwvMn9fKlSv5+eefH/ggNm7cOHbs2GFw/blCQ0OZNWuW9jOIjo5m48aNhIeHc/XqVSBn+8a8Wy/mGj58OO+99x6xsbGoqsrx48e5evUqTk5OVKpUibCwMO7evcuqVauKvJPP/Ro2bMimTZu4desW586dY+XKlfnmTU1NpWzZspQsWZJDhw7xzTffaGlOTk6YmZlx/vx57dxbb73Fhx9+qD183rhxg/Xr1wPQqVMnTp06xaZNm8jKymLJkiVGDwaRkZHat0uPSoJzIYQQ4jkxcOBAtm/fbrBlXmJiorYPdtOmTTlx4gR79uzh9ddfN1mHoigMGTIER0dHKlasyI4dOwgPDy/ygruyZcvy66+/YmFhwSuvvIJOp+O1116jTJky+S7YzCskJIQxY8Zoo+a5n7feeivfXVssLS0ZN24cH3zwgcn0UqVK0bhxYzIyMqhbt652vlWrVly5csUgOLWysmLnzp24urryyiuvULp0aSZOnMi///1v3nnnnXz77eTkxMCBAw36MG/ePHQ6HWXLlmXgwIE0btyYX3/99YFBc506dbQ1TdbW1truLvv37zfa59zUNpNVqlQp1MLNsmXL8tprrxmNGh84cIALFy7w9ttvG/wMunbtStWqVVm7di2ZmZlcvXrV5DcJkPOg1rt3b15//XVKly7NsGHDtN/R5cuXM3/+fBwcHDh16hQtW7Z8YF/zM2HCBCwtLSlfvjyDBg2if//++eZdunQpM2fORKfT8f7779O7d28trVSpUkyfPh1PT0/s7Ow4cOAA3bt3Z8qUKbz55puULl2aunXramsxHB0dWb9+PVOnTsXBwYHY2Fg8PT0N2lu7dq32/oFHpeTdCuafqkmTJmpRtg16XHJ3/li6dGmxty2EEKLwYmJiqFWrlnb81rgJXEl+uMV+ppRzLMuyJYsemC8wMJBy5coREBDw2NoWoiD79u3jiy++yPfbjH+6rVu3smbNGtatW2cyPe/fDgBFUY6oqmryqUoWhAohhBAPoTCB9JOQ33QVIZ4ULy+vfPcTFzl7yXfp0uWx1SfTWoQQQgghhHhGSHAuhBBCCCHEM0KCcyGEEEIIIZ4REpwLIYQQQgjxjJAFoUKIYrFo0SJiY2NNpiUkJADg4uJilFatWjV5c6sQQoh/DAnOhRBP3f17Nj9v8nvoKOiBA+ShQwghhGkSnAshikVBgeiLuN//8/zAIZ5t06ZNo3z58rLPufhHCQ4OZsWKFezbt++R6rlw4QIeHh7cuXOHEiVK0KNHD0aOHEmHDh0eU08fncw5F0KIRzBhwgSWLl1q9KlWrRrVqlUzmbZ06VIZNRcPJSkpidDQUO1NhHv27MHMzEx7g6SLiwu9e/c2epOkoiicO3cOAL1ez9ChQ3F2dkan01G9enU+/vhj4uLiDN5GqSgKNjY22vHevXuN+nP58mWGDRtGhQoV0Ol01KxZk1mzZnHz5k2jdnMFBQUxYMAAg3OqqlK5cmVq165t1IaPjw8lS5bE1tYWR0dHevToweXLl03en/bt2zNv3jzt+NKlSyiKYvJc7uvX9Xo9o0ePxtnZmVKlSlGvXj3tLZ253N3dsba2xtbWFmdnZwYPHkxaWpqWPnjwYCwtLdHpdOh0OurWrcu0adO4ceOGyX7mMnV/ICcQNTc3N3pDaGJiotYfS0tLkpOTDco1bNgQRVG4cOGC1i9FUdiyZYtBvoCAABRFITg42OD8nj17jO7Xo7hw4QKKopCVlfVY6nsSpk6dyvTp0592NwxIcC6EEEI8J4KDg/H19cXa2lo7V7FiRdLS0khNTeXAgQPUrFmTVq1asWvXLpN1TJgwgbS0NGJiYrhx4wZbtmyhSpUqvPTSS6SlpWkfgGPHjmnHrVq1Mqjn2rVrtGjRgvT0dPbv309qaio7duxAr9fz559/Fum6oqKiuHLlCufPnzf5ivrPP/+ctLQ0zp07R1paGpMnTzZZj7e3N5GRkQb11qxZ0+hctWrVcHZ2JjMzk7Zt23Lx4kX279/PjRs3mD9/PlOnTmXhwoUGdW/dupW0tDSio6P5/fff+fDDDw3S3333XVJTU0lKSmL16tUcOHAAT09P7UGlqFq0aGHw80hLS6NixYpauoeHh8EbO0+cOGHyG7vq1asTEhKiHWdlZbF+/XqqVKlilDckJISyZcsa5H/RNWvWjJSUFJ7GW+LzU+zTWhRFqQ18BrQA9MAKYLaqqncLKBMEzMonOVBV1Q/v5QsGBpnIU0tV1T8eodtCiH+wghaz5ic3f+6UncKSuejPj1FvjePvK1cfW33lyznw5bIlBeaJiIhg6NChJtMURcHFxYX333+fa9euMWXKFJMBx2+//cacOXOwt7cHoGbNmtSsWbPI/V24cCE6nY6wsDDMzHLG+lxdXVm8eHGR6woJCaFbt26kp6cTEhJC06ZNTeazs7PDz8+PL774wmS6t7c38+fPJzs7GzMzM/bu3UtAQAAzZ840OOft7Q3AmjVriIuLIzIyEhsbGwA6dOjAkiVLGDZsGMOHD6d06dIGbTg7O9O+fXuio6NN9qFkyZI0bdqULVu2UL16dVavXs3YsWOLfE8exN/fn9DQUP71r38BOfdw4MCBzJgxwyBfly5dCAsL4/r169jb2/PDDz9Qv359UlNTDfLdunWLDRs2sHz5cgYOHMjhw4dp0sTk2+WNHDp0iDFjxnD27Fmsra3p378/Cxcu1O6znZ0dADt27KBcuXKMGDGCY8eOoSgK7du354svvtDyxMfHM378ePbu3Ut2djZ9+/bl888/N2rznXfeYf/+/YSHhwMwceJEtm/fjpmZGUOGDGH27NmYm5tz9+5dpkyZQnBwMKVLl2bSpElGdfn4+BAeHl7o633SijU4VxTFHtgJnAa6AVWABeSM4M8ooOgK4Ic85/yAKUBEnvN/AEPynLvwcD0WQoicQPv3E6dQbJ0KXUbNVAGI/utK4cukJRW5b+Lp+fvKVRKu1n2MNZ58YI4TJ05Qo0aNB+br0aMHS5cu5ebNm1rQmat58+ZMnz6d69ev4+XlRbVq1R6qtzt37qRHjx5aYP6wcoPCb7/9lvT0dEaNGsXChQuxtLQ0ynv16lU2bdpE1apVTdbVrFkzMjIyOHbsGC+//DJRUVFMnjyZ0NBQg3PvvvsukBMsduzY0ege9ezZk/79+7N//37at29vkJaQkEBERARt2rQp8Lp0Oh3t2rVj7969TyQ4b968OWvWrCEmJobq1avz3XffsW/fPqPgvGTJknTt2pVvv/2W0aNHExoaysCBA40ecDZu3IitrS29evXi66+/JjQ0tNDB6vjx4xk/fjz+/v6kpaVx8mTO73JUVBQeHh7o9XpKlMgJOc+dO8e0adPw9vYmJSWFnj17EhQUxKeffsrdu3fp3Lkzbdq0Yc2aNZibmxs9YGZnZzNq1Cji4uL46aefKFWqFH5+fpQvX55z585x8+ZNOnfujKurK6NGjWL58uVs27aN33//HRsbG3r27GnU/1q1aj3yXPbHqbhHzt8CrIEeqqqmADsURSkNBCmKMu/eOSOqqiYACfefUxTlPeAPVVXzPrreVFX1wBPouxDiH0yxdaJEkzeeaBtZhzc80frF80+v16PT6R6Yr2LFiqiqil6vNwo8P/vsMxYtWsTnn3/OyJEjcXNz47PPPqNjx45F6svVq1epUKHCA/M1atTIIIC/ffs2b7zx//+WNm3ahJWVFa+//jp3794lKyuL8PBwunfvruUZN24ckyZNIiUlhQYNGrBq1SqTbVlZWfHKK68QFRWFm5sber2eypUr06pVK+3c6dOnad26NQDJyckmA9ASJUrg6OhoMKfbz88PRVFIS0ujTZs2zJ49+4HXXrFiRY4cOfLAfKYcOHBAG00GcHBwMJoulDt63rp1a2rWrEmlSpVM1jVw4EDeeecd+vXrR2RkJCEhIUbBeUhICH369MHc3Jx+/foxbtw4FixYgIWFxQP7amFhwblz50hOTsbR0ZHmzZvnm7dq1araw5WTkxMTJ07U7uWhQ4dITExk/vz5WjDv5eWllb1z5w59+/YlKyuLrVu3Ymlpyd9//01ERAR6vR5ra2tsbGyYMGECX331FaNGjWLdunUEBATg6uoK5Cyo3rNnj0GfdDoder3+gddZXIo7OO8I/JgnCP8W+BhoDWwtTCWKopQF2gFzHnsPhRCPRKaACPHk2NvbG01HMCV30eP9wV0ua2trAgMDCQwMJCUlhY8++ohevXoRFxdH2bJlTda3d+9eLXh3c3Pj1KlTODg45Lsw835Hjx41GOkOCgoyWAQZEhJC7969KVGihLZ7RkhIiEFwvmTJEoYPH86JEyfo3LkzCQkJvPTSS8ydO5e5c+cCMGDAAJYtW4a3tzdRUVG4u7trgZ2XlxerV6/G3d0dV1dX3NzcAHB0dDR5DVlZWVqgmWvz5s20bduWyMhI+vXrR3Jyssn7e79Lly5p97ROnTpcvHgRyJmelHcOf17Nmzd/4Giuv78/3t7e/PXXXwwcODDffF5eXiQlJTFnzhw6d+5ssGYBcqaS7N69W5tH361bN0aOHEl4eDh+fn4F9gFg5cqVzJw5k5o1a+Lh4cGsWbPo3LmzybxXrlxh3Lhx7N27l9TUVLKzs7UpVvHx8bi5uWmBeV7nzp3j2LFjHDp0SPtm5eLFi9y5c8fgQTE7O1sLxhMTE7X/BrSf/f1SU1Mf+LMsTsW9ILQmOdNONKqqxgG37qUV1huABTmBfV61FUVJURQlQ1GUfYqitH7o3gohiiw2NpZTf5zmys1rhf6oJRTUEkqRypz643SRHwKEeN7Vr1+fs2fPPjDf999/T6NGjYxGzfMqXbo0gYGB3Lx5k7/++ivffK1atdIWJZ46dQqAtm3b8v3335OdnV20i7hPQkICP//8M2FhYTg7O+Ps7MyGDRvYvn270U4kAPXq1WPGjBm8/fbbqKpKYGCg1q9ly5YBOfPO9+7dS1RUlBYAe3p68ssvvxAVFaXNg869hoiICKNFmxs3bsTKysrkCHDr1q0ZPHhwvotSc6WlpbFz506tD6dOncp3ce3DcnNzw8PDg+3bt9OjR48C8w4YMIAFCxaYDOLXrFlDdnY2pLrQnAAAIABJREFUXbp0wdnZmcqVK3P79m1CQ0ML1Y9q1aqxdu1arly5wpQpU3jjjTe4efMmiqIY5Z02bRqKonD8+HFSUlIICwtDVXOmAbq6uhIXF5fv7i61atVi9erVdOzYkTNnzmhlrKysSE5ORq/Xo9frSUlJ0X5PK1SoQHx8vFZHXFycUb0xMTE0aNCgUNdaHIp75NyenEWgeV2/l1ZYbwJHVVXN+xfqd+AgOXPanYBJ5Eyd8VJV9dBD9FcI8RCcXJ3p9Y6ptdmPz/r5/5zdBITI5evrS2RkJP379zdKU1WVxMREVqxYwYoVK4y2z8v1wQcf0KFDBxo0aEB2djaLFy/Gzs6uUHPZ7zdx4kTCwsIYNGgQc+bMwc3NjUuXLrFgwQIGDx5M/fr1H1jHmjVrqF69Ort37zY437JlS9auXastdrzfoEGDCAoKYsuWLXTr1s0ovWXLluj1esLCwtixYweQ842Dk5MTYWFhzJnz/1+6+/v7s3TpUnr16sXSpUupVKkSP//8M+PGjSMoKIgyZcqY7HdAQADu7u5ER0fTsGFDg7SMjAxOnjzJlClTsLe3Z8iQvMvgDGVmZnL79m3tuDDTSO63cuXK/2vv3uPkLMuDj/8ukkBCgCRA4mmDKKwi+qpVqvVFRcFKRQWLIB5Ri6WYWjAqinggnloFJaKSKtpaESsKUn1RDoICioIKSouG4KaCZOWQEHKAJJAErvePZxaHyczuM7s7s8/u/r6fz3yycz/34ZrlYeaae+/nflizZg0zZ84cdMvC448/nhe84AWP+HIy4Oyzz+aUU07huOOOe7jsl7/8JUceeSSrV69mt912Y88992TRokW85S1v2ab9Oeecw8EHH8zcuXMfnoGeMmUKc+fOZbvttuMPf/gDT3rSk4BilnrWrFnMnj2bP/3pT5x22mkP9/Oc5zyHxzzmMZx00kkPX9B5/fXXs//++z9c53Wve93Du+xceeWV7LXXXrz0pS/l3e9+Nx/72MfYaaeduOWWW+jv7+eAAw7gNa95DZ/73Od4xStewcyZM/nkJz+5TfxXXXUV55xzztC/7C4Zi60Us0lZtCjftmLEYyiWwHyz8VhmnpGZ/5qZV2Xm+cCBwJ+Ak1v0dWxEXBcR161a5YVYkqRqO/roo7nooosesWXe7bff/vA+2H/5l3/JjTfeyJVXXslLX/rSpn1EBG9961vZfffdeexjH8tll13GD37wA3baaae2Ytl11135+c9/zrRp03juc5/LzjvvzEEHHcSsWbNaXrDZ6Gtf+xoLFix4eNZ84HHccce13M5v++235/jjj+djH/tY0+M77rgjz372s3nggQd42tP+fMHuC17wAlauXPmI5HSHHXbg8ssvZ/78+Tz3uc9ll1124V3vehef+MQnOPHEE1vGPXfuXI4++uhHxHDqqaey8847s+uuu3L00Ufz7Gc/m5///OdD/vXiqU99KjNmzHj4MbDH+jXXXLPNPufNtpnca6+9Sl24ueuuu3LQQQdtM5t97bXXcuutt/KP//iPj/hvcOihh7L33nvzzW9+k82bN7N69eqWa8kvueQSnvrUp7LTTjtxwgkncO655zJ9+nR23HFHPvCBD7D//vsze/Zsrr32Wk455RR+/etfM2vWLF7+8pc/YsZ/ypQpXHjhhSxfvpw99tiDnp4evvWtb20z3pvf/GY+/OEPc+CBB3Lrrbdy9tlns3nzZvbdd1/mzJnDEUcc8fBypb//+7/n4IMP5hnPeAbPetaztvkLw69+9StmzpzJc57znCF/h90SA39K6MpgESuBMzPzIw3l91Fsp3ha85aPqHsCsBh4fGauKFH/TOCVmbnHYPX222+/HIs9LifinRE1uS1YsICVG+7pysz5vJm7duX/nQULFnDDLSu7ckHoM58wz/eDirrpppt4ylOe8vDzsdhKEeDkk09m3rx53iFUXXP11Vdz5plnPmJf9Yni1a9+NccccwyHHHJIx8ZofO8AiIjrM7Ppt6puL2tZRsPa8oiYD8ykYS36IF4LXF0mMa/TvW8g0iTX39/PuvvWd3zZyaoVd7J5p40dHUMaTJlEuhMGLoCUuuX5z3/+I3ZNmUi+853vjHUI2+j2spaLgYMjon4fqKOATcBVzZv8WUTsCfwVTZa0tKg/g2KHmOHtYyRJkiR1Ubdnzr8IHA9cEBGfAp4ILAJOr99eMSKWA1dl5jEN7V8LbAW22Qw4ImYB3wfOAZYDuwMLgccBrxn1VyKpqZ6eHrbv4rIWSZImkq4m55m5JiIOAr5Asaf5Wor144uaxDWlSRevBX6Umc2u3nwAWEVxp9F5wP3ANcABmdn9xeSSJoz+/n7y3nUdv0lQ3ruK/v7NHR1DklRt3Z45JzOXUuyiMlidPVuUP7NZee3Y/cDgm3xK6opVK+5sa8352pX3ADB7XvmZ8FUr7mTePs6cq7sys+nezZLUzHA2Xul6ci5pYuvt7W27zbqtxY4X7SxTmbfPrsMaazh6enq4e8v2XdmtpadnXkfH0PBNnz794T2fTdAlDSUzWb16NdOnT2+rncm5pFG1cOHCttu4pajGg56eHvr7+/G+GJLKmj59Oj09PW21MTmXJKmEadOm8YQnPGGsw5A0wY3FHUIlSZIkNWFyLkmSJFWEy1qkSWzx4sX09fU1Pdbf3w/Qcq1cb2/vsNaXS5Kk1kzOJTW1adOmsQ5BkqRJx+RcmsQGm/l2BxVJkrrPNeeSJElSRZicS5IkSRXhshZJXTHYxacD5QNLaep54akkaTIxOZc05mbMmDHWIQwp71vF1uvOL19/41oAYsfZbY0B89oNTZI0gZicS+qK8Tz73dvb23abvr51RdsntJNszxvWWJKkicPkXNKEM9z921stoRnOF4tO7HbT6nW5J70kTRwm55Imlarv3z7UF4tm8W/cuBFo/dr6+/ub9mnSLknVY3IuacLp5v7trZLpwS5yhdaJcV9fH7/+zY1kzGox4g7blERuBWD9hm2PFeUPcdfdtzW0Wdeif0nSWDI5lzQuDTbDPJihkuZW2p1lHslFrhmzeHDa/sNuX8aULT/raP+SpOExOZc0Ll1xxRWsuvtuYtr2bbXLrcUs8w2/W1q+zZbN9Pf3j9p69MH09/cTua7jyXPkuofXqkuSqsPkXNK4FdO2Z9q8R3V8nC0r7+r4GJIkgcm5pHGqp6eHdTusZrcjj+74WKvPO5ueubt1fBwoXtdddz/UlWUtrXZ3kSSNne3GOgBJkiRJBZNzSZIkqSJMziVJkqSKMDmXJEmSKsLkXJIkSaoIk3NJkiSpIkzOJUmSpIowOZckSZIqwpsQSRq3tqy6i9Xnnd1Wm61r1wAwdfactsahSzchAohcx5QtP2uj/gYAMma2NYYkqXpMziWNS729vcNq17f2nqJ9O8n23N2GPV67hjNOX19fre0eHR9LktRZJueSxqWFCxcOq92CBQsAWLJkyWiGM2qG87qq/pokSeW55lySJEmqiLZmziPi6cALgd2AL2XmnRGxN3BXZt7biQAlSZKkyaJUch4ROwDnAIcDASRwIXAncCrwe+CkDsUoSZIkTQpll7V8AngJ8CbgURQJ+oCLgYNHOS5JkiRp0im7rOV1wAcz8z8jYkrDsVuAPUc1KkmSJGkSKjtzvhtw0yB97DA64UiSJEmTV9nk/BbgeS2OPQe4eXTCkSRJkiavsstazgZOjohbgQtqZRkRLwYWAotGP7TxZfHixQ/fCKQdA20G9ikuq7e3d9j7PEuSJKmayibnpwLPAL4OfKVWdjUwHTg3Mz/fgdjGlb6+Pvr6lrH33vPbajd9evGfIGu33y5j+fIVbY0hTTaDfVke7Atx1b/0tnpdQ33Jr/rrkiT9WankPDMfBF4bEWdS7MwyD1gNXJKZV3UwvnFl773nc8YZ7+n4OCec8OmOjyFNVDNmzBjrEEbdRHxNkjRZDZmcR8T2wLXASZn5Q+CnHY9KkkZgos4ST9TXJUn6syEvCM3MzcATgK2dD0eSJEmavMru1nIZ8NJOBiJJkiRNdmUvCP08cE5ETAW+C9wBZH2FzPzDKMcmSZIkTSplk/OBiz7fRbF1YjONdw6VJEmS1IayyflbOxqFJEmSpNJbKX6t04FIkiRJk13ZmXMAIiKAfYFdKfY5vykzc/BWkiRJksoou1sLEfE2igtB/we4ErgRuD0ijulMaJIkSdLkUmrmPCLeAJwF/Ag4B7gTeDTwBuCsiNiYmd/sWJSSJEnSJFB2Wct7gW9k5psayr8WEV8H3geYnEuSJEkjUHZZy5MpZsybOad2vJSI2DcifhQRGyPi9oj4aEQMug1jRCyKiGzxeH9D3cMi4saIuD8ilkbEUWVjkyRJksZS2Znze4GeFsd6aseHFBFzgMuBpcBhwF7AZyi+JHxwkKZfAS5pKHsVxYz9xXX9Px/4DrAEOB44BPhmRKzJzB+WiVGSJEkaK2WT84uBf46I32fmTwcKI+J5wMepS5CHcBwwAzg8M9cDl0XELsCiiDi1VraNzOwH+uvLIuJDwLLMvKGu+EPATzLz+NrzKyLiqcCHAZNzSZIkVVrZZS3vBdYBV0bEbRHxi4j4I3A1sL52vIyXAZc2JOHnUiTsB5Tsg4jYFfhr6ta5R8QOwIuBbzdUPxd4XkTMKtu/JEmSNBZKJeeZeSfwTOAE4BqKhPxa4J+Av8jMu0qOtw+wrKHv24CNtWNlHQFMo0i8B+xVK1vWUPcmitf5pDb6lyRJkrqu9E2IMnMj8IXaY7jmAGublK+pHSvrtcCvM/P3DX3TpP81DcclSZKkSio1cx4RfxURr2lx7MiIeG4bYza7o2i0KG823mMolsC02rqxsZ9oNW5EHBsR10XEdatWrSozvCRJktQxZdec/wvw1BbHnlI7XsYaYHaT8lk0n1Fv5jUUCfe3mvRNk/4Hnm/Tf2aelZn7ZeZ+c+fOLTm8JEmS1Bllk/NnUKwxb+aXwNNL9rOMhrXlETEfmMm2a8VbeS1wdWauaCj/X2BLY/+15w8Bv0eSJEmqsLLJ+fRB6k6hSK7LuBg4OCJ2ris7CtgEXDVU44jYE/grmixpycwHgCuAIxsOHQVck5nrSsYoSZIkjYmyyflNwKEtjh0K3Fyyny8CDwAXRMRLIuJYYBFwev32ihGxPCL+rUn71wJbgfNb9P8x4EUR8dmIeFFEnEpxI6KPloxPkiRJGjNld2v5IvCliFgPfJnihkCPA44FjgEWlOkkM9dExEEUO75cSLEOfDFFgt4Y15QmXbwW+FFmNr16MzOvjogjKG6M9HbgFuD13h1UkiRJ40Gp5DwzvxwRTwYWAu+qPwQszsyzyg6YmUuBA4eos2eL8meW6P+7wHfLxiNJkiRVRTv7nL8nIv4VeAmwG3A3cHlm/qFTwUmSJEmTSenkHCAz/5diVxRJkiaMxYsX09fXt015f38/AD09PU3b9fb2snDhwo7GJmlyaZmcR8Q0YEb9hZq18rnAicC+wO3Aksy8oaNRSpI0BjZt2jTWIUiaZAabOT8NeAWw90BBRMwCfk1xMegaipsHvSEi9jdBlySNV61mvxcsKPY7WLJkSTfDkTSJDbaV4vOBbzSUvZMiMX9HZu4GzAduA97fmfAkSZKkyWOw5PzxQONs+CuAWzJzCUBm3gGcTpHIS5IkSRqBwZa1zATuGXgSETsCzwTObqh3M7D76IcmSZKGq9VFrjD4ha5e5CqNrcFmzlcAT657/nyKGwNd3VBvR2A9kiRpXNi0aZMXu0oVNdjM+aXAeyPi58BdwEnAZuAHDfX+imLduSRJlTXYTHIrA/UHLgwtqwqzz4ON74WuUnUNlpx/HDgU+O/a8wA+nJkrBypExBTgrcD5HYtQkqRR0NfXx++WLWXu/EeXbpNTA4CVG+4ZouafrVpxZ9uxSdKAlsl5Zq6MiP8DHAnMAX6ZmT9tqLY78Dng+50LUZKkkRtYZ92O2fN27dpYwzXZ/iIgTXSD3iE0M+8F/n2Q43cBnxntoCRJUjl9fX385sbfETvNLd0mNycAN9yycoiadW3uW9V2bJLaN2hy3kxEbAdcDvxDZrb3VV2SpDHS09PD9hvu4cgT39zRcc477WvMmzm8Gffhip3mMnW/Izo6xtbrXMEqdcNgu7W0EsCLgJ1HNxRJkiRpchtOci5JkiSpA9pe1iJJkqqjv7+fvHddx5ed5L2r6O/f3NExJA0vOX8I+Ahw+yjHIklSR61acSfnnfa10vXXriy2UGxn15ZVK+5k3j7dXXMuaeJoOznPzKRIziWNE261JhXnZrvWbV0N0NYFnvP22XVYYw1XT08Pd2/ZvisXhPb0zOvoGJJGYVlLROwBvCgzzx6FeCR1QF9fH319y9h77/ml20yfXrw9ZG4o3Wb58hVtxyZ1y3C+NHonTUndNhprzv8S+Cpgci5V2N57z+eMM97T0TFOOOHTHe1fkqSJzt1aJEmSpIpoOXMeET8u2Uf5W5JJkiSptMGuGerv7weK6w4aef3P+DXYspYDgBW1x2CmjF44kiRJKmPTpk1jHYI6YLDkfDlwTWa+ZbAOIuII4FujGZQkSRPRcGdBwZnQyWqw/+ZesDwxDZacXwfsV6KPBGJ0wpEkaXIaz7OgLr2QRs9gyfk3gTLvFL8C3jo64UiSNP4N594CQ+nr62t634Ei+d1+VMcaTeP5S4c0Flom55n5feD7Q3WQmbcB5W+3JklSCa0S3E4s/2g11lA342o11hVXXMGqu+8mppVPmnPrVgBu+N3S8m22bGba1KlkBluvO798u41rAYgdZ5dvs+4O+vrWtX1jssG0+sIBzqpr8hqNfc4lSeqabs7EzpgxY9htY9r2TJv3qFGMZltbVt7F1Cnb8bR99mmrXV/fOgB6n1D+jp+//e1K7r3vPn79mxvbGgseBGiz3Vb6+/snTXI+3L+0jOc7OXfzy/d4M9hWimcDp2TmLXVlTwRWZOaWbgQnSZq8Wn0Ad+IiuNH+sO/p6WHdDqvZ7cijR7XfRqvPO5t95u7W9u9iOL/DQw89lJWr1pAxq62xhiNyXcfHqJK+vj5+t2wpc+c/uq12ObW45G/lhntKt1m14s62xhiJoa5FaPZFe+PGjUDrL+H9/f1N+5xISftgM+dvBL4A3AIQEVOAPoo7gv6686FJkqSq6Onp4a67H+LBaft3fKwpW37WcuZ0opo7/9EceeKbOz7Oead1byVyX18fv7nxd8ROzW6Jsz1M3XbZV05NADZMbf4lcMMWuPuWlY9sc9+qEcdaJe0ua3FXFkmSpFHU39/PuvvWdyVxXrXiTjbvtLHj4wyIneYydb8jOjpGO9dbjAfbjXUAkiRJkgpeECpJUgdsWXUXq887u3T9rWvXADB19py2xmDubm3HNlyR65iy5WdtttkAQMbMtsaZTHp6eth+wz1dW9Yyb+auHR8Hir8I5L3rOj6znfeuor9/c0fH6KahkvNjI+IVtZ+D4oZDb4+IOxrqZWaeMurRSZI0DvX29rbdpm9tcVFfbzvJ9tzdWo412MV4g+3y0erCuuG8pvqxenv3aKvdcMeTxruhkvO/a1J2TJOyBEzOJUlieLu/dPNW7MPZInK4O2F4i/nJq6enh7u3bN+VNec9PeW3Ba26wW5C5Hp0SZLGqYmyrZw02ZiAS5IkSRVhci5JkiRVhLu1SJIkjbFVK+5se5/ztSuLi4hnzyu/+8qqFXcyb5/u7Nai4TE5lyRJIzLaO8NMNsPdmWbd1tUAbW2NOG+fXd0Jp+JMziVJUscMZ2eYycadcFTP5FySJI2Is9/S6GkrOY+I3YG/AnYDLszMeyJiOrA5Mx/qRICSJEnSZFFqt5YonAb0A/8P+Hdgz9rh7wEf6Eh0kiRJ0iRSdub8/cA7gI8ClwG/qDt2IfAm4GNlOoqIfYHPA88D1gJfAT6SmQ+WaHt4LZanARuBXwGvzswNteP/Aby5SdOnZOayMvFJktQpw71wErx4Up3X6vzs7+8Hijt+NlPlc3Ow/+cGe11j+ZrKJudvAz6amf8SEVMaji0H9irTSUTMAS4HlgKH1dp9hmIG/4NDtH0b8AXgVOBEYA5wYJPXsAx4a0PZrWXikyRprHjhpLrh6KOP5o477mh67IEHHuDBB7edK33ooWLl8urVq5u2++1vf8tFF120TfmDDz4IO3Rn28b+/v6mX2z7+/vZtGlT0zYbN24EaHq8v7+/ZVLf6cS9bHL+OODaFsc2AzNL9nMcMAM4PDPXA5dFxC7Aoog4tVa2jdpa98XAP2Xml+sO/VeT6hsys1WskiSNmarOLqo943E2dsDatWu5b8MGYtr22x6M7WBqkxXPW7cCkFObp41bga2btzyiLLdsZtrUqbDDSCMuZ+3ataxctYr2LqdMAO697/5tjtx73/2sXLWmSZut9Pf3VyI5/xPFUpIrmhx7BnBLyX5eBlzakISfC3wKOIBiiUwzr6n9297u/JIkSV3Uapa2Knp6eli3wwx2O/Lojo6z+ryz2X7tPWzt6CiNppIxq6MjRK7raP9QPjk/D/hwRPyaP8+gZ0Q8CXg3cFbJfvYBflxfkJm3RcTG2rFWyflzgZuBYyLiA8CjgF8DCzPz5w11942I9RTf1X4FfCAzryoZnyRJ0qAGmzV17/GxscMOO/DA1h14cNr+HR1nypaftVx7P1pK7dYCLKJYy/0TYODvOOcBN9aef7JkP3MoLgJttKZ2rJVHA0+mWJf+PuCVwAbgkoh4VF2931B8WXgl8AZgCsXSmeeUjE+SJEkaM6VmzjNzU0S8CHg9cDDFRaCrKXZo+UZmtvNXi2xSFi3KB2wH7AQcmZmXAETEz4E/Uuwi86FanGc8otOIH1BcfHoy8KptBo04FjgWYI899mjjJUiSJEmjr/Sq+dpWh1+vPYZrDTC7Sfksms+oD7in9u+VdfGsj4jrgX1bNap9qbiIYia92fGzqC3J2W+//Qb7ciBJktR1w91+swoXn2p42rpD6ChYRrG2/GERMZ9it5fB9iG/iWJmPRrKAyhzZ1ITb0mSNKEMd/vNLavuYvV5Z5euv3VtsWvJ1NmDrUDedoztp01rO7aRiFzHlC0/a6P+BgAyym46WKELQiPiFlonuA8B64Drgc9l5m8H6epi4MSI2Dkz762VHQVsAga7aPP7wCnAi4GLajHNAp4NfHqQuGdQ7BBz/SB9S5IkVdJoz3739va23aZvbbGAoXfubuUbzd2N/v5+NmwZuupomDFjRtuvbeAvD7297S1tHs7vsB1lZ86vokiM5wE/B+6i2DFlf+BOirXfrwTeFBEHNdlBZcAXgeOBCyLiU8ATKS42Pb1+e8WIWA5clZnHAGTmdRHxPeDfIuIk4G7gvcAW4Mxam1kUSfw5FGvidwcWUuzRPrAVoyRJ0qQ1nGR/uDvQLFiwgLtvWdn2eMPR09MzrPigejvrlE3Ofwo8C3huZt45UBgRjwEupZgRfxPwI+AjwF836yQz10TEQRR3+ryQYp35YooEvTGuxjuRvhE4DTgd2BH4GXBgZg7sEP8AsIpiR5d5wP3ANcABmXldydcpSZIkjZmyyfn7gJPrE3OAzLwjIj4O/HNmfjkizqCYHW8pM5cCBw5RZ88mZfcBb689mrW5Hzh8sH4lSZKkKiubnM+nmJlu5n6KpSNQ3Em0yf1gJUmSVGWtdoYZbFcYqPbOMONxt5uyNyG6CXh3ROxQXxgR04H31I4DPJZiPbokSZImgBkzZgx7Z5gqq+rrKjtz/l6Kiy1vq+0bvpJiXfchFPuWH1Kr93+BH452kJIkSeqsqs5+j8R4fE1l7xB6eUQ8i+JiyxcCjwHuAC4HPp6ZN9XqHd+pQCVJkqSJrp07hC4FXt/BWCRJkqRJreyac0mSJEkdVnrmPCLmAa8DngxMbzicAzcMkiRJkjQ8pZLziHgycC3FjYFmUtyhc9fa8zXAuk4FKEmSJE0WZZe1nAb8EngUEMDLgBnA24CNwN92JDpJkiRpEim7rOUvgeP4842ItsvMrcC/R8TuwGeBF3cgPkmSJGnSKDtzvhNwT2Y+RLGEZfe6Y9dRJO+SJEmSRqBscn4r8OjazzcDR9YdewWwdhRjkiRJkialsstaLgP+GjgPOB04NyKeD2wF9gE+0ZnwJEmSNF7lfavYet355etvLOZ7Y8fZbY1R3Lh+YiibnL8f2AEgM78dEZuAo4AdgTOAL3cmPEmSJI1Hvb29bbfp6ys2AOx9QjvJ9rxhjVVVQybnETGFYnb89oGyzLwQuLCDcUmSJGkcW7hwYdttFixYAMCSJUtGO5xxo8ya86S46PMvOhyLJEmSNKkNOXOemQ9FxAqKmw+phf7+fjZuvI8TTvh0x8fq61vBjjvu1PFxJEmS1F1ld2v5EvDOiNi+k8FIkiRJk1nZC0J3BvYC/hARlwB3UCx3GZCZecpoBzee9PT0kLmBM854T8fHOuGETxPhHzIkSZImmrLJ+cl1P/9dk+MJTOrkXJIkSRqpUsl5ZpZd/iJJkiRpmEy6JUmSpIoonZxH4dCI+HREfDUiHl8rPyAiHtu5ECVJkqTJodSyloiYA1wEPBdYT3GB6OeBPwJ/D9wDHN+hGCVJkqRJoewFoacB84H9gV8Bm+uOXQ6cOMpxSZImgcWLF9PX19dWm4H6A3cSbEdvb++w7looSd1SNjk/DHhPZl4TEVMajt1GkbhLktSWvr4++vqWsffe5T9Gpk8vProyN7Q11vLlK9qqL0ljoWxyvhPwpxbHpgMxOuFIkiabvfee37V7REhS1ZW9IPRm4KUtjh0A3Dg64UiSJEmTV9mZ8zOBMyNiHfCftbLZEfFW4B3AsZ0ITpIkSZpMyt6E6MsRsRfwEeCjteLLgIeAUzPzGx2KT5IkSZo0ys6ck5knRcS/An8NzANWA5dl5h86FZwkSZI0mZTd53xKZj6YmX8EvtLhmCRJkqRJqewFobdHxGcj4tkdjUZApw3tAAAZt0lEQVSSJEmaxMom5xcAbwR+GRFLI+KkiNijg3FJkiRJk06p5Dwz3w48Bng1cBNwCvCHiPhxRLwlInbuYIySJEnSpNDOBaFbgO8C342IWcBRFLPpXwG+QHGjIkmSpAlh8eLF9PX1tdVmoP6CBQvaatfb28vChQvbaqOJqXRyXi8z10XExcBuwBMpZtUlVVR/fz8bN97X8Tsk9vWtYMcd/Z4uaWLo6+ujr28Ze+89v3Sb6dOL1CpzQ+k2y5evaDs2TVxtJee15StHUsyYvxC4H7gQ+ProhyZJkjS29t57Pmec8Z6OjtHpiRONL2W3Unw58CbglcB04CcUdwU9LzPvbWfAiNgX+DzwPGAtxbKYj2TmgyXaHg68H3gasBH4FfDqrPt6GhGHAR8HeoE/1Pr+VjsxShNNT08PmRu68gETMbOjY0iSNJGVnTm/ELgZ+ARwTmbeNpzBImIOcDmwFDgM2Av4DMWFqR8cou3bKNa2nwqcCMwBDqTuNUTE84HvAEuA44FDgG9GxJrM/OFwYpYkSZK6pWxy/tzM/FWzAxFxAPDmzPy7Ev0cB8wADs/M9cBlEbELsCgiTq2VNRtjd2Ax8E+Z+eW6Q//VUPVDwE8y8/ja8ysi4qnAhwGTc0mSJFVa2a0UH5GYR8TeEfHRiLgFuAJ4TcnxXgZc2pCEn0uRsB8wSLuB/r/WqkJE7AC8GPh2w6FzgefVdpiRJEmSKqvsTYiIiFkRcWxEXE2xxOUDwBrg7cBjS3azD7CsvqC2RGZj7Vgrz62NeUxE9EfEloj4RUT837o6ewHTGvun2Jd9O+BJJWOUJEmSxsSgyXlEbBcRh0TEucAdwBeBPYEza1XemZlfarUcpYk5FBeBNlpTO9bKo4EnU6xLfx/FhakbgEsi4lF1fdOk/zUNxyVJkqRKapmcR8SngT9RXAz6Sor13X8D7EGxhjuGOWY2G65FeX2cOwHHZOY3MvMS4FXAg8A7hug/WpRT+0vAdRFx3apVq0oFL0mSJHXKYBeEvosiob0IeEtmrh44EBGDJdKDWQPMblI+i+Yz6gPuqf175UBBZq6PiOuBfev6pkn/A8+36T8zzwLOAthvv/2G+5okSZKkUTFYcv7vwBHAy4Gba0tbzs7MX45gvGU0rC2PiPnATLZdK17vJoovCo2z9QE8VPv5f4Ettf6vqquzT63O74cdtSRJkkbN4sWL6evr26Z8oGzBggVN2/X29rJw4cKOxjbWWi5rycy3Uaz1fiNwPcU2iNdExE0U676HM9N8MXBw7U6jA44CNvHIhLrR9ykS8RcPFNR2X3k28N+1eB+g2DnmyIa2RwHXZOa6YcQrSZKkLpkxYwYzZswY6zDG1KD7nGfm/cB/Av8ZEY8Bjqa4U+hJtSqfjIglwPm1ukP5IsXNgS6IiE8BTwQWAafXX1QaEcuBqzLzmFoc10XE94B/i4iTgLuB91LMlJ9Z1//HgCsj4rPAdyluQnQIxVp5SZIkVcBEn/0eidJbKWbmHZn5qcx8GsXWhkuAXuBsip1cyvSxBjgImEJxoelHKG4udEpD1am1OvXeSJFwnw6cT5GYH1jrc6D/qymW4rwEuBQ4FHi9dweVJEnSeFD2DqGPULsp0a8iYiHFTi5Ht9F2KXDgEHX2bFJ2H8We6m8fou13KZJ4SZIkaVwZVnI+IDO3ABfUHpIkSZJGoPSyFkmSJEmdZXIuSZIkVYTJuSRJklQRJueSJElSRZicS5IkSRVhci5JkiRVhMm5JEmSVBEm55IkSVJFmJxLkiRJFWFyLkmSJFWEybkkSZJUESbnkiRJUkWYnEuSJEkVYXIuSZIkVYTJuSRJklQRJueSJElSRZicS5IkSRUxdawDmEiWL1/BCSd8uq02/f0rAejpmdfWOL29+7Q1jtTu+em5qW7o7+9n48b72n7vHI6+vhXsuONOHR9HkkbC5HyU9Pb2Dqvd/fdvBSBiZhtj7TPs8TQ5Ded88dyUJKn7TM5HycKFC4fVbsGCBQAsWbJkNMORHmE456fnprqhp6eHzA2cccZ7Oj7WCSd8uq0vm5I0FkzOJUmSmujWsiuXXKmeF4RKkiRJFeHMuSRJUhPdWnblkivVc+ZckiRJqgiTc0mSJKkiTM4lSZKkijA5lyRJkirC5FySJEmqCJNzSZIkqSJMziVJkqSKMDmXJEmSKsLkXJIkSaqIrifnEbFvRPwoIjZGxO0R8dGImDJEmz0jIps8zm2o9x8t6u3T2VclSZIkjdzUbg4WEXOAy4GlwGHAXsBnKL4kfLBEF+8Bflb3/O4mdZYBb20ou7XdWCVJkqRu62pyDhwHzAAOz8z1wGURsQuwKCJOrZUN5ubMvHaIOhtK1JEkSZIqp9vLWl4GXNqQhJ9LkbAf0OVYJEmSpErpdnK+D8Wyk4dl5m3AxtqxoXw1Ih6MiDsi4vSImNGkzr4RsT4iHoiIqyPCpF+SJEnjQreXtcwB1jYpX1M71soDwJnAD4H1wIuA91GsWT+srt5vgF9QrGmfC7ybYunM8zPzlyMNXpIkSeqkbifnANmkLFqUFw0y7wDeUVd0ZUTcBSyJiGdm5g21emc8otOIH1Ak6icDr9pm0IhjgWMB9thjjzZfhiRJkjS6up2crwFmNymfRfMZ9cGcDywBngXc0KxCZm6KiIuAV7Y4fhZwFsB+++3X8suBJKlzli9fwQknfLp0/f7+lQD09Mxre5zeXnfWlVRt3U7Ol9Gwtjwi5gMzaViLXkI2/FumriSpQnp7e9tuc//9WwGImNnmWPsMazxJ6qZuJ+cXAydGxM6ZeW+t7ChgE3BVm30dUfv3+lYVaheMvmywOpKksbNw4cK22yxYsACAJUuWjHY4kjTmup2cfxE4HrggIj4FPBFYBJxev71iRCwHrsrMY2rPFwE7U9yAaD3wQuBE4ILM/J9anVnA94FzgOXA7sBC4HHAa7rw2iRJkqQR6WpynplrIuIg4AvAhRTrzBdTJOiNcU2pe76M4u6gb6PYE/024DTgE3V1HgBWUdxpdB5wP3ANcEBmXjfar0WSJEkabV3frSUzlwIHDlFnz4bn51LcrGiwNvcDh480PkmSJGmsjMVWipIkSeNCN3YTcich1TM5lyRJaqJbuwm5k5DqmZxLkiQ14W5CGgvbjXUAkiRJkgom55IkSVJFmJxLkiRJFWFyLkmSJFWEybkkSZJUESbnkiRJUkWYnEuSJEkVYXIuSZIkVYTJuSRJklQRJueSJElSRZicS5IkSRVhci5JkiRVhMm5JEmSVBEm55IkSVJFmJxLkiRJFWFyLkmSJFWEybkkSZJUESbnkiRJUkWYnEuSJEkVYXIuSZIkVYTJuSRJklQRJueSJElSRZicS5IkSRVhci5JkiRVhMm5JEmSVBFdT84jYt+I+FFEbIyI2yPioxExZYg2e0ZENnmc26TuYRFxY0TcHxFLI+Kozr0aSZIkafRM7eZgETEHuBxYChwG7AV8huJLwgdLdPEe4Gd1z+9u6P/5wHeAJcDxwCHANyNiTWb+cMQvQJIkSeqgribnwHHADODwzFwPXBYRuwCLIuLUWtlgbs7Mawc5/iHgJ5l5fO35FRHxVODDgMm5JEmSKq3by1peBlzakISfS5GwHzCSjiNiB+DFwLcbDp0LPC8iZo2kf0mSJKnTup2c7wMsqy/IzNuAjbVjQ/lqRDwYEXdExOkRMaPu2F7AtMb+gZsoXueThh+2JEmS1HndXtYyB1jbpHxN7VgrDwBnUixNWQ+8CHgfRUJ+WF3fNOl/TcPxh0XEscCxAHvssceQwUuSJEmd1O3kHCCblEWL8qJB5h3AO+qKroyIu4AlEfHMzLxhkP6j1biZeRZwFsB+++3XcnxJkiSpG7q9rGUNMLtJ+Syaz6gP5vzav8+q65sm/Q88b7d/SZIkqau6nZwvo2FteUTMB2ay7VrxoWTDv/8LbGnsv/b8IeD3bfYvSZIkdVW3k/OLgYMjYue6sqOATcBVbfZ1RO3f6wEy8wHgCuDIhnpHAddk5rr2w5UkSZK6p9trzr9IcXOgCyLiU8ATgUXA6fXbK0bEcuCqzDym9nwRsDPFDYjWAy8ETgQuyMz/qev/YxTr0T8LfJfiJkSHAH/T2ZclSZIkjVxXZ84zcw1wEDAFuBD4CLAYOKWh6tRanQHLKPZB/ypwEfB64LTav/X9X00xo/4S4FLgUOD13h1UkiRJ40HXd2vJzKXAgUPU2bPh+bkUNxMq0/93KWbNJUmSpHGl22vOJUmSJLVgci5JkiRVhMm5JEmSVBEm55IkSVJFmJxLkiRJFWFyLkmSJFWEybkkSZJUESbnkiRJUkWYnEuSJEkVYXIuSZIkVYTJuSRJklQRJueSJElSRZicS5IkSRVhci5JkiRVhMm5JEmSVBEm55IkSVJFmJxLkiRJFWFyLkmSJFXE1LEOQJIkaTxZvHgxfX19TY8NlC9YsGCbY729vSxcuLCjsWn8MzmXJEkaJTNmzBjrEDTOmZxLkiS1wdlvdZJrziVJkqSKMDmXJEmSKqLry1oiYl/g88DzgLXAV4CPZOaDJdtvB/wKeBbwysz8ft2x/wDe3KTZUzJz2QhDlyac4V7UBF7YJElSJ3Q1OY+IOcDlwFLgMGAv4DMUM/gfLNnN24DHDXJ8GfDWhrJb2wpUkhc1SZI0Bro9c34cMAM4PDPXA5dFxC7Aoog4tVbWUi25/wRwEsWMezMbMvPa0Qxamqic+ZYkqVq6veb8ZcClDUn4uRQJ+wEl2n8M+Bnwow7EJkmSJI2pbifn+1AsO3lYZt4GbKwdaykink6xXOU9Q4yxb0Ssj4gHIuLqiCiT9EuSJEljrtvJ+RyKi0AbrakdG8zngTMzc/kgdX4DvBt4JfAGYArF0pnnDCNWSZIkqavG4iZE2aQsWpQXByNeCzyZIulu3XHmGQ3tfkBx8enJwKua9HsscCzAHnvsMVTckiRJUkd1e+Z8DTC7Sfksms+oExHTgNOATwHbRcRsYJfa4ZkRsXOrwTJzE3ARxbaLzY6flZn7ZeZ+c+fOLf8qJEmSpA7odnK+jIa15RExH5hJw1r0OjOBHuB0iuR+DfDftWPnUixlGUrLWXlJkiSpKrq9rOVi4MSI2Dkz762VHQVsAq5q0eY+4MUNZY8GvkmxXOXHrQaLiBkUO8RcP5KgJUnd1+omWd4gS9JE1u3k/IvA8cAFEfEp4InAIuD0+u0VI2I5cFVmHpOZW4Er6zuJiD1rP96Ymb+olc0Cvg+cAywHdgcWUtyw6DUde0WSpK7yBlmSJrKuJueZuSYiDgK+AFxIsc58MUWC3hjXlDa7fwBYRXGn0XnA/cA1wAGZed0IwpYkjQFnvyVNRl3frSUzlwIHDlFnzyGO30qxw0t92f3A4SMMT5IkSRoz3b4gVJIkSVILJueSJElSRZicS5IkSRVhci5JkiRVhMm5JEmSVBEm55IkSVJFmJxLkiRJFWFyLkmSJFWEybkkSZJUESbnkiRJUkVMHesAJoPFixfT19fX9NhA+YIFC7Y51tvby8KFCzsamyRJkqrD5HyMzZgxY6xDkCRJUkWYnHeBs9+SJEkqwzXnkiRJUkWYnEuSJEkVYXIuSZIkVYTJuSRJklQRJueSJElSRZicS5IkSRVhci5JkiRVhMm5JEmSVBEm55IkSVJFmJxLkiRJFRGZOdYxVEJErAL+ONZxTCC7A3ePdRBSC56fqirPTVWV5+boenxmzm12wORcHRER12XmfmMdh9SM56eqynNTVeW52T0ua5EkSZIqwuRckiRJqgiTc3XKWWMdgDQIz09Vleemqspzs0tccy5JkiRVhDPnkiRJUkWYnGtYIuItEZFNHsfV1YmIODkiVkTEpoj4SUQ8cyzj1sQTEXtHxJci4r8j4sGIuLJJnVubnKt3Nqm3b0T8KCI2RsTtEfHRiJjSlReiCWc03yc9NzUSJd8nR+1c9PN/ZKaOdQAa9w4ENtU9/0PdzycBHwJOBJYB7wIuj4inZeY2iZE0TE8FDgGuBbYfpN5/Ap+ve765/mBEzAEuB5YChwF7AZ+hmMT44CjGq8lnRO+TnpsaBWXeJ0fzXPTzfyQy04ePth/AW4AEdmpxfDqwDvhwXdlMYBXw8bGO38fEeQDb1f18PnBlkzq3Ap8eop/3A2uAXerK3gtsrC/z4aPsY7TeJz03fYz0MdT75Giei37+j/zhshZ1yv8FdgG+PVCQmRuAC4GXjVVQmngy86FR6uplwKWZub6u7FxgBnDAKI0h1Sv7Pum5qREp8T45muein/8jZHKukfrfiNgaETdHxD/Ule8DPAj0NdS/qXZM6ra/i4jNEbEuIs6PiMc3HN+H4s+vD8vM2yhmhDxnNRIjfZ/03FSnjea56Of/CLnmXMN1B8V6sl8CU4DXAV+MiB0zczEwB7gvMx9saLcG2DEits/MzUjd8T2KtZb9wFOAU4CfRsT/ycx1tTpzgLVN2q6pHZPaNVrvk56b6rTRPBf9/B8hk3MNS2ZeClxaV3RxROwAfDAizhio1qRpDHJM6ojMPKHu6U8j4ufADcBbgc/WV23SPFqUS4Ma5fdJz0112miei37+j4DLWjSazgd2Bfak+Ia8c5OtvmYDGzNzS5djkx6Wmb8FbgaeVVe8huL8bDSL5jNF0nAM533Sc1OdNprnop//I2Ryrk5IijVpU4C9G45ts15NGkP1MzjLaFgPGRHzKXYZ8JzVaGvnfdJzU502muein/8jZHKu0fRq4G7gj8DPgfXAkQMHI2JH4JXAxWMSnVQTEU8DngxcX1d8MXBwROxcV3YUxf7UV3UxPE1sw3mf9NxUp43muejn/wi55lzDEhHfobjI6X8oviEfVXscX9uy6f6I+CTwoYhYw59vQrAdj7wRjDQitTf9Q2pPHwfsEhFH1J5fBLwYeCPwfeB2itmbDwK3Af9R19UXgeOBCyLiU8ATgUXA6Q3bhkmljOL7pOemRmSo98nM3Dha52Jm+vk/QlHbHF5qS0T8M8UM0HyKizyWAp/NzK/X1QngZODtwG7AdRQfSr/pfsSaqCJiT+CWFoefQLHf7mLg6RRrHlcDlwAnZ+btDX3tC3wBeB7F+smvAIua7DogDWk03yc9NzUSQ71PZuato3ku+vk/MibnkiRJUkW45lySJEmqCJNzSZIkqSJMziVJkqSKMDmXJEmSKsLkXJIkSaoIk3NJkiSpIkzOJWmciYijI+KPdc9vioi3t9nH/Ih4MCI2R8TuI4znnRFxeJPyRRGREeEN7ySpJJNzSRp/ng1cDxAROwFPGnjehqMpPgOmAa8bYTzvBLZJziVJ7TM5l6Tx5+HkvPbzQxS3iG/H0cBvgduAN49eaN0VETuMdQySNJpMziVpHImI7YBnAr+uFT0bWJqZ97fRx/MoZtvPBr4OPDsintpQZ8/akpS3NJS/qFb+otrzW4HHA2+olWdE/EfDkE+IiB9ExH0R8ceI+HDtddT3++SI+K+IWBsRmyLi2oj4m4Y6A8tknhYRl0bEfcC3a8cOjoifRcS62jg3R8SHy/5OJKkqTM4laRyIiFsjIoEHgZnARbXnnwGeXpcY71miuzdTzLZ/gyJBh2ImfTj+FrgTuBR4Xu3xsYY6/wX8GHgV8F3gI9TN1kfEY4GrgWcA7wBeA6wFfhARL2sy5veAq4BDgcUR8UTg/wG3AkfVyk+n+D1J0rjiRTqSND4cAmxPkUQfDLyhVv4T4BTgitrz2wfrpLYM5Cjg8sy8vVZ2LfDGiHh/Zj7UTlCZ+ZuIeAC4OzOvbVHtM5n51drPl0fEgRTr3AfK3gXMAZ6XmctrMV0ELAU+AVzc0N/nMvOMutd0BMXv5u2Zub5W/ON2XockVYUz55I0DmTm0sy8AZgPXFn7eQOwM3BeZt5Qe2weoqvDgNn8ecYc4GvAY4GXdCB0gB80PP8tsEfd8xcC1w4k5gCZ+SDwTeCZEbFLQ/v/anh+A7AFODcijoiIeaMTtiR1n8m5JFVcREyJiKm1LQn3B66p/fwC4E/AnbXjUaK7NwMbgSsiYnZEzKZYkrKFzl0Yek/D8weA6XXPdwXuaNLuTiAoZtXrPaJuLak/mOIz7esUv49fRMQBIwlaksaCybkkVd+PKJLnLcBjKBLQLcC/AY+rOzZoMhoRjwJeCuxIkdSvqT3+QLGl4t9GxM616gMXmG7f0M1uI3wtzdwDPLpJ+aOBZNvkPhsrZuYVmfk3FH8VeAnF7+MHI93DXZK6zTXnklR9/0CxfOUoiosqB/Ylvwg4g2LmG+DmIfp5I8X7/tuBZQ3HngF8FjgS+HfgLooZ7qc11Ht5k34fAGYM9SIGcRXwzojYMzNvheKvBRSv9zeZeW/ZjjLzAeDHtf3fvwc8Abh7BLFJUleZnEtSxWXmzQAR8SHgB5l5XUQ8Gdgd+LfMvLNkV0cDtwBfysxHzD5HxE+B91Isbfn3zMyI+BZwTET8niLxfznwoib9LgVeEBGvoFiKcvdAkl3SYuAtwGURcQqwHlhAsd1jsy8DjxARx1GsW78IWEHxe3k/xcWxv20jDkkacy5rkaRxICK2Bw4CLqkVvYxiVrlUYh4RfwE8HfhqY2IOD1+A+R8USfYTasUnABcAi4BvUawT/6cm3b+fInn/NvCrWv3SarvGPB/4HfCvwPkU69BfnpmXDNa25r8ptk38F+CHwBcovoQcmJmb2olFksZaNHmPliRJkjQGnDmXJEmSKsLkXJIkSaoIk3NJkiSpIkzOJUmSpIowOZckSZIqwuRckiRJqgiTc0mSJKkiTM4lSZKkijA5lyRJkiri/wOE3t+NYYvhBgAAAABJRU5ErkJggg==\n" + "image/png": "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7/3cz9SpTJs2jT/84Q+cc845T47zspe9jGc84xmceuqpT17Qefvtt3PggQc+2eYtb3nLk6fs3HDDDey999686lWv4v3vfz9nnnkmU6ZM4Z577qG3t5eDDz6YN73pTXzuc5/jda97HZMnT+ZTn/rUNvEvWrSIiy66aOBvdpuMxFGKWacsGpRv2zDiGRRbYL5dW5eZ52Xmv2Xmosy8FDgE+ANwWoOxjo+I2yLithUrvBBLktTZjj32WK688sqnHJl3//33P3kO9p//+Z9z5513csMNN/CqV72q7hgRwbve9S722GMPnvnMZ3Lttdfygx/8gClTpjQVy2677cZNN93EhAkT2H///dlll1049NBDmTp1asMLNmt9/etfZ+7cuU+umvc9TjjhhIbH+e24446ceOKJnHnmmXXrd955Z1760peyadMmXvCCP16w+1d/9VcsX778KcnpTjvtxHXXXcesWbPYf//92XXXXXnf+97HJz/5SU455ZSGcc+YMYNjjz32KTGcffbZ7LLLLuy2224ce+yxvPSlL+Wmm24a8K8X++23H5MmTXry0XfG+s0337zNOef1jpnce++9S124udtuu3HooYdus5p9yy23cO+99/KP//iPT/lvcPjhhzN79my+/e1vs3nzZlauXNlwL/nVV1/Nfvvtx5QpUzjppJO4+OKLmThxIjvvvDMf/vCHOfDAA5k2bRq33HILp59+Or/4xS+YOnUqr33ta5+y4j9u3Dguv/xyli5dyp577klXVxff+c53tpnvHe94Bx/72Mc45JBDuPfee7nwwgvZvHkz++67L9OnT+eoo456crvS3//93/PqV7+aF73oRbzkJS/Z5i8Mt956K5MnT+ZlL3vZgN/Ddom+PyW0ZbKI5cD5mfnxmvJ1FMcpnlO/51PangQsAJ6dmctKtD8feH1m7tlfuzlz5uRInHE5Gu+MqLFt7ty5LF//SFtWzmdO3q0t/+/MnTuXO+5Z3pYLQl/8nJn+POhQd911F89//vOffD4SRykCnHbaacycOdM7hKptbrzxRs4///ynnKs+WrzxjW/kuOOO47DDDmvZHLU/OwAi4vbMrPupqt3bWpZQs7c8ImYBk6nZi96PNwM3lknMq7TvE4g0xvX29rJm3dqWbztZsexBNk/Z0NI5pP6USaRboe8CSKldDjrooKecmjKafPe73x3pELbR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\n" }, "metadata": { "needs_background": "light" @@ -1130,7 +1480,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "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\n" + "image/png": "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\n" }, "metadata": { "needs_background": "light" @@ -1140,7 +1490,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAucAAAHqCAYAAACnceCLAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdd3xOZ//A8c+RJZKQyBAkTcwaLUqsIlKjihqlqJFYMapKrNZqhUd57FL8PEZJpCiqHkS02hI8NYraKaFFhpGISEIkkly/PyJ33e47C4nQ7/v1ul8v55xrnZM0/Z7rvoamlEIIIYQQQgjx/BV73g0QQgghhBBCZJLgXAghhBBCiCJCgnMhhBBCCCGKCAnOhRBCCCGEKCIkOBdCCCGEEKKIkOBcCCGEEEKIIsL0eTegqHBwcFDu7u7PuxlCCCGEEOIld+zYsVillKOxaxKcP+Tu7s7Ro0efdzOEEEIIIcRLTtO0K9ldk2EtQgghhBBCFBESnAshhBBCCFFESHAuhBBCCCFEESFjzoUQQog8ePDgAZGRkdy/f/95N0UI8YIoXrw4Li4umJmZ5TmPBOdCCCFEHkRGRmJjY4O7uzuapj3v5gghijilFLdu3SIyMpIKFSrkOZ8MaxFCCCHy4P79+9jb20tgLoTIE03TsLe3z/e3bRKcCyGEEHkkgbkQIj+e5G+GBOdCCCGEECLf5s6dS343cHR3d2fu3LkF06CXhATnQgghhDDQr18/NE0z+Jw4ceKZlL937140TSM2NvaZlJcX/fr149133y20+p5WbGws3bt3x87OjpIlS9KsWTNOnTqVp7xZP68DBw7onU9PT6dcuXJomsbmzZsLotniKcmEUCGEEEIY1apVK9auXat3zsHB4Tm1JnupqamYm5s/72Y8c5988gmHDh1i+/btlC1blhMnTuRrmISrqyurVq2iadOmunMhISGYmkr4V5RJz7kQQgghjLKwsMDZ2VnvkxXYbd++nXr16lG8eHEqVKjApEmTSE1N1eUNCgqifv362NjY4OTkRLdu3YiKigLg8uXLvPXWWwA4OjqiaRr9+vUDwMvLi+HDh+u14/Eeby8vLz788EPGjh2Lo6MjTZo0AeDcuXO0b99eV2fPnj25fv06AP7+/gQEBBAcHKzrVd67dy8tWrQwqC8hIYESJUqwZcsWIHMohr+/P3369MHa2hpnZ2eDoRl37txh8ODBODk5YWNjQ/PmzTl69KjedW9vb5ycnChevDgVK1bkyy+/zPH5FytWjEaNGtG0aVMqVapE165def3113PM8/hz27RpE0lJSbpzq1aton///gZpr169ynvvvYeNjQ02NjZ06dKFyMhIvTSzZ8/G2dkZa2trfHx89MrNsnr1amrUqEHx4sWpWrUqCxYsICMjI89tFhKcCyGEECKffvjhB3r37s3w4cM5e/YsX3/9NZs3b2bixIm6NKmpqUydOpWTJ0+yY8cOYmNj6dmzJ5DZo/vdd98BcPbsWa5du8bChQvz1YagoCCUUuzfv5/AwECuXbuGp6cnr732GkeOHOGnn34iKSmJjh07kpGRwdixY+nevTutWrXi2rVrXLt2jTfffJNBgwaxbt06UlJSdGWvX78ea2trOnTooDs3f/58qlevzvHjx5k6dSoTJ07UBe9KKdq3b09UVBQ7duzg999/x9PTkxYtWnDt2jUAJk+ezOnTp9mxYwd//PEHX3/9NeXLl8/xHjt16sT3339PcHBwvp5Nllq1alG9enW+/fZbAG7evMnOnTsNgnOlFJ07d+bGjRv88ssv7Nmzh+joaDp37oxSCoCNGzcyefJkpk6dyvHjx3n11VeZP3++XjkrVqxg4sSJTJs2jbCwMObNm8esWbNYunTpE7X/H0spJR+lqFevnhJCCCGyc+7cuefdhELVt29fZWJioqysrHSfd955RymlVLNmzdS0adP00n///ffKyspKZWRkGC0vLCxMASoiIkIppdSePXsUoGJiYvTSNW/eXH300UcGbWnfvr1emtdff10vzWeffaZatGihdy4uLk4B6vDhw0bLUUqp+/fvK3t7e7V+/XrduQYNGqgxY8bojt3c3FSrVq308g0cOFA1adJEKaXUzz//rKysrNS9e/f00tSuXVvNmjVLKaVUhw4dVL9+/Yw9GqPOnj2rrK2t1YwZM9Qrr7yivvnmG9218PBwBajz589nmx9QmzZtUkuXLlVvvvmmUkqpOXPmqJYtW+pdV0qpH3/8URUrVkz99ddfuvyXLl1Smqap3bt3K6WUaty4sfL19dWro2XLlsrNzU137OrqqgIDA/XSLFiwQFWvXl137ObmpubMmZPn5/AyMPa3AziqsolJpedcCCGEEEZ5enpy4sQJ3Wfl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6aWXbpCcf/SjH6Wrq4sjjjiCRx55hDVr1nDjjTdy4oknMnPmTMaPr74K86c+9SluuummqjeFrl69mvvuu49DDz2UiRMncswxx/T7M+j7d+h7vPjii/3Wr/S9732PW265ZcA/xE488URuuummDa6/z8UXX8wZZ5yx/t/g/vvv58orr+Taa69l8eLiXoipU6dutPRin0svvZRFixax2WabrR+BHjNmDJMmTWKzzTbjD3/4w/q6zz33HNtuuy0TJkzgj3/8I+ecc876Y294wxvYZZddOPXUU1m+fDmrVq3izjvv3OBcH/zgB/nKV77CgQceyO9//3t22WUX3vWud62f9rRu3Tp+//vfr/9/8v73v59/+qd/ore3lyVLlvCP//iPG8V/++23Nzytq5XaOnKemUsi4gDgWxQj3ksplkScWSWuMWXt7ouIvwDOAC4pFf8WeGdm/ndZvTsi4nDgS8DHgYeBD2Xmf7XmikY3R78lqb2OOuoo9t57b1auXLl+EOSxxx5j2223JTMZP348b37zm7nttttqzvuNCI455hgWLFjA2LFjec1rXsO1117Ltttu21AsO+ywAz//+c85/fTTeeMb38jy5ct5yUtewgc/+MEBb5bsc9FFF/GJT3yCnXfeeYPyE044gYsuumj9SiTltthiC0488UTOOussDjnkkI2Ob7311rz+9a/ngQce4FWvetX68re+9a388z//8wbJ6ZZbbsnNN9/M5z73Od74xjeybNkydt99d7785S9z3HHH1Yx70qRJHHXUUZx11lnrR/zPPvtsZs+ezbp165g6dSrvec97uOKKKwZMmvumCfX57ne/y9ixY7nrrrs2+je59dZbN/rUpNqSiNXssMMOHHDAARuV33333TzyyCN84hOfYNKkSevL3/e+9zFt2jQuu+wyjj/+eBYvXlzzNXXDDTdw8skns2LFCl760pdy+eWXs9VWWwHwD//wD+y7776sWbOGG264gTPOOIOjjjqK8ePHM23aND760Y8ya9YsoEjor7nmGk488UR23XVXIoIPfehD7Lvvvhuc7+ijj+aFF15g//335/bbb+fiiy/m1FNPZa+99uK5555j991357Of/SwAf/u3f8tDDz3Ea1/7WrbffntOOeUUbrnllvV93XPPPWyzzTa84Q1vqOvn2A6R6X2QUNwQOhxrXA7m5jSpHQb72pw+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\n" + "image/png": "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4Al8+UjdwUC4qqqFvzItSmzZsmU6vxLN25fXQ/m4Bg0aMHXq/7N372FyVmWi9u+HhEM4JQGTgbGDAdOCeNzK1lFUFFA3jAqbAUEHQYRhMDhgFAdElAgeAYkZNSLijBxGmBGQ+TgLAlEQRkBRtxDoKJi0nEJICOREQp7vj7c6U1Sququ6q6or3ffvuurq1Dq/zUv106vXu9aMlo5Nkkai1772tTz00EM112T3+clPfsIb3vCGDWbNK2277baceuqpfPWrX+Xhhx9eH0hWevvb3/6i3UkA9t13X37yk59w+umnD3ppS29vL7fccgu/+tWvuOKKK4BimcuqVas2CI4BXvOa13Daaadx/PHH8+tf/5pTTz2VU0899UVl3vGOd3DeeecxderU9Q+x7rnnnhxzzDFMnTp1/ZKWvms49dRTWb58+Yu+V1dccQWbb7551Rngvfbai49+9KOcdNJJXHXVVTWv7bnnnuPmm29evxPIH/7whwa/OwN72ctexs4778x1113HD37wg37LHn744ZxxxhnceuutG+RdfPHFrFu3jve///3r01atWsVFF13EgQceOOA4uru7ufTSS1m3bh1XXnklBx98MIsXLyZiw6d1PvvZzxIR/O53v2P77bfnqquuWr8mf8qUKSxYsIC1a9dWDdBf+cpXcvzxx7Pffvtxyy23sOuuuzJlyhQ233xznnrqqap1dtxxRxYuXLj+/YIFCzYo88ADD/C6171uwOtsl3bPnJ8HrAaujIh9I+JYYCZwbvn2ihExPyLK77ILgL8GfhIRfxsR7wOuAnaktCyl5EzgnRHxzYh4Z0ScRbEP+hktvSq9yLhx4zb4rVySNHT777//i3YeKZeZ/OUvf+GLX/wiF1xwAV/5yleqljvzzDO5++67ef7551m1ahWzZ89mwoQJda1lL/epT32KZcuWceSRR/LnP/8ZKGaKP/WpT/G73/2urjYuvvhiXvGKV/Dggw9y3333cd999/HQQw/R1dX1op1Iyh155JE8+eSTG2wP2Oetb30rS5cu5ZJLLlkfnE+cOJFJkyZxySWXvCg4/8hHPkJXVxeHHHIIjzzyCGvWrOHGG2/khBNOYObMmYwfX30X5k9+8pPcdNNNVR8KXb16Nffeey8HHnggEydO5Kijjur3e9D336Hv9cILL/RbvtIPfvADbrnllgF/ETvhhBO46aabXnT9fS666CJOP/309f8N7rvvPq644gquvfZaFi8unoWYOnXqBlsv9rnkkktYtGgRm2yyyfoZ6DFjxjBp0iQ22WQT/vSnP60v++yzz7L11lszYcIE/vKXv3D22Wevz3vTm97EjjvuyCmnnMLy5ctZtWoVd9xxx4v6+tCHPsRXvvIV9t13X/74xz+y44478p73vGf9sqd169bxxz/+cf3/Jx/84Af5l3/5F3p7e1myZAlf+9rXNhj/3LlzG17W1UptnTnPzCURsQ/wbYoZ76UUWyLOrDKuMWX17o2I/wOcDlxcSv498O7M/G1Zudsj4mDgS8DHgYeBD2fmT1tzRaObs9+S1F5HHHEEr3/961m5cuX6SZBHH32Urbfemsxk/PjxvPWtb+W2226rue43IjjqqKNYsGABY8eO5bWvfS3XXnstW2+9dUNj2W677fjlL3/Jaaedxpvf/GaWL1/OS1/6Uj70oQ8N+LBknwsvvJDjjz+eHXbY4UXpxx13HBdeeOH6nUjKbbbZZpxwwgmceeaZHHDAARvkb7nllrzxjW/kgQce4NWvfvX69Le//e1897vffVFwuvnmm3PzzTfz2c9+lje/+c0sW7aMXXbZhS9/+cscc8wxNcc9adIkjjjiCM4888z1M/5nnXUWs2fPZt26dUydOpX3ve99XH755QMGzX3LhPp8//vfZ+zYsdx5550b/De59dZbN/irSbUtEavZbrvt2GeffTZIv+uuu3jkkUc4/vjjmTRp0vr0D3zgA0ybNo1LL72UY489lsWLF9e8p2644QY+9alPsWLFCl72spdx2WWXscUWWwDwuc99jj333JM1a9Zwww03cPrpp3PEEUcwfvx4pk2bxkc+8hFmzZoFFAH91VdfzQknnMBOO+1ERPDhD3+YPffc80X9HXnkkTz//PPsvffezJ07l4suuohTTjmF3XffnWeffZZddtmFk08+GYB/+Id/4KGHHuJ1r3sd2267LSeddBK33HLL+rbuvvtuttpqK970pjfV9X1sh8j0OUgoHggdjj0uB/NwmtQOg703p0+fzh/m3c+kKTsMXLhk6ZPFWtcJk6v/Sb2aRQsf51W77d7WB0LH7nHwwIWHYO09l7PV2mdYtnxzXth0z4ErDMGYNXfwxtfv5GdPAx544AFe+cpXrn8/HFspApx66qlMnjyZT37yk03rW+rP7bff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\n" }, "metadata": { "needs_background": "light" @@ -1150,7 +1500,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "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ZQAcOnSI999/H4PBoH/69OlDenq6Ppzjt99+o2vXrnh7e2M0Gqlfvz6QPYzhUahXr57J9qFDh4iIiDCJycvLC4AzZ87k2o6trS3+/v58+eWXQPYQlV9//ZVBgwaZlGvSpInZ9okTJ/S+r127hpubm0n/x44d0/seMWIE69ato06dOowfP57w8PB7nt/06dNp27YtEydOJDQ0lDFjxujfBhw7dgwPDw+qVKlyv8tEnz59+P333zl58iRffvklgwcPNisTFRVF2bJlTVYiqVixImXLltXPMSoqyuI1yJGQkEBMTAzDhg0zuQZvv/32Pa+/MCcj7oUQQoh/mZIlS1K5cmWz/VlZWUybNo0ePXqYHXNzcyM9PZ327dvrEzHd3d1JTEykefPmJuO+LbGystKHNOTIyMgwK2dvb28WU6dOnSwuR1e6dOl79jlkyBBq167NhQsXWL58OU2aNKFmzZr3rHN336VLl2b37t1mxxwcHADo0KED58+fJywsjB9//JFOnTrRo0cPVqxYYbHNI0eO0LdvXwCefvppwsLCaN26NX///Te//fYbAwcOzNOkylKlStGtWzeGDx/OpUuXeOmll8zKKKVybSuvEzdzxm0vWbKEpk2b5qmOsEySbiGEEEIAULduXf744w+LCTnA4cOHSUxMZNasWfqrr3PGP+fIWW0kMzPTZL+bm5s+DvrO9u63HnTdunVZt24d3t7e2NjYWCxTvHhxs/4AatWqRaNGjVi6dCkhISG8//77ZmX27dtntl2jRg2977///hsrKysqVqyYa4yurq74+/vj7+9Phw4d6N27N0uWLMHW1tasbLly5UyS+Pr16xMaGkr79u0pVqwYa9euzbWfuw0ePJhWrVrx2muvUaJECbPjNWvW5OLFi5w7d06/zmfPniUuLk6/+ahRowb79u0z+QbgzmtSunRpypUrx5kzZwgICMhzbMJcoQ8v0TStpqZpP2qadk3TtDhN097VNM06D/VqaZr2w//qJWqa9h9N0wyFEbMQQgjxbzB16lRWr17N1KlTOXbsGH/88QcbNmxgwoQJADz11FPY2tqyaNEizp49S2hoKO+8845JG97e3miaRmhoKAkJCfpKGK1atSIsLIzvvvuOkydPMm7cOGJiYu4b02uvvcaVK1fo1asX+/fv5+zZs+zYsYNXX32V1NRUIHsVkmPHjnHy5EkS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iH+WlJQUjEajvu3i4kL37t0pWbIkRqORyZMnEx4e/tD9LFu2jAkTJtCgQQM0TaNy5cp4e3vnqa6NjQ2TJ0/GxsaGV155hcTERMaMGYPRaKRWrVrUqlWLI0eO5DumevXq0bhxY4oVK0b58uUZNmzYPc916dKlDBs2jEaNGmFtbU3//v2xtbVl37597Nu3j4yMDAIDA7GxseHll1+mQYMGZm0YjUZSUlLyHasQD0OedP9DFMTa2Z6enlyxTcKlR8BDxXY/SeuD8XRzsXgst/MqiPXAC7MvIYTIDycnJ1JTU/Xta9euMXbsWLZt28bly9lDXVJTU8nMzMTa2vqB+4mJiaFSpUoPVNfFxUXvO2fseenS/z880c7OjrS0tHy3e+rUKcaNG8fBgwe5du0at2/fpl69ermWP3/+PEFBQXz66af6vlu3bhEXF4emaZQrV85kSImlm4rU1FQcHR3zHasQD0OedAshhBBFrHbt2pw6dUrfnjdvHidPnmT//v1cvXqViIgIAJTK55jAu3h5eXHmzBmLx0qWLMm1a9f07b/++uuB+7G3t89zWyNGjKB69epER0dz9epVZs2adc/z9PLyYvLkyaSkpOifa9eu0bt3b8qUKcPFixdN6l+4cMGkflxcHLdu3TIZziNEYZCkWwghhChiHTt2NBlSkZqaip2dHY6OjiQnJzNjxow8t+Xr68v06dMtHhsyZAhz587l0KFDKKU4ffo058+fB+DZZ59l9erVZGZmsm3btocazvLss8+ydetWkpOT+euvv+65/nhqaioODg4YDAb++OMP/vOf/5gcL126NGfPntW3hw4dypIlS9i/fz9KKdLT0wkNDSU1NZUmTZpQrFgxFi5cyO3bt9m4cSO//vqrSXu7du2iVatWMolSFDoZXiKeKLIMohDinyggIIBnn32W69evY2dnR2BgIH369MHV1ZWyZcvyxhtv5HkSZUxMDD4+PhaP9ejRg6SkJPr06cPFixcpX748q1atwtvbmwULFtC/f38+++wz/Pz88PPze+Dz8ff3Z8eOHZQvX57y5cszcOBA5s2bZ7Hs3LlzefXVV5k9ezbPPfccvXr14qefftKPT58+nf79+3P9+nW++OILevbsydKlSxk1ahTR0dHY2dnRrFkzWrRoQfHixdm4cSNDhw5lypQpdOzYkW7dupn099VXXzF8+PAHPjch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\n" + "image/png": "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\n" }, "metadata": { "needs_background": "light" @@ -1160,7 +1510,7 @@ { "data": { "text/plain": "<Figure size 864x576 with 1 Axes>", - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAt0AAAHqCAYAAADYoPJ6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjIsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+WH4yJAAAgAElEQVR4nOzdd3xOZ//A8c+JRESG7ASJ2LOltUpDpGoUNUpRK3apKkGHVY0+Hh2KUm09NRN5aO3SSFttCfrYGpQgdoY2S5aVdf3+SHN+bvcdkpDE+L5fr/v1cs651jlJbt/7uq+hKaUQQgghhBBCFB+z0m6AEEIIIYQQjzsJuoUQQgghhChmEnQLIYQQQghRzCToFkIIIYQQophJ0C2EEEIIIUQxk6BbCCGEEEKIYmZe2g0oCc7Ozqpq1aql3QwhhBBCCPGYO3z4cIJSyuXO809E0F21alUOHTpU2s0QQgghhBCPOU3TLpk6L8NLhBBCCCGEKGYSdAshhBBCCFHMJOgWQgghhBCimD0RY7qFEEKI/GRmZhIdHc3NmzdLuylCiEdIuXLl8PDwwMLCokDpJegWQgjxRIuOjsbW1paqVauiaVppN0cI8QhQSpGYmEh0dDTVqlUrUB4ZXiKEEOKJdvPmTZycnCTgFkIUmKZpODk5FeobMgm6hRBCPPEk4BZCFFZh3zck6BZCCCGEELrPPvuMwm4qWLVqVT777LPiadBjQoJuIYQQ4gkyZMgQNE0zeoWHhz+Q8nfu3ImmaSQkJDyQ8gpiyJAhvPzyyyVW3/1KSEigT58+ODg4YGdnR+vWrTl27FiB8ub9vPbs2WNwPjs7m0qVKqFpGuvXry+OZov7JBMphRBCiCdMu3btWLVqlcE5Z2fnUmpN/jIyMihbtmxpN+OBe/fdd9m3bx9bt26lYsWKhIeHF2qogqenJ8uWLaNVq1b6udDQUMzNJax7mElPtxBCCPGEsbS0xN3d3eCVF7Bt3bqVJk2aUK5cOapVq8a0adPIyMjQ8wYHB9OsWTNsbW1xdXWld+/exMTEAHDx4kVeeOEFAFxcXNA0jSFDhgDg6+vL2LFjDdpxZw+1r68vb7zxBm+//TYuLi54e3sDcPLkSbp06aLX2a9fP/766y8AAgICCAwMJCQkRO8F3rlzJ23btjWqLzU1lfLly7Nx40Ygd0hEQEAAAwcOxMbGBnd3d6MhEikpKbz++uu4urpia2tLmzZtOHTokMH1QYMG4erqSrly5ahevTqff/75XZ+/mZkZLVq0oFWrVtSoUYNevXrx9NNP3zXPnc9t3bp1pKen6+eWLVvG0KFDjdJevnyZV155BVtbW2xtbenZsyfR0dEGaT799FPc3d2xsbHBz8/PoNw8K1asoH79+pQrV47atWszf/58cnJyCtxmIUG3EEIIIf7x008/MWDAAMaOHcuJEydYvnw569evZ+rUqXqajIwMZs6cydGjR/nhhx9ISEigX79+QG4P7IYNGwA4ceIEV65cYcGCBYVqQ3BwMEopdu/eTVBQEFeuXMHHx4ennnqKAwcO8Msvv5Cenk63bt3Iycnh7bffpk+fPrRr144rV65w5coVnn/+eUaOHMnq1au5deuWXvaaNWuwsbGha9eu+rl58+ZRr149jhw5wsyZM5k6daoelCul6NKlCzExMfzwww/88ccf+Pj40LZtW65cuQLA9OnTOX78OD/88AOnTp1i+fLlVK5c+a732L17dzZt2kRISEihnk2ehg0bUq9ePb777jsA4uLi2LZtm1HQrZSiR48e/P333/z222/s2LGD2NhYevTogVIKgLVr1zJ9+nRmzpzJkSNHqFOnDvPmzTMoZ8mSJUydOpUPP/yQiIgI5s6dyyeffMJXX31VpPY/sZRSj/2rSZMmSgghhDDl5MmTpd2EEjV48GBVpkwZZW1trb9eeuklpZRSrVu3Vh9++KFB+k2bNilra2uVk5NjsryIiAgFqKioKKWUUjt27FCAio+PN0jXpk0b9eabbxq1pUuXLgZpnn76aYM077//vmrbtq3BuaSkJAWo/fv3myxHKaVu3rypnJyc1Jo1a/RzzZs3V5MmTdKPvby8VLt27QzyDR8+XHl7eyullPr111+VtbW1un79ukGaRo0aqU8++UQppVTXrl3VkCFDTD0ak06cOKFsbGzU7NmzVZUqVdR///tf/VpkZKQC1OnTp/PND6h169apr776Sj3//PNKKaXmzJmjXnzxRYPrSin1888/KzMzM3XhwgU9/7lz55SmaWr79u1KKaVatmypRowYYVDHiy++qLy8vPRjT09PFRQUZJBm/vz5ql69evqxl5eXmjNnToGfw+PC1PsHcEiZiEelp1sIIYR4wvj4+BAeHq6/li5dCsDh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ZZOTyCrWWv6f0iqQbWF605IHqUzm78Veh3jwpkyZgpub232t0y3E40jTNCIjI/XdUouTr68vAwcOZMSIEWzZsoXVq1fz7bffPpCyJegWQhRIdHQ0KemphVpZpyjio/5CZeX802/9GMnJQlMpJRIQaypFH0YkHg3x8fEEBQVx9uxZAHbu3Enbtm0pX748APb29jz//PO88847NGvWTM93ezCSnJzMxIkT2bZtG9euXaNixYoMHz6cfv36Ub9+fT3PtWvXKF++PJqW+1cWGhpK69atDdpz5coVpk+fzrZt20hPT6dy5cr07duXd999F2tra5NBUEBAAGfPniU4OFg/p5SiRo0alCtXjpMnTxrU4evry759+zA3N6dcuXL4+Pjw5ZdfUrFiRaPn07FjR1588UXeffddAGJiYvDw8OCTTz4xOnflyhXc3d1JTk5mypQpbNq0idTUVGrUqMHEiRMZOnSoXm7VqlX5+++/KVOmDDY2Nrz00kssWrQIGxsbAIYMGcLq1auxtMz9psnLy4uuXbsyefJkKlSokO/PM78gceXKlQwfPtxoL4ozZ85QqVIlqlatSmxsLLGxsTg7O+vXn3nmGY4ePcqFCxeoWrUqQ4YMITAwkO+//55u3brp6fz9/VmwYAErVqxgyJAh+vmdO3fywgsvGDyvx9HFixepVq0amZmZmJvff4jbrVs3pk6dyrFjx2jYsOF9l2d23yUIIYQQ4r6sXLmSzp07GwRjlSpVIj09nbS0NPbt20fdunVp3bo1v/76q8kyJkyYQHp6OhEREaSkpLBlyxZq1KhBlSpVSE9P118AR48e1Y/vDLiTkpJo2bIlN27cYO/evaSlpbF9+3aSk5M5d+5coe5r165dxMXFcf78eQ4ePGh0fdGiRaSnp3P27FnS09N5++23TZbj4+NDWFiYQbl169Y1OlerVi3c3d3JyMigXbt2XLp0ib1795KSksKcOXOYPHky8+YZbn60detW0tPTCQ8P548//uCjjz4yuP7uu++SlpZGfHw8K1asYN++fXh7e3Pt2rVCPYs8LVu2NPh5pKenU6lSJf16tWrVWLNmjX58/Phxk8MCa9euTWDg/3eCZGVlsW7dOmrUqGGUNjAwEEdHR4P0omD69evHN99880DKkp5uIUSBeHh4UPZaUolMpEyJTeSx20bGzByVY1tiw0vymygr7m30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yJB8J3PmSU9P55dfftHbcOLEiXwnpRaVl5cX1apVY9u2bfTs2fOuaQcOHMjcuXNNBuerVq0iJyeHrl274u7uTvXq1bl582aBh5h4enqa/FCQ9/uXt3kXwF9/FW034bzyClpW//796datG1FRUaSkpDB69Gh9HHbeijx33sN//vMfgw86N27c4Pnnn6dixYpERUXpaZVSBscAERERVK1a1WgOQFFI0P2ImDBhAl999ZXJ15YtW9iyZYvJa7IjnRBCPPw6d+6c71fkeb1yM2fOZOnSpcyePdtkun/9618cPHiQjIwMbt68yYIFC7C3ty/QWPHbTZw4kdTUVAYPHsylS5eA3J7diRMncuzYsQKVsWrVKmrXrs3p06cJDw8nPDycM2fO4OHhYbAyx+0GDx5MXFwcW7ZsMXn9+eefJzk5meDgYD24dXBwwMXFheDgYIOge9CgQXh4eNC7d28uXrxIZmYmP/30E+PGjSMgICDf5f78/f3Zvn27ycmUt27d4vDhw/To0QMHBweDpQdNyfs55L2ys7Pvmv5Oy5Yt47fffrvnB6xx48axfft2g/vPExQUxAcffKD/DMLDw9mwYQMhISEkJiYCucsmrly50mTZI0aM4P333ycyMhKlFMeOHSMxMREXFxcqV65McHAw2dnZLF++vNAr29zumWeeYePGjVy/fp2zZ8+ybNmyfNOmpaXh6OhIuXLlOHDgAKtXr9avubi4YGZmxvnz5/Vzo0eP5qOPPtI/VKakpLBu3ToAunTpwokTJ9i4cSNZWVksXLjQKOAPCwujU6dORb6320nQLYQQQpQyPz8/tm3bZrA0XGxsrD5soVmzZhw/fpydO3fSoUMHk2VomsbQoUNxdnamUqVKbN++nZCQEH3N6YJydHTkf//7HxYWFjz33HPY2try4osvUqFChQJvThIYGMiYMWP0Xu681+jRo/Ndtq5s2bKMGzeOf/3rXyavly9fniZNmnDr1i2eeuop/Xzr1q2Ji4szCDotLS355Zdf8PT05LnnnsPOzo6JEyfy73//m3feeSffdru4uODn52fQhk8//RRbW1scHR3x8/OjSZMm/O9//7tnMNygQQP9m2grKytWrFgBwN69e/Wfa97L1HKKNWrUKNAqI46Ojrz44otGvbz79u3j4sWLvPnmmwY/g27dulGzZk3WrFlDRkYGiYmJJnv+IfcD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\n" + "image/png": "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\n" }, "metadata": { "needs_background": "light" @@ -1178,10 +1528,10 @@ "exp = lambda x: 10**(x)\n", "log = lambda x: np.log10(x)\n", "for group in grouped.groups.keys():\n", - " #gr2= grouped.get_group(group).groupby(by=['set', 'modeltype', '# Authors'], as_index=False).mean()\n", + " #gr2= grouped.get_group(group).groupby(by=['set', 'modeltype', 'No. of Authors'], as_index=False).mean()\n", " gr2 = grouped.get_group(group)\n", - " gr2.loc[:, ['Featuretypes & Model']] = gr2.apply(lambda x: '({}, {})'.format(str(x['set_feat']), x['modeltype']), axis=1).tolist()\n", - " #print(gr2['Featureset & Model'].unique())\n", + " gr2.loc[:, ['Feature Types & Model']] = gr2.apply(lambda x: '({}, {})'.format(str(x['set_feat']), x['modeltype']), axis=1).tolist()\n", + " #print(gr2['Feature Set & Model'].unique())\n", "\n", " fig, ax = plt.subplots(figsize=(12,8))\n", " #print(gr2.head())\n", @@ -1189,7 +1539,7 @@ " sel = [True for _ in range(gr2.shape[0])]\n", " gr2 =gr2.loc[sel, : ]\n", " #print(gr2.loc[sel, : ].head())\n", - " sns.boxplot(x='# Authors', y=\"f1-score\", hue='Featuretypes & Model',\n", + " sns.boxplot(x='No. of Authors', y=\"f1-score\", hue='Feature Types & Model',\n", " data=gr2, #exclude outliers\n", " palette=colors, dodge=True, ax=ax, showfliers=False,\n", " hue_order=list(colors.keys()))\n", @@ -1199,37 +1549,15 @@ " ax.tick_params(axis='both', which='major', labelsize=15)\n", " ax.tick_params(axis='both', which='minor', labelsize=13)\n", " ax.set_ylabel(\"Average F1-Score\", fontsize=16)\n", - " ax.set_xlabel(\"# Authors\", fontsize=16)\n", + " ax.set_xlabel(\"No. of Authors\", fontsize=16)\n", " plt.setp(ax.get_legend().get_texts(), fontsize='12')\n", " plt.setp(ax.get_legend().get_title(), fontsize='14')\n", " os.makedirs(os.path.join(savedir, '..', 'figures', str(group[1])), exist_ok=True)\n", " fig.savefig(os.path.join(savedir, '../figures', str(group[1]), 'f1_scores_{}.pdf'.format(group[0])))\n", " #ax.yaxis.set_ticks([np.exp(x) for p in range(0,1) for x in np.linspace(10**p, 10**(p+1), 10)], minor=True)\n", - " fig.show()" - ], - "metadata": { - "collapsed": false, - "pycharm": { - "name": "#%%\n" - } - } - }, - { - "cell_type": "code", - "execution_count": 18, - "outputs": [ - { - "data": { - "text/plain": "array(['(1, baseline)', '(2, cumulated)', '(2, stacked)',\n '(3, cumulated)', '(3, stacked)'], dtype=object)" - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "colors = (\"#ffffcc\",\"#a1dab4\",\" #41b6c4\", \"#2c7fb8\",\"#253494\")\n", - "np.unique(gr2['Featureset & Model'])\n", + " fig.show()\n", + "\n", + "\n", "\n" ], "metadata": { diff --git a/Scripts/ML/__pycache__/evaluations.cpython-38.pyc b/Scripts/ML/__pycache__/evaluations.cpython-38.pyc index 6c0fd6e96d2477fffbe7e6e5c170e55812205795..8e493c29786bd05605da8772f1d335a5b4d0250e 100644 Binary files a/Scripts/ML/__pycache__/evaluations.cpython-38.pyc and b/Scripts/ML/__pycache__/evaluations.cpython-38.pyc differ diff --git a/Scripts/ML/__pycache__/plottings.cpython-38.pyc b/Scripts/ML/__pycache__/plottings.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..df5e26442d4968d32101025cb4aeb5c4094024fa Binary files /dev/null and b/Scripts/ML/__pycache__/plottings.cpython-38.pyc differ diff --git a/Scripts/ML/plottings.py b/Scripts/ML/plottings.py index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..a6861f2b505231adaa1c30d87043e2d58d307103 100644 --- a/Scripts/ML/plottings.py +++ b/Scripts/ML/plottings.py @@ -0,0 +1,341 @@ +import numpy as np +import scipy as sci +import pandas as pd +import matplotlib.pyplot as plt +from mpl_toolkits.axes_grid1 import make_axes_locatable +import matplotlib.patches as mpatches +import seaborn as sns +from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay + +def y_coord_cal(x:pd.DataFrame): + + s = x.shape[0] + x['y'] = list(range(0, s)) + + return x + +def max_sorter(x:pd.DataFrame, to_plot:str): + + x = x.reset_index(drop=False) + if to_plot != 'True_False': + aggs2 = x.loc[x['correct'] == True, :].groupby(['x']).agg({'y': 'max'}).sort_values(by=['y'],ascending=True).reset_index(drop=False) + aggs2['y'] = 1-aggs2['y'] + else: + aggs2 = x.loc[x['correct'] == True, :].groupby(['x']).agg({'y': 'min'}).sort_values(by=['y'], ascending=True).reset_index(drop=False) + aggs = x.loc[x['correct']==False, :].groupby(['x']).agg({'y':'max'}).sort_values(by=['y'], ascending=False).reset_index(drop=False) + + #import random + #random.seed(1234) + #ints = random.sample(range(0,1000), 500) + #aggs = aggs.loc[aggs.x.isin(ints), :] + + + selects = set(aggs['x'].to_list()) + aggs2 = aggs2.loc[~aggs2.x.isin(selects),:] + + aggs = pd.concat([aggs2, aggs], axis=0).drop_duplicates(subset=['x']).sort_values(by='y', ascending=False).reset_index(drop=True) + + try: + assert set(aggs['x'].tolist()) == set(x['x'].to_list()) + except: + print(x.head()) + print(aggs['x']) + print(set(aggs['x'].tolist()).symmetric_difference(set(x['x'].to_list()))) + minimum = min(aggs['x']) + relabel = {item: new+minimum for new, item in enumerate(aggs['x'].to_list())} + sums = [[],[]] + for key, item in relabel.items(): + sums[0].append(key) + sums[1].append(item) + + + + x['x'] = [relabel[el] for el in x['x'].to_list()] + + + return x + +def add_y_sec(x:pd.DataFrame): + adder = x.loc[x['correct'] == False, 'y'].max()+1 + x.loc[x['correct'] == True, ['y']] = x.loc[x['correct'] == True, ['y']] + adder + return x + +def make_unique_x(df): + ids = df['ID'].unique().tolist() + xc = list(range(0, len(ids))) + xf = pd.DataFrame({'ID': ids, 'x': xc}) + # print(df.columns.values) + df = pd.merge(df, xf, how='left', left_on='ID', right_on='ID') + + return df + +def relative_x_y(x:pd.DataFrame): + assert sum(x['ID'].to_list()[0] != x['ID']) ==0 + + x['y'] = x['y']/(x.shape[0]-1) + + return x + +def make_groupings(df): + df['groups'] = 'None' + #make groups of x - x max should be 999 but just to be sure it is dynamic + groups = [set(df.loc[df['# Authors'] == auth, 'x'].unique().tolist()) for auth in np.unique(df['# Authors'])] + #make unique parts + for i in range(len(groups)-1, 0, -1): + #print(groups[i-1].intersection(groups[i])) + groups[i] = groups[i] - groups[i-1] + for i, gr in enumerate(groups): + df.loc[df['x'].isin(gr), 'groups'] = i + #print(df['groups'].unique()) + + return df + +def props(x, sh): + + return round(len(x)/sh,2) + +def plot_distrib_graph(df:pd.DataFrame, fig=None, ax=None, to_plot='True_False', color='correct', line=False, absolute=False): + colors_c = {True: "darkslategrey", + False: "lightslategrey", + 'True': "darkslategrey", + 'False': "lightslategrey" + } + colors_t = {'female': "lightsteelblue", + 'male': "steelblue", + '1947': 'navy', + '1963': "darkolivegreen", + '1985': "saddlebrown", + '1975': 'black', + '1995': 'lightslategrey'} + relabel_c = {True: 'Correct', + False: 'Incorrect', + 'True': 'Correct', + 'False': 'Incorrect'} + relabel_t = {'female': 'Female', + 'male': 'Male', + '1947': '1947', + '1963': '1963', + '1975': '1975', + '1985': '1985', + '1995': '1995' + } + if type(ax) == type(None): + fig, ax = plt.subplots(1, figsize=(18,4)) + + df = df.copy(deep=True) + #make x coordinations (in order of appearances and from low num authors to high num auhtors + df = make_unique_x(df) + #make y coordinates + df = df.groupby(['ID', 'correct']).apply(y_coord_cal) + + + + if to_plot=='True_False': + #add y_section of false which will be the lower ones + df = df.groupby(['ID']).apply(add_y_sec).reset_index(drop=True) + if not absolute: + df = df.groupby(['x']).apply(relative_x_y).reset_index(drop=True) + + df = make_groupings(df) + df = df.groupby(['groups']).apply(max_sorter, to_plot=to_plot).reset_index(drop=True) + + + bool_sel = df['correct'] == False + + if color == 'correct': + # only look at wrong ones as that is the other group + props = {} + props['True'] = round(df.correct.sum()/df.shape[0], 2) + props['False'] = 1 - props['True'] + # append proportion correct ones + else: + res = df.groupby(color)[[color]].agg(lambda x: round(len(x) / df.shape[0], 2)) + props = {str(ind): val for ind, val in zip(list(res.index.values), res[color].to_list())} # append proportion correct ones + + + if to_plot == 'True': + bool_sel = df['correct'] == True + df = df.loc[bool_sel, :] + + elif to_plot =='False': + df = df.loc[df['correct'] == False, :] + + #from collections import Counter + #print(df.loc[df['centered_age']==1975, 'x']) + #print(Counter(df.loc[df['centered_age']==1975, 'x']).most_common(100)) + # ages_map = {} + # for row in df.itertuples(): + # id= getattr(row, 'ID') + # if id not in ages_map.keys(): + # ages_map[id] = getattr(row, 'centered_age') + # else: + # try: + # assert ages_map[id] == getattr(row, 'centered_age') + # except: + # print('ID: {}'.format(id)) + # print('First Age: {}'.format(ages_map[id])) + # print('New Age: {}'.format(getattr(row, 'centered_age'))) + + if color == 'correct': + relabel = relabel_c + title = 'Prediction' + colors = colors_c + hue_order = [True, False] + y_lab = "Proportion of Test Instances" + else: + relabel = relabel_t + t = color.split('_')[-1] + t = t[0].upper()+t[1:] + title = t + colors = colors_t + df[color] = df[color].astype('str') + if 'age' in color: + hue_order = ['1947','1963', '1975', '1985','1995'] + else: + hue_order = ['female', 'male'] + y_lab = 'Proportion Misclassified' + if not line: + ax = sns.scatterplot(data=df, x='x', y='y', palette=colors, hue=color, hue_order=hue_order, ax=ax, s=1) + for t in ax.get_legend().get_texts(): t.set_text(relabel[t.get_text()]) + + ax.get_legend().get_title().set_text(title) + else: + #stack the bars for groupings of data + x = np.unique(df['x']).tolist() + #print(len(x)) + labeller = [] + + if to_plot == 'True_False': + #make the bars ranging to 1 + tmp = pd.DataFrame({'x': x, 'y': [1 for _ in range(len(x))]}).reset_index(drop=True) + #ax = sns.barplot(x='x', y='y', data=tmp, ax=ax, color=colors['True']) + ax.bar(x=tmp['x'].to_list(), height=tmp['y'].to_list(), color=colors['True'], width=1) + df = df.loc[bool_sel, :].sort_values(by='y', ascending=False).groupby(by=['x'], as_index=False).first().reset_index(drop=True) + labeller.append('True') + #print(len(df['x'].unique())) + else: + #we only have the subset we want inside our df + df = df.sort_values(by='y', ascending=False).groupby(by=['x'], as_index=False).first().reset_index(drop=True) + #print(len(df['x'].unique())) + cats = df[color].unique().tolist() + #iterate over it in correct order + for cat in relabel.keys(): + #ckeck that they cat exists + #print(cats) + if cat in cats: + #print(cat) + tmp = df.loc[df[color] == cat, :] + #print(df.shape) + #print(tmp.shape) + #ax = sns.barplot(x='x', y='y', data=tmp, ax=ax, color=colors[str(cat)]) + ax.bar(x=tmp['x'].to_list(), height=tmp['y'].tolist(), color=colors[str(cat)], width=1) + #print(ax.get_xlim()) + #print(ax.get_xticklabels) + + #ax.set_xticks([0, 50, 150, 500, 1000]) + labeller.append(str(cat)) + bars=[] + for cat in labeller: + prop = props[cat] + bars.append(mpatches.Patch(color=colors[cat], label = relabel[cat] +' ({}%)'.format(prop*100))) + ax.legend(handles=bars, loc='upper right', title=title) + + ax.set_xticks([0, 50, 150, 500, 1000]) + ax.margins(x=0) + + + + ax.tick_params(axis='both', which='major', labelsize=15) + ax.tick_params(axis='both', which='minor', labelsize=13) + ax.set_ylabel(y_lab, fontsize=16) + ax.set_xlabel("Individual Authors", fontsize=16) + plt.setp(ax.get_legend().get_texts(), fontsize='12') + plt.setp(ax.get_legend().get_title(), fontsize='14') + + return fig, ax + +def random_draw_select(x, cutoff): + #accuracy for this subset + ratio = x['correct'].sum()/x.shape[0] + + #are we worse than random draw? + x['less_draw'] = ratio <= cutoff + + return x + +def calc_confusion_matrix(x:pd.DataFrame, target:str, preds:str, labs:list, normalize='true'): + + cf= confusion_matrix(y_true=x[target].to_numpy(), y_pred=x[preds].to_numpy(), labels=labs, normalize=normalize) + return cf + +def plot_heatmap(df:pd.DataFrame, target:str, pred:str, normalize='true', major_wrong = False, ax=None): + + df = df.copy(deep=True) + if type(ax) == type(None): + fig, ax = plt.subplots(1, figsize=(18,4)) + cf_dic = {} + #for the x-axiis of the plot + authors = sorted([int(el) for el in df['# Authors'].unique()]) + if 'age' in target: + labs = sorted([int(el) for el in df[target].unique()]) + else: + labs = ['female', 'male'] + + #select only those for which we are only as good as random draw + if major_wrong == True: + draw = 1/(len(labs)) + df = df.groupby(by=['# Authors', 'ID']).apply(func=random_draw_select, cutoff=draw) + df = df.loc[df.less_draw == True, :] + elif major_wrong == 'wrong': + df = df.loc[df.correct == False, :] + + cf = None + for aut in authors: + cf_dic[aut] = calc_confusion_matrix(x=df.loc[df['# Authors']==aut, :], target=target, preds=pred, labs=labs, normalize=normalize) + if type(cf) == type(None): + cf = cf_dic[aut].copy() + else: + cf = np.hstack((cf, cf_dic[aut])) + if normalize: + vmin = 0 + vmax = 1 + fmt = '.2f' + else: + vmin = None + vmax = None + fmt = '.0f' + annot = [] + for _ in range(0, len(authors)): + annot = annot + labs + #print(cf) + ax = sns.heatmap(data=cf, vmin=vmin, vmax=vmax, annot=True, fmt=fmt, cbar=True, yticklabels=labs, xticklabels=annot, + ax=ax, cmap=sns.cubehelix_palette(start=2, rot=0, dark=0, light=.95, reverse=True, as_cmap=True)) + divider = make_axes_locatable(ax) + cax = divider.append_axes("top", size="11%", pad=0) + #set correct limits + cax.set_xlim(left=0, right=len(authors)*len(labs)) + cax.get_xaxis().set_visible(False) + cax.get_yaxis().set_visible(False) + cax.set_facecolor('black') + for i in range(len(labs), len(labs)*(len(authors)), len(labs)): + ax.axvline(i, color='white', lw=4) + cax.axvline(i, color='white', lw=4) + + #fix locs + locs = np.arange(len(labs)) + plt.setp(ax.get_yticklabels(), rotation=45, ha="right", + rotation_mode="anchor") + + #ax.yaxis.set(ticks=locs+0.3, ticklabels=labs) + + #at = AnchoredText('50 Authors', loc=2, + # prop=dict(backgroundcolor='black', + # size=12, color='white')) + #cax.add_artist(at) + for i, aut in enumerate(authors): + + cax.text((1.8/5)*len(labs)+(len(labs)*i),0.4,s='{} Authors'.format(aut), bbox=dict(facecolor = 'black', boxstyle='square', ec='none'), c='white') + + return fig + + diff --git a/tex/app_figures.tex b/tex/app_figures.tex index 5bf87d6f96abb7b1aa350fd2abd1e13764d7a69e..386ce5da638771c2d1171841cef4eb61e4b06353 100644 --- a/tex/app_figures.tex +++ b/tex/app_figures.tex @@ -1,19 +1,21 @@ +\FloatBarrier +\subsection{Aggregate Overview} \begin{figure}[!htpb] \centering \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/f1_scores_100.pdf} - \caption{Results for Target "Gender"} + \caption{Results for target \textit{gender}} \end{subfigure} \hfill \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/f1_scores_100.pdf} - \caption{Results for Target "Age"} + \caption{Results for target \textit{age}} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of featuretypes used and way of input, i.e. baseline, cumulated, or stacked.} - \caption{F1-Score for all Featuretype-Sets for an Instancelength of 100 Characters} + \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{F1-Score for all feature type-Sets for an input instance length of 100 characters.} \label{fig:f1_100} \end{figure} @@ -22,16 +24,16 @@ \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/spearman_ext_100.pdf} - \caption{Results for Target "Gender"} + \caption{Results for target \textit{gender}} \end{subfigure} \hfill \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/spearman_ext_100.pdf} - \caption{Results for Target "Age"} + \caption{Results for target \textit{age}} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of featuretypes used and way of input, i.e. baseline, cumulated, or stacked.} - \caption{Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 100 Characters} + \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{Extended Spearman correlations for all feature type-Sets for an input instance length of 100 characters.} \label{fig:ext_spearman_100} \end{figure} @@ -40,15 +42,15 @@ \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/f1_scores_250.pdf} - \caption{Results for Target "Gender"} + \caption{Results for target \textit{gender}} \end{subfigure} \hfill \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/f1_scores_250.pdf} - \caption{Results for Target "Age"} + \caption{Results for target \textit{age}} \end{subfigure} - \caption{F1-Score for all Featuretype-Sets for an Instancelength of 250 Characters} + \caption{F1-Score for all feature type-Sets for an input instance length of 250 characters} \label{fig:f1_250} \end{figure} @@ -57,19 +59,252 @@ \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/spearman_ext_250.pdf} - \caption{Results for Target "Gender"} + \caption{Results for target \textit{gender}} \end{subfigure} \hfill \begin{subfigure}[b]{.7\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/spearman_ext_250.pdf} - \caption{Results for Target "Age"} + \caption{Results for target \textit{age}} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of featuretypes used and way of input, i.e. baseline, cumulated, or stacked.} - \caption{Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 250 Characters} + \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{Extended Spearman correlation for all feature type sets for an input instance length of 250 characters.} \label{fig:ext_spearman_250} \end{figure} +\FloatBarrier +\clearpage +\subsection{Author-Level Analysis} + +%authorlevel all +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf} + \caption{Author-level errors for target \textit{gender}.} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf} + \caption{Author-level errors for target \textit{age}.} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows the results when using the full feature set as cumulated input. Each author is a unique instance on the x-axis. The proportion per author is then shown as the y-value. The authors are sorted by their appearance in the respective subsets (i.e., 50, 150, 500, 1000) and according to the proportion of errors within those subsets. The result per author shows the result over all subsets.} + \caption{Author-Level Results for the Full feature set with an input instance length of 100 characters.} + \label{fig:acc_auth_100} +\end{figure} + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf} + \caption{Author-level errors for target \textit{gender}.} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf} + \caption{Author-level errors for target \textit{age}.} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows the results when using the full feature set as cumulated input. Each author is a unique instance on the x-axis. The proportion per author is then shown as the y-value. The authors are sorted by their appearance in the respective subsets (i.e., 50, 150, 500, 1000) and according to the proportion of errors within those subsets. The result per author shows the result over all subsets.} + \caption{Author-Level Results for the Full feature set in an input instance length of 100 characters.} + \label{fig:acc_auth_250} +\end{figure} + +%authorlevel cwald +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_gender.pdf} + \caption{Author-level errors for target \textit{gender}.} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf} + \caption{Author-level errors for target \textit{age}.} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows the results when using the full feature set as cumulated input. Each author is a unique instance on the x-axis. The proportion per author is then shown as the y-value. The authors are sorted by their appearance in the respective subsets (i.e., 50, 150, 500, 1000) and according to the proportion of errors within those subsets. The result per author shows the result over all subsets.} + \caption{Author-Level Results for the full feature set with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.} + \label{fig:acc_auth_100_cwald} +\end{figure} + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_gender.pdf} + \caption{Author-level errors for target \textit{gender}.} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf} + \caption{Author-level errors for target \textit{age}.} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows the results when using the full feature set as cumulated input. Each author is a unique instance on the x-axis. The proportion per author is then shown as the y-value. The authors are sorted by their appearance in the respective subsets (i.e., 50, 150, 500, 1000) and according to the proportion of errors within those subsets. The result per author shows the result over all subsets.} + \caption{Author-Level Results for the full feature set in an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.} + \label{fig:acc_auth_250_cwald} +\end{figure} + + +%confusion all +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full feature set as cumulated input on an input instance length of 100 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{gender} with an input instance length 100 characters - all feature types.} + \label{fig:gender_conf_auth_100} +\end{figure} + + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full feature set as cumulated input on an input instance length of 250 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{gender} with an input instance length of 250 characters - all feature types.} + \label{fig:gender_conf_auth_250} +\end{figure} + + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full feature set as cumulated input on an input instance length of 100 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{age} with an input instance length 100 characters - all feature types.} + \label{fig:age_conf_auth_100} +\end{figure} + + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full feature set as cumulated input on an input instance length of 250 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{age} with an input instance length of 250 characters - all feature types.} + \label{fig:age_conf_auth_250} +\end{figure} + +%confusion cwald +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using using the teh feature types ASIS, CHAR, LEMMA, WORD as cumulated input on an input instance length of 100 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{gender} with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.} + \label{fig:gender_conf_auth_100_cwald} +\end{figure} + + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the teh feature types ASIS, CHAR, LEMMA, WORD as cumulated input on an input instance length of 250 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{gender} with an input instance length of 250 characters - ASIS-CHAR-LEMMA-WORD.} + \label{fig:gender_conf_auth_250_cwald} +\end{figure} + + + + + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using using the teh feature types ASIS, CHAR, LEMMA, WORD as cumulated input on an input instance length of 100 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{age} with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.} + \label{fig:age_conf_auth_100_cwald} +\end{figure} + + +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf} + \caption{All authors (row-wise normalization).} + \end{subfigure} + \hfill + \begin{subfigure}[b]{0.8\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf} + \caption{Below random guess accuracy (matrix-wise normalization).} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the teh feature types ASIS, CHAR, LEMMA, WORD as cumulated input on an input instance length of 250 characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{age} with an input instance length of 250 characters - ASIS-CHAR-LEMMA-WORD.} + \label{fig:age_conf_auth_250_cwald} +\end{figure} diff --git a/tex/app_figures2.tex b/tex/app_figures2.tex new file mode 100644 index 0000000000000000000000000000000000000000..8085c1ce5f7b393a6e264bd59eee23afd6c401e8 --- /dev/null +++ b/tex/app_figures2.tex @@ -0,0 +1,70 @@ +\FloatBarrier +\subsection{Aggregate Overview} +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/f1_scores_100.pdf} + \caption{Results for target \textit{gender}} + \end{subfigure} + \hfill + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/f1_scores_100.pdf} + \caption{Results for target \textit{age}} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{F1-Score for all feature type-Sets for an input instance length of 100 characters.} + \label{fig:f1_100} +\end{figure} +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/spearman_ext_100.pdf} + \caption{Results for target \textit{gender}} + \end{subfigure} + \hfill + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/spearman_ext_100.pdf} + \caption{Results for target \textit{age}} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{Extended Spearman correlations for all feature type-Sets for an input instance length of 100 characters.} + \label{fig:ext_spearman_100} +\end{figure} +\begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/f1_scores_250.pdf} + \caption{Results for target \textit{gender}} + \end{subfigure} + \hfill + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/f1_scores_250.pdf} + \caption{Results for target \textit{age}} + \end{subfigure} + \caption{F1-Score for all feature type-Sets for an input instance length of 250 chcharacters + \label{fig:f1_250} + \end{figure} + + \begin{figure}[!htpb] + \centering + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/gender/spearman_ext_250.pdf} + \caption{Results for target \textit{gender}} + \end{subfigure} + \hfill + \begin{subfigure}[b]{.7\textwidth} + \centering + \includegraphics[width=\textwidth]{figures/age/spearman_ext_250.pdf} + \caption{Results for target \textit{age}} + \end{subfigure} + \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{Extended Spearman correlation for all feature type sets for an input instance length of 250 characters.} + \label{fig:ext_spearman_250} +\end{figure} \ No newline at end of file diff --git a/tex/app_tables.tex b/tex/app_tables.tex index 083aa4c89b537a0446ca754b0f67db7448c5aa99..f21067ee2bf66563138c961b196a6ee5a148af6f 100644 --- a/tex/app_tables.tex +++ b/tex/app_tables.tex @@ -1,7 +1,13 @@ %gender %%baseline 250 chars - -%\begin{landscape} +\FloatBarrier +\subsection{Data Set Statistics} +\input{tables/train_dataset.tex} +\input{tables/val_dataset.tex} +\input{tables/test_dataset.tex} +%\begin{landscape}# +\FloatBarrier +\clearpage \subsection{Baseline} \subsubsection{Minimum of Characters: 100} @@ -33,7 +39,7 @@ \FloatBarrier \clearpage -\subsection{POS, TAG, DEP, and NUM} +\subsection{DIST, CHAR, ASIS, WORD, and LEMMA} \subsubsection{Minimum of Characters: 100 \& Cumulated} \input{tables/gender/latex/results_gender_dwald_direct_100_acc.tex} @@ -64,36 +70,41 @@ \FloatBarrier \clearpage + +%%dwald dynAA \subsubsection{Minimum of Characters: 100 \& Stacked} -\input{tables/gender/latex/results_gender_dwald_direct_100_acc.tex} -\input{tables/gender/latex/results_gender_dwald_direct_100_dist.tex} +\input{tables/gender/latex/results_gender_dwald_dynAA_100_acc.tex} +\input{tables/gender/latex/results_gender_dwald_dynAA_100_dist.tex} + +\input{tables/age/latex/results_age_dwald_dynAA_100_acc.tex} +\input{tables/age/latex/results_age_dwald_dynAA_100_dist.tex} + -\input{tables/age/latex/results_age_dwald_direct_100_acc.tex} -\input{tables/age/latex/results_age_dwald_direct_100_dist.tex} -%%dwald dynAA \FloatBarrier \clearpage \subsubsection{Minimum of Characters: 250 \& Stacked} -\input{tables/gender/latex/results_gender_dwald_direct_250_acc.tex} -\input{tables/gender/latex/results_gender_dwald_direct_250_dist.tex} +\input{tables/gender/latex/results_gender_dwald_dynAA_250_acc.tex} +\input{tables/gender/latex/results_gender_dwald_dynAA_250_dist.tex} -\input{tables/age/latex/results_age_dwald_direct_250_acc.tex} -\input{tables/age/latex/results_age_dwald_direct_250_dist.tex} +\input{tables/age/latex/results_age_dwald_dynAA_250_acc.tex} +\input{tables/age/latex/results_age_dwald_dynAA_250_dist.tex} \FloatBarrier \clearpage \subsubsection{Minimum of Characters: 500 \& Stacked} -\input{tables/gender/latex/results_gender_dwald_direct_500_acc.tex} -\input{tables/gender/latex/results_gender_dwald_direct_500_dist.tex} +\input{tables/gender/latex/results_gender_dwald_dynAA_500_acc.tex} +\input{tables/gender/latex/results_gender_dwald_dynAA_500_dist.tex} -\input{tables/age/latex/results_age_dwald_direct_500_acc.tex} -\input{tables/age/latex/results_age_dwald_direct_500_dist.tex} +\input{tables/age/latex/results_age_dwald_dynAA_500_acc.tex} +\input{tables/age/latex/results_age_dwald_dynAA_500_dist.tex} \FloatBarrier \clearpage -\subsection{Full Set of Featuretypes} + +%full +\subsection{Full Set of feature types} \subsubsection{Minimum of Characters: 100 \& Cumulated} \input{tables/gender/latex/results_gender_full_direct_100_acc.tex} \input{tables/gender/latex/results_gender_full_direct_100_dist.tex} @@ -119,14 +130,15 @@ \input{tables/age/latex/results_age_full_direct_500_acc.tex} \input{tables/age/latex/results_age_full_direct_500_dist.tex} +%dynAA \FloatBarrier \clearpage \subsubsection{Minimum of Characters: 100 \& Stacked} \input{tables/gender/latex/results_gender_full_dynAA_100_acc.tex} \input{tables/gender/latex/results_gender_full_dynAA_100_dist.tex} -\input{tables/age/latex/results_age_full_dynAA_250_acc.tex} -\input{tables/age/latex/results_age_full_dynAA_250_dist.tex} +\input{tables/age/latex/results_age_full_dynAA_100_acc.tex} +\input{tables/age/latex/results_age_full_dynAA_100_dist.tex} %%full dynAA \FloatBarrier \clearpage @@ -141,6 +153,7 @@ \subsubsection{Minimum of Characters: 500 \& Stacked} \input{tables/gender/latex/results_gender_full_dynAA_500_acc.tex} \input{tables/gender/latex/results_gender_full_dynAA_500_dist.tex} + \input{tables/age/latex/results_age_full_dynAA_500_acc.tex} \input{tables/age/latex/results_age_full_dynAA_500_dist.tex} diff --git a/tex/appendix.tex b/tex/appendix.tex index 809fd600a59691d4604863699f5ae09f310a2a54..161badca5dc247e760e66da5eb49c4335a83ef97 100644 --- a/tex/appendix.tex +++ b/tex/appendix.tex @@ -5,11 +5,10 @@ \renewcommand{\thesection}{A\arabic{section}}\setcounter{section}{0} %\renewcommand{\thesubsection}{\Roman{section}.\arabic{subsection}} \renewcommand{\thesubsection}{A\arabic{section}.\arabic{subsection}}\setcounter{subsection}{0} - \section{Figures} \label{sec:att_app_figures} \input{app_figures.tex} - +\clearpage \FloatBarrier \section{Tables} \label{sec:att_app_tables} diff --git a/tex/attribution_features.pdf b/tex/attribution_features.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a913677b3c6198ce8d45af1cb32c29042ad51b9c Binary files /dev/null and b/tex/attribution_features.pdf differ diff --git a/tex/discussion.tex b/tex/discussion.tex index 1a5389332631e929d95033168cef9d892608dbcb..a969d88537491b670f6c404a57b05c17e891ebe4 100644 --- a/tex/discussion.tex +++ b/tex/discussion.tex @@ -1,16 +1,25 @@ \section{Discussion} -Overall, we find that the classifier makes systematic errors on the author-level. For the target \textit{gender}, female authors seem to be difficult to classify in general. The underlying drivers seem to be that the group as such has a very heterogeneous pattern in the features which overlaps with the male authors. In other words, male authors seem so be simpler to classify. That however may also be driven by the fact that the context they are active in is more homogeneous than for female authors. -For \textit{age}, we find slightly more stable results as most age brackets exhibit clear patterns that make the distinguishable. +Overall, we find that the classifier makes systematic errors at the author level. For the target \textit{gender}, one group of authors (female) seems to be difficult to classify in general. The underlying drivers seem to be that, for the shown dataset, the group as such has a very heterogeneous pattern in the features. In other words, the second group (male) seems to be simpler to classify. That, however, may also be driven by the fact that the context in which they are active is more homogeneous than for female authors. +For \textit{age}, we find slightly more stable results, as most age brackets exhibit clear patterns that make the individual age brackets distinguishable. In terms of stability, however, the results are more mixed. -While the features mainly driving the prediction are not \textit{per-se} context-reliant features, increasing the available context does increase performance markedly. -This is especially evident from the fact that a wide n-gram window for character features yields the greatest relative increase in performance, outstripping the additional information available by including featuretypes of a higher context. -That, in itself is not directly surprising and not necessarily cause for any raised eyebrows. However, it is relevant to point to the fact that for a low number of authors, about 10\% of the prediction performance stem from an increase in context (e.g. for features CHAR and ASIS when predicting gender, see \autoref{tab:gender_f1_dist_500_baseline_individual}). When looking at the dataset with the largest number of authors, additional information also is what separates the model performance from slightly above random-guess performance and pushes it into the performance ranges found within the literature for comparable data \parencite{wiegmann2019overview}. -Moreover, building a model on top of a composite of featuretypes (or stacking it on top; see \autoref{tab:gender_f1_dist_500_direct_dwald} and \autoref{tab:age_acc_500_direct_dwald}) is when we see additional performance increases, especially for longer input texts. Thus, giving additional context on top of non-context featuretypes yields a better decision boundary for the classifier. -These results, at first seem like technical details. However, in practice they show that the context the model is trained on and in (as reflected simulated by varying the number of authors) largely carries over into its predictive performance. On one hand, that means models trained within one context may not simply be used in another. That is intuitive. What we show here, however, is that even by staying within one group of individuals (creators) and within one domain, an increase in the number of possible targets changes the relevant features and also the information as well as the context encoded within sizably. That becomes evident from the fact that the stability in the relevance of features simply does not exist. +While the features mainly driving the prediction are not context-reliant \textit{per-se}, increasing the available context does increase performance markedly. +This is especially evident from the fact that a wide n-gram window for character features yields the greatest relative increase in performance, outperforming even those models for which additional context information is made available by including additional feature types known to capture context. +That in itself is not directly surprising and not necessarily cause for any raised eyebrows. However, it is important to note that, for a low number of authors, about 10\% of the prediction performance stems from an increase in context (e.g. for features CHAR and ASIS when predicting gender, see \autoref{tab:gender_f1_dist_500_baseline_individual}). When looking at the dataset with the largest number of authors, additional information is also what makes the model perform slightly better than the random-guess threshold and pushes it into the performance ranges found within the literature for comparable data \parencite{wiegmann2019overview}. +Moreover, building a model on top of a composite of feature types (or stacking it on top; see \autoref{tab:gender_f1_dist_500_direct_dwald} and \autoref{tab:age_f1_dist_500_direct_dwald}) is when we see additional performance increases, especially for longer input texts. Thus, giving additional context on top of non-context feature types yields a better decision boundary for the classifier.\\ + +These results at first seem like technical details. However, in practice they show that the context the model is trained on and in (as simulated by varying the number of authors) largely carries over into its predictive performance. That means models trained within one context may not simply be used in another one. That is intuitive. What we show here, however, is that even by staying within one group of individuals (creators) and within one domain (Twitter), an increase in the number of possible targets changes the relevant features, and it also significantly changes the information as well as the context encoded within . That becomes evident from the fact that the stability in the relevance of features simply does not exist. For social sciences, these findings are relevant on two fronts. -First, the models using the features presented here are indeed well-suited to find a pattern connecting their use to the prediction target. However, that pattern is unstable, changing with the number of authors or features available. Consequently, it hints at the fact that these patterns are merely correlations exploited by the model. Such correlations are difficult to rely upon, as their patterns - as shown by increasing the number of authors - may change at any time. -Thus, this calls for a careful assessment of the validity when employing pre-trained models within the field, especially when the prediction outcome is used as input for further models or for further analysis. Or spoken differently, a change in behavior by individuals - either over time or by choice - will render the learned context irrelevant. Thus, the environment during training must be carefully compared to the one in which the model is used. -The second aspect is tied more into the field of law and the wider debate of transparency and proportionality. -As law enforcement is faced with the problem of combing trough a large amount of online content, searching and assessing such content by hand is untenable. Thus, already today algorithms are employed by law enforcement. However, especially in such environments, it must be clear how much of the findings by an algorithm is merely correlational and also how stable these correlations are in different environments. Only then do law enforcement, the defendant, and also the courts have the possibility to assess the validity of an result \textit{before} acting upon it. After all, how valid is a result identifying traits of a suspect when the features are context-reliant to such a high degree that changing the use of some emojis or some words would alter the result completely. Or that when one is compared to a different number of authors, the result would be driven by completely different features. -Even more problematic, in real-use, the instances used for training and those used for testing are removed from each other in time. Thus, a real culprit could evade being identified by simply because the context changes. -As the findings of this study point towards such an unstable relationship, we argue that the features used in tasks related to authorship profiling and authorship attribution need much more research. Moreover, models should be assessed with a measure for defining the boundaries of their stability. Otherwise establishing a scientifically valid link that goes beyond merely showing that the model yields good correlational predictions on some datasets might be impossible. \ No newline at end of file +First, the models using the features presented here are indeed well-suited to find a pattern connecting their use to the prediction target. However, that pattern is unstable, changing with the number of authors or features available. Consequently, it hints at the fact that these patterns are merely correlations exploited by the model. Such correlations are difficult to rely upon, as their patterns -- as shown by increasing the number of authors -- may change at any time. +Thus, this calls for a careful assessment of the validity when employing pre-trained models within the field, especially when the prediction outcome is used as input for further models or for further analysis. In other words, a change in behavior by individuals -- either over time or by choice -- will render the learned context irrelevant. Thus, the environment during training must be carefully compared to the one in which the model is used. +In general, the findings thus paint a bleak picture for the social sciences. Our results show that there are authors of certain groups for which one has to expect above-average errors and systematic patterns of misclassification. Taken together with the apparent lack of stability in the predictiveness of features when the dataset changes slightly means that, even when these patterns are assessed during training, the researcher has little chance to assess how they will affect a the result during the time of use. The differences between training data and test data might be difficult to pinpoint. Thus, for cases where it is not clear by how much training context and use-context differ, a social scientist should be very careful in simply adopting pre-trained models as the size of the introduced error is unknown.\\ + +Another finding is of a normative nature and tied to the wider debate of transparency and proportionality, and thus affects in particular the field of law. +As law enforcement is faced with the problem of combing through a large amount of online content, searching and assessing such content by hand is untenable. Thus, already today algorithms are employed by law enforcement. However, especially in such environments, it must be clear how much of the findings by an algorithm is relies merely on correlations and especially how stable these correlations are in different environments. That does not even include the fact that there might be some groups of individuals for whom the classifier makes systematic mistakes. +Only then do law enforcement, the defendant, and also the courts have the possibility to assess the validity of an result \textit{before} acting upon it. After all, how valid is a result identifying traits of a suspect when the features are context-reliant to such a high degree that changing the use of some emojis or some words would alter the result completely? How robust is a result, when the features driving the result change with the number of authors an individual is compared to? +What is even more problematic in real-world terms is that the instances used for training and those used for during actual application are separated from each other by time. +Thus, a real culprit could evade being identified simply because the context changes, while innocents could be systematically misidentified as culprits. +Thus, as the stability in feature importance is already lacking for the relatively small changes introduced here, we should ask ourselves what requirements an algorithm should fulfill before it is being used within the law enforcement context. Optimally, we would ask for causal relationships between input and output. However, that might not be possible. The second-best would then be to have transparency for the model and a some-what stable relationship between input and output. The former assures that users, i.e., the state, as well as affected individuals are able to assess the inner workings of a model. That would enable an individual to judge whether the prediction pertaining to them might be part of a systematic error.\\ + +A reasonably stable relationship between input and output, i.e., a stable feature importance, guarantees that while there might be systematic errors, the affected groups stay at least constant, although the dateset for the predictions may vary slightly compared to the training dataset, e.g., by number of authors or point-in-time. The alternative would be, of course, to specify a ``half-life'' before a model has to be re-trained and re-assessed.\\ + +As the findings of this study point towards such an unstable relationship, we argue that the features used in tasks related to authorship profiling and authorship attribution need much more research. Moreover, models should be assessed with a measure for defining the boundaries of their stability. The result of that measure has to be affixed to the model so users may be able to infer its usability. Otherwise, establishing a scientifically valid link -- going beyond merely showing that the model yields good correlational predictions on some datasets -- might be impossible. \ No newline at end of file diff --git a/tex/experimental_setup.tex b/tex/experimental_setup.tex index a578c44a109ba957eeffb2b02fbb9b940ebac8c8..0d268b2e8428f3845389a5ab204d019f9b9fc12c 100644 --- a/tex/experimental_setup.tex +++ b/tex/experimental_setup.tex @@ -1,120 +1,131 @@ \section{Experimental Design and Data} -In order to conduct our stability analysis, we conduct an experiment as used in the field of machine learning by using introducing controlled variations to an underlying, given dataset. To that end, we use a fixed setup of machine learning (ML) models and test their internal stability, when exposed to these controlled variations. +In order to conduct our stability analysis, we conduct an experiment as used in the field of machine-learning by introducing controlled variations to an underlying, given dataset. To that end, we use a fixed setup of machine-learning (ML) models and test their internal stability, when they are exposed to these controlled variations. \paragraph{Synopsis} -The dataset used for the experiment is the PAN @CLEF 2019 Celebrity Profiling (PAN2019) dataset\footnote{The dataset may be downloaded from the website of the PAN challenge: \href{https://bit.ly/2Yk9so9}{PAN Challenge 2019}.}. +The dataset used for the experiment is the PAN @CLEF 2019 Celebrity Profiling (PAN2019) dataset.\footnote{The dataset may be downloaded from the website of the PAN challenge: \href{https://bit.ly/2Yk9so9}{PAN Challenge 2019}.} As our goal is to assess te performance and the stability of importance in regards to single features, we try to reduce variation present directly within the authors as much as possible. -Therefore, we focus only on authors from one category, namely those dubbed "creator``. As suggested in the guidelines of the original PAN challenge, we change the age from a numerical variable to their categorical one consisting of five age brackets. -As prediction target we select ''age" and ''gender", two commonly used characteristics in the social sciences. -Moreover, in order to further exclude any variation introduced by an imbalanced dataset, we undersample the data in such a way that the genders as well as the age groups are balanced. -For the comparison in the author dimension, we create four subsets consisting of 50, 150, 500, and 1000 authors respectively. -The upper limit of 1000 authors reflects the maximum amount of authors for which it is still possible to balance the dataset. -Furthermore , we repeat the experiment three times for different minimum lenghts per training instance, as the text lengths was shown to impact classifier performance while holding the model setup constant \parencite{custodio2021stacked}. The minimum lengths are 100, 250, and 500 characters respectively. In order to achieve these minimum lengths, tweets from the same author were concatenated. -As feature types after the text transformation, we use the following, sorted in ascending order in terms of context-information encoded: DIST, CHAR, ASIS, POS, TAG, DEP, LEMMA, WORD, NUM. For all types we apply the n-gram ranges found to be useful by prior research \parencite{custodio2021stacked}. The evaluation is conducted using the 500-score as the performance measure. To assess the stability of features, we use Spearman's Rho for rank order correlation. All evaluations were done on a separate hold-out dataset, the testset. That data was not used during training at any point. +Therefore, we focus only on authors from one category, namely those dubbed ``creator''. As suggested in the guidelines of the original PAN challenge, we change the age from a numerical variable to their categorical one consisting of five age brackets. +As a prediction target, we select ``age" and ``gender", two commonly used characteristics in the social sciences. +Moreover, in order to exclude further any variation introduced by an imbalanced dataset, we undersample the data in such a way that the genders as well as the age groups are balanced. +For the comparison in the author dimension, we create four subsets consisting of 50, 150, 500, and 1000 authors, respectively. +The upper limit of 1000 authors reflects the maximum number of authors for whom it is still possible to balance the dataset. +Furthermore, we repeat the experiment three times for different minimum lenghts per training instance, as the text lengths were shown to impact classifier performance; in doing this, we hold the model setup constant \parencite{custodio2021stacked}. +The minimum lengths are 100, 250, and 500 characters, respectively. In order to achieve these minimum lengths, tweets from the same author were concatenated. +As feature types we use the following ones, sorted in ascending order in terms of encoded context information: DIST, CHAR, ASIS, POS, TAG, DEP, LEMMA, WORD, NUM. For all types, we apply the n-gram ranges found to be useful by prior research \parencite{custodio2021stacked}. The evaluation is conducted using the 500-score as the performance measure. To assess the stability of features, we use Spearman's Rho for rank order correlation. All evaluations were done on a separate hold-out dataset, the test set. That data was not used during training at any point. In the following paragraphs, we outline our design choices in detail. \subsection{Data} While the literature for authorship analysis is abundant and only increased during recent years, there are no easily identified commonly used datasets across a wide range of studies. Comparison between studies is therefore difficult. -This is well illustrated by \textcite{Neal2017SurveyingApplications} who lists 13 datasets used more than once and a multitude of others used less frequently. -However, for Twitter\textsuperscript{\textregistered}, they list only two. -This means that most studies on authorship analysis additionally suffer from one of two limitations. -Either they focus on authorship analysis while using traditional, longer texts such as articles or blog posts, or they make use of custom datasets \parencite{Neal2017SurveyingApplications}. The latter is sometimes described as a great challenge in the field of authorship analysis making replication as all well verification of results difficult \parencite{Halvani2016AuthorshipTopics}. -The former implies that past studies not focusing on online short text messages are looking at a fundamentally different research problem compared to Twitter\textsuperscript{\textregistered} texts. -At the same time, most automated authorship analysis research acknowledges the fact that use cases for these tools will consist of attributing micro-blog texts to an author \parencite[see for example][]{Narayanan2012OnIdentification, Rocha2017AuthorshipForensics, Spitters2016AuthorshipForums}. -Consequently, the dataset used is from that platform as its prevalence makes it especially relevant. Moreover, it reflects the text data, in style and characteristics commonly found for chat messages. Especially in terms of length it is also similar to text data generated during studies and experiments within the social sciences.\\ +This is well illustrated by \textcite{Neal2017SurveyingApplications} who list 13 datasets used more than once and a multitude of others used less frequently. +However, for Twitter, they list only two. +This means that most studies on authorship analysis additionally suffer from at least one of two limitations. +Either they focus on authorship analysis while using traditional, longer texts, such as articles or blog posts, or they make use of custom datasets \parencite{Neal2017SurveyingApplications}. The latter are sometimes described as a great challenge in the field of authorship analysis, making replication as all well verification of results difficult \parencite{Halvani2016AuthorshipTopics}. +The former implies that past studies not focusing on online short text messages are looking at a fundamentally different research problem compared to Twitter texts. +At the same time, most automated authorship analysis research acknowledges the fact that use cases for these tools will consist of attributing micro-blog texts to an author \parencite[see, for example,][]{Narayanan2012OnIdentification, Rocha2017AuthorshipForensics, Spitters2016AuthorshipForums}. +Consequently, the dataset used is from that platform, as its prevalence makes it especially relevant. Moreover, it reflects the text data, in style and characteristics commonly found for chat messages. Especially in terms of length, it is also similar to text data generated during studies and experiments within the social sciences.\\ %TODO Dateset table with variance and means \input{tables/dataset.tex} -Most studies focusing on short-text online media Twitter\textsuperscript{\textregistered} use different data sets. -This is due to the fact that the user agreement for the API of this particular platform does generally not give permission to publish a scraped data set online \parencite{Theophilo2019AMicro-messages}. +Most studies focusing on short-text online media such as Twitter use different data sets. +This is due to the fact that the user agreement for the API of this particular platform does not generally give permission to publish a scraped data set online \parencite{Theophilo2019AMicro-messages}. At this point in time, we know of three public datasets: Twisty \parencite{Verhoeven2016Twisty:Profiling}, ISOT \parencite{Brocardo2015AuthorshipAuthentication}, and PAN \parencite{Stamatatos2015OverviewLab}, a yearly challenge tackling different aspects of authorship analysis. -The Twisty dataset includes a multitude of languages making it unusable for this task as it was shown that language has major impact on the results \parencite{Halvani2016AuthorshipTopics}. -Another problem mentioned before concerns the high number of troll-profiles as well as potential alias accounts \parencite{Varol2017OnlineCharacterization} in an arbitrarily captured data set. +The Twisty dataset includes a multitude of languages, making it unusable for this task as it was shown that language has major impact on the results \parencite{Halvani2016AuthorshipTopics}. +Another problem mentioned before concerns the high number of troll profiles, as well as potential alias accounts \parencite{Varol2017OnlineCharacterization} in an arbitrarily captured data set. This is sometimes referred to as the ground truth problem \parencite{Narayanan2012OnIdentification}. -As the research question is focused on characteristics of individual people this is particularly problematic. -For this reason, the ISOT dataset, too, is unusable as neither the problematic of troll-profiles nor the problem of double accounts for a single user can be addressed.\\ +As the research question is focused on characteristics of individual people, this is particularly problematic. +For this reason, the ISOT dataset, too, is unusable, as neither the problematic of troll profiles nor the problem of double accounts for a single user can be addressed.\\ -To overcome this, a special version of the PAN dataset focused on profiling celebrities \parencite{PAN2019CelebrityProfiling} is used. -For this dataset it can at least be established that the accounts relate to a real, singular human. -Naturally, there may be new limitations, e.g. that it may not be guaranteed that celebrities always write their own posts. -However, Twitter\textsuperscript{\textregistered} is more and more considered to be a medium offering the possibility of interacting directly with followers by circumventing the filter, interpretation, and comments of traditional media (thus enabling "authenticity") \parencite{Schmidt2014TwitterPublics}. +To overcome this, a special version of the PAN dataset focusing on profiling celebrities \parencite{PAN2019CelebrityProfiling} is used. +For this dataset it can at least be established that the accounts relate to a real, individual human. +Naturally, there may be new limitations, e.g., it may not be guaranteed that celebrities always write their own posts. +However, Twitter is more and more considered to be a medium offering the possibility of interacting directly with followers by circumventing the filter, interpretation, and comments of traditional media (thus enabling "authenticity") \parencite{Schmidt2014TwitterPublics}. Consequently, the problem of other people messaging instead of the celebrities themselves is considered minor by the authors of the dataset when compared to the problem of having unknown fake profiles. \subsection{Feature Engineering} -In order to use text-input for machine learning models, the text has to be transformed into a numerical representation. The chosen representation we call \textit{featuretype} here. Within one featuretype, there may be many features. For an example of two words, each may be mapped to number, so there would be two features.\\ +In order to use text input for machine-learning models, the text has to be transformed into a numerical representation. The chosen representation we call \textit{feature~type} here. Within one feature~type, there may be many features. For an example of two words, each may be mapped to a number, so there would be two features.\\ For automated authorship analysis, one may in principle choose from or combine a wide range of possible features for prediction. The natural approach would be to use word-based features. However, this comes with the limitation that rather than finding features predictive of a certain gender or age, it is more likely that the topic is a latent variable driving the result. -However, as our goal is to mostly control the information from outside the feature itself, e.g. topic or other context, the selection has to be more nuanced. +As our goal is to control most of the information from outside the feature itself, e.g., topic or other context, the selection has to be more nuanced. This brings us to character-based features. -Character n-grams, in the form of 1-grams they equal unigrams, are maybe one of the most commonly used feature set within the literature \parencite{Rocha2017AuthorshipForensics}. +Character n-grams, are based on concatenating characters; in the form of 1-grams they equal uni-grams, i.e., single characters. They are maybe one of the most commonly used feature sets within the literature \parencite{Rocha2017AuthorshipForensics}. \textcite{Spitters2016AuthorshipForums} find in their exhaustive review of the literature that most studies employ them in one form or another. This is due to the fact that such character n-grams were shown in multiple studies to perform robustly \parencite{Keselj2003N-gram-basedAttribution, Stamatatos2009AMethods, Peng2003LanguageModels}. Some authors like \textcite{Forstall2010FeaturesSound} link this performance to the fact that n-grams are very closely related to pronunciation. -Moreover, due to the fact that the n-gram length may be reduced, many outside influences which introduce context in terms of topics, text type and even language as a whole may be removed. -For example, the cross-domain analysis by \textcite{Stamatatos2013OnFeatures} shows that compared to traditional word-based features, character n-grams outperform them in terms of cross-domain stability. +Moreover, due to the fact that the n-gram length may be reduced, many outside influences which introduce context in terms of topics, text type, and even language as a whole may be removed. +For example, the cross-domain analysis by \textcite{Stamatatos2013OnFeatures} shows that, compared to traditional word-based features, character n-grams outperform them in terms of cross-domain stability. N-grams were also shown to capture many different features such as punctuation or spelling mistakes. -Regarding the length of n-grams, it must be noted that for English those with a length of three and above are shown to partially capture content again and thus become topic-dependent \parencite{Narayanan2012OnIdentification, Spitters2016AuthorshipForums}. -Thus, not only is the type of feature important when controlling for the relevance of topic and content but also the n-grams used. -As such, we have a layered approach, controlling for the featuretype on one hand, while also varying the n-grams employed within one featuretype. -In the following, we construct a hierarchy ranging from the type of features mostly removed from content to the ones which partially capture content. In between we can place those features still related to style and structure but necessitating a certain amount of text. -In terms of the actual featuretypes as well as range of the ngrams, this study mainly follows \textcite{custodio2021stacked} with the numerical features taken from \textcite{huang2020contribution}. It gives us the following types as input in ascending order when compared on their context-dependency. +Regarding the length of n-grams, it must be noted that for English, those with a length of three and above are shown to capture content again partially, thus becoming topic-dependent \parencite{Narayanan2012OnIdentification, Spitters2016AuthorshipForums}. +Therefore, not only is the type of feature important when controlling for the relevance of topic and content but also the n-grams themselves are crucial. +As such, we have a layered approach, controlling for the feature~type, while also varying the n-grams employed within one feature~type. +In the following, we construct a hierarchy ranging from the type of features mostly removed from content to the ones which partially capture content. In between, we can place those features which are still related to style and structure, but which necessitate a certain amount of text. +In terms of the actual feature types as well as range of the n-grams, this study mainly follows \textcite{custodio2021stacked} with the numerical features taken from \textcite{huang2020contribution}. It gives us the following types as input in ascending order, when compared on their context-dependency. \paragraph{Text Distortion} -Usually symbols within text are disregarded for the standard approaches of text-based models. However, past research has shown that these features serve as valuable information in the context of authorship analysis \parencite{Stamatatos2017authorship}. For this featuretype all a-z characters are mapped to '*' which only leaves punctuation and other markers. We call this type of feature \textit{DIST} and apply ngrams $\in[2,5]$ +Symbols within text are usually disregarded for the standard approaches of text-based models. However, past research has shown that these features serve as valuable information in the context of authorship analysis \parencite{Stamatatos2017authorship}. For this feature~type, all a-z characters are mapped to ``*'', which only leaves punctuation and other markers. We call this type of feature \textit{DIST} and apply n-grams $\in[2,5]$ \paragraph{Character} -Character n-grams were shown to capture many idiosyncrasies present in text while yielding a stable performance \parencite{Stamatatos2013OnFeatures}. Moreover, the amount of context present in the n-grams can easily be adjusted by their range \parencite{Rocha2017AuthorshipForensics}. Thus, we include them in the range of [2,5], we refer to them as \textit{CHAR}. +Character n-grams were shown to capture many idiosyncrasies present in text, while yielding a stable performance \parencite{Stamatatos2013OnFeatures}. Moreover, the amount of context present in the n-grams can easily be adjusted by their range \parencite{Rocha2017AuthorshipForensics}. Thus, we include them in the range of [2,5], referring to them as \textit{CHAR}. \paragraph{Unprocessed Text} -In essence, this featuretype is a combination of text distortion and character ngrams. As input the unprocessed text, including all special characters and punctuation is transformed into ngrams. The ngram-range is also [2,5]. This featuretype we refer to as \textit{ASIS}. +In essence, this feature~type is a combination of text distortion and character n-grams. As input, the unprocessed text, including all special characters and punctuation, is transformed into n-grams. The n-gram range is also [2,5]. This feature~type we refer to as \textit{ASIS}. \paragraph{Part-of-Speech} -Part-of-Speech tags capture linguistic style patters and general information such as grammatical classes. We tag the text by employing the SpaCy\footnote{https://spacy.io} tagger. This featuretype is called \textit{POS} and the ngram-range is [1,3]. +Part-of-Speech tags capture linguistic style patters and general information such as grammatical classes, e.g. ``noun'' or ``verb''. We tag the text by employing the SpaCy\footnote{https://spacy.io} tagger. This feature~type is called \textit{POS} and the n-gram range is [1,3]. \paragraph{Language-specific morphological features} -Within a language, one is also able to find more fine-grained features related to morphology. Such features concern, for example, the gender of word, tenses and others. To extract this, the tags generated by SpaCy on its \textit{TAG}-level are used. Following this, we call this featuretype \textit{TAG} and employ the ngram-range [1,3] +Within a language, one is also able to find more fine-grained features related to morphology. Such features concern, for example, the gender of a word, tenses and others. To extract these, the tags generated by SpaCy on its \textit{TAG} level are used. Following this, we call this feature~type \textit{TAG} and employ the n-gram range [1,3]. \paragraph{Syntactic Dependencies} -This type of feature captures structural information, e.g. the use of passive over active. The dependencies are generated using SpaCy's dependency parser. We will refer to it as \textit{DEP} and the ngram-range is [1,3] as well. +This type of feature captures structural information, e.g., the use of the passive over the active voice. The dependencies are generated using SpaCy's dependency parser. We refer to it as \textit{DEP} and the n-gram range is [1,3] as well. \paragraph{Lemma} -Lemmas are essentially word-like features although the words are reduced to a common, lowercase form. For example, "I'm" would be converted to "i" and "am" while "played" and "playing" would both be mapped onto "play". In such a way, words but not their transformation are captured. We call this feature \textit{LEMMA} and include it with [1,2]-grams. +Lemmas are essentially word-like features, although the words are reduced to a common, lowercase form. For example, "I'm" would be converted to "i" and "am", while "played" and "playing" would both be mapped onto "play". In such a way, words are captured but not their transformations. We call this feature \textit{LEMMA} and include it with [1,2]-grams. \paragraph{Words} -This featuretype is created by forming the ngrams directly from the words without any preprocessing besides lowercasing and removing characters not from within the a-z range. Again we employ [1,2]-grams, the featuretype is called \textit{WORD}. +This feature~type is created by forming the n-grams directly from the words without any preprocessing besides lowercasing, and removing all characters that are not within the A-Z range. Again, we employ [1,2]-grams, the feature~type is called \textit{WORD}. \paragraph{Numerical Features} -\textcite{huang2020contribution} additionally suggest numerical features describing the content and the form of the tweet. The featuretype \textit{NUM} is thus comprised of the following attributes: average tweet length, number of URLs, number of dates and times, number of emoticons, number of emojis as well as polarity and subjectivity. +\textcite{huang2020contribution} additionally suggest numerical features describing the content and the form of the tweet. The feature~type \textit{NUM} is thus comprised of the following attributes: average tweet length, number of URLs, number of dates and times, number of emoticons, number of emojis, as well as polarity and subjectivity. \paragraph{Preprocessing, Models, and Targets} -For the preprocessing we apply the featuretype-specific ones as outlined above. In general, emojis and emoticons were always counted as one singular feature and marked by an $<EMOJI>$ or $<EMOTICON>$ token in the beginning and end. Furthermore, we replaced the unicode string by the textual description using the package demoji\footnote{\url{https://pypi.org/project/demoji/}}. For all text-based features we apply count vectorization and tf-idf scaling. The individual features were kept when they appeared in more than 1\% of the samples. For the featuretype NUM we apply scaling and centering. -For the model there is the option of linear and non-linear models. While neuronal nets and transfer-learning models gain huge popularity, in the case of authorship analysis it turns out that simple linear models regularly outperform those more complex ones \parencite{Rocha2017AuthorshipForensics, custodio2021stacked}. Moreover, as we also address the social sciences as well as the law community, interpretability and transparency is a key aspect. Thus, we focus here on well-researched models which also enable a global interpretation as well as attribution of outcome to individual features of the input. While there is a wide range of models employed, the most common ones are a SVM, a logitic classifier and Naive Bayes Classifiers \parencite{Rocha2017AuthorshipForensics}. We test all three of them and use the overall best-performing for the evaluation. For the SVM, we reduce ourselves to a linear kernel as only this type enables us to interpret the weight-matrix directly in terms of feature importance. +For the preprocessing, we apply the specific ones outlined above to each feature~type. In general, emojis and emoticons were always counted as one singular feature and marked by an $<EMOJI>$ or $<EMOTICON>$ token in the beginning and end. Furthermore, we replaced the unicode string by the textual description using the package demoji.\footnote{\url{https://pypi.org/project/demoji/}} +For all text-based features, we apply count vectorization and tf-idf scaling. The individual features were kept when they appeared in more than 1\% of the samples. For the feature~type NUM, we apply scaling and centering. +For the model, there is the option of linear and non-linear models. While neuronal nets and transfer-learning models gain huge popularity, for our case of authorship analysis, it turns out that simple linear models regularly outperform the more complex ones \parencite{Rocha2017AuthorshipForensics, custodio2021stacked}. Moreover, as we also address the social sciences as well as the law community, interpretability and transparency are key aspects. Thus, we focus here on well-researched models which also enable a mathematically global interpretation, as well as attribution of outcome to individual features of the input. While there is a wide range of models employed, the most common ones are a SVM, a logistic classifier, and Naive Bayes Classifiers \parencite{Rocha2017AuthorshipForensics}. We test all three of them and use the overall best-performing one for the evaluation. For the SVM, the analysis is limited to a linear kernel as only this type enables us to interpret the weight matrix directly in terms of feature importance. As target, we selected two author characteristics of high relevance for the social sciences, namely \textit{age} and \textit{gender}. \subsection{Experimental Setup} -In order to assess how different combinations of featuretypes impact the outcome, we use three different approaches to feed them into a classifier. +In order to assess how different combinations of feature types impact the outcome, we use three different approaches to feed them into a classifier. \begin{enumerate} - \item Baseline: Here the model gets only one featuretype (although with varying ngram-ranges). Thus it enables us to compare the performance of individual featuretypes against one-another. - \item Cumulated: For this approach we feed the classifier combinations of featuretypes such that we combine them in an ascending order in terms of context-content. - \item Stacked: Here too, we use different featuretypes as input. However, we first make predictions using individual featuretypes (as in baseline) and then apply a second classifier, a logistic one, on top, using the predictions as input to predict the target again. That, in essence, is an ensemble approach \parencite{dietterich2000ensemble} and a variation of the successful DynAA model by \textcite{custodio2021stacked}. + \item Baseline: Here, the model gets only one feature~type (although with varying n-gram ranges). Thus, it enables us to compare the performance of individual feature types against one another. + \item Cumulated: For this approach, we feed the classifier combinations of feature types such that we combine them in an ascending order in terms of context-content. + \item Stacked: Here, too, we use different feature types as input. However, we first make predictions using individual feature types (as in the baseline setup) and then apply a second classifier, a logistic one, on top, using the predictions as input to predict the target again. That, in essence, is an ensemble approach \parencite{dietterich2000ensemble} and a variation of the successful DynAA model by \textcite{custodio2021stacked}. \end{enumerate} -To assess the stability in performance as well as relevance we compare the different featuretypes we introduce a small, controlled variation on the input data. To that end, we vary the number of authors within the dataet by constructing four subsets from our dataset. Each subset is comprised of a different number of authors (50, 150, 500, 1000). Furthermore, the sets are constructed in such a way that all authors present the smaller set are also present in all the larger ones. That means the 50 authors from the smallest set are part of all three larger sets as well. We chose that approach as to increase the number, and thus the potential variation, while at the same time keeping prior information. -Moreover, the authors are balanced in gender as well as in age. That is necessary so that the model has no advantage by focusing on one class to the detriment of others. That gives us a cleaner result when analyzing the impact of the individual featuretypes as well as n-grams.\\ -We conduct the whole experiment three times, varying the input-length of the individual text-instances each time. As previous research has shown that text length greatly influences the outcome \parencite{custodio2021stacked}, we construct input instances of different minimum lengths. We do so by concatenating different tweets by the same author together till the minimum length is reached. No ngrams are constructed in such a way that they would contain information from two different tweets. Naturally, when we increase the minimum length, the number of individual training instances declines as more tweets are needed to form one training instance. As minimum lengths we use 150, 250, and 500 characters.\\ -In order to have no spillover of information between evaluation and training, we split the dataset into three subsets, training, testing. All training was done on the training dataset while all evaluations shown here are done on the hold-out testset. For the stacked approach, we split the testset into a validation and testset. Here, the first layer of the model is trained with the training set, which is the same for all classifiers. The second layer is then trained on the validation set. Finally the evaluations are conducted on the hold-out testset. +To assess the stability in performance as well as relevance, we compare the different feature types we introduce a small, controlled variation on the input data. In order to simulate (possible) shifting variations in the patterns of feature use, we vary the number of authors within the dataset. To that end, we construct four subsets from our dataset. Each subset is comprised of a different number of authors (50, 150, 500, 1000). Furthermore, the sets are constructed in such a way that all authors present in the smaller set are also present in all the larger ones. That means the 50 authors from the smallest set are part of all three larger sets as well. We chose that approach in order to increase the number, and thus the potential variation, while at the same time keeping prior information. +Moreover, the authors are balanced in gender as well as in age. That is necessary so that the model has no advantage by focusing on one class to the detriment of others. That gives us a cleaner result when analyzing the impact of the individual feature types as well as n-grams.\\ + +We conduct the whole experiment three times, varying the input length of the individual text instances each time. As previous research has shown that text length greatly influences the outcome \parencite{custodio2021stacked}, we construct input instances of different minimum lengths. We do so by concatenating different tweets by the same author together until the minimum length is reached. No n-grams are constructed in such a way that they would contain information from two different tweets. Naturally, when we increase the minimum length, the number of individual training instances declines, as more tweets are needed to form one training instance. As minimum lengths we use 150, 250, and 500 characters. The summary statistics for the dataset may be found in \autoref{tab:dataset}.\\ + +In order to have no spillover of information between evaluation and training, we split the dataset into two subsets, training and testing. All training was done on the training dataset, while all evaluations shown here are done on the hold-out test set. For the stacked approach, we split the test again, this time into a validation and test set. Here, the first layer of the model is trained with the training set, which is the same for all classifiers. The second layer is then trained on the validation set. Finally the evaluations are conducted on the hold-out test set. Due to this setup, all classifiers are trained on exactly the same first-layer input in order to increase comparability. %%%%%%%%%%%%%%%%%%%% \subsection{Evaluation Measures} -We seek to help answering the question about the feature stability as well as featuretype relevance. The latter means comparing the different featuretypes and their performance against each other, especially in terms of the amount of context they introduce and by how much this improves the models performance. As the evaluation metric of choice we use the macro F1-score. The score is an equally weighted mean of precision\footnote{$True Positives * (Predicted Positives)^{-1}$} and recall\footnote{$True Positives * Positives^{-1}$}. Moreover, on a balanced dataset, the score is nearly equal to the accuracy. The score is bounded between 0 and 1 th 1 being the optimum.\\ -The other, more central aspect is that of stability. The question we try to answer here is by what degree are features used constant when the classifier input-set used for training is slightly changed. The change introduced here is the increase of the number of authors. What we want to assess is by how much the importance of individual features shifts when such a change occurs. -We developed the following approach: First, we extract the weight matrix of the two relevant models. When all input features are scaled to the same range as well as centered, the matrix contains the information about the relative importance of each feature when predicting the outcome. As we are using linear models these weights are global, i.e. the importance assigned to a feature is the same no matter which individual instance is assessed. -To assess the potential shift in importance, we rank the individual features in terms of weights assigned. In a second step we then calculate Spearman's $\rho$ in order to assess by how much the importance placed on individual input features shifts when introducing a small variation in the underlying data. The reason why this works is because the ranking of a feature directly reflects the weight the classifier places on it. Within our linear models, this is a direct mapping on its importance to the prediction result. Thus, when this coefficient is 1, the distribution of importance across features is completely identical, if it is -1 it would be completely inverse. Consequently, we say the stability is high for values going towards 1 while values close to 0 imply that there is no recognizable relationship and thus very high instability. -However, when increasing the number of authors, the underlying featureset might also increase and thus the two matrices do not have the same dimensionality anymore. To tackle that problem, we follow two approaches: The first is to expand the smaller matrix by adding columns of $\infty$ for the missing features. That ensures that these will always be assigned the highest possible rank in the smaller matrix (the ranking are sorted in ascending order during comparison). We call this \textit{extended} Spearman correlation and it enables us to assess the absolute feature importance ranking. The second option is to only assess the features present in both matrices and therefore to reduce the dimensionality of the larger one. That ensures that we assess relative importance but ignore that additional features might have great influence on the outcome. That is referred to as \textit{reduced} Spearman correlation. +We seek to answer the question of stability in predictions as well as stability on the level of features. +For the former, we test the predictive power of the classifier for both targets on different inputs and sets varying in the number of authors. +Our analysis compares different feature types and their performance against each other. Their difference lies in what they capture, especially in terms of the amount of context. We also analyze by how much their inclusion improves the model's performance. As the evaluation metric of choice, we use the \textit{macro} F1-score. The score is an equally weighted mean of precision\footnote{$True Positives * (Predicted Positives)^{-1}$.} and recall\footnote{$True Positives * Positives^{-1}$.}. Moreover, on a balanced dataset, the score is nearly equal to the accuracy. The score is bounded between 0 and 1, with 1 being the optimum.\\ +Moreover, we analyze the performance on the author level. That helps us to test whether the models make systematic errors for specific authors. That is indeed important as it tells us something about how patterns, found to be predictive for target categories, may systematically disadvantage some individuals compared to others. For that part of the analysis, we look at author level accuracy as well as the stability in classifications patterns. For the latter, we evaluate confusion matrices. The results for that analysis may be found in \Cref{att:sec:prediction}.\\ + +The second, central aspect in this study is that of stability on the feature level. The question we try to answer here is by which degree stays the importance assigned to single features constant, when the classifier input-set used for training is slightly changed. The change introduced here is the increase in the number of authors. What we want to assess is by how much the importance of individual features shifts when such a change occurs. +We developed the following approach: First, we extract the weight matrix of the two relevant models. When all input features are scaled to the same range as well as centered, the matrix contains the information about the relative importance of each feature when predicting the outcome. As we are using linear models, these weights are global, i.e., the importance assigned to a feature is the same no matter which individual instance is assessed.\\ + +To assess the potential shift in importance, we rank the individual features in terms of weights assigned. In a second step, we then calculate Spearman's $\rho$ in order to assess by how much the importance placed on individual input features shifts when introducing a small variation in the underlying data. The reason why this works is because the ranking of a feature directly reflects the weight the classifier places on it. Within our linear models, this is a direct mapping on its importance to the prediction result. Thus, when this coefficient is 1, the distribution of importance across features is completely identical; if it were -1, it would be completely inverse. Consequently, we say the stability is high for values going towards 1, while values close to 0 imply that there is no recognizable relationship, and thus very high instability. +Moreover, we selected an ordinal measure, as it allows for more latitude. While the absolute values of the coefficients might change (and indeed have to when more features are included), their ordering may still be constant. Consequently, their importance when compared to each other can still be stable. That means that any stability found here is to be considered the upper bound.\\ + +However, when increasing the number of authors, the underlying feature set might also increase and thus the two matrices do not have the same dimensionality anymore. To tackle that problem, we follow two approaches: The first is to expand the smaller matrix by adding columns of $\infty$ for the missing features. This ensures, that these will always be assigned the highest possible rank in the smaller matrix (the rankings are sorted in ascending order during comparison). We call this the \textit{extended} Spearman correlation and it enables us to assess the absolute feature importance ranking. The second option is to assess only the features present in both matrices, and therefore to reduce the dimensionality of the larger one. This ensures that we assess relative importance, but ignore that additional features might have great influence on the outcome. That we refer to as the \textit{reduced} Spearman correlation. The result for the analysis of the feature importance and its stability may be found in \Cref{att:sec:importance}. diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9ce98b4c8998ba17124ecdd1d75bcafeae2c705 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..226cd354d92954ed2b418d518a91d8e233f623c5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..469f2b90c2fa48653c0b2de733c40b31019a1b48 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1d3539d785ed9f7cbf49ffe8249995f697408e2f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b440fdf36f764f05c2dd60f01400affd3f74e5ef Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1688ec204eeef8035d36d54c04f624be85d5373f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e88745d7cbb0a03d1c88203020321eac276bad8 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..180e0c52e4e4cee7b1b12d5b07a929617d980751 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..747aa83c5f7aa11fccc10f5d247b6c13253b610b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..470d934452fdd72798d69adfa909e67141b1ebcc Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2381d1e3663b05c0dbf20bfceb6352ed51f38f94 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fd0d145bbab5ee6bae92a785d711cda59ac68e18 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8d9a28ff1aedcb7c25fb82e2376c51c54f1f7c00 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..dba3d5e73e39a8185fb89b58c798976f58dd2c21 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66050b3f2ad96621714252b5e966ac0709a3a586 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6f583e60fe39b0c618117778b020214953eba422 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..268c596e291fadd392eb84ed9a5cc1bb6f69d177 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2f59f0ed7ab1d32f98b5e204d174ffa78d22a6ff Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..280e9e10b822aec6cf99b24cecca5ebf9071afc2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..da97fc6fd83be4112a3c5c3c1f4526f520a85542 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a2697d47e57f4ef6b9efa74f27ca04c9f34c30d5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6c7360571a8450ae65ae67a24eb8d7fc38183a22 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5771187180c1c95251f2082ef296247fffa9d04 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6699a86435b8532f9c5a1b1a50463856af242065 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9f234723fe3e36e8cfce41960a380bd0ec71c6b1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2a859ed2fcf495d09caf28f64fa0edf0411f77f2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..53f013c4a68b4dd7f1f7d3305956197e034cf0ae Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..13e7bdcd052034f10ad21b5deff2bb0a1f183804 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9fe1019f6f79fbe88143e664155db4f404410f83 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..01c82a52d04d5311513ead68705f75b4edd54122 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b039e529a3946592425c0835dcb47c3f2181c0f5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a9d5948d41559c21c804a0365900bb41b74c068c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..638c55b6a25d2311f7e7ced2c7c02e2b33ab88b8 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cda4a5d4685880e68cdb9c397c6257ab051f566a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e87cb6a771db4e8ec02f3871ae2c19d54eec212 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..30d3bd99776ad34b8e067ec274c42a2b670377f5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5fcab10f6f89f5709e40148e1e3da6fcc865aa6a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6a705ff0ab63d17530737c1103da008142249a3e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff7df7b3ef1efe003b7b3c09be1e79165b6db32e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cc8baff4e90d036f96ad92cf0d3fc02b0ab4e83f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2db3e9247c706f58f533cd1de1e252865a33aa22 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..67074de444397d6c648d19643bec3517347f4ee4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01f2f45640cc2d5cd311e561b34505da3b797dd4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4ced865b4950dd8fc073e0ae3bf326a6d43a7fc5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c7b1f613e437e12b40a310c14f45fa5269dd7ed5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fc0b0bd58b4a46ad5642382c92ea52942072031b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8c5a9bceaf6bef1d0bf8e233e88de415a18c6baa Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dda88a78952d5fcbec36ec942e2f3182354febc2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..459568d27d5f262fec63fed9ce2ec57f7be56393 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..235242476741ff64d682af2d8f867fd8286fb061 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b2b404bda280972bf0d6fb70930d1c67314d1ce7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dd0219fc94f2ca08e0bcf0e9a75706b0b8d443f6 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab24faa050fc2daf12f628c5c821a72db85bb458 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ecf19eadf370490d46ecb2dd30fa5f2c0854a467 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e9f555e135087de852a1a3adc47c6bc4efb9946e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8c27d6c776f7d45d4ce66d08fb2b8cbb651e10e5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44d1c46be6266a772ed321aae27f90e70586486d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..942e302c846628c6e384e3db1cc4a251db47c0ee Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c6eb31b16adc347cd4af06103d2687b46189115d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ef6c29dafa1b9ca1db06507939f126f02e662368 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0e266d4b7d86bfe876f17f7e4fc148403b61577c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5ad5876fc5061530ec5f08dd413389e1f6c4b212 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b5971b752f4cfb3c7a71618719f1074169b114d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..27ec5d204aa490509121534a9e4212c4969c450f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c69d377f1ed7e5fcaa334d2a07f9ffd8a2167a4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ac9c75aa06a80a63798d94066c76e3cbc82439a5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..05e21d2d7d5c53726b2e2f0134fc1d0e1ec035f2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..181c20762871caf7be6a510d287e129af5c56e51 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c09a45d3e00ab197199f88e29529c295558dc061 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f802841c7573bf60f81464ed11f2c29ac30482f5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f04a02ab8f44559ada4c10c8cac2dcbb265158e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a56e0fedff59c59f797e15e82b09b641c6f63d74 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eafa165be2e0eb79300e9db4556d61d64150d6ad Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c162d5885ebf59ec09ae56cba48b51b6b4d41ada Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e49bbd9297e12922d78c2924c7d81671952a2ea3 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6cdc43b72d79579ed06ccaf9e6a81f0ad4977918 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_num_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..19279206b72f8375bb619e555bcc3cdd85ee6302 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3c2266584b623e52d1d02e4cfe1735034e1f0fc1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..74965223d02926f299097d558b096096788f651c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..094d36fcdd7c94d9ff6a654ce5409706a5bdd23b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_polarity_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3da95e02554577b95a7a6bd7a7679ce84aec2359 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5f08534a1c600eda839391a319eb4f0074796351 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f3367802b567feb07275767c4faf5194cdbe30dc Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bc2d0e47384ea9d0c754afa1377c0f197fca01f8 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..109be0850c58f687c384c78e3dc2e5acb40f63f4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b3386d4fd1e25540b8105e2fac6b2d2963e2488e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d88799db480bbbc6ac1e5f420cb5b4afbf38f8a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4d5dac4eff37309c947cccde6fa785ca8ce75fd9 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..935377c98fef4aedc583afbf670ce2509e061233 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5996a4dfd228c50f4f0761a44560786c3648e357 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7c08687324efd897843b35e328f24fcd3697b9e7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..68c1f9ce65b456965c9949c36567166f3ee953f1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d11b2cbd0257be066094cdd6971b02d6bf24b8c0 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f60482a77c2ca95098286bd4641a50ab4ebe57 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..14f5d9743433d098c7526d84edb2d713cd17ab23 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5301a3becae10669e5e4de9845af1b1b391098b7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..15bfbb73e18aebd1815329cacc8ea86efb08339b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7753f87d5802d6c3b73e8714412067709b82b2b6 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b41bf0030acfe92f5d9685bb264f5a722890be58 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..09b78da3513d3b50affb6ab7cf4a7622aa30953a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c6cf4b2e75bad6704c4576b859d27efdd3f9c3db Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..332b2bb8043c0c5f6625266fc4ece35ec460268f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c7748752e3d81fd413d4c4bec2faeb374fe7a81f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b86daa14ac0b2e59dbf48862ce6df9712650f719 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..668b0af5907779c21d9caba9c64d99cb40178836 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ac687bfa182179f9cf6e2eab1ef37e9c299a9889 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59ddbf4208a1ca8e32f21dedad6d57030fc865d2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cad90f96227fbefaac5b18237e1bd8bb21fb5150 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a89ead822adfb8bdb8a12058d92faadecda6a371 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d4c0ac82ff07ac5682b2239b69d0ae29d83c576e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7284eed8e899a265eca8270bd567d69bb64c8876 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ee4741e95cd4c217a49ac96137e6a5649795f323 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_baseline_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dccfbe55348c0c5fab84ea715009a5dc8d6b01ec Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..bb532e68c18915a7ae7834f853532ee44fcf7d68 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ed47481994613a03dcbcf1b7c7b01ddf3326f89 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..962aa67d41dbb4793ee1d36372b292fce4ce71fd Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eae2f34b8528b229e665dcd19ec0489df12adeb3 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..544097f0c99276ebf5d001b483ed387ec6409fc4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5634d89f323cc7b7390e9d466a30792f70b8befa Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e6109a0cf8769b0b54a462d588ea09895785e936 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d206882dfac68cd334d3e9e6fba0b92baf4a02c4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..945c1cf20f1603434709f6a78bac549cdb299c85 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebfc273060991c0071730c5a705f7a84f722f6c0 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..30c0a9e0e9fd3964a48f88e2ca2d3ab14ec10b0d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f7866db14f177a97575e744cc901b526a42d900 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..373f90453214a560c01a4b3b88085c5cea29997d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7abb30c60279d07eea12f608ba8d8cf7fe025429 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7aad4b950e097df8dfbcc1e22a280c7da57b6054 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..623cf564e9391732f0600b1f59b4b9ffe3e85a01 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c2f7fbdf8aca932ec8e25a9f55976b9afbd9eb42 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2f8a53167abbe776bf080fbfb45060b7ec322578 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..21d3cb1cb053a8d7edd68541e1aa2145f004a75b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bd81f9d89ea4bcb254647dcbebe632bc4444311e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..61c2b6667c59faf868083314a3e819a0f1c907b7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a498d054818b91dc1160b115f587cb577acf2758 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c778c2149090cdd6631dbbf5df757614c2ce83fc Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9612be96f041c95d6f211944c4278059c2ef0886 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a1b29d249fc1965fd10504e48509a3e1d346c195 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5bdcd8349ac5a29d4d0989b6ff38b005d085364b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6a3ca3e143cc511b5016fc09c272ff39ad1a4636 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6ad6065c66c2233a837d436b1322b4325120eb18 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c92bb486d188b1264571c4b5a8bc7a398a9e29c4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7668177df1cdf3414a9b6353625bc57d3ee3656f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..80d6c1708626b1d29353254ab1bf89a39bbc1f11 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..511960afe83c50067ae6eba0386060647a244160 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fc5fd98b2488a79e15394fc76a2e5ebfbdce5779 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7b95cf0ec90502698f0a829a16c90b40594a1fb2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6496cdc803450d262fb39e8d0ceb6172c1591642 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..670ce09230480214a5e5ce05ed4e20f24d317ed5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a7bcc83a290fb9ff00b16093e05581562a204a47 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6738ac636bff86248b0bdcab2835630901f0155c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ea7a8e6312efa844c9166e1ffdef2f0ea1bf44ba Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8bdd73d0187990ef8c14c59200c17d967959deeb Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..022096ada5dea36160e7765c8b6a96b6b63fcb41 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..56b95626484011e1248806417aa911e6dd0c5e4b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..83e3e053c44f420fd530f68626c860ac132ef4d2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3738986c74cdaa6ea2a4c1ddfb222fc86008afd Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2c377dde6c8250f7ee6ffe658d2b68d3e7ed8e35 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f835368d22a1b14f6cf79676a5c553d1bf3e153 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..163b1090593fa71818b70294c3320dd6854c2959 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1aca768538b60e16cf7b2e8ad0d0c41f88e0c391 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9a4d0b4d699ce2c106edd264a523212a5783d56b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..77744cf898fb8150e4dabd3c90c6b9e331983c22 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a8b887a6f85a23a65772765fe08a50d5ef5f36f8 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a3f6f7a5b742a6a13a89f11be1fd15b71d195def Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..837e75c66a36992ded201a9fd30bd38096f998b2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8516139f0c3f6d5c39a96a6319c6b1d801eb566e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ab914d28c093e87db17bbaf17118ceba2052c0e4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..26968385ae606daf87671de7a257948262854c3c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2de951ea9782abf97b419e7f328ba69c2e622df0 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3baf06de98ba23a243ede954a7a5d6b635396619 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..abed36cc1b49063ed371b0f6a1689530ada2edca Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a8ec09bc692b3acbd83711372e655e5f412edb35 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..166964a477ee3a4dafcf7d7da3c59892b9935305 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..09c564e87895e638de51fe8fd99fd0c45ea3c0dd Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e0b9b6adb2ceb47936dd69b0508ed35f0822d4c4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cef9dacbbcce4c53197c52c2c840eeba722fc246 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4a883dc3b70ad44e45a4cec60cc5d80103259db9 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..410df164b54323aba79ad8101bc54fd2e5242fcd Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..afcc7e1d4a6232845a0a453b43a6dfa76d5f449a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7b9a22377f461d081807267b4ebee866dc15bf3 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0cc0720b13fe4013aa1d109bdeb6cc479e73e433 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b190e338367e1e52c4a69db59890f12fb6213ebc Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c50e04362160130e1c1405df17aa5e370b0eddf5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6ea9cddbe34bcba80f148a8ab0654c33bca950cf Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2c0eaebe863502877d7b038cf025d3baf06fa8dd Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..200b5ecd3f4decdea87dfab8a8f9792fccca38a1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fc65fa6e9f065a1dbe2a650bb53a8f14d59e2090 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08d78e3c0c0509f09e456f1760ff9dbce6e9c788 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..394624616b5ac2dde4789c79f5ea72465cfab9a7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa2139a65c16c743f299a8165b835155795fc459 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..851618259d559e00c5dd365075c06954ae46eb3d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc3994b7a924aeb3b7d35d52a001bcfa65be500a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..eb7a11d42bfcd74f8d7612116d49ab53d8007fe2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8f7602cb5b4a8579bd5b07c4771db3939cbd311f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..360e1b33e69aa9754d3c0621eaf06e59be498814 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..620f22fce798a33e129ee26545a1a34ae6c8cbbf Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..434b83e1b912912dcc809c2c3495c287820a7050 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1705033ca6956615c9dc3e910acdcbb00ec39f98 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f124ed2edbbc580f66b7fa73230346ee830f7a48 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e1831e938d5604f1241cf31ea212bed17985567 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9c566c7d9adefe469baba60700ebbd91b9ef7825 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a93b64eb613d64ea51c3310391438f0a0655589a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f00b85eac5fe6184c9d83e69c383d0024dd8d983 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8221a028bd65d3c7fe8f2d1c62ec2b738f4ef7d1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6aba0793b0637d68279039b1738badc22dd78252 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5e7ebf4095839d07abe8ae6789e312569e6dc951 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..955579caad9132c225ad1fb53da463c705213834 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0c36cab5f5b2d115df5f1f40481e1783be0307f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..330f3bf8171d3f4502d58681f3ff52b447fde1b7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..99064830d4cee61e086ff13e9801fd6de031e01d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6597ddeb66daa1251cf6acafc3ac1d98117a1d3b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5d35ad7c5c1147cc5162c1fd5edb20919687418 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3209d681ec90e4c73fa93d5db0ea00383149082d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8edbad144a0f193ad42b6d58ddf981562652949e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6ba43054b256a29d71e197f9cd79ad839c0fff0e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27e47e7f1b968a30676e86f4f137fc0700072b19 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b3c13ff77eadd7cbff79e21a781e47f5ed4549a7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a932c7aafd0e9c02935d035ec758572cec82b87b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b9cc3155184fb021e584e7ae6717c4ce9313403a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2db13f3b72f609555b66685039bd4cd833923639 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7003a6be01e76fb5ea379362acd9eb5af4318009 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41ca56d6e8d3a8ad141669154a2d8d78ca7fdf74 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..24427a911281385a0e23bb982ef3fc6237a35e5b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b1d29c61cf16d9a671e6c27f91be4c00c5893e1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0937ec1da666cde45b94c5a04d4410a88b58e278 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a0564bb42cacde1c5f72805f339d204c1278e49e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..317f36d35e6355ab06fe69961f3b3b6e14c4cd98 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f3b4e5dae8dde5a130ff4ea26ec1c99fcef790a5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3da933b8824f0436e63e949117aa41b78d75f037 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c18a2214a4a8be7eb596d8441996bbd807b07bff Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3c0e098f450357a5528f123e94766dcea79432da Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..751e21963fffa29f27365067bcd800a2bd443848 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d69a549593e4f1fd3aeae97a591551afbf78692b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a958909f1b0c4c704f1fd4d862461789f9b2b5b3 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..31164a66421c04c5b83272bb9b5bbc01366ac7d3 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca29e7050b7504507ded66f82d2373f4b63b75ce Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..091ba8fdee077d47309c00c5941ff712c11cb77f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8c8cad9084c6bedfe0aae2bea6f1ba5aa53130a1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3f57b4293827f842c8856b79f1be012576ed35aa Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9252553c32428382789e75c1e60a80d3bbf5ad39 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ecffd93ff6c35ad790df1338707a1f658909a580 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f194c9170de6082edbde1477d0cff37bc0c85b9d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..741a8e12edbfa51347db60fbd39133e0b65d9686 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d714b11f037c2ef13a39559b75fb6d05c5dd037 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cbb5257af0b3fb9996fd81f5e59f4cdea0710b1f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..800f2f251babd60724e6c08e54500ac0eb2d0896 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9e3275da5657b75a99aa77cb169a0fa3e328995b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..86c3a26e178c5b9257586b422cf0254ab17814e7 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ec55bbe6a2cc2829b4c8bbb7d7857579772f4239 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24180d895fc0856f9e094568673837fbdc050785 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ef5e53531401ef708d0759d9aac033736071dc Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..421be03ec51bc98f0a65ad6ee07c2eabde534fae Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fa178c1f63c95f4f38b3ce51e8e0d1e2303f7cac Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a01df9d18e9d0eb9519018dd7c0e3de28354001b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ab170aa021f8b9b800ebc8bd88579d586d0165c9 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..31ec9241be47e18a2170001617fce4438083ce12 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..14ea80132f9fa7fc44db2d20d361a4c41227efa0 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a96a2a8f2969892b944d27a7fefe0ba8ff9b8aaf Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..25cbe7c697d64fc00bf83826ecf71ff5ef04c51c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..639c0abe03110b20ce083fa37ec1b3b4cb57918c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..8db57e99f238c64b04ab2b4030900c4bc7c3f04c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92d344ca491daec3a73aa4416c584a69c3f849f6 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..049fb1c133e48facbcdb5b93c990e38a9a0e9ad5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..53b16fc6b76fdff3fce0e836d39562136dbc7f16 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c072f84603ba30cfdc8c5b00b598919503865360 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ef522dac94cbc6c6db2381edba9403e6705a692 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1e238120fc7a1900511f1c03669e169688e601b6 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..218578447e2bfb712cbc5bc7f43c34e9ead9ddca Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f9d1f0fbe39951383f71c309571ec9a5f8c17f77 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..15a30cfcba5a8cb92197f1104f5fc10a1473838c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..86334f8a46de88f52c5944b7d2531fd4a0c7bfdb Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17e6f01b9365bd5cb4e95f2829c4990f7d6961e8 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6367055f2c01890443c98957265764b52046acec Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29c46b5e61d4124dc7388d5a65e54f13cdf67a5c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1cacd8b3e440bc274efe2ff5f2ba207ff5351305 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21893596b045e942619e74857bdd523a0a3d439b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9fae1063ad1f23309c4916ca4d36e5c30056a815 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa88e360fe0888aaa415fa29875b94af7c74c988 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d8164bbef5990decf90a486ede0c707dc2ee5874 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38c788ee2065c74f38a8aec945965e82d19e974f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1f8203ca296438de7a7c862c84e5d010aaa0aa4d Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af8840b0ebfdf56e64f02ba6ee045659b10a32cf Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8ac796ab973d0f83f3630ff9ae1e27a8117b0108 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af290c7c9e52499570d268e91e609a2b15e4bafc Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2df1b8ec5433535a32f79096d171ca14722dcc00 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a447d4d67e4cb3162ea7c027ea9db9a6a8dde62a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..681d30d34eaee125a8036b16fc689aad469d9251 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38560ad03fed36bfd9be98acc53ee337f4cb8723 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..65358a41fad9e29cc287bfd6217e892749f1783b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..870b6dd793721de02ff7db1642001a038a8c019e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c66159b5fe3c890d0ff3737a91162049fd92b141 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..800bbc689e559c7b68ff520341f2482f34d0dd62 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..45394fb618e5f2c38d0115c80204c62be6bc699b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..71827bd2252f75d53ff7852d1851884749d91fc1 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..81cbbd9f2e99b4e50f08604a2ac7756a8abd20d0 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba794fa4cbbbbcd2dbd95ca7c0a878dea7fd6849 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..681629e6fd836533f1b9e51d61193816102c4fbf Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc6c07c628d9fcd1fb2fc0e510ea1f59454c6128 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..054cb80e1de9454f985c2cf083a8226b5dae10e5 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dbe05fc63b65f69adf6ce34ec6e6677d99a34520 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..107aea6b7e18d82fc631d3b35c2d8544646b0499 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8cf77fb0694c4558bc7b1cba0a9c72536771fd6f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e016e70ed076ce2ffb8c4dcc5f56e21cd56eb5e9 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd6f4db9d902e1e5ad95817670f9b2d3b2405584 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0805093a4b8ebe70ee73b7823880c428534a0af2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..794a475f8756123223d7de576cfdf4f979dba40b Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a9cfb87bcf54f2bfd67adca0462ceaf624713a63 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6fedc4336848bbd829535d48ee13f0cf2ca6f765 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..68a074f07e58fc9c971abbaaca1d2735f378dc7e Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..931ddbd43c610d7f01648457f14445212a035360 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..632afd3e1afabf8a32b0a91131b44a2d915fdadd Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27bb577abd816f788a82834cc5a6a8adf3852231 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5154f02142a4d6d7980715153f843f0e0a582e2a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..99d939b7306294c6fc52b41b0c1ea5e2df7194db Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ae025ad74b2a3dd26a1a91bc27084bcacda16826 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad05544dece8d5e12e95a2a252c5f33fc90a1b7c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d08547412b9240a098b17725258d2e11b7eca2f0 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ec5a81ac628753ae8d3ea0d841d8ad1f66a9ac98 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..22dfed0435abd69a83b62de5e956fc16e2265e90 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2891c0ce71fd577f27b5b5dfbe7bf72bbcead47c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5623be31d4e84dd899032f5553c2a669cbeba7f3 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..696f9e6e56db431e8e3c5d8f6b7e609952c0c277 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..24148cc36e655da0bb151fc0c6d206d1d5560444 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d940d6ee61e327922b567ace72338eefcc2c48a Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7855204e6016aa4d4f59a579249640fb9b4cbc74 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e4263c00956a60180d30dc4130460ba5eace4d9c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9bd638cae23435798626e2f68da8d56e3bbfb5e2 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..144397c5c6e038cac1efd89720f5509929c9da2c Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..80854b3fccf85867495901e377a2367d5f285593 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..974b11af59fd30d388d5b8b8fc516ea0a07ba3a4 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4c20fead3a3aa719e5a673c9a8bf62caf5daa305 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d66dcaad07c74623a7efe7dd6fd3a100115049ab Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d51dd238571792e4b28a594cd99149ffa73c6c58 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..58068d6a770d296782f19c19af2ec8573cb8871f Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e363779dfe9801ae72361cdbcd443bde353f7d18 Binary files /dev/null and b/tex/figures/age/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0c4d8c5c00ba57aaef73b75f3c0d192a9dc651d5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7bcf60cf1d5a157e651500cf9ace4f87f364a2a3 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d20bc69f988302a1fe9456817c49ae6068027fc1 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fabb2b709448177e63561dbb7011861c51844fdd Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c912d7d5781527906912d981e24e60471e70290f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17484ee4b24b100a6ee34a63c08639eaf738a56d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d72a05b8c72ec57971b6ea73fd190d6f3011344b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ecd55627f49667695b5e79e3de6a4cd6ec341255 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ea487828e553483e043ba2fd4cfc566f6ca462a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82ad235fae2e62a0886f87e06e9bdd1f859d1f29 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35d6878958bcfa5a4d6d51c070d8f903c1755206 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c57a1d1fd87c43adcfefdb9c0eed743cd74a66c3 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..664e1e6f3605b1318af443867f04d6f0633b9fac Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..707a6495914363fd7f4147047dbe87c5fe80f60f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..598c9924cb06c486647fbc550cea2331d83e6098 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..93909eab9f82196456a271e949a42a0a31e06b5d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0ac69b1c05c85016186dd15d39dc372eddb7a34 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd16b727b6a25c360379176773485c9f49e815a3 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2943cb0b7780c3acbc9e0a5bc3efc47f48f563ca Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..658d700c7a3cd2de359bf232b0d2cdda4efaaf59 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7dcc812ca9607e7de13b0b36d973fc5acbb07008 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8be89b420cab3a7427b0f1d4a2c3900c44057dfc Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9caa77ec2d05a6b347a12bb9cd0e99d314f70906 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ec35eb5ddff1bbaf2e067585c1a841ea4a028ef3 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8262fe411a10c1f3ec9a0f91eb2334d7f9114550 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..95ed4fb50bddc524312d09fd8ad56e5f0a85a293 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e4daa31a54f8b3f44bbe37b7a85173c30166d2c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9fa810db041f4474188ac5a71fe27cb4eefd9114 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e0e1581e9d62035d8dcb260cc419042e04dad3f5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a7b019c99f0323d334e8665ba9537a3f87ea306f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..718fa89f28709d2e98b369036bef910751f2338b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7dfce41f03e5c7b329e24a9b9c6aa860a783ca98 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd5ba8325cb24efa7adf6b4d4267cffc6087b838 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2688ce4cd3ca9398f37c1fb380b2a3de49a7bbdc Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f1037b14012cdfadb6e7c68be51045488f9f1d93 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..78e33f3cf0512634191532f5cad3fe36b037de83 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a5d7dfdaeccb4778a413e91f656960dd005cddf Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c36a9c2736cfad7f480f385a4e5010e0c91bb3ca Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e892439161291684930dcfd05ceb6544b621409 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08e9624dac1aeea9cdf0eb96cbd6fcf5b2b1b02a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..074afdfa5fcb84ef72cfaa3fdf164ad804975fe4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f1fb81e0731da5d818dc2c401cb3473b61e74714 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f659395cc13d16414c3aa91ec025b17404db12c5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..303ef07a0596749af63206e613895396e79c120e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..81e9203ed7f4a456e2207f50e9b77d41eb31bf06 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..400635295cf3552d695bba925d3b8a580a4ec33c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..351dcdfa84478d4787e9881d5a4e68729191949a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b4e8dc869a3d8baba0fbb7ac6464df9aca2e5767 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2822c40d66de045dcda4ee5beeef82229be07cca Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..69068deefa1341312563ef43369c44a9b8e04fe6 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c9eaa122fa7e33a60e08c5515cfc273bccf0cb07 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..718461da8be7db0396b092433ce9e1b630c9d7dd Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da8ec5461010431f8fa9192a7dcdd16202a5d010 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..652dad2e223a3cace23c2c8b4e29091a57e6a2ce Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e4097f95cdb7e00a85436f0b783511b8d38f9aad Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..865f9b18b516624156fcf1200fbbf6d92688546b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2819eb19da7550f35847c251db97081b19ac5604 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_num_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6feb0e24cb08566efb3aaac150e00c6116438a8e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..76b37100a1c5dbf91de46cc0ababc42b697afa27 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04febf3318995dca0895ce211acff9b1928ce664 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_polarity_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a242fc3928ef9cad7cc7a5415ba0d4536d2ec384 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..537c47400d5121117d3c7a6ef1c01eb6c6a1b37b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebc329c3d1464d6119eb1eaa1a738366373cbf02 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f4dd76499beb460c016a4f233ed6c1a521b8d79 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..52ab13ea3017ef1189f0a89f869c3a240bed9c5a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..832bf5b6850c52425c2a949171f2523d1bf5917b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f94254ec3a693564eca845a3e832494db8b94ebd Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..62e488d4effb50c09907a97673e8d3dc6faa3390 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f9a74244fc4caa1a7bc1d21992622247661b2dae Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a2ff1d09c652014ab7a591b703198c03df894f7e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..81ee77d0bd02f37ddddc47bf3a84eed712f72ebe Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a494eac95d08fb7152c8b125cc6d5f8d7871729d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa4d83d085dcf303e8cd043924437d6f0dd9cac4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..90e3bbabbdb039a91db59b9dbb9564d791d2873c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17e23dedc2468633a602ef05cc7138ea1e06f3b2 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3cdadda19872d2e196eb27643bd60e4a14562e7a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..072cbb71092d9acf205faab75a9653148002c695 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ec34a86ad210146a17c31e98aee252d90317fc3 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67dc1a7325204ce4f0219079b042c0a5f73884e1 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..695509d66eb81ad5cf94516b0e51205454d04328 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b3dd7c234bfef002811837d697988b48c2ade8be Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_word_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06c3a1791e662166289faaf8a45cce060fa26aeb Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7660bffbf66fadbf445cbd9b9aacd4012967c2a5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6614c3421fff18db041db00cbfb36205f4354609 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_baseline_word_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb8b16cd0b62be24677a29a6c059dc0dc11252fd Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d787589e547b7441984111c0f9d93a21cb665ebf Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1606b50918745146d3a74a19dcc2ce3100efe453 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c960e96284e9b6c7a620784d24df15268178a1c2 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7609716fdeff0b87c087ca3b26c5cc9cedbf3884 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64fd03a66d3637492c7d16e386d6d722c221fe12 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e24243286335b8ccf963578f3caa878e99cabf0a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..78eb8c81fabff385061820d0484e0e00756c405a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c0d396b243add239702412586ca33aeb41abb99 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b99afe94cf18cf7dc50fa82ea1d6a218f036d838 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6849f4af6cb0fffc6fa5ed57f333a428df9f22f8 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25a9dc2eb5453381c8e3c65ac2cef4808a981dc5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d42b47a7ddb370c40a78f1681caf53db4093998 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..68f35a185746301983ce927c2c65155978ffdab5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a93f059d15bb5e80ec2b2a12229806254c821333 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41398f459924844d4bc48c2fb328cde4c20c2b17 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21b03096bf6c464dc1d45b2b32e17a9cc3909076 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8e052dc94919a6f8d9c63d96383f3fb9fa8dfdd4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0757e59d978b479cf73b4061c9fed331392a55c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..656932e255921905693458ee026d74812c435cc1 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7958d5ae7c9757478fbc86161487f8908e39d75d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f78a57c331f283eed635d5b195f6b65c44fb634b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..72132994c2fe26c568f11a760a3740e3d7c52e12 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cf034f5ad5393d3389e6aa04a90e33dc3938bbd6 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..68d3551f7db799202550bc4104df2266920d7136 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..99596123939279bc0555ef7a1851f36d1d4235f2 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ec08c05dace90b9ed00cb472aa8c919d716c98cc Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0bfab0074a5f54700039a0036201add3b433e37d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7dcdc6d3db11b21351961e11cd794c8ae5976c04 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65b620eac50f0b2de466f94a9d812a9712f3f1b4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d77330dcb7ee31848fc1666be51d3b4fe61734a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f853c8084dc1c57cfd7110493c12666e2599f77 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..162df208ac2a93e9df9eb9efc560453c65245d68 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a7c58d3c7085e91be213d82c3f30c89323580658 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5355670b5acf77f138eb5e15f454d4e3a744f6c4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37194c1a7b4e6ade9821f98fa4cd6b65768d9a3b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7fb689d2a69655cf21940e2933f38f239e6c535c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d899fe637ae1b59d044e3cf991d50e36413d2f59 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f47e8e931e2f689b20833b3fef892a0c848c2c4a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3037727c049b8125c93cacc6dd668445da172b03 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0229ea698550dc38afc8444b0e87a3c205f84bd0 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e1a912388f3e9bc9d7a8ef9d1f7cdfa7d742f77a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b903844d1e2c3c73105537629625b7af51f8f97c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..847019abc3d3787fc75115defcfdcd224841776f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dab7f5767028b8539547898de00277926096ae4a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2081391a4e23b7c4a10f13fc465b53e68abc5b0d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..afa8c034fbf32d323b05bde7a983e85dd886bca2 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b2298592d558682acf55c42381b4aeb4ab489d2 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..de31b0d4570bc26b8b70592b74e96d4bd67267ed Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85bec05316ca4291ff2acf7a30d5789e7627c923 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4a8e61f315a5064a602a087ab0d61c91c30d4674 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..963841dd3f0e32bce316ac08ad516ef0f94726f9 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..47040bcfd76c24048faf7334838de6592297a08b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2f64f56eb031a887488d5c395042e6dc85958c96 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..91384f758072f277e1c46271ab8a7e1ac36bfb21 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6d031340a50b067e5e47420db625a9592550e02b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..889c767df325ddf94615eb24cabdc51cd875669b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..005799f45b114b19116e03a768ad8e5b2c3c2088 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d06b2332ba9713df5a1b8e5a96e620e13d543e2e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b20e45f960ece5c971765a70925c7aa7ad88996 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..788210e9af70186916dbb7b13d1289d375a75907 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f686a55ef361302a01e97ddb460593eb7e1b76e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8aff426605d3d4fb23f5388d5d70c356aa62e440 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82572a38c482d4eecb744a9201740c44ef393dc2 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f602d36a8404b204620d08a3709a3c1596f5e61f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad9e97e59666c6a82d7bd26d2e7848fec34f4097 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5190604d14ef9c93591da205a0b623a706773a7c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..20b8505bd0b5c7524ed21fad987f940147e91669 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..892ff6b32c2114ad39828de04bc82f869adb18c9 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9317a7b49a33dc5f3443ef972e47674fe9f9ccb8 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..879157baee869ad8d78da66700ecf5dd0d3ecf37 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32a999eaf3056fd1e6d29fe9a2dab3c7cbb22e2f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85fa4262a5cc109b79ae21a2e9cfb1f6e9bcc316 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98364a0deb542b64204034993070ecea58a47cb7 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ebfb86252358c04c43763fe8aba5bde3682dc4d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..edb49207050cac86fd171862986a081efc7531eb Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5c9adb46f57188450b150c337b066f157ed59436 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a4312aa6f8f66706eef9573f1b813bb7f4daffe Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b2a414a8b739d4f5b85c6462f3582579b2ff93f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e433cca0c6798ddc2f886ee469a8c05479fd972d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ccec3d4b871ec1a7a4c764d7bf667d734b900091 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3cc0ce4338ea487537a2730b17f6a1bec8cefd78 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e39af1cb0258167df1170643dd7d5e7b9903b53b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c27c34acf0ec5d5119b6954ca811337bb52e34ad Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a62ea2d645f4f4523ceec27f886a4ce246380550 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9130c6ce2c274a2ce1f750af8f5f84482d4feb17 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04d6befff05d653693ab928e99e8a249d4af99ff Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f13feb0a63b1a82951cc81e2682c723ff410b249 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4ba2ac3adbe101548d651ceeccc671cf35a1f791 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d617b7cbf7fdd2d643e4e5966fa6dd0fc8c50f6c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bd1bd52c40cd13a6978e4c4de68eb15318a244ab Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..004d16c3fbf2ec148ef6680d6db62555fe0e3596 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc76e8b07961299bfe040f794bd7f881aaeb0be4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37081c9c7898b91d9b1ce7e3d1e85626172e8657 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d32b330ac519099aa57283e1f0aff3d21454ff3f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..50d8ca861acd1564aba06f0eb4c01b5a15bcabe0 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2beda2e67a2a8ed08a2ce76b728535c5a0ab23ef Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd8b93bb0a0608cdd2144ba6c752662d7a2b170f Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9865de8288eaf60ab55f7d24cea9add774d39567 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e61b9c9188e5890965d85d171b78bdb92f2f6406 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d33efe6a45348b3cb1596034767a61a0d2083663 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17cd19d899a6dc157d3a39466deaefad6da2b936 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4cf38ae7e819090e35eb60a3d17c2a32f1d5af45 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0f814fcf92fca98d2d9b59fe23886d7b813feac0 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af2c43940770bcadecd723d333076e559a579595 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0a2fa6fd1e10cafbb502e28f42c35b2fbe07adc Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..534501d10968e98b6d5afd49af6468bbf4a881f4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..56d16dd3e9f59de2b6ac88bd73f43617a3369942 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6211736eddd05ef655e93ebf02c06cee10daab55 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..edd22c3c022c45c5061436305509886a63666a24 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b2389b07bfa6741363c30fa86e261552e963041e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..71f82f197e8e9eef014728e16d74fb88df8c542a Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7b62005cc31c66ca85dfaf8aa23faf1a8cdf6290 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea78a684a330dbbd1911d5f7814d74e14c86dc83 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ec40293bf0ed5666726d91a2a88a8e9801a2bdd5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cfdfdc538108de8cb7f70ba27031c808d0fc3a16 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6fc2926d94caf84a9fd9b2c0884e64026c95b1b9 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e130dc7dc29651ca4582ae8ac700aa8ea36f2f90 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..439c243d9dca874c94127992cefeef192a2e0886 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9a51aa489a1cbe7375167e8ca42a3702d9e1423b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c56cbd136e99370ecfc83d24792a1c7b295d360d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..507903ea050900216ecaad39c8c8f5f1c998bd78 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..654f0ab76b1901b6a04b04ea6d9befc90b081c72 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5b07502578ceb73ce3ae34f1e0fa4642d673a212 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3dcedc86889a50fa9b797c26de95f06a1c1c4776 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e283193c4726e776cb8456966b8a0ca42564e0e1 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8ceb67df02fdb5766eaddc121b6fb0d9352c1b4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..df10c3c2b2ad937020baf37083a981dfcc25087c Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e08cb1c6a61f7937aaf8e264b0555ffbd662621d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c90ffb337fed7fe532ac174118f2a7d856fb5caa Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f96755b9c0a56644eb4176f758bb8599f9b6519 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4bc996aa32b05b9bd9d7e33787129a6d08dff9dc Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35737120adfff2750674530f8513f0d01a1acf9e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..90a8ee6d6a4effffceccc244a509d20124223ae9 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0ee0b0fa2489447fbe4c3df267a353eaccb3d9c1 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e20940bee97b96c0c742fe6972fa6ebccae0c867 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f5a7de2a7d91cad872faa25b366262dd262ab09 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1439b708f8bfbfec62ffa6a9f649f38347165a21 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc840a14951a9df80b3135af108416dd87f1dfd1 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6a5937ddad035b4dbf98814daa3d92baa45b2b41 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c36e23d910c994ade42eaac897bba7a8dd0ff8f3 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f2ef98919e538badee510b2ed5f441868bc19e5 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..84d43b49017372046e92fec5a17eaca303bb02df Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..77cf460ad99359a99c4832346f56bcde63bda9c7 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..88711767a5c993453b9bf3f4b8c3a5d7a0c4ab6d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bc5406c5b75535d39d3f2993c713805ac80038c0 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc79c0655d4bf780954d59f458af01332c58e80d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9790223636fe728d17a53a94c25fcb601d027be3 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..051df4d987b1b049c7b5b9dd8627b45f6e16ce26 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a258469689191e7a6ef884ba6d453603e4045140 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..009183650387e4150193a8832511890b9e943ddf Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29dee9049f6d0eb55ca88ef6a583eb001840c90d Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3f45a8fa2276105c86340105ec7f17af26454ad7 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61d7e2a07bb5cd69c3f8b7bd19a4f7498fe76235 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fd1d10c2e5aba806297c08dd49e0bdeb1264adb7 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d6313ceecf918aa9cb8cff28a5467f1372a7072 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..525db8f17d2f17be9920538c99bf28b89e669ee4 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae06321b99ad7cd1e319da23c367b2bebbabec4e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8859b77f1f9294d64da260d1c22652a8308874ce Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..148cfbe8d53ca25b7ebdaafe1023fa756561ae1b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d8003843a1714e750fafcc1dd82c910594b49e24 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7553e03e8cb8de713632b81d0f870340a255415e Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d8d088ccbe97c801e021edb7fedd646669a462b Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4ee8da4fa62795122355aac8995358e1391a625 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b5b58645897c01db77a9e148d1153efdf38e3cd7 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..df0bba22b6a8b48aa2c7655bb8f6eff036e73f46 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8e461bc11f2c28dcd5c282c1d53df30f66a10422 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf differ diff --git a/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_only_false.pdf b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5da955954201bebd242edfe3ac5711eb67b57651 Binary files /dev/null and b/tex/figures/age/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..05d752b65ad1a5d675386427cde97e26e3778c7c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b374afef1128100e345009e475ef8a6cccef5a2c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cddadd771729dcaab37d49fa40352b673311eeb6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..baf20a98d3594948f8def64d6f8756666ee188b0 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25beebc619f5c1e1f4544170fd38633456ed8ad8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..240816c746d22343798e4e9e00afbeb12f9b4322 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f6df66b50508961d7366fb69a883ed578e10056 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..35a4228c29a4f617ab43dcb886a753f5c2da8bfd Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ac87641451810f410937e1c8411ec63c3593e4bb Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..47d1bf144388d9b4024680aeb93869d31508f5af Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8502a44bd5af0b27d1b395481d2b3ba4da93e1e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b0f177a2215c4aeb4f7c663c665704af8c4a372a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a5061b3a55bc30c47ea220dc13cd271bdfaa5d2 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0c72a276facc99b26cf9245b744d55f248acea47 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e6e48e5d15c3ddb568936092ed6119dc7c5ba8aa Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9fed5da20d583ba8ec449114a2e5e8371884d9b7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f1dc91b1acbaff0a1f841610750d163a475655f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..62183c0866beea98d354d163eb9208fe055d4bb6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..627bb6b3425458cbee75bf404c49ebed05c7bca9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..926529e9f5f0b8c6625e374063235d3413a545f4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0f7f0cf7bf3d094a8e6250730a197d14ec9d4797 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7f461a1a606548bf97910c9c060d833e73921396 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66060946fe26582bec515b349527f1bf6653ad23 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ab62d42534f22563223deebe7c2edd7118c517c2 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b68c644a317ce33ca65b7cd34187eb1db6ecb2db Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c67eaad2a0a6a24c68f344e95176803b98bf9c47 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4191626cae5aae3d6ae5990c0058a8ef6109d5a9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4920d38994c12c6fa81138f5b28252b5b8632390 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f7db89c2e2a39ba5da38ac9ae810be186d98efde Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..38c0c798728f6398a32d200675cf44b34d6266f9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f20105cfec177a8b80fc6a231d48b6a44ae4feb4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1081cd05ee4ea2e24e5e1197c4f964e7685f0924 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0552710739b96107333b800ab8c0ff0b818f33e1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5fc6463dea8bd8c0d8f6a2fcc4c0323eb2a26f76 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b2517575c56cdfa3364d5cb834dcc76ff856f09 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..05e3ff8512565d429bd40111b53b95bd1fd2d169 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aaabe945037a61046051816b039222bf3b1fc60f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9619c63af212672a923febe4350109fb764266cf Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4ae5914953e1c3b5abd0d835f599ef5c617d7f0b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3df03bec59e2a35c5301ed768618bc9945fddc64 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..30d56511cddaf3ec3d37e90549e94c3a317dd01c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..01a6da40e49ca00e6ec72e73d2dea7775b6989d3 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9509940f1664e3fb59eaafc3c8e2f4e58de5a972 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..18dabd2baf676b92b35e61faf6b4c6b7c396e640 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3bd58628a4783c1c39ebe2ed8913e28d78cb9565 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e2721bfa49e04290c0db18808dcb17f117318f46 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6416791c3bb8122a7f69189b71b2968a6e04180f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..17bc4208e92c3d68ecf7dbb6213cd2db64e243e3 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce279435a25f47c0b40b76eae6776df74309b620 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a8c6d48e7dafa892d45b428131c4eb4150c93d11 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64bbfc0b9f78af646814153444091fa6b640fe25 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..67c9a6b2cd9a7b45b410d61615ada4251dc06d5d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..804388a37535b138167c45807a85f2eb621dc99e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c0fe71f469f470ee1710c9631e0c2c820f633880 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ac627ada9aeab389d5076f99a55a53ab96fc70d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b2ce5b4932bea372cdb81a065aec05e2b6b0fc9c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc2d35b8ba197410eecc12426449052b3a868bf5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ac995c100efb4da3cb94736b078334a6fc20e11b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f6480871917445213c69629abb25d20874fc08f8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..28813322a1eb8100616ca5c0b900ff994cbc478f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..56ecf925244d95e36afa15ffc44d4481b245b3ab Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e610f7a547d1bdc3c9b97cda78d8b84baec2e529 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..71bb82e0f7cd3349c4dae97434b123d2ff25f97e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0599053e540004dc71228d9786f4e69b070aa716 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..306d804bc4c950a805435490f76983e768f46139 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..946a244434c680ddfc5519b86d58ad3753ca49d8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..103896738f0a8faa14b52ee3ac84609cdc446c7a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..34099b4ebd4bb91e393ea714f4a9ff9a7726ea28 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..70dfe33869fe2cefc4711d52127be1787c567e0b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f5edee47b1a6fcb98d48b558fd76bdc5f894959e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a53ad4fef97510a64e0e6c61ddf45cce147a2c4f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cc5c6c613574abffab823897aaab988ed78ed249 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f745a1a860aaeb49e46c95d02ec809b8a7176edb Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3e754da17dd666ce16c853c27833a59ac02d1ae7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..54a052540cd8697b443a63a91927c8db6b7d4ad5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9f7b3b3a6dea6c152a733a9b5356b94bb4bda68d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_num_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..001f21e38a07fa70468aaaa0a64b357f00926f1c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2f1d911f5315f58d1e941b3f7daaf2e31840a20a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef7571bae3053fff3424681f47911886ffb040c6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a901bc5b7d45fe654ea75c2562a52eaa4e0f1175 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_polarity_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..943c013a93545dd036f76c58605bc71417436298 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ec2ad5fe2a4cddcf34288596d57fefcf916e4e79 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..244ee6e6e2cd540cdf04f9c399a7ea910578491f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..38abe071743d0d2da3c37712a212dab8ae51a463 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0e2e766c3f18f2af23081e80e130097c8637b3f6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b548e461c210510a0fb4c7deb51ba4d4800e76ee Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8c57be641fc518c13281c756897479f8f7554f35 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ca4fd67c2629f3dc5da29b5f9b9b0e6cec4b97e5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..999bc654a6e74232297b6111b8b94c4ef987b262 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0acaaec0ce2b5b5b69160393a2ca012bb96438df Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..de9e4c735d6b1490db64e1d93fd4b36b1c224d7d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b012fc7d835a869d4d1df3e8de14a31f69627903 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..10d9e9a6b9dd0dc5e73503c6deb4ee70d3bc8d4e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7407b17759748a71603d5a91ed7b1789cd0c3ce7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aee8a6309cd96d8758b52d01e0184d0b9be73f51 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c2878efe83b34f30e416c07ec32cc97d30280683 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..23fa363bbffd3e5f70f240d4ee9e3e438c9d1fc1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c9fc009924dd9e370198d6561d424a0283be7abd Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e7a898a9a97b2ebf0613f20edc21a884d25e343c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d10c8a1e41cc6fad469cc741791f1d494711c9ee Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef71abdf49b6892097f4316e51969fde3eddcde2 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4f040c42300442781494df32bcd51d5aeb2e752d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc4f58a0b879a3e610518004953d1604fe58e68c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0f36d047a3d0e51bd643afff00f8f5b0ec9b48bb Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad8324bb174efc1828cd7a7adf5bcd6b8422933e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fd8e4bb0ce688c0807444dfa150809f1b76cac7f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0e5c2d6f19de6c0fa5361e5310ca286bd3176b14 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5a150de191e5bd3dc9407738ebc45eaf44f6cb1c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..50853ac7b486878017cd8eec5230ca5f4e386de7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1a246da1d87a96e4b1e20d0b57f690c075cb24e7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a3ef80d4e595d0620286b0b689e279f25ac7e00a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b2f5f6edc56103b80799021dd3e73172737c4292 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_baseline_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c38f53cb1f79f4c92a0310ee98dd33a38471d44d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3a3711c86fc1e773e7743a40b5857821bec78d0c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9c01522aea2e4283727e4848263e399148f7b7d9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e761d762a43cd538ef825c827da6d051bb465a7f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..18ca9ae65d19ca3a4b8795f70dfa80ba914c708d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f18e62cf3e3ecfaaaca0620e38caa14b6b6b3c99 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e90ca02bcc6697be1772193573675f00fcce8061 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..de878ca92cc473f079d90c5a32f6fe9c1c48a123 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..446b243e7d6851be93abf75a45854310c0f97791 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..18480b080a077267ac2b91678aa8cc983b1b2be6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7429035b48dea275b2a74a964ff47926e0eef1dc Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..99c31219788fbcc7669c62e0f7b4efa298cd3199 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a94f22c5b5fa0f88921d6503ccdf94d29e1d347e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0ee2032b49693d89e42e23559cc874a9a1debaf1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c714c9e9380897aa2aee09db370440a63ab781af Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a75c12f21afca430d34d67c92177a0358006e452 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..859ab70ff347b9926e9ff2788a3cffc078d34501 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4d7f6b728804a944bd00c7b38e789573a22921f9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aff88224fffe62b4e739fafb12ecfbc4bdbb4d9a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9c275ecfe38011d41e7023f2cf88e61de989adfd Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a062c989f607c41737340a7ee3560046ea921d8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9f02e62f561e396eb72e3d45e3bb0365e5b02a6d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b6526d074035445c3930fa67e08410e7ab11607 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d88306b9a55d3985ae2eba12eda8c7bd9d1464dd Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c5a73c3f5ec3834974b8745095c45cc2a5546a51 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2034270b149050240cebe0fb406e3c5671bb6f9b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8fbef067d01456c89620185d6c27166251ac629b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dc7760dfdabe5beab414bb8657fb27544bc5bcbd Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9532acec5cb94c63e584cfd0a9e36b8be98bdc8f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..961cc48feed1785bbf54de04a5641d83535c99e6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0464cae63b92756d47e88b2250280152f4156973 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9004822135f8a48c12f81d51195b1dde52dd8245 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27bbb438ee9423205f318af737d5405b4bac76b6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..29782fc6ec06f217ec6af6ca819a0360167b64c8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e43982052a891506718e3574e61eb38ae38eae89 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6611cf1a06f28591a9869cbcfc1bb94af0f20ec8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..862452baeb9822a4c660f96d9240405557faef80 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e3ec30a6b42cd1efdbe78129d71e62e7c9c265e9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..602d7708a0fa54c2c373901d9d1b82438bbd53c2 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd01d1cd79e32f77a94fa14429b8bbd1447cadf Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..209e3e5da9a7ecd1ed2392197c1569db23dc37e2 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cca971daf9171e5fe154c22775e07a3c2f7a4439 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c76926707052d79fc6e98c6b91f4003004513b41 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ac9a93c0142258511bb8992f386a369f0d12b8e7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c1a621049c20780bcf3650d5442b21cd2bbf193a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..bdaab85ddd77a34bd3654abe836fa0a80482aa7d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5492113f313a2909e13e269ef693a3cec46d0500 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9a9ec0712df4f48b2186743fc7b73d86107f2e27 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44eded994fd7280aae26980f6e03471f5edfbfa1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..293284179d5500894035451f3ebb78f49321903c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..435740cb6c06909d774c131aca11ea0abce5ead4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bd7c1dc0fcba3cc59c1146017cdfae14392601e0 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..75683ecde927958770fdae2201ae9c28e5d0eaf1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e5d0a9dc3b3afc4a2d168eeb2179be15ce203619 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..00499523198a4385d4ac22b51b244d186fbf08a4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fdddf1ef305c4c91a53d0256d5619d098974a0b5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ac9511e71491feb926297069a6442b76afb1b32 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..97cc0241e4eef93c38cc30e87a1e028395939628 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f4b94888e171d9c30db14b3a95b61ce4a6ffb008 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..64f07d7e5c155e0981af3906374e59f9832c316a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d03c06a569bce030c27972649854d3639277e63 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e6b8e0666cedeafdcd451521ea7a3171916e482a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..54315b0ecb7eccc28b396fb3436c6c63ee749ebc Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0233c5e2c458134ae7fb8bccb550c4df2555a939 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f4517e0cecd139469d71720ee67504d3fc6630e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3aee0d6698709cf4ce13de27e2912ffb54240b52 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1516e4eef0a671e55c3253dd8e33a5cc67450438 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c702dcf549d2bc32977cdd95bd28ad05ba16641f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8917e1407de83ca234f33947b864a6997a3a534e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd8538593a0769905b0d8050aa434aa54c9640f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..57322ae11dd2f1c69c082a9c61130d7169998c9f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..da315db491edf5fd14884d4d9c16b5d94a974963 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98993ee60d01ce7f372935b9122cdff09cc90e67 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5b75cb47990d89454cfd3a531cb49aa14eb79958 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..859f1dc97c1a701cc700e717628be4c7e29965e0 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..946d5adb4c4fcf5cd88242d8aa2df7d1383b51b4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e99a8feb5a4c37885aa7d9f595f59ca58eee2df9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3b1a65300f83720862d482f1b9a2267215608359 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d9f7c014e088e887b5efbc5f5733d3e3867f852f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fd649e2bc3d3d6e5932f0de5b5e33e593687c3fa Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..14b6c28de71bff172aab4d526c4358d1ed81a81c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f4de99cfdf5f3622341d0a3f9ffab1bf80028e03 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e38dc9288828f5719971778a9d9ed9d71ffa3cf Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dc690461768396a0c79bc8fa2f13d21f0b3d3673 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb0ef27724beb307629d6daf469941b4bfdf0057 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e9cbd9a9340c53f66af0cffc05476cbf50c3d36e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9a397fc07cb4e1f188a929fa5079b0bfc26774f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b0b3c7af4785e1a46474aaed3ec6875f8009cd28 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d2f03b65c0b960585ac549d89dc7317db4bb5d45 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1d39cd7268c955860192706b7fb04a1889c4b094 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..52c24fd95b249ccffbb594ac7283780b9043b276 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b90db1e5c57936f0b48112d58b20161409731f45 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d4478735d4e94fa27e70eace4031d50c08bda079 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7563bbf5a0efc275a17768747311d8272fdea010 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c7564ae1512a78ca0fd310c54163300eacb607a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..43308189945fd86824b024100ca2060f72f825fb Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..912f2bb6582e8f8e9ef69c1f0297c5f7c33d6067 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..8e739e09c120c879b8990a7682019c700ca5532f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dfd3485b0d12478c6d8db23866effcbeb36b6202 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d6a85a93d8f7c623c0d99b820c776137ac753814 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff34e3871f8d6d9ac9b125887acf00fc4c88c733 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..08519a85dab07c20c10a7eb5a86505509602c655 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b7e0a8ddaa1d3ac3b23eeebaf3badcffd08ef37d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..edb5b5e19248b049078c027aba37c92aa1501ee8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..959133eba19a5b5b081f52ade6c2609ba273725b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2fbe39c4bb9d3c484c26a61439f193f9a135baa0 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f6305133a0573f59a28e93b22cb8b1c4dda6af41 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f84237b278210d1a50daa2c0f3f3fa500b08ee9e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..064ffa6d8e4a6ba0a2e976feb6060d256b6f2f24 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..746e329f7a7a8a91ecb95a6d6a5d392e98a0456a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ecfe83b8f848186e7c5f36d5ec0e1e83e015cdf Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c659cb0bcaff6f8acba9b2333ffb0c966e43e7dd Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..411b20443406e1306d7dea72fcccc3f64dd473d0 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5018e448a514fd6cf6957e8daa7e63e3f4409c8c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..afa0270f2afa58167515cde697c723aaa155080f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b9ca5f613dd577d17b9e518491d4d2876db0b798 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb76acd48b8e49db0175e75c1848cb0701a42024 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..758ff7b4e326fe1a67df54db81c58bbddab41602 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..70487e1a6aaab4387bdaa93d8d0214010f89458c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0f37935af7248323198ea03dc499ac638d19983c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e5acd1ea1ba5df1ea5e895fbe57bacc0c4b4e33e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9eeb54436db17b383af50999083c2f2ac4ad8a3a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb5b5db31b5d278e5673749c7dc8e693d272adb9 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dd130641a59b28cc613cd8890bcb084fe283e58d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c2977b737d3dfae34115cfe399d9ba7e06c067a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2df83afc0d6b494e8b85a39e5c113ce1cfce6da6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9cc5e20ca3cc55c52a492c30d92b4751467f926f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e323da8413b14065d83a08efd2aa4d381ae87eaa Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6654814cc38d93f8b8c982dd31452dd02e4d1b17 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb51da50d4f9485fe95adb6f25d9ae706eeedfb Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af0f142938cc634a9f65db94f3d31dc734bf6d8e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3a57fcd79044235a8cef0000f1de7e89af0235a5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e86a1f0654a2f4349e3268933b6fc113b546070 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e07263a8d9a066fbf34a2d3f98819928ffaf13c6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4873746c3de90525d85c2fd116a5a0e7c108b2b4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c727fbf7fb17022db8639c3c93cbd3d73e9adc26 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c493aca4e7445c53fe2d2ea94846ba34889aab8b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..aaec15fae371d8d483ed864568f6a11a64d570bc Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cc5d795706c072daae584f163648a61810212a4f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..749864299249c13e42844312a4c97357b1100aa0 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5c87ba715b5a9a1810ad25fc4c17e88e1763b66c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..467294f07b7a2a564707579ad5bacf3067193fe3 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8b6f791ec68c14e2779dcadb39268479e59c76e1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b283958fe85696a3ce50e4c5034af20087d099f5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a77d929aa85e4df69a3015f00de9b3adfa561ec Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..487ad9bc7323ead4b0086f89a1fb31ce1e4e9149 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f4895a9a17a33687faa573693d8e62aa01261b1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc775464af0afca7590a8508608204f7c9c000b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..598b36b9692f8bb51ffec75cb93202621a041468 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b1f3e41943a4de8afebfaddfdc62dd9ca1ac1a99 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..181af591f21d0573081897db63b8b7be8e029109 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2898bd03b578887fb057aec3e5b7a0c0a0cf55b3 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b39f6ca1e171836b12171f400138f682d0ab6deb Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d8e8b623662cd1933baa8a9eeb3a09ce1343c425 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0ae4ca2371a4b789b2f62e4b62b24a3b9151a58 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a73e69b6b03b288ef6577fa6a55fd815ab5dc6e6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40af78af99e8b046bf50bb227ab357874aea0fb5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..811e967e4e93d7308effb45d7d58762989aab651 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..007389cfe4d87c31b1483b936c1a12251d63032c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9d0a2296713b6b935fecd14cc5a00fc9b9308f8c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f2994b84e9ffef40dbd3810cbe77192a7eafe5c5 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e1d6687f1d862d1264ec768d062cc367bc158d17 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..99a559eda0911b60e032497fb2957b7cdd87b4c4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..796c13606e4a86c0490755dcf51d8db79bbc14f6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e7fba92b712588124277de2538521c38877d7d5f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..385e8deb040deb841dad763544f791da6170ac4e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0ad8a2ccf8bae2c6adc1afddee955d7929098e89 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..41488aeb5a642942d75bf69a0fb6186b2ca1de25 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7cbb309c1b147349fe93994ca1168058f8a06876 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ff6698ef7f7edb6cfec75090d3e227757da2f43d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..72eb4f1eddc793a761153808145d7dbcda0a0c2c Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..efbab0b85f60c57f5020c5101d37997f1a432dba Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f9c4f0ac04f68431fcff4f34745ccbd0bedb06f8 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6318830325c810e6081bfafe7dde7d5492e73902 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1184ac44575dbf40ea1c85fc1fc730808cc74afc Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4e2a609ba1a43027c9a153fb34e586e7b306924b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9769d6de5f7a75423cd3ef22f09aefc82538d628 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..638250d592fd99177fa7855ca46a11d18ef46736 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..94e1d9748db5e655e8b351ad3cefa67c2d63d0a0 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a05b84bfd24ab4600c5ec4e1de16916afaebe05f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..96a81bcd3c5e6fcd4a401388811ed413f5218e2f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0011a1c7c7c76258a2f51aad482d37e99a6d8744 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..903b1649bf0d77cd5f2f1acf24900b3b2295db17 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..abfd49ee3f66a34790f0bdaef51e57166a20e950 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92da4d17835e40c464a081e25bbc6f0c4de56a9a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4444daee7e364578a0153cd107d6144a30c12ac4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..073757f196b0e87ddea2f34dcc40254318601500 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d88076648146de855cef68212ddf33ed30d27905 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64e373fc4807eceef2c0ffaffa5609bae2e4fcc3 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3640112354acc98f99cfbff3980ab4af759547d1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bf5ab200962b87b5fb64abd77a1f91c5e46df1e6 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ed5054c3f795e5efb270c9bb88458104f396f62e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e3935817641a071cd36ecad157172a728eb33ca1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fc7f4842ff3da0dc241695289899579c9e5374d1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a3bc954d75f6f404089138c118a4350be39e230a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2fbecce2461fefb7cafc675c2d140133adb1afba Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1bf11d43c685bba494bf7c4eec589ebd405a2d70 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7d8e9a38a3394e985a29bc5faca481494a1a7b2f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb02a5a895a814eacd4e8470938b91b1968a432e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e6385248dea2480523086d67deeb6d748f7f804d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3d2e0deea07df222168db0aba40177ebefe5286b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5bea36c6aab1bb5be6c4437c8fd265838bacecbb Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e4c1f43148ff9c0613454914f765df64a9da1d7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..72db197a72084ab110fa56c2907f10c2fd74b0dc Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b5833b8758c7dfda40977ecd3aa634d789e30e3 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ca40978a371dc4b9f0ff42546e1dc3a734c29e34 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f10b18595ab95cfe01a7037147ba3be975d5722b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cd722a532d453cd2a5eedc8f44bd0b9dbc94d1ac Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9c5c352cbd8758b6f26499e8e1cf678d3f9a0254 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..19b5e8d5a54d9fdf4489988674470b4bb90fbcb1 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b859058a752864003ef33ad7955008730fc26c68 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5c160254c94b372f80fb1f432aa00a3544a7a1c4 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a9f63a17f400f9438eee4ac3883216fa34c39606 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1ac06751841d3129dd35c7ee11a7e1818dbdcfef Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2819939f40604f00e8dced334acab0c8cb0b3a7a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c8cd3a623cf063ae56951c81138d58fe3e8d7a3e Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eded674035a36bc632931eee734ceb064a529d75 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1d4237ab6edd1e7272ea60962c5187d6e8cd65f7 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5d1f0cf17d82e1034bd545a49998c6337eb8ef1a Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e733d9b3d88f6924f733fcc8decbd724b287d31f Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..50d98452d294a063766cfafeeed3be2fce3d0c2d Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f2c1f33b1aa8881d0352bab008f21d05a3a86c46 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.png differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f2008583c5ab89f8477cc05e0a1668ea9e6ef69b Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf differ diff --git a/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f3c9d22edf32342e775eff0fddec938d71e53e38 Binary files /dev/null and b/tex/figures/age/100/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b91da2085e7d71ebfa34541946c3e391c44992f6 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0fda91da082accd9fc77bfc582e08aba8ba3f5fb Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..19d2e0effe13cc88833dd6cda53b378b9b188fc5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bc42a759bafa4ae490374579a3249de6c4a969c5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..73263c1d238fac34abfc3f8cc27958a3175176b4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..171bd1e25631db67d03c11dbfe9541cd587fc7e7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..58e80c51333498f2066fcf968b6e084dbec482b4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e77793e12e7200885e5d9909519842b80d739f76 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4eea7343172bf534164343a24bdd1a5f6eb2f7bd Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d77695fbcfb54b1c8d15752407320a799502f64e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08bc2d84a414b09de3744b2528993b09b78e7a1d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..aa9426b736dc0d06c8a575961131bb160f07dd41 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f58538ba033592771755e5046d9dcba9e3f140ad Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7a18b22bc81b41b700f20f362b28638cc9de0ffa Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..90636c6e35d781f3015a0b29e6e2f50ee36bfc40 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..471f59a0ffe4dfd6ce8f66f5691099b7c2c44b84 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f7ebf1322b7497a8004c39cd93266224fe304dc Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..83ac3233ed2883eff51da5ece41b4baa72bc43ee Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0c08dd97be125f91adc1246a82a3448ffd9a8b22 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4279b21089c1196a3ccf5f0714ded9abd286755d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e80c770339274732385086abea454ca0221f4306 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ad19055664f70958ed0a581eed38f8a1580714b0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e2e727c78f66ffa921bd09af193cdd376338f17 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..66bc5ba7241a06ca665823ba3d6fb2758aa98fbc Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b4fcc4e79a275b4a28096a792a42710b36778b33 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cafe2bb2bcf99686ccf881e0a2636dee7181e037 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a322da4a9b6bd749b4d5264a7978605b3811a8f1 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0832e00615c9053b0e8bba713ba3866b01f1a777 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0a71d9ad9d992f7aa3b6cb0a0d15c3db15dd7c0a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..baefb293cbfc1a6c2446a746d0cfb4d4093c028e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9ef023053de2b8ce75f1b82fbf96e824475a5cbc Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..406b4734046cd7b07261a479e0bf4f6ea96878e5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..708bba7db1c2f1e4b52876bc256d6512a9514561 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9885c759e69f6dbee70890101407a598e300f2ab Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5550d2fd5b2ef1697f25d73d04d50de2d1daa8af Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..66cda43054d93a3c15026d723daf2780ccde84d4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..54413e01657f34000d87033cd4f26869199bd3fd Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9a912fdbb35de26c9edb3d4aafe3489f5603c098 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f9f59df3a46b76b87261f5e49ef6f603f9c0d43 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e9051b5fd53434263daead55458836c4c7dee79c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37378a34e77a50c6600ee156df5e880ce65c80b9 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..647ccc2db2734b2d70ae303ff02d639da8fe0e25 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..86bf87ab79facbb8d0fe961d349aecb49edfed6e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cf04b683801d568faf44310548aa5cac62062240 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4283f99e4daa3c97137d69e408951d51fac816aa Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fc794745c4d2c69c54862b7b571f15d0050b9444 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e7504d64f186ddc305c99184f3b42425c619294e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c0163d756f47185af4db9a0ee0b108aed6b8c987 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..09bcc4af1b4cae1ed9b19da4423c535194a2823b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..44afd65485d4c4407dafc5884bea099083f90569 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c4b358c0b0be235eb54ac9af2f73dc9b36d31ce Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b319c3eac76d0a554e11269b017a65129147ae65 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..56c9af14f7545e9efbdb6045e7460c54689290ab Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a32a7f695f1cc0a7ed3f67b1ec73b304f3f56e97 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a86bfa2aff3918be740a87d29c14155f3ccb328f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b9a049d1f95dbd119b7a60aaea7acb26ccebbbad Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cb5b086e9c77bb36212efffca882b0533c3362d5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3d41fc04595a34be949f3f53acfe8bc8c027abb5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9bb66546d038bc01aa4f245cc8789f27da2318ce Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bdc2a479e17f29eb3f7705ea40dc1b476268b213 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1240fa90d33e45422aebec8521e87caa137510e0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a818ccb9ef50579a59b9a084f1e96c6a02fc5d36 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c750bcf373e4636ab1bf67be6d38382674538079 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d6112c0b766839fffe901e83a393dff43abc4a17 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a36b043fb61a9e471ec65fa0275274c79dd9dbc9 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d87f91bfe6058d13a003657f7429d88e53a2b160 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6d54eeaa67fe2a4d767ec6abedc65f2c37e7b046 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cca8ed17cb7e4e871ab5ca573d8252766aceb345 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d4d30b80fafa22d630fa713c5bd505a4ecb7707c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4721f9411aa9e7ce811246c8e176a81bcb460843 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..49de0c679fa367dbf27a8de75b51b15d6ac0c333 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4907bbabd233a714eabec77aa9c348e7896dec9e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c36936069a982ac55d9b1dd2d5d9f454e56fcc2b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d1b943d67b8059f64f6a56033c481cf9762ae5f0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..986f15fadc71cf751226379963667db2c0d7f1a4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fb87d73ca7e53c4efbdab7233ca59bab22907e9a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_num_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..229108be299fdda0e1567af9b28e2619c060a429 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3c05ba8f6a167712531555a78921d1623b662f3b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a90289802bb30f28359d6a35f4e2386fb98df97e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4e7820d56091988a9e13fdcc29ba8737f09bbe8a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_polarity_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cdc071fa61d5902bfebed1a2695a18bbf24fae23 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..18df684daa91c378332a7aed84586451aceb399d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c12f16cb340e9e2aee88526969555e481b74c933 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3104996cef26314379f5c161b44e073a76a7c75f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c21ce616b52db1df595f87542c0c2d60f44664b7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b8bde627301a31604d05268e70fc105253203ccb Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b59fbf4ef6814abf6150489c87248dd4345a560 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9f61c7231bbad0b8230b1bae2f84e245ff479db0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..433a4085801407bb4eb49c962402dd47507b16ca Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d4b37b30d9fb2ee21045b53dda9e81cf57b4819d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b5ffbde1e1ff69db701930db14aa591e7cedef6 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6067c1e0a56f27ef53c7f607d754df124fd66c74 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd0ae0279e2f19d0bd90bb0d03904a748acf78ea Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..792984c4bc6487721c9438ed5f738f40bfc62b12 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9766445e40b0c8130fa008d52f64e6261c3ef7f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f89d9f0f109e803a1a515bd876dfa6b05d671e81 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..096f69159940c638598c920e2efbea7459e77f73 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..000d185e065ab7b5a4c40eb4665f2965b27a4dbf Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..000c6247bc3a7d0f1381b84c5fe979a1fa96467f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4514e7fcec29284d7a3c0fee1c5e9cedf7e4a916 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c05e081c8b488b74b0e8f624667903244a15fb67 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ea7ec4c8feba069582b7512ac51ef38079c9d656 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3d9882d5308b8c05a24eec8397e820bda47c968 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3619516b2cc68988060a7f6827a0f7b2dd9398e8 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f1ec197ecc1cb8600e1c14371786d376f66dfc80 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9de73927b9e46388f6074f5875ae3f494e972a3d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef02b2a8f8be2c1a2d78684e07c7dce5d075fe62 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b55e3c3ecd39a9068f432ebda891abb8b7fd1600 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..93158c49207724023fd35c9a29762812e7004e97 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..764a4b51442e93b350ee2d8bee0dcdeb9604c5c3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..05ce0ade492a6da0f5c863c0687d6dac526dc390 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..24015247391fb9725706ec75121f066dc081ff66 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_baseline_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..257c6a7001e5098b9fe65e9a0ad772aa23729625 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9a469c2db2172549018aae71514b65679cb7eb90 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0874aa65b538b60af7fc3920bb718e9e77e98a0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f78f705d5da93e597967c9f1fac09b20de2e73da Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a06e8ce41952047329f351fbf33e143d64e19ca Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..443d76da89d0e707389c36816f3fe6f387b945df Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..42cefe170b9e486db39cd9fc558b44e6e2fd67f4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..779982019fe4830365d0e3c6d5c854bd2d50cd8f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1795a4eb0cb979062d47c94701d772ec663477f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..191cd20d290e0182b7253880db50e8e3f0b407e5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d1d45226dca39901851219d5ecf5c794d317540 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..95467f4a27b2e6beaf8fca757b990cd24e7f24fc Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5f998a9b426ae52f239a0d776a6a112885bda9e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..dce585510d1191498da6395493f3e2c55259d5ce Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9035d1bc657c52e6f9a6f1f757ad00f075e1d37d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6a1e8e1b4061fbb9f36614f0290461beaf085274 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b8591b6adb705efbab744f00227dbc0beeafdb7b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..99f531a7c4d00595c15a7fb8b6933fcbc85918ce Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e853803412a8e526db276fb590e32ffabf1fb728 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8902f7e10bfc4f7cfdcdb203bcd502909ff1260b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..18c0fb495e9ba89a852102857dbf8d06e598a945 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..04c3e96cafc0f9c38b8e4247fbedde8e88450f82 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40c2674a957ad4321a417ea96435b7d67801b49d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d705cc62b6fb36ca5e77293c6d2618fb7e5d490b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2886d51417bedc988d229edf4cf4eb7c8d682110 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..52d63dafe2a60afe1375d480f80501bff227123b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..920f4cb8bf91613d56122e2ec852d2516b4da80d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..53bee9695470462381c18d6a800c1d83bf3f7a64 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dfc3ce1158af8279f8e198f522f8e736a44a9465 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..30774b659cc5eb22d6efa2baa1ba8fbb442f5b64 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5226946f93a0a718e1ee7afdfc160ace59803277 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..556c766d5fc4c4eef667e487ef55a3ef58cfe02d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea3be5bb32a1f8cb917b7635a5157d7b5915c6c6 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3013f03aad6c4bcb6b42de49bb2c1ca6b76e5d4c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3b9632fa60fa056391c469524f5cc97ae32e7fb Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a4ac4ad09e7d9907d36507d04c0156c7d8acb5ba Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a5120ff4831d729b2c8cc6a58650b7e9fced5e4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..52e51b6f76cbd2c8013c47ff9137fbf7071a6e7b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3089ce2f6e20502d0ace6e8579ca52fc50a14e3c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2e7e532c8a1e9acb6ec164e7bdb2018bd1fb1561 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..450f18b62ac2c7c58519760249c4da222d502ac3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0205d92cc7ebef4d08ef00de2131fbc1abaa4d07 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d42191c7d864432323681fe1af2b5d0cc97fa40 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b7fd4048fa5d01f0ac90a2c958cbd2d203b234f0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d41e782177ffc9224e2a04d011c5ddf9a04ff8e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..14581b62041503dea65dfbe0955a9e3b8f6ecb1f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..62eea7259ea5d5d345569cfda442b83516b6dd32 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8953de4271eb86fc72c9f112dd2802ced7cf784d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f2fdb9a2db390cbbc18242e9fc109ab316ac48d1 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3ddffbf2b942441bef3966c4ecf9ec1dd0d910ec Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3cbbeb26430c14fdc9d81741698b3a7d8a7e9bc0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e39b7e00a7f9887ceb3286e1ca42667554a1f257 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1cb08653a221c37b00f4d5a5379aac028a05fe03 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b21335e902749f4d6f4eee4c4c221d507e55178f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..20114af47021a0b931afeea4b2042cabc1bb9c4e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..306b293c71f805ec3f1288bf85287bf095bfc9a6 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e6ad5201d665cf5205e675a0b8ba2027c7f7ba85 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7fd0986344c31f9ac5de098896d1f3dfd7856848 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4ed1ffd7fa784d33db7cad6d13c90cf2162b6847 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cf4e53cae8b7fdf87263f7abcc5669741c81ede9 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..207667da5b1117fff947c13905a664e71b24da46 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..50d92383fa60957b3e1911b33c55cb4a03e09649 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cf6f911d6387862830c63b902a50633fc58253fd Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..37a364356b8796e4929ae3a1139302b2a88a326b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..57786656073904f5ef860210e5de2d1bb3cd758f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d47d389091f1c8153a0c98585cc13a5cf992f998 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24614765e227dc870087b1fb85864a4389ad7d66 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..123e1180cd27000e7ffe33a1075e4cd6dd6f5050 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..472f4edf97d53d8adc938c5b8665c91e35678f14 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..592f597a93d5cf8cbf37c377fbaa021f3eeebd26 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c9f72404968e583d3f65ff2b395d079e60e64b91 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e5fc410259ec94a9b954bd06e8cd6388c8b77292 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e80fa07b4c33fce353ef2c3f8376063ae5ee69a5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..208d94684971cf0f70eb64cef41204d4de1277c7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d0ebc42c0ab546153e3165146d73fa3e9fd3f40 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..aeda1eb51da543ac5ee351238b4a3d025037309b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b93eacd5493ecd18bc8907596e09e4cc9302c26 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4ac74dab8f27fb1bda164e5e0100ea564be7520d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..979b7242463c11cffc8535a1de91579730fc2006 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9c915bf5e2d8b950665f9735dc5880b7ee600a26 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cda188a2126169d7f31b6dd7a98861e86fd0bbd7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..617b91343620f042da731db9c60f8d316295fde6 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7c43f79ce21b2d0e942d3481eab17e626b78d185 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a49292d059b01e24d72258cb9ff3035e483173e6 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a737e896b89f7f728cc83ff5bf33c44650f437e5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..85337b5e502f958c1663ff5f36b95336d11daf3c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c51ba871d2db753e8f79242a0c2d1a00b0151d5e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..aa048a7ad0f78084da0799fa4c4828ee7f2c319e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8bda997944a244d6d8425cab8df7041cf07012c8 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..334a85f65f730d1e16805716985a71e7e42b78af Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5e7c3d0fb49feb35060262997934965955d73c5a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7b35f62d8221d5780fe29cbc529cf236a1a11d23 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d1e3efa2facd9caeee7115b2eefc0c70a944037e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9678fecd2f8bc2723bf096643ec324fb046839a4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..09ce988e6b8829d1d22ccdc003a6d82a9cf215af Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..98e6b72cad803f23aaab394b36bfe962b19d3c49 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e20404b1a8ed223cc227538b15c7ee98e99f07d3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b483e3ea6deba7f502dd119a3e0fac698d3431a2 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ecb3683971a330226978e9a3ccde1b09c9118561 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8c5cc5eaac2f00d3c172051464a6253dbd158939 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..11b6ecdf5f7cbc62b5571fe453cd62a60dbd6c6e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d0159933b11a0c0cb7bef5dd5547f4a83725daa6 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..33565d2f4f18c0f558e9d5ebd951c27b903c30c3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f840bb439a4a5a303001c2187324b5f763e5e810 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..991ad2fda3dfbc722571d34b8434a3786ffbfd25 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ef6b69e81f39d56d783fd12fd5e57ca1295759f9 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8278aaa2471994c68df8d1c66ed87f87bd84d662 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4785f9746baf0ba4fa7cf1dbb6ba04f1aaba059b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67497f7ef0627c0485a42e913ab81dffb90a12a0 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ea9f9e4ee8bf0518d5ae2e05b3ffa9ec4d845c00 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..989075fdb780029399eb72addba1df7b0d62e59d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20e814c073b118d4767ffe8fbff5dfcc8db7f30a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a66a23897387744f1ea31e83c1cfc692fb2de27 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e7dda12587068ea564ddb9bc341a1d7fa197117a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29827e36008153c2bb3f58dceb7e7c1399d385af Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f34c43881d043e32fcb2b7abda25490f5359fbf7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b3ed9a0aab90c6a2dcb87e4eb56c8a339679ffab Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2e0c3f8a43767c8e8788e3f612bb898551dc954a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6d0d4c0015acbe66bb8a99aaae198c2e7c5dc49e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b2e4170c7e41ddccb5287bba7f85e0a0a377f0ca Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c8205dba5b316aef2b5c6cf7e2751d772673dfb Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cdd3dd078f607f52fec6ec45937ea9df11374176 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..12ee24f80781b69f957c509f36ef49b21c18c5e7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..53ed16daacb6998a9f3eeb2f984d1f5702ea2081 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c39050b78673e27103b8c7cc4014c37ed94ed445 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..89a927dc501e6895cbb56718a311bc02157712a4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..14487e27f4e2bc06564453b7df959a251066a108 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0feda040735c71f46fcaa3c04a71d838095e9f92 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..22aaec48357dbf9bd3eccbcc6f8723fc2c06cba1 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6c6ffe779b2c5a3fb8023087b6af1f4ebec679f3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e780668e30b993c6c1159a13edb97d64df690d4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..258e9efa7d93126e4300a4f779137e48cc06d7b2 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..034d9e3baceb73a0489499c42d25a3e7e601c327 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..692bf2249269756956c2ff1165877cfb8ad8eb81 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d319dec4656a72d856f7d67bdc914cb04f596b54 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1f70386eb1564865a0817d375d0b58d502b71f5c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8392c71b7000af7f5884fc78bccbb52449dbeb2c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9dd0a5bb8648e6b1a282ace5af46060d3e262012 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..68d5f3733a9ae5f98a9030c597cd41dbc48d7a33 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6d64d8707ab7e93300250eb908bf86a577d3bb45 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bbe4d179f2b5ccbca76ff5f258a92374df019108 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e19065c024a89c4b1da16c52fcb9ca885dd56cc4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba449f23eba9a0d2f9bff1bf9f98cb64a0d0b982 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7553345eccf5efb946b843a9eca6097ca84e21d3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43941ecb6775f58e2d9e11984ca510af5e76b011 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ff35b28f6574520bd2b1cd7566461cf665259b7f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cfac7025e68ae9dcf9c9239bf450cabe2e8828e1 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a1fda1ce0320e72b232c88e586304e74ab80f532 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..633a90f71d41645a67ff3afae3e7de04358d97a9 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6f7ccb573f4c932d498c25983fdbcab3b4423fb3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9c1ba342b985ad2c48cf0f45bd726a206d894dd9 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6608531166fa2b798878d334a563a5208c73eb3a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c166ce72b03ed556352975461aa47443c65d383 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ac5ead4919aabe0f218081dc1810151243196403 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..34c3323d448c1ce9883d45025175af0833bba6de Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..766e8e0251f7df3a7f822af838a0a4cf7d6925e3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35449e7ca1c2cda203630c41a754ef6e7f4ed83d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e1310e58c6a7451f57c739d19768f285c2efaff2 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce43670c7bb21f9f0045f8ac9d8147ee75dce268 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..34278b84afad99e57ae4ad02ff9649866c9833ec Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a53f7bf7647c536dc4ac8244b417f8be3526ecc5 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4fc83055e89388366b3f466ab04b2b4e7a35fd00 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce29c9cf314123254e2b8de7e888ff427246ed4d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bd92d882050a8bd96795062389432f996340d7ca Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..60d23657dd1bcd76822711d7be5767559d9759e8 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f9006630b5b4e38ff12218468572cbc546ee458f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6d4e93d926e001ae70386b31691421386f2f0f64 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..69c64aaad36666288ff2772d738ae70959bf75de Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2ea02f6a42c972f3b6199d375673aac187716ddf Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a135233389798b082bf4c0518a6ba2602f578505 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7157294c8c53a1c367cc8b5e85cca84e9d42c091 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..89edac57806a747ad297a1e8cb0a3b50b7a4dc24 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c76c8bb5fbfdbb022e211a5d23762c2a69a9b0bb Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..492a129de92e3b5e6aacf9c9404965c989efc060 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d1ecffaef0d1fe54c65a71e94b44c26699398d75 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0888d30d5a6a0d2b42deeefb229d20cf6b4377b2 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb7a4ab7dd57d7d2cc3dfef31ed2580204d91ffc Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..01c2a47f487365e6c3ec6601f3ead1b04135a1ef Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e6394766bac081a5f0057f9d7c798809cda1ce49 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c2c843dd1dc8f37315360c7acef6e19aa21be747 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d59abbf9bf3324246eab2e436344d3a1637b2cc Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7aac910e20a51e97d95cd2ee74553abb87f83cea Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..325cfcc4518f39005a7a369f37f1d0f9e2a48b43 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..adcf11251dd318a4be40d7623bfa83a7974d2c61 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..31ec975a97cd9b21d87dee0ac95ecda9db438a69 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..40c651442f11cfd3d6d6c8a892117646557ab049 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..170266847ffacea84aeda9068c35bcc1b01611e3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..aca62714fad2e6fab5c1c41e572ee0a72b807e4f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b613f04e59db102a7f3c299467ab717c9d38f2ad Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d296522d6771c424eb2b603ce209c49eff32e611 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..648c1eb7f74f477649724d119bff782b397b7266 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7dd23830858243c3739e7c8605fe830df316d854 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9ddeb17c95f1c116551ec65666b4b73165ae26f3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fe2c07922f445a378bd90ad2cc901e59fe05506a Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d0c09513e95c10c772da45f1d4b22b768e90479 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1f6132eb140b7cca3d19eddcb743e751a5cf407e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9520e90d73e63b3f37863d68cc720d9fc3ee2e15 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..8973a0e813512582d6e3424bcf1094d525ddba82 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..70523668cfff1b919c32ad1c4c6cdbad45dfbdf7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0ef50050852489c99dbf2d0888ab5aa72162b235 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3f5f55352042aac33ed6656de1e2bcfe4d95840c Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..87a6fe9e3e8834de4816405283d66dc1d3810118 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f8e7ef189bd67d805f9d5b4b7162fa39d175b8a8 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..42586ecd71d748a4a4ea169b432f2923d3bd453b Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e2bf476c5a2cdfe49c405783586001025e6844a7 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a97839a03b8268d0685320de1f54a2f480754fdc Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08a1d0b79417e1185e41cc2368c2ce1cfc3136bd Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..79000bb462e3eaadded4b90749280828735e4beb Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..23d8df268f433e2011c67627f3cb349080097118 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f63d489e32d42fc9c1185ca567a486317edc0628 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d2f04b6c30056664e246448b4c5412c54a64a089 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..acb6566f8ae999b56a4ccc3d853cf280fdcad3fa Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2f6f78d1f7a5055cc7255ebd46eeccdb09010e8d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc0285ab6a324a02e09587cd0eac3e5dce2c41e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..978b237d7691cd5fb3f1233f4c824a2a6b25dc7d Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2d4c68d12ec7d3bf46d76e992bc18c57d960567e Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..080f801cd58ab06e7c1de044c53f1783805de3d4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c795e147befda6d29b8dc6b3d48c0e9e7cb2ff9f Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f5db17f08cf6b58c179e94e70eccec5788225980 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fa29561a717ebc5a372d7468a9f00401682f1775 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9489403874a63d39238e1638029e8cf8e717a0e1 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cbffd2407e25e351c05c92bab656552361f754f4 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e324bcf1ea736de0b93e01db172948dc75a60fa3 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2f405d7a1b4b01241754ceb881d9b055825189d2 Binary files /dev/null and b/tex/figures/age/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f6f86cce0a90a878e95f2d85a80e18d0c6fafa04 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24764158d7f20991f59ae580d271db7f25cdad2a Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a2b3966210e968ed7f2c7ccac3c313006eaa34e5 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4eaa78e47c49a48d4662f733b8244feab90717ab Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eae78298618aa2f7628e74a34a00783c94ceb997 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7220a044332368c536b56a474e00bc3d74554b59 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c63d377d90c672da1521c324d4f1e58f334d9f5f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..86aaf66570ddfb78cf98d7976e0affec926e9095 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ee7675ded51dad7898c3725bd01086a20b614a6a Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08f6fc1fc068a762e672c8fa0bd9401b8318bbc0 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d5f17611ce1606c8cccbc21ba1b28036d383cf2 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a38f8c992cb8a3050e56acd149895ed9714f27d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..07782c10d813eec5cdded1d328cb74e9a38b096e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0e56c74054b8f88d8bb3f6641bd5df18a2ae9216 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca2c722083f2bac0a8e94b998e27afedf688f79e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0f76f6274cf0990d5d8a2088213a8b52a8f18aaf Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..290ff7a67414a6a13fa755280f69e77ffaf9845b Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06559ba8b760ab6a398f4c95fc216bcef6e603ee Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b9ac46ad1e744085ac5b695b3cf131536daa8ca Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98eeff8e04383fcb801564217a161a7e37a55a51 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b64ea15da52746de9f71c1aef6c828f0ac35ca6 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..48aa0ed980e71fbec5db96fa7d259833e14c6d33 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..607d17ebb9a4b626d592b3c21d4630f3e2133594 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..84f1fbae6043be87e3e1958676b7911e5ce614b9 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..914af7278a181601f736208f25daaf126dd65f38 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ec45a9ecc75cd1c6bd23a85057f8acd71fcc536d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bff7965f23296f73634afb226e924279286667fa Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e23b977901871eee71baee38507a4202040d04a6 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..182b2cac7a589a7aa873063e1d7fc09dde47f7f2 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8267f623a22febf89bc2962af8dfdf542a187ef4 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5e22b26671602cb7c69ac340f5877a68c5297c8f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c19c1f900f708e9721cb678f9490c4f3b2ab90ef Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0fa5b90336c29dadc905e5c7ead61c5a690707b Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..096ca630db0c70910fa2446cabdeb1ee887823d5 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8d8070f2b757efa31b04b912b4e36d4a0772305e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bfef09faf941864242a48835e378fd3090a5cc97 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..49e1ec5004d6e984d2c0d6943c6c3bf0e772144e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed7b0ab8f6c082a0db36c1245d5b9dc23eefedd6 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce1e617118ec2a444c6fb15d94c0c8469e0c219b Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d449abf1c14b2f60c91b5a7af9780119ee6452d1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2458f4ea202689a370b62852109b47d62fb4b643 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c869091d1982488c2c91c1d42a777b19a32f4e21 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fcf416510935d7410d6fec2be170de6943a38d38 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..58b6a904ad4a32b687ea5050e0391383e4d1d291 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cb08e82d419df826a98818c6c71612d6c8b19dcf Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4da38408a8503c7e885536e8701b6635ae9f1858 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..292890111fdb015961f86e9feb423de816d22688 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f061d70f93ae8ce5b6c2295ef43363b24ece036f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9eb26b47f8626769ddbe054effb11b03553d0045 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2655e5aa36394e80e98fe4e908b6d21101e1c9e7 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..19696d9a0f2e041addd7c9117182ce111b91338d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8cfaa3e0f789663979bd65a334075809c6c977de Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2824d4b9cb40426a04268e95dcabb53f54a29752 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6a8739d5fe005a7542ca977aa9be76f355072e4f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1be2593743e9979a74e533ecccd70b53a3989675 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ffcbad65b5ae3d60158f838600533f1ef6e3372e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f4a9f5c16d1983dcbfe6890b07db5fc81a771bfe Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_num_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9883131bc19e503dc148690a14f539c67903fc9b Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..60acb3c3f907a5e822902c331b7d7fe303abdb57 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f700feb0a4e29d6621b51f22940a8959a66332c1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_polarity_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebb1e25c29addd9c42dea589d89817bfbac6bd36 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8550bc520c95146dff8598624c2af4a1be534951 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9e49dc2dcbf15069e99b0e0a436d763527af5a3 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..22d6c6ad429b4c28b5ea6ba8ad7836150d8ad93b Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5904569d17aba1151b9f54bc56c27408538f5f6f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..03177a6d000b557a144ca2058f86cd8c4fe47b6c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ce0a09fbe1e9c32599e1f399464d8d928e4f5ef Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ef7a56acfcc97bd056fbda1f671600dd3ebca1d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1ab8324feaba4794b916912f07d7636628c4278 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e456a88fe91e7623702e00994870a2fec95cd5b6 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ca099f73f59584cc92a5151549fcf9017bc3780 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..968a17de50560b127b8336ed9c56b07f9e67b84d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2522fc7a5fd915db93602e06b9e801a124ac513e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d66c0636a06357b7e0cf87494fdc9d57aa0ff5ae Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..730e3a9141e7095f02f648bb29bce6fb47580eb5 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36db3fd3fb0344f1fa4c9d9783a741acf4f73251 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e61785bdd0cd72ba9ce0195dfc2cbf46d0a3e5ca Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6ee7cd36925b7604f70960a0ad98776d74b71551 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3cedf141e4f50edfb337ad3a86c345c4aa65983a Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..690238bc6ada07dd43a4fa14a653b6872c5c3f4f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..02997d30fa52a4949c8e6902fa08f9ddb08ae58d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_word_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92e9581139cf9768f2f74bb1064e46397b8f6385 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3e186159982d80e11ba4e403bf23b631b4fdb30 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..11a31843a8383aa23b5ed8c717ffea9686f9f679 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_baseline_word_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a6def9587d432125e0c03f461f0045635c388263 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..504e63b79b39d109d07a140ca4d883b1b2bbb1d8 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..522bfdb3dcea1546af6d7be930e5dfe68b6d5aa9 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4bba1d1f2acf89a93e6ce6ff23cf68e34fd50f7d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9f9fa0ff550edceaadb1476ea41f799e8faa4cc6 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..89b82c1810d44d6a97cd3f27603437a5c43f3f86 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d3ad16cdc5d8aacc3e8ab9c5eebd3082b263e52e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..96acd796a69b5cfeaf9abb65da673e40e3699b26 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29d79393183c308373a7438afb3d9c67ae47cef2 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb5961897b32ae2df2e872596002d90abf3a86b3 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8254ea224e9c4926b6f516b256c32702d0ebda6 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e1f5eee94cad9ebad20fa170b5c51478d290561 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2ee4b1a35473dec89157b24f6f7f3a785bf2a2b3 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..042d47ec12178440c574d3c42bf79ef364004e48 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32c3c5dc4b965f5566d1643d6ee8a8e00a658d8e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..701d1f446f5ec0adb9f02ff5f302dac1eefc2187 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d10c0a694043f96dfc70242c1d08802233916c9 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2f79de2fb1480fe21a85242a59e6d6a23a7ccdbb Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e3db630b1d6bc9f5a3d6a56e4fd9f6e5ac5df58 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32f945289e133a95a74487eccb5b14bfdbbe3c29 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..742ed62982aad76b121167e72cd3c551e72e6ebe Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..95254d660177b0bae6fb23180b587eb9a7d68539 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..63399ed3106e9f1847da2578ad8eef2e58ad6ed8 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c795319b242f278b9a4bf0080de3027ecb304e13 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d1618d2f408262ca8c97dad634cf59902e308a8d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dbd9bd83916715065f1a352025943fc56886ce0d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d556434ab4487e8f9db1afb0dcff574d7805193 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e7e02f9ea26f9cee7c0d599ec39803731fbe591c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..793282d346a81110ba038bfc1d94cd6567f690a2 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..094adb801a41163c9f2b2803462a79de9e1d04ea Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4010b266aecb0a5dd1601c3d3830812d7b6ed258 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f991cee0b0d35eb1083d4f7f8371303071a3ca63 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b61144b8d7b342cdba9c557ec6a8e49f4d7756e3 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..18c8341ed8e024da64dfd959d5ceb3afe97a44d1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..33a1403fcb769937624cd592f4e5005637714051 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a92269f4e6864bffea3c48dea0303f7e2b10fb8c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..58720c16373d248687256b3fdc14912ebf47c839 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6048b6f6162c963cd01cd45ae4b2df791c17d79c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..16df76de2bdb4b2e2d93e95077b1ca12a5600e95 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82c9b6032bc49609a24d32a1555287cc88b5ec20 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef41aa337e350b7b4c276d9b874c4b618ffaa168 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a527af9a4ec709954af8aa3551195e6d6b51604a Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d21ecd56567668bddf46b5fdc4abf25994482f0 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e931b0281459aa9457c8529cb9c29ded64771da Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4677b103fdd354252291a34f098cef28bdbc9b5e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..374d478f87ca65aa3e9e4f7cf0a2fa02f359a769 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3673c8749e9538fbef741046d742abd1a4e64cf Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e380c7c8a65e4c1ce3221092da5a5e21ead11c9f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d89336179a1612119f4bbba56365532f0b877a8 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..936ecea133a74df8ad6a34d60f5552b78dca1e57 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..91b348c00574b381138887e517dbe2a7f575deb9 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..18a87a80f02a0a951bd8ffc9537c0c35776c2746 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0b62a70dc7d8aa3838ab396252eb1ba11f46991 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..31a566ff0a81d6ddc538724c0fab53173acb6413 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41058b38863bd26c0b30c328f05cab75b2f69229 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e49e3496d8e91c668fbc8fd5fa1e44934e7c55ae Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b182659b3d1ccea87607e7c4b4271ec6269d29d3 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8bfb3dd394bf77496512cbfa96d8b19f69a2389d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b63b9484881b76dd34dc0027fc0a3ec23b7bea82 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe6cdba7ad09220c0dc9f8a97b0100200dbb1c86 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e50e38c60910092879f67f37002722c6c7cddc66 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3407e7313f562ffc55d003c5a088950465646431 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..668677fd3b2484fed4d75302dbd6116433e05158 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5720476e802e3d18a3d40e74b6c5c92be1a881aa Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66de8266f46d3487c06c7964447942ea6d406cf8 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b2975a17674b9fb6f4cff1d77bdd6ff72b3da544 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..807d64cd8ed19450fb663bdc3407d550106149b1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..91f75eb88d7f51f8c4bbbb971a922068c47a098d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1ce5d4df2118762034f6c7b16b090b6e7100314 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6afe9999bd21cf785c5b4de657a588b41492b489 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01823eac85b1a9f7b9cdc7df6d81567523a010b1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08660878a44d79ad3e0035fb1355d860e081abf9 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..125712c4d90d530486946f5fde37a050c3a30c67 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ee0f4224f6c05a9f5797f8f71c9b66949caedbd7 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fea5430686435aa044fd0bf5a9ee421ec9ce605e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d6de54ad1423c988aef74e501b109753d941475 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e9e8747bd1df233cd9cb2a979232d69c6c0f35fc Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3cea514c845b62daeb97a27287cf0967ad08a3bd Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4ad3a58002d6ba9ff01e4428a3f38c0b2f3cda9 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5e366ddf238eeb2e207c38e1e21c5781c452954 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e87b84ef9aa6251e561e4c2087447f5e06f2690e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5da4b6965a6845e4df6afe873ed97f21d201dfde Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a2e04aaba48964fb5107a06321f11c899516046 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..95793b2e0c6b799eae7a199830c06b56f20f2556 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb448c6c97fa96f5ad3f5b4d4bfab4aa7612fd47 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad48136a81441c89d8a0f38b85df31ed17c5334f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0fc245e06f54e79dc150df021209e921c389ef7 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..baa89057b987902f8090d2a524ca6931642d0f7d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f5e6bff1d55e950e3d2e7e6d03b49c22ba5c843c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4da95a7f56f51e9127798d7a69c9732bfa5c28e1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1396e58e703d534b3ccfaa8209ac0e6028f4af2d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1acbe2dfaf08e58e6eb962f3b15e612e02380077 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b5feeeef8bea5e71c8826c037492b64c8905f1e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4138291215d9b98e9c5bd58043acb1e9f9319382 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e28f3574e2f6d8bd9e84402539b162dd85d6840 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f57f172d7886c81379841dc5ec9e5efb9eab5512 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e1c78356e62915c06a178f8aef0e08ac06df2435 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..81c0962cc4345c86ab8b8abd9c8b6dfe4adf9372 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa2e85bb1aec9119722aefe591635606b2cc763c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cf96be27e4533880491a10b5edfb039dd7301f88 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..057856092f62e4c521198d144c1889574d74bed7 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4039d04ff79db7e11b31fb8854236cb611ac37fe Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..095950cd57319c07b99759c3fedf583795ae108d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a1c58e934e39e9f40bd11d19716608dfaf9ceb0 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..feb451f20d9bbc80c1af0874600ef40384b6204f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da480df4d0297b9a981f4f8c84043af0715d4910 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c967050ad854483df9235ab87e13280cd70aaa0f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..34ab41e3be12c7a1e626299a29c6c389d7ebb012 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f89093067bcc9f362aa92866aad3b54c37a2920 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c5afc84dd4b38c8809a6db9c42b0badd3f19e744 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1dc3221702271a705fb5f2b099c6b71a4380a8f1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82fafadcaf9d1fcc15cb36d882d1e8b47a256c09 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..538dc68e9789321a6abd7828db3985305c01ba57 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bc08bdbf63ae89fa4edcf50d3e7c3590448ba90f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..811f4afa1f018b8d8b10ca615475bbb75056d506 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c46c254d5393243cbaea746bbd4d04938b60f126 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f1e46a0b94e28359c687c804bb5b515bde7a2be Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d9cf334ea624ad8d7cb58f1624e988d819b0a300 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca229ac633bb3cdd03d7c80e954162e5ef88eb24 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea290f0b20fe4b757a57a84575fea31c1e23ab0c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b8b3d5379a54ceae0986c08345610dad1e0e5194 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3991c138598bac63aac89d625972b19e63ac9bee Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c4abfef351de91bbc6ecd5ef3755bf3065b2916a Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9dcaf4b6052353b9d37b81d35b704ad15f98bc92 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1221bff8bacecd6db811b385cb5961021341a90a Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..635b3ef233f89c5e3c1281a13de2f323d02c3113 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..815d73f318c2d7b4db7b4c1ba361441d0be549b7 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ac3d144b1207a18615b9f48dceedb5f73a1b97f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..587432be9b71b46726432e7bc3a2072fbbe6b053 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b72f587c4ab74a8eb0e74fb6e7136d74ede25a34 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db7ca24438958f563507cfc43caf9ea5fb665666 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e50bb23e714cd049c95caa60e58a4d2fd24b8d31 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43ab5ca26dc662b2fcb8a4f66d5e50742670876a Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1560ae499fcb5bd0b0e9e5a21b5e9705817b027d Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c9af083a96a191fbca08c45687ff35f77de691f4 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..55188e1a872f772a237eb90fb4fdb08a2e374813 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a94b3f77930ff6e82060a6e7f4a01275e28abd1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a92a7586d991cf2a17fe977f4e681e7d1910521 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..416595a7927d205076ec930997eafc497f8a3a28 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..092550ee486d1498bd2a333032848e13b2124208 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..00012c3c233515de3eb72fff1a0e7473118e8760 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..944c20cf2e69c33886f6fd1ded8fa6ee0a44bc66 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fce042baef5b7e8cd0c59dc4568a8dc92c830016 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4dac6e55d8e61011086888e58e76bc4bee1d0b00 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32a1c7787d901e290ab5919cf9d713890849b505 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1077043358be0a9e09340569e297f4f9dfde38b5 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2feb3ccac6fc192e5a8ecd700bd4e7b5511ddc49 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3015e73a7c793ca5dbf840b80d38cf75fa1a5db Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c2d67203bc13e4035e687fc27792cc76414fd8e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0cf569589046e60e68989052c58fb606a44d1b9f Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38eee7b94f3d98fb15625ac421b6f1a1d6d48146 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..02f2d462c3b0cd7e03adb0c57400ef97e2eb0585 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d503d6c8ae3fdef5ca58d031200032b6e90db9fb Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..99e4d37d351868a1557b4288cca2b488b4dfffbe Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f83541888218fd3da806bffc3e7b7e8f38f70492 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aea457df71e18b6053050dd2211775b7e48fa259 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6d5e117585a793f62c7a4311d8c261023705936c Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..23810d5efbea36714623d8164538c8736685247e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c634d6cd5106110ac61a6905f7c319081e5e84a7 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a741ee7fb0c3d99e1d50c681ed03df7300af4e9 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..529479df4dbbe8988796b5f4ff8aca03ad0be7f3 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e3c0f79edb68c5f87c6a8de0a9469a36ddee1b1 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e4ac9a3103ad34c20f8fc7c0fcaec107f2b9212 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d284082e475cf4359bb7a6c29f7062121a754b5 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..606ce64e7ab50a6c56fbdc67f31f6b03229a3010 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f48cb84062d2fbb5099a40dd9216a73aa28a5eb0 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61ccf57904871e708bd08dc47c900604b952d97e Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf differ diff --git a/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_only_false.pdf b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5588c6d6cb86697340c45bd6bb22b3ceddf3f9e7 Binary files /dev/null and b/tex/figures/age/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a938873f917b43739c9181b0b09699a847d2688a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f82937c570613ce97cb8fca30d5f0ca0f8262232 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..567a62a8a8c31cd5c0fb1426c84039b017dab5ca Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d0298d741cad8bb75581705129ff568bf0c1a091 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f8cdc607a867b20324314df9cd9cb7063d19542e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..91043da0e7bec2ab9a28296803f628d522838f9e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..efd208ac14f68372136833a1ee0ef1ad1ab01e73 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d32312694a3ec28143e4b8aad6954dbcedbb66b0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c18375e5bbce491c403b4144b1b1f8879ecef7fd Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..59f27f7761f011dd83b7a4d5f79d4eb3a85a94ea Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a6cf8954931858585cb890fcb1afbd5fdb90425 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bb33c2ce154b63a6bdfb7ae54654fd3d4010ff31 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21fd37589c12d1660ac17bae75ea8549f541e36a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e1e6ac1fd7d4de79867d05d10a18ac1c45f7805e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..33d455a26e77689b999b36dc04f0cccafdb91d6d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c1a2b8bb575451a6325e00857956c188a8f79f31 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64787aed077bd3bf042b0e08aae7db955e885fc1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9afd112fdbb396f3ab6e794119a40defb8cb7e42 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d73d124248dc7e62ab8e5497276cf0a2a0e93b52 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..af02101b9b7e59b91408efc84caf5905723b2176 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b7f3571016f6c1f4f09da9bef383c124606dda73 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..de1231fb1c3d203fa69cec3bff60027ee85829f3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8c052336b1451d200dc6fade74539a8c0b9f2561 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7e047aac8630e1863ba20662e4fb4acf909817d6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e3520a816f2ff7c57d4e0d3f4a9118396247a4b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..90bfd455cf8a204c1e12f6d89b8438d1a352daad Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b384d2a0748f7ff0283aa4f6f6796c1ae813458a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..37f5236f933d82101689974a5657090d61450f85 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8008f1f6a8d8b9ae01e5c88d037127411221375b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b49952d68c56ef399352f0d24d3e9351e95f8a22 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7de16608037db84a51b33436a1dc79482380b81 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..02e2b5cd8eb3e284ade87729c3ed7ea53611e0e1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..51d1d886f231fdb4c955f754e4e93cbe49ebd5bc Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6140cde3a6b266f31051f3e93253de4b6c071b7a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a43692b9596fa27e9dbec1ee5042fa685c2f28e0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cc58b3710c7bd66582603608db6769e1becdc070 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e686ac7c13fe4e832bc8ab72a260e3afe09b8e6d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..00708ee825534b74a1ba8a9dab16c3f88c94a9a2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e3cd84d9c8ae1c99cf0878a29b8ecf02c25f994 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cc7aaa4a37f63a39b4ceaddceaa1f42fc869af84 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4cb14f49e0596957801f8bfb9dcacbc44a2d72b0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8ab642c62d4b253ef1b7b09086fbf088455dc9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af7c1413416ea3016ccd36db327ef0e515040844 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..32dddbe6d32060593058c4b2e44998476cf38a9c Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5d324de887645a905f8e6b7dbd0feca7844ee3f7 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..17a1741785a523a2e759a6a95f0225d24f6aea8f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f3775de9df431909c1f8758a0d96608159675da3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6e944a42eec5d78a2198c0cc0b0de4b0f1d6acb2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f31fe854de1e524e0827c7fd21cb45f57d8f71cc Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..746ae1a50979dcbe0ec2a9f1b65187589e33c9bb Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67bb37497e4d926c90a58e20ffca213a74bb3cd6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ffa6f34dea4574998b4da7c643cb5b8668b024b6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d727d9db64a545e4300ec793da76e357da881787 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cb7ce086a0aae1f0e945c7d628decd7681557c04 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a26b1e4667f2be3d68f2d8935ea4a67c9d6532cb Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a879e782e7e0597acf908250d23ed9af133d3a25 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cc130b5d5b5957bded24a2a3d27d28255aa030b2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5412d3bcfe4380218235695a831493fea446db13 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b838bbfab66dbc9710dc2540beccf2e6d3270d4a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c3fa1ef419fbea1e559abdf88761cbe96ab6a6b4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_dist_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a867d3c4cb9a552a5e510c2cf14452ccc67ec44 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7141a51189725e7d1ca161f51542981dbba9ddc9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d6f5819a6896240169d9d0dc8e8247b83eafb3c1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ecce2ca69daf73ce5e612a3bd05334112c251d0b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6832683060c1bda224003934b2dd54473834eeaa Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ef27759077eda816bf9676bfeab2d0816e27a3ae Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc40a629beca47fc541b151939d585b9ad548ee6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d1be08aa3343e0568f8eecee6801ae1e6240f8a9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe39df2c17db250bcfa4cb9e619d5b1f9815d462 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6f1f81a0e565427e9eb83c163c215720b2ec4133 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4090096b5a3f8fbad35de8105571f01d261d18f5 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2f7d45aab4038c938f1acd7b3c380c24a6b3de13 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2ab226334f3a87a20da88eb020388752986e0678 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..731f57a9290eaf0742dce27cdac79837a623a902 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..459510f97d40028fd13cc331271034cbde06cc0c Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ea6a8635131af8dc252319761de51fb19ea6648f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_num_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5763dfd5bf7b63965c450dc174592fead4a0436 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..171a9cfac306f0ee475f5708f697843b01b7ee4d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85ecf5d739a1200499507df4bff2fdb61d354a0b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20bd8071bd839fdc34fd0fd924e1814365747f01 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_polarity_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af04edacbe26b8e6aa63ed7c2fe50fdba3ae72b5 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e22f80a3ca5ccd42faa65e697500c4853b966486 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5feba140f78b2f1e72188b50b4667a92733ef5da Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ef0dcb2081f5b748c1709ef525b3b709a45da786 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a0289a377d056210f4630ed07f569bb175e76560 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..68e431963c3d2acdd79358cc87307261694559a4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43f3914aaa8957e6806f0cff6c82276cf641fead Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a71bbcfd7bdec9665215f1607f63408786c05b25 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..74f7f97c2d5bffae07c664354b9fd838f03997d0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..bb4fddc85f7b7a165e91007571eb89c4a6318098 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a2609880dc5a6a917bd70857b941e6c0b721fa09 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f1c66fa7289de02fdb707619f5e5ef323549545e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..16a1d6b276f8b2737559d1ee8d944e66787851d2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f32583084ab36887c49f09f6a55713c71666961f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..97aa49ab24698584b5043f2478fa2a7c5aff6152 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..08e9bd464773394a4bedf49b5e3826cf8aae97ad Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1cd371dbd7d7e0924e9dd6d6b64d99d2e01640b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0d5c386b23baf2a1bb632e073bbb50074b709bc2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..efaa4be7371587840f311ab933afe9de5a7342e9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..eab72d7f39f13280a6cd366c35576a7be656e6a9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..81fbf362e5621a84c247cb9efb2e3a1a7c34dacc Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..74d965e7199021f4f783044a6662156539bb2dde Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25e51f11b282360aabca889f700cc0ac5c7664df Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1309c74761c2dae5dff27a7a9132729c85d60180 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e125a5bd4312ffd51b3e5984e19a43f986d92c0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..93613b22f517003a430472528791afa3b255c205 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65150081f1a3a21784f88eda165d1fbf4f60c571 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f6c158a42410d2c5a4bc5926e2c29044a43d8f6f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d3c3b25f4b8f9a0de8441fbc25879a4537935d41 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..99334f6e5492ff7402ca234cc4dbcd5e061bfc22 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e77159f1b53434af096ae3e63b59ba69a5887cdb Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..132ca501744145bb072d9c7b25834e1737ee72f3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_baseline_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..93a7a604c73d0379a3acb1e64d5f10ab37a9bf1b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c90ccb6c25b65bc27eb590d1abe92185ef92de4d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37df0a2cf60936705e2381a16e2e012da04f6bea Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7d5772f2580406b360adc7c2a9398ef4a8a5d30d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f80cfdc650db7ff8718af0865c961e8fe9359c0b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ab1d96ea77e0330c9f591c483fc532f91796e69b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ecbf32a2d36a912256446dd028499e5d2bebd32 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fd1446d3d4aaf680fad38be179639f4cf5073012 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f72504489d1dc937a4d2a928e0627d8a91566fd6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d4e810f0063847960ab4b6364b30cb87197e1c60 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8dcd152cd4f4b0ed4b50517982e51a362030a2a9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..45b7899a8202866b0ca69e6f94f8f0c164b1ebb3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1dfc160e22ccf87bc8709d6d3e8254501c44f8a9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ad3f5722fa8858639ef68e3db7dc9daeb6e9c212 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f11197d9d6f8dfb45a993c5e31bacb99aeef491 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20b34a3fcba906f6b8f1234e7afd459e17b35ac8 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e6e15813436108a47fe44857e9c2af2f6f09dd46 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6f9a03e7caa420244fd1b5e39c022eddf6ba066e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..80baa1a8ea7c22121ef326b81cc4f18d1c2cdead Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f6317df20c1010bb18b51e284175d0fecb710ab2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e4eefaf5f0b37c0d0c081970804e25e7099790d4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..735ebe06d672046a8d2932960cf542de305bcba4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41f7cf7022702509a2dafdaf4549eadc6818a664 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6467d590971e4e8d4678a1d30d40f222943f0196 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ddcf6c0b3da629e1262d1060630f6471f1f20a1f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..19570ad5dff60ffc8761515c7796a166774602e3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dde7ade3e5043779d6d0d14b798be0be6065ebfd Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fe7ac8b21ed088f029e78b3dffb86e11909c73ee Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2962f958d91e34ce2c09092445fcde6b47f9b831 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..84cbc388d866e6e02a64e147e45fc79e3ab54cae Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ac32d327a52a0748f350a242db09feac6a82e5a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..842c5af801aa14fdf25fd4b600cdcfeaebf190e6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5eabf77964414ab8a9c66b36c0a0ea256a327e38 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2271277d4658b666090f8234fbb64939511aca7a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a5dabe628a671cbf614237a07590c2e0fd1b044 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ad53875e959c16c093e9f9dc979d2a921af70f58 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..206e68300b82e287c5ab807bf71f1c8a0213660b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a5955342daba46d6c5fd488cf2ed6bd57c60650c Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..84ec515ea796b74d48b3745befed59b9ba8649e1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..21446a42a83a408b39d9e471c7b065d2ffb01355 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f82fe72f47c351a90d9cb9378f4c1eb16f0937dc Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..95d250613cac91e2eaeb1cbce9546fe8796a9d8f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..73c01c4f878d72d1441722648ec66a0c204c7047 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fbcb0632e4d825a591fcf22b874cc207d81fe711 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bce90bd311c01873010bf5c363eb45282a200e56 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e4691dc4f9ea176c7294cf6fb9f5546a28a7d1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ffbf13442988fef0059d5ff69b11619a7f2d4070 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ba911f1929381afb47373f71e4568d5dd99d20a5 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..351134ef2aa2c47540777adda501614358db4e7d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4f90fec1713c022811b513fc6f76b95ad95b6dac Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..add49e12026ad9c8fe7603b038deb8ba184e4d9d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a82367335320ff7d36fed7a06662fe10249887bd Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd4a8a49982d703400697218ed52c52f778623f2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a88118f4c94d6eaef8decbdb26ee790397b0098b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d1e14ac52b7eb55e148454efea06975a41db39e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..35191e58295fa97db5207cb00ece04ec1a42d17e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..57bd439bc68a179f866827858b084941877f5487 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f33e3dd06f93f52b0c28a83bdf2569c76c43d063 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7c9a1005d254f8926dc1cbf523bf2e385b68defd Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..aed58c5c5d98134986ac9e1139f971615c5ec0e2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8c5865db5b18b5ca6ab1279ca83e9266a12e43e1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1e745684f24835578923043e5b20dc3d0c2a9392 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..baf69cb3f421ad932045a1db57a2bce909bf9225 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..016a3e015a85dceb286e2f7c6b7ff122968dc61e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d3bdda3d0da63c9fa8f4f4a8e3a7814f50102508 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..34e1f83e85f14551c2b0ddae415ec22857a3da74 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..74f014c70fc7694bcfbf242b921d8d6640ce4ff7 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2cb7bd5df6a1012ff3638ede6c506385cf1feda2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d9a41716b234c7f82255ede92d6f291a062eb4a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c57fad9faf51a8de8cdc8bb67d57f036ea4de1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f5c7506d5895ec7514ac0b9334daf2543814e5e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9b75b530c64b5d5dcb9d4e9359dca7431da3d8d4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9cab1e37c253da4ff9e3b61733533fc4535cd4e2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2c11e0ff2ccd20c0ba165ae1a391f6d0f17850fe Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..11b538770f417437998a04afac9a1161f0c23283 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..225e579f8ea83e11e8a8b397d804c55879a9bcbf Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e7a6add24e523d960a505f2cc66e2c4ac1820742 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4f4ae456346e34f89a3a221d5f611ebcd9d1cade Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b2862a514178dd430a2f0ffafab10c5c4adbf7a8 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1ed259ae3cbae8cb02f52a9287e7fff35f79011f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d17263291df89e1ad9ad8d7e7bc7c5b129bd3650 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5a60c09cb0cfc51d04e4ba86adb207eb49b1e91b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6054e1e06f0064235e070e75ef897fc5ec79dd47 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ece713d71a1abca86a030c9834d086f2962f2c4b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1b7bca32f3d8d139abb16126027dde91d1f33091 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b9a708228caa552e60205b0322d2431c877bc2d0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a271a316eb91904cf709ce33bd3a4a77b57828aa Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b1fff2bd952f6b796af82699c39dca75d7bb9254 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4262e95125c111ee2bc1e9000c9e6299f108dc5 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..199397756512d89290a6c04f7891c3fde92bfa95 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea2cb068135fa921a227ecfb357cb4c292d0a674 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..aae63be6995a2a48f93955c11ff62ce495171cbf Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..546c46cbdfcbacae7d39c16a19a84d6a03c0ae77 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e5e4f6b96b7ef5711f13313197c06e86f8bed6be Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be0587f884e12cdcfad4ad1042ae65eb6d819541 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..19c41ad599ac63810476a25c06b1acbe5bd2c67d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d88e48b45fd21c9c87705cdb0aaafff2f0f9ff0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..8e290eaafc7a18658cfde6473d8117d2b40c5d20 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e614b36873ba409cf73730bbfa7ea25cb094ec8b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..07614da5aa8d0674a5e7b2bba83dda010e16b11b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c56eecd0300c81e4d08e53f6f71923b350c5197 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..00bc5f3cd5372d9b6a38cef8f6625c792fa00372 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8412dd3de17d015a7f14b3821f2b9b72783973c0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7efa4b44d87916413729adef728000dfacd7a5c4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e4f16a7d309a66ccee73ad8da67473c5e2ff0c3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..47746f7d658d4c402e149f1b711358a306451e40 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a9f8145eccafe9fa7350dcc0c7680c2c32f4d928 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f52c46a57a470335fdcf7d5295ce80c27fba350f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ccb2ca7f812630dff4d2a50f82a7dd622ea53f0a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5642ef7df8c6ff5383b1ea6943639474b660bf30 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f4cd8a1973643e5dcc461348c41edf83eae3c5c0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f2d258bdddd11800e334664c7cf28162002be221 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4254f701e93db4e41a1adb287ab5451b83a611ca Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f8b48234348b2777377e1d2b27b2bc539f751eda Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..02bb3f7a284dd148327d9906c85274bbd46c2ff6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7c59ed5607fc8e1e942de34344be0df22576d1fd Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37a976270ca3cb16baa425b5d1b873a2276939a3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2fdf3a7934da44c370a9b9cf1ccadfe653ace53e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9c5cd3188c4d90d8c998307a631790ddc2c2af22 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1f64ea06f88407f5c85767b1b1c2c7ecf834f8d9 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebc38bd54c28f374f9d6611c16e78f920c25c099 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..317bef8cd6aaf75b3295097667b9ceb741108255 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e89e781118216ad764da57154633e9a87d471aa4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..67e58dc094d36182a092a35b78531235d9d94e3d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..39ac4dc2966b5429cd1a9502ca65921c1494e83c Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..943360ccba962e693d8705174a0907bdf7dc1fd6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f6d27962463a24a8d122ec60d7ec28c6fc6f81b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..83be9e0e8e39992ec24114d8c9e4607368788674 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..52166e1b369d5df1822f8a5ddb61c017fd681eb8 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..eaa20dff24c8a53e5a78cc791350f1996ed22e52 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..adac86719e5f5446e6e5a2583b48f6f8903ccae4 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..76e43e79ecba66f0a005e84bd93d03236326eb4a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6bd97bf709747db9703d433c70bda4e80772318f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1f70aad62e3f5fdbe729df972e5e535f8d7d168f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d94389754279ae910d0d74457bdfef7197cd426 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c076406f7c23ad5757498a0ff5b651e74a52430d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..73273c9208d9f924bdb27a68d651bea8f68c907d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..41d70a4f46aeb5740291e3b5d1d8155cfd8c9b58 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..caf3f45f541a7836d52b18382cb1903e6776cb5a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..319cfa61c943ae30df035c2a37646d340b0266b1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d417dcdd039ab9e684e06f16e4a933f0d5a9cca7 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..18aaef96e9492c4819fb150749b712f66add8a85 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f17cc0c472e21b72d078cff522b4994d5243cfd3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7766f06afd1b0f5af5743b787e803c9d1e1b1ad6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f183701696d2b52a2f99a838d256d5c8aad29a2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6d83f6927d910f8036385e5a2b480e53d1073225 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..581cf06ce5ace510bfa64390f89975d0ba3e947a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b53f86445168fda0ee60dfe1182228b3c25e059c Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d9e8c8f67ae37a542d355ee0868c41234d334449 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..42b2d6ab11f707e2ef0a6b91cbc832eb542144de Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c6e7576d448777d116c16be4cd2714acca370217 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8919aed50d33ea3526f1961d4c0f2237143e7603 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5e2a10ecdf684db878f59d75bbe30483fafc0e6f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7103e02b9d09c812e4f089ca5cf9471365a72c5f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1daf0b8d1ca0783f4f1d95754cefc7dc486617ba Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..14da19cdf956f08240c9c95ffe19a07a6866780a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5cce9b0e4a5cf08eaee15c75203da9131c08798c Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a4d66532e2dd3a5ec8aaa5abb950afaf3128c4f2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..07a2260559313d543a2b3466b224242e17d5ea4d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6a8d5925a35765d7d7365b044c4666401fc1a3b7 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca0c485e371859ac045a6eae6b281039528dfaef Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1bcd31f5db505357b40bf037f92a72e8b0ff18b3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25a50f794c13bad5e69f815492c0b69f8359ca45 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c7022fa84a8f052ea7b590bacd23bcf88f4c4f11 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7704bd7e0626ff3d81c31d2ffe078de01e7d093 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f224334a7dc9d09af610a5641e89d56a5434495e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a15db5aa969e6c165b2c6110785f3439f71e051 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0d64a0da081c661edb5ab3f761ab39a5679d5843 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e3b0feed5b3b1d549689facb3d83bc364155fff Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..86ddd9508e0f7c321d15c38087a595197d6b616f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f796f1cc9d6daa6ffdac897bab188714290b41e Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..679df64c66baa730250a388ee1d3580b317a22f6 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b4529ff24e22f85d4435123dcbfe9631f03ea853 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..eba98473a5d101b338943a573d4969e715b6c544 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c092aacdaeac0a5094a790ff93b33cd8b1cf2a3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c5bda7ceb3f20aed92ff2a0d79e5e71ca5f67e1a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb28d3974c36a750f3f1f641eab9bbf3033df061 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6a71e1737d0ac80e94395b12677c727d6eba5246 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e1800c291890f011aa8ddd254fb01843f7f2bdea Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9c14ef7a894d30e1bcc6184aa8b99ade8ca59c32 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f02b213f97126aac4e01bcb025f0d4811c74999 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..90d601b374e0b9e237b6a37708b7c6b7fbfb320c Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b5f7e597fce4bded804ec2e65c5e45ae6dabbb35 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cd2dad01cc189f63d7f61045678008307a852bab Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..54a8a49ceb4caa864e8c63de2c54b0d5f8d6a1c2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..47a7adcff7d0bd39a06526124504002b16c7814f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b008623206a42d747c0e6646d4e1ff1caa29abef Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..21d0059c2584546b75750bede914e05b24530857 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3846163a4b278a067c1a1e1bd860381e49af93cd Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a44c7b7e7bea99822af12f4be0df3c74cbe698f3 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..53810e5cf4effa8c87adc12183cb42a1d411de56 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7bccd7774b998663395497015edc1442c831ece7 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e8ff0c9a6017ddb9fd02993ca79f9663d93b7d0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cb7453374dc8bcda54a4e905d98c12a7f90af184 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d868f52bec9ed9a60f0b1635aa44e8d4deb4edf0 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f2dafc57821749bc375e78d2ee117b218b157412 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c60e4e63342fac5bdfa26ee5db733a34c9122031 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ab8355bccc489c5331310fafd5c9e4d22b39ec4f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8dfd3a86d20c1db41b474ae30d0632413a70cbfd Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8b8fe983bcfa68debb2ba98b4d483520e11f13a8 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0c83c8c8249a773720875ee86f90268796ab346 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b6fefa3825bff731cbff59e59de2df45e809073a Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db37d50c6345ad50049f71e4c5c3ca2312521d3f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a5d40ade5916ab49cf341fd38d393b4aa6ec11ff Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7eee4366de1e32629d98936fc0fe1cf21020b98d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..31122d65f97b7bd2deca3ec65bacfdc261f566fe Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b01e24b6c9b4c46d6a6384301d99422ad81c46b Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..11a4344501e930b486573db206a11e21e254802f Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0296bffee7b81112b7cabf0222a57f16e0aa5086 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7da38ff690ab835038f8ae4abf452db1effa74b2 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e4887f1672f2510f969f5cffbd6c07b40f40d5ac Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..25f83942876087247b3ce12c6e8b181391dfc447 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d8f6f05668412dd4169abb37afc6f239e6d6d14 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..54bfbf36d28ef705660d8bfb1a29a88e02993245 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c11e6b3f5976f02bf05baf426ae8edf1f3628bb1 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7024d2384ebc76166c3026dce127ec3ea225e2ae Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9ef802b2cf8fa681c85697b6cba72bb0b04a8097 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2ebe80433a6cfbdc67551b0fc25085e9d00f9a13 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..60423b8e95996a3d9666d6d6713e58108af4d124 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..095529aee9e83d236646f67454ecd69fc0dbd015 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7b869e8c4a5f1ec0219c5bf1260e41a88c0a4999 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..455bc566439273023ace3c3c75cd58369bcaa920 Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.png differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..173f0ca3649f693330c71b896033129738c0b2ac Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf differ diff --git a/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7a9e71db805f2cee4f9cd801c9b219476f8e668d Binary files /dev/null and b/tex/figures/age/250/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24d93f8c9194abc85e97f184cd9dfa1018eb9157 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ee43e73adb10219bca28f9708e547288511b186a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0ef531ea0c087551e1db6855339cd36ddc11af5a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5c08e8b74795324d622021d1fbd4be4aaf61f0e0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cc7dbe4078eb36cd8fdf63bdd413cb8ff9048d25 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0f2b3e90780846c03679854ffda8b7e2bfef265f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4b3f3722c61bdcfcf785704048c9d2056398ebb Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..00e75b68f3262ab91bafc198294f3737bd4599ff Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a6684c0495a634fb58b8ab0c822d3c5b60ad636 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..478e4a97c47030a30522c5ae9cda3eba5e50c416 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a95b8be40a0001171a924be354a01953e970a5f0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7c79b3d338817edaffc38f01b91b6ee1b236c372 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8918412d9c8dcf47ac66e634c6c0e3b677df1b34 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a9c3c9989b041534d15366e2363b31b0aa36dad9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3eb69be830ea2e4f9afba749e369fea95c5e6ac7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..756deec92700c216990c3837badda9edda2aad1a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_asis_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a3e4282f11f4faa97b699220d79a0977289a11c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a2107344491de2e033b9d3ba41aec8314d117b6c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7660ea1d9dddd5e675d8d82c4db249dca97f0f29 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ba838cfbe04be5b3a5b69bdf1205d6db86288c81 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..de301a19d56ee9441efaf31a97d7498aa34339b8 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c58923fdab799b252b188c601821a32dae058835 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1fba352f524963fe093062928962d5b89ee9870 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..29bf1b60b71c15415baf866914a1667c9d6cafcc Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cadc63e407d4dc315cef33f545128f2a6c8252f3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..08b96e920003a0821462d6ffe3ba00e4700d83cd Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..00f0dd2d1a524f06a1b902a932bd0531b534c2ee Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7c8f3ce9f4b700c66c911c242110147448846522 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b1c2ed88a7b3c24d28a40d7b108312e0d5b6b0c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..568ae64b55fee5aef08f73040e2758ff58838ccd Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6dc8b11a0d13181fb2ae88bd3c29865e81963c75 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c5c068e9a5b3708d87e76afe0d81ba00381e2743 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_char_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aed72823b6d9d488621bd67e38bc4053cd4c90fe Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5055755e36096a945c58ff607f5e61a896b7829c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5fde06010f6d4f98dda3aee0d68b48d3d54c9135 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dfcbc4a4ebfde90a9058f2e29c1dbe2a6e0f4106 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..28af8b7fc3e88c2b92b62754596546cec3117978 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e972bf5262d503dda2fc10b75a5a1e00e7c6484f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da094a5fbb16719bc408cdd1b78ee66f496f1f8c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8a657519c418f1f12133e92ed566643695592842 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36682c46233ca42858728b3a120e9a6e319fadbf Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4a22aa8f706a8cc1c5e4223544902127ba621a5c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c39885e3adb7a98f91c50a95e962fb1f399ac415 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..22db2a0abba2861392e07f8d945a42afd03cd377 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dep_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1b85c757bb6b2ddb7364c57def298aff16a8d327 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c3d023dc493b69118ca6ba45ebaccc7308b327ce Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25fa304df84e3216732a3d50dea5525fb36a5eae Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6c9dbde0028a6573ce98432667caa1dcf213e2df Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e674ac357cfbfd8001afaebf4cfc63094149373 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2bf4cbd50154e7e9e4fbb1dfa88b8bfb86662d4f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c43fb961eb703e70d2ccbec4e55c7d794dd276b9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ff30f902c9fcb092745988f26eb19f047466e6c5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0bf3b72c7c90f0016f4bf8b9ff1ca76bf82096d9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..016d1042af929624d54b49669c85d710743d06c8 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44b8d0eae4736a9bb5654152b687444213ebdd8b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ba305d4f005690eb8a64fe12083f6f58aa081872 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a3b8af9a7cc05bf258f80f03c5f61a1600b7a5b9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..06482c3a289f9053689f44761808d3be6f8a4277 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..658b2baf806b92712e2d787b8be128393ccf76db Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d428ef7371334f488156ded283b2b7b3defec666 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_dist_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f569b09f434101cf6aa081f9aa30917767c90455 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..245400b8e5aa5801d963d0fa13c3b276f1f73ed8 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f4e8f94c6e2e90db8fcdabe90bef6f68cc382f00 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b40c48068cb3bb618223e23a4ffeb23d8d28715f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37db6bc13f1730a659958da7f46d33e634295e0f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b39d897fbe54f1a58a9ee099f035732cca42a3af Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f4ede9a930fce1162263778dc7548281688c252 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..94f5d6b731d435caadf8a95f7f6c3ef708f6a58a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a17a2dd044411761c11f450fc5a27b95dc716489 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9cc02811da613008b950d70b30096ab9294e9d53 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f1e74a5f4cabecd08625ca2734090af0f25c01ac Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bdaedce326b46fd3a93c0cd0a70ac6a75783e8e2 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..756746b480cfd081aeee808ea93482da5ad5285e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..83fc6bdd0e756da546ff4dbd24057fb0b3a3c2d0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ae8f7ff1e979249b5a53bf2245311aaf375c949 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0cf5fd108fdedc00f030b36e1fbe80b36ca7d8ae Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_num_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f1171c8342d00d89e70a461d64752419f54f38f4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..02c753a872ca357e77bded8f283f9d1e3c4cc730 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..efb2b42324cdee6c64671ac3951dbfab38e49067 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f8cbdc8af9636fb3bf1061d51db2086a81042cf6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_polarity_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3fd7ffc3fce41f4af299154344d6c4abfe0219a1 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..00b7a866686fbc869a510a4394346a57dc59e19b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..511b01e1f2cae7503a73d184df60126886702313 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..67f21d4b1b4861d32c4f5d83e7005eaf37c104d6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ea729c5cf0ef0301026f96c5ef61db0e4ea40a3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2d8c818a77d144b979bbea5cd5e782a9bc78ac09 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a28e993318b614b3bef5d03e15d241f3fb11ee89 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fb60de61461f0aeac72a4782f0759ac228af8c44 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d9d6c0c79a1b452ac1ee7886a14b2d212789e0f6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2b757037b951c0c4c411e123de4c361f73badccc Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c245f233384067865d19dd18e3567bae88cc2b1 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4079e3a7598431f46c78eb92d4c2df31a888be1d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_pos_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6fc4649f731483992dfc3a366bcaca00b92265dd Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f4eccd154aa5b8e71800aeadb826006a1a2fa7a9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..81cb22c195229116e14fa0b2efd337d8a00969f4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..978f7ffb1177f61889a29db92200ef82bf85b404 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..47b269405b149a731da7e8c35e776d1e397507fa Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..05520125b611c4bd4f3d39e9b87d21015854d603 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7b08feda8a7e35917d0715f6829c320f643f516a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..74da66fbc214b9fd616f868b20998f175c3216ce Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae1a76adf2166ee5c9915587a41ffcfee6503205 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..82eff4ce169bb1eb44ea82710b5a4a995a1972ab Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08014d66b6a012e5d8624ddbd1dfdf6168f7599f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f04a84575b43a9b0e8a168811fed77a09735b4c2 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_tag_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e38d13687bcdfbeb8b36fb47b56424262925017 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..383293a32113a16ef5cc10530fd9caa343a76396 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9788045d8bf6dbe010946950845aee6d67c59f44 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fb82918fb218183529a83ddcf289e20f6dd81e02 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..895437b7b3724c207bf7f0cabc71ff1d570ae03a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..413329148357fc6354c23c129243c1872d39206d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..706447798a182932b0cc03a5404ed56d385ccb1c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..57a757d10ea74436bb64ae4eda1ad1c6a50ec434 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_baseline_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4abf50834d42080393e691fae8725b88024d169e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6ae4bf41e2fe834fc1a0a587376310dd6fe1c2ee Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b96af972b228547e30b3e1877c60a66833070b15 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3060954bc5786d5f8ea79ba29c7cb5e76ba28cb5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d1d271561932e376d32897ffbd1fa93723df311 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6d0b092aa16ddd7f1a91b6e62a8b3e8a63332f1f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f975f15ed9ccf762db59cc52d7a0e6c837f79b6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..18f6362dfb4334de53dbe9a95c9c4bef9b05d96b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c1af9512b7dce232d87b09aacfacaf3a115ab68f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7dc3b26fb8958c7d755c78e70fbef37f271c8a35 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f3d51a7542548349e7c987d9c7fb08d28a0544b5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3c26006b16696e5bc6ce355c03e255b14a95be6f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37fe6e3e940c527952a40dbf56c110ccfb3da2b5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a1c6d5d07ad5cd4de7a16a84bd0f5143132eea4e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..319bb12c5469793d16991c976bdd1da10be75b20 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..90eca2904d3972233dfea3bc65cfd1bf661ccd69 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..83d81361d18fc3ce9bcbacb8ab3e7f2941cf7752 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a7cab3226bb8df1e650b9c959eb05a7d3a3598d3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6866fd9ca6ac502175212d9e413d015f0579c896 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f6709be296ea3c41cf1e60491f46f61cc796e255 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..562abfaeb397216fc7d52ec1a3e42390e5d53580 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a2c902dada5b2b4730fe24983b0abdd3e3ce3f1a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb60e2a412aeb7ebf5db10fa90dc484d8b79f4ad Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..439dea72956ce81c1dcf4a9f9aba9f153b4a2b68 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ea6e7f0e70dad7fa8cb3ecd82d925d87a2fd358 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a93feb0c6c9ae0d09b8da9c61a1b3fad63cf0e70 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2bbd91bf8d54ea83e7ad61ec45ea72ef58dcb941 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf43290c0d2e7c2dfdee3940f2549d0de6d0a87 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27b0b4317a146cf546ea053f7d2f31f9eb2a6f2e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f88915e05a40a62b950734b9986d76215745e7d0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..beee3cf67c425d53469cbde5652e2d10d843892b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..39445875fbb3ebf89e6fba0426dce8b6a61746f9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a48343d7db3710e172a30449841211cfdcbb2b1 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0c696407c0179767a90d6ff0ae0c82c1f7def247 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ef82ffa7f16b75da6a9c16769737e1dca54968c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..753e4c70b9fe21f52e66b2806e929c2adad605bb Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d697e71f7a4a2f021eb441f54a35f63db4de172 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b65999e4dbaf28df84a2c79442aa9930f5e4f62d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..beef4603f3e2aa10ca8a7cb2eba21a996c62e7e9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4eaa81a583d0556d5cc0f5da99f4e19899f971e6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2aaccb7595232e8483c27a62441190701034d69f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..82f44f2529967bd6f070da5319fcb35852a07bd3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35599eb5e972d12acb10b3e030f913856c202e46 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4e96f076bf114054a382fa1d4841d8779b6f4c48 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4a1957edc8a2dc65bf11d7583da7bbe9ca402202 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..82c01bc872082c78174ebfa7cb09ce998ae05496 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab391d67123fa26ee6bb7e956bbf620a532300f5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0aa2c0a07d9f1e789fdf02c52b7235dc5362abf5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37fbfad0efc802bff28ea795314d791aa979d588 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..de593a2e053cce86e25da133bd0882fcb22c0834 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0368cdfc5058e48ee547b0ceda27b123e3c4ebff Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b0e0924392595fd880bfd9f7b0e0fb3a69891d80 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a54f331bb2f5107435854a494ade5092f8ca55c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1368aee0fba35fdae88044210863f2800ca7a14d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..550977fce6555e259e1fb01f4f820a12d55c2af2 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..61493b4613aba44348c9f1a705140cec0da00812 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7372add4f6c9f09612bade9978da14851eda96a0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..23754c36a4c8cdcf4f29a8c893e25868012af18e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5014f3a620d473e615133cbc7b8ff5a62144b93f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..684612396a0063b81dfb54b6b6a2fab2990cb08d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1d61fdc2972bf5b05171a3ac7481552eee64f4e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cfee5dc2377a57acf9e4cb08399d17922dd02f2b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..68b73d1f0837efde8eb14c067c567dd3cfc29358 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6c9e30b82a912259ef955ac005281bbb762e1051 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04258a18e3636d161ed4f71a8f9456b222650ed4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a9b2ae648647caf68649dc0d688136c5b1e6c6d5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e0993e348508c1cdd40e25de66042ccbbb701540 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..94ab96ce3a0c61639946281bf5b6750ae6e98429 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae62c736e95f7bf05b5b1cda4d80fc3fd58b9a7f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0292cc0833e675dc963bee9966854d805b55b66e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2cfc2e16eb91ef3f7f701533679d9742720a8765 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d9d9b03e6c73b351569561227ed760d1851d0f82 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d476ba2a05b76fa2bf40eb70297641b92bc9974 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a075b9c1aac45ec153441fcae9cd1c149edbdcd1 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c30f3758385b7ae6a0a3dc6d6642e9f125aabf16 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..646a1528754b0d9be3e09a528ca703a37644f4dc Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3375546d1c2c1672e7c457c36d676154bc92e242 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ded8fcdaf310f241fd91e4679bbb1876aa0e97e5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a246c52609b550753c12a9e3f04921dacede33fa Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f4b30f4a1fa546368e1afceea42474c4dd61573b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fac3bff130fd6c59b8be818434378015f0dad415 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..463e1cbf4cec4d22558f89ffda0985231031cf37 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb6186754c5becabf69a187fc373ba4900ef6a73 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..317626e72435b055f4f8fa282046c06153cba2bb Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85563deda6cf844fda2b4d1f34c86f6fe95cb415 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d4b913097cc27bae8306a789953db1f480db1cd7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29efd1dd136188316f154b3e174d6be0b1e485c7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f0a930d386b0463b72e4d2c83d4cf0b407abfd90 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f8cd47106ae5b84b3e871e40cf0bd02e860f8a9 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd2a4830c87457a67d9566adcd26b0d2cd3f3bb Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9bcb9b9f491132df6d07a5ff9ef3b6cdacaa09f0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3e8f79b33b8c75f33e2a3775215989ef3281871c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cba18fdfbf131f043257d8e4cb991a92db02e180 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..94bd0501a2529698db98065cbbd68653e3758e75 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b42ddb852d0bb7c4b896aed8988bbdf0a8548eb1 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..82bae0e72e7acc5a79325a7a59be0a54db156c67 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5910bfa9455da063f27a1985a89f368813a66e38 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5cfc316a88a6d255079c66a91518bbc0fd9de1df Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db00f7335dab18b67217d6b5bac967b8d8b11429 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9eebbb16b35726fd8436094cc702efe559a23235 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a1a81e4ec0e28b9c3cd991ea06258b3f7e33f61 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2f0677eefdc6d295fa42770358d7648eebca3298 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8026881965c93c42bcc685202fef7799b4e23fb8 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e5e192445548b2d780bbf1367f4de63984bfa334 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..09da69eadaffae3a6df295248530133a308c9a00 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..118ded4b85c9965c9f1bf3b009b2f0df0e8f46b6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c6ffaa7be7a73773f679c0f99ead3d0d6e9e4700 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..113a62468a52e7ab80dff96576008768d96c5af7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..276cfff88314a44f80337ee5fbc72c42bc870c66 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7572a4d11fb3d4f668af6b366a3a2c99b2d76458 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e9efe8611d9ad539633ce9b682c858c0cd128081 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9d1b97f88bccf10f4deda9ef018df788ea2f758b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1b38e33f200428110f800d1372cb4d726bfc9c54 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f1e10d5466346ddc2d516cd505bceb50a3769db4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d4debae34c1340853f055841a88ea397d7db77fc Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4ee90e738877bde8ba6d451e7af12fb3997898b6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06a10d0853f5a213787ed27fbd68a4d59031157f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..89ac13bb0a4d61cd84e3e6c1b577dec7b3a5821e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c10c57f1468cff85d41b16a337c8f6cdb1a8f00f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..960b07f16672d29316cdcb77a3917a42870dbcb5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..556b06cca26a98ab51282e1a4430e96ccf072b02 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..29ef3699cbbec9eaf32e30d4a51887676a372a00 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..71c0ab4023397d45e623baab53081658767d2081 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1724bc1a965ae5f17ab06da648228dc9393e690d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1e76da93fdf2d144ac120014bfaa4868456c5d6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..2e8c985810cb8cba89ba0f5769b360dc8bc61007 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4745d32e2cdcb028822ef5605831c918e273d299 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..25be915b1aaf6d1d3ea5a9ad1d16b123ca0d826e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d14a0f947bb3225175eb47257865fb933665bbfc Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..29ccc9fff5ac18e2cc11efa2fb1d5eb56ef2cb57 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37e9ea48ac9d6b48e670e3f8811fddfa455959df Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7dfd04d2c9266373e975587497cb6bbde10e333d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cbc5ad45a6030410fb03fde1285fc7b11ee02bc4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..18e6c4e4c91565a208059ffe55b39d19d69fdc89 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b95d0e70ef64fbfafb40b4b183126a9c21783db4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3777bcb3efe7e4fd25397c66bcdfa5692cc7ac6e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01f9abae0a6bbed517d49695387e4315198629c4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5cf7edaf3d8e5fc3fd429b1999c4c5d48105b3d7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9f4005a463dd644fabbb0e860da09fabffac03e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..708f4cf54cb08a2d1a83095a05160a0bec745066 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be94b80463804126e69aa5d21d6396be16f2824e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..84029820f60a8bb05dfdc3cc890814cfe188f11d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f1673c33b67e7f7f70577969e31cb8256e60184 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8891a48c22df948a9b4bef9fd83de443cab8b13b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..31ce9b95b17ce4ccccd02b10c495df8244eb69bb Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fc29cb7863a9175bf528e9d23f0c50d69ccd37e6 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41732bcc3541ed9274def71db82ce66b981cb51b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2067265c74513b1e24db87d69d6b06a9fcf52fb1 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ac18444846591b091a88e1b3a2f97f205cbffca8 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3d94ee07e6c7bf8b1e81834ddbf57e1f724973e3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..11ec023611a7bebf59725b228484896b770f13a0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e6a4cdb64192b4ad124e1c547d318c81dec2db28 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..092991e06d9ea04f05e050fdb1d5e57588e4b87d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6e56b3188667b1a6e30fe1563734a42f0e7efd10 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9f4e0fd8ba547fa8e100c5875344c916e2f8c6e5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ceb76ee8c8dc4ea93c9ee22b014e621df45c45cb Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98ff8044d5b8054d197223a8cbf373cefb828087 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f7167aa1755efbad786cc9e86f2c757cd5d82952 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e17929ed1d446cff6baf2fac84f7d9ca8c1a29f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..07ed34f8bba963ccf58fc8669e2ce27fb395e015 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a25c370051c13813e82866a8b0b16606236fc6ca Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..365535cb5e22c5a8f7fa20ee4a6b36bdfc52c616 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65b604aeeabfa415bc80e43071618badf35cc239 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..120342af8fa036e6a0ad949630ba4ab06d149859 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f391a82425417362b3c11a37044b9b63502ecfcc Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a1de5ebd7ed0529e57f7ac5b57615d52a4335f99 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..383398dc9f4f9c7c68822d085ff198e55f83e016 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2996ee4ebf935d1f546069d14f159a6089679f6f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8d66e9eb7e5863d820b1b328500c94b08f7e3c39 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..94195eeb1e292528c80d1521ae0ff26b9553934a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e9f934a820b8eb2aedc60e1c105a51556813701c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..effa33b5302a8790f58e9ed55b1ec189aef3bb97 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..310f21578ad80ff4767481e80bcda01d96f0ea7b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9043fa4bd2f4d409fb9834d8d4cd14f5850b055c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b3386bcaaa413bd7188fa8ff1981d780879d34f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..40cc1454bc6fc954f81b62be38dcee7340cdad0a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0f60d54b4c24264c62b5440ab1198dffccbe11a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..799422c42b53e3a22d7ff03be54afe3b92e350f2 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0339e82953eb185d756a3c64cb0d0d30aba1a40 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..29c6e7577019176d2f6b21dab72e9d5e960987c5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61596a07d469b600487dd6e503a61583ba5ca1af Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ecc5dca9a51b89db6890ae4dd52ff9d07fb25934 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e67011b7f57f1036b1a6f6894e88a7ac8a7a3065 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e3518d3b617125c69de8c74fef7f9ce4eff3c53b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3537831acfd28d89701b57ca8c6b8c0b0356b7ad Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..597f64399e2b2fa302fa048790a28973202265e3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b3613a3a711fa0caf275ec38f9db2804a21d2acd Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..56972895a7c90d1aaea6641bbb9dacec5e72c532 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..468700f228f319822cbc928f763a881052d7690c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ccb7b187d1eeedd0761e85d0c6e4651ea845ec8f Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1b38b2c09fb1b2e30510a2f9a74645fe6503d8f8 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1772fca22e904c70b7a4e4ec08f3e893131e0978 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59850080dd2ee87e3025d23c053567c9f65da7b7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e6c1fb94cc56b77e0e40367ed7c66d6a56756882 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9fbc288850c10b3a68598365cdc1585755fd9f71 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..af34d2aab2b9c9ba1dcd304861cde6e0116a7180 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b41cdb9d6abeab31e4c07d47f39f8573c3de736d Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..be62fb3571d8eed1abb414a935876742566d0960 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..76416ad2fa24c049832f026b46cfd780312de4a7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c7d47b1e2ab45cd60cedd06bb00946d7a2bac2 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9bc642897931b72b0c78be0d22066b18bf66f060 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..879fa39a867189d8dc3e679d4da453f56596d295 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca5fe8ef6add140ac27bdb6adc791f4b93c1b9a5 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b261e428de401a08b73aa0b0702e168adb6485b3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3d4ca2519c7d0ae8d5335f8fb7e9a6cfcc33f0b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f32654e6a092f67528efac1f940736a8bef37009 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3d4025d9387e8b2ebd9daf55b8098d9f2cb4eea7 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..79cff5a13c0e1f353a1a8c52eb55f8c01e83567a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0ee455ed844a2d6beaeea9561e8d210843dde1c4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6842cb9e327e1c620effc1505a17ffd60a815c5c Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..28d8315b967ff650f75cb86320ee8deb0441f945 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6c1ed8e82c9f7c14780760526d76c591c7843ce0 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0f995847eb80b3068fb88fc68febda5a760b2068 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a145b19709dc609a72339972f8514bc60d5272f4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9a6471aeac9ae91bdad3a610c74692db3cd1a54a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2f81b86c91d54249187e957bf4faa501f6876a6a Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca95dd7e95cf048551095cbe6643363f8f93140e Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..77a935962a5ebf5fcb08a24c746174f0cf1c6712 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..951eaddd5305e2e383bcd232488db86e3e0ab1c3 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..80acfaf27a11ecf3d39f4b3d54cb942a8c5fcf49 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e326d15fc8d581d9ad9032d3655b60b9955a9ed4 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..402a3a1ce9df669d4d7fbe2dc7b8e5e7a8e8587b Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c1e8d32b5bc5485c14f629d010bbe35d2c6dcf87 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a76b4c0179c7a30d995ec821a783743cc6ab3167 Binary files /dev/null and b/tex/figures/age/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3cd093469995510b606ba104defee4d9ff32994f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d06fc674144757934c80d348180ccc03bdf499e9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f659838ec73c723059310c5acc21adbb98a0a72 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8522b9a796a15ea1734999b6ed0fd77baa03deb7 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0aeb42db00c9639e46e36776ba97a122eb43c59 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e273405677f97542876cfc152b7f2eb2a271e1e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c511638af4fe09f5c31873476e8daf3e1f412b59 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9f5603ff005d31ae09cfdbf0ae68b19555fa39ba Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..596cbb77c664e2807daff7fca2ca5c456788bdfd Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f75b73a1a015480ea227ec6001081974cd5e1dd8 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..993a3e2ca711a46655750eeb04b6390348d55ce1 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b8a7d6dcc24c555b4cb76019e114f1a639b23cf Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_asis_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dde243d5f24e1542d3372030077efccbf8cd42bc Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..063b2642e9c498d25e2122795473c92179a8cd03 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..05c0d95b68c0e57614d4b323401bef8d2270be9c Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..68f2a06884f7c10de4830f514838260d4032df6b Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5cba279d646d3be257d5c42039ba2a4ecc83cc6 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21ef467ca99f2148f5fef4ac6c3c649a1ed96514 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d82339dfdca21ccb192721794924096585489684 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c26f91f1e7e4c1c865a5777d2075b51b52dbedd Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..597c1aa9de50f6b110097ce024810907d1a75d58 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82b6c97dec8fbc117378b9faaad655c234040570 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..618a25c25ca594f903a4c41edb9ca5bb0881835e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..839155f9dbd27fdab32daaa4f4b24cc0e7fd45aa Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_char_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a571cc6c1abb8dffe9f2a57392691233817806e4 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c47c8b8bb3b6cf1294a08a0504c3c7cd6b0efc6 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d9bf11fc9f631b95c0872afc63770879ee9dc17a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da4da3c9e3be21898d3c5f18ed9276cf381429d0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..76330ccadedc92ae2eb3dc44db73e8f2190d61c3 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1b05e228afc76289488b5f78eb2d9ccc1c03d160 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe5eff32c0a3618ee8dbc3e2e298bcefbac23622 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..70335f5e98653b5996f784c557d56d21ada3f09d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..693c852d046dea2dc263a9cfc22a6fe532e1d325 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dep_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..94c3c2ddc50f4045dcf9bd34d0d0eb9574136224 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb19c6804d1e488a03357bc49a18eedf7fbd4058 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0894b50664311ba09b4c7d9a9acef6071d00b989 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7949862b97db0d23c0a701d59a8b248b9a60826b Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e668da3a95100118b93294e904e9321f569cfb6 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f541e27c70bef48f264d1ddcf38c9e955262ff39 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e63c90fe5644ceea9a5dd7d0e6f8b3c7ff0430aa Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2679194d579d6ee61da725eaff41fed55cbc9b9e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8f286da9e42c963a625d90be2109c2d508e70797 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9881eecbf4cfaf312bfb353981de3698b1618b1c Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2bbef81305593e88fd2c78e998c58ee5e679a353 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c657d89b8307f34d882b19ae5b6719e8f7eaa447 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_dist_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4be4a22fa1984e564713ea44e65d6fcb23334c55 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e85d21a8ec868382a299ae7cbb6c813b8b9bb887 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1941f2b474e5f9f23a27e6d1f3e0c834c8b1f280 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b04ad7d372fc5fab1ffd4b56166b49e14d337e6 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fcebde8e054ba3c2ab7553b1c4d4fdae39c61d22 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bbd2f75c0f806b3168e77d754a89f92a3491e086 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b2588245450a0918f0c43b452cc5d3d3b5804d1 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dddf1773fcf9835d9e0f252aa723cb9e56806e2a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..580f00d09f282eb0d22d6e4a9018df2199615d60 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..13b2ffb49984f2924081865ddcab920388acbaf7 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..064167bdbe01174f26ee40ecfcb83965055a331f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08fbb8e37d7f0dc676c4de499936eceedc910ce3 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_num_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..314ba15965e903086bd0595b9b86eaff639b049f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aaf52090afc9ebf0e4df3623deb4ec76c51ebe7e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e69ef9551134bc310ba910313f77f08e13ef1367 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_polarity_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f86e05464f46eab80330874b0564d26e3d4055e0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e264795f801b8b7f496eab138cd09d01e0ef037f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a94200ee448ebbd4306f4624eff4ce644f82da65 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35b8bcbbb30bb7f2142c5b063ce1071a1fe5143a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..19f623043d0f816c85c712d16b160935f923d3f6 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1fe3d76d93debfdb17c88ab2498db08897b45fea Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ad47d657dee623739d12489651189609f0cfe80 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f729f712368f82b34d925dcc7e3ce43457838317 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d43b120f7526a880c946393d940b864cc071e7f0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_pos_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..796b5035f30f56beb40eebe215b98e61d526cec0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b5b727d6420cd255e5ad46ab2171675b1805124f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e95c4d1fe5bfb4a5b1c7f0f85a1315d01cfea300 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64abf3741633ecb1b2d92c096fccd7bef0a48204 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0f91726d1a76563ffeea539793d64aa0a86eae89 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb6944a1fdc3cad76281990ae3df912388989c1f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c5d476ef125abb531c0068a13df7e61995537be4 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..07975bf90f26a7d22d96c0d8130fdd05fe199d36 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3f97e1d59ce271c260fe4b4dfaa6b861ef84ac5a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_tag_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..56e87e03353d3bacf90efb628c15f0a5b7ce4bb1 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a052984baf7949f1772eec2d1ce38329311a09c8 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4cc3995ada4b1e335a4762b7e28380d59e4e4230 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a5c66bf63f200d4cf546c9ef89f48ae6ba766ed Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f5a8929e30f02de1034a60147d50be0ab36a751f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..376d65064bd8b21e243c5922bedfd09e422efa87 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_baseline_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d71f999cf59bca0c4bb9f75a2eafd202a5f418ba Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..38e6d67bfde9f979cff0611b829b77b36610f5f4 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..183f58740576a00be9d0ef3d51e57b36d24e0d39 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7698c7a52bc1c7a4ece33b3b1996d56cd1e50cf Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61426722fb239d2d85d2702abfa61f1e432fa9e9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a45521819de21b511c7693726498e6f1ae507c20 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..34df01681c0541092ad946eb8456a52e27e153e7 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a577251d749d02844db07840a9279717001b669 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c894d2e8566cd1d68caec85f1fe57227416e587f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0841b3a42c4706e105ac8541096b7c77780a1d2 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6d75d67581b165f2ae5f46b26bfdd186175186b3 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ff69ad0f30514d2976f2ec1c9a17e03e1e56ea2 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e780f4f611b097e2f7a4d31794b1bfd3bc0f0c0d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f0125d1f86593d4a8498d141114e9cbab35dc77 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c393d736e1b25e851b9030e7202d96b0302297c1 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59fde3b7e294b4ce62b9c50f84e973630ea2d06a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f678d1236595223346cd7becb502ec084b612787 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24caa6e72ccee669e689bcb865f5de8acbc64150 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..53b1a2d9d6e943d47160d189aee85017167cad80 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6169e35753894e2e86143fbaaa193e6128950631 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..820052c243266a8d7b529d9c793042659b1679f9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..57eaf04f9b607a51ccccbf36008cf6b644f4c483 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..75edb35c35b83ff966b62f58faebd6ac0076d015 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..300ba32027a594715266b32bf4f76b1bcb7f8808 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed8ab625455dd2db9b49429c33eaa158e8e57836 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd65f88738322e2a42e881e47a1268451db0ff9a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d8f080b9727ce6b37949bad92739862995f57f14 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0774ba299535e9226aff54e0a99386403751669b Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92a8e38c808f3021a7d3773e69d26fcdd50c64f9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bace56b8609d8580cf8c391c067a369bca380789 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7934e99f02a47737e2ceb9f3607e0dfe6668ea47 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be930533df592d746ab7d7929b72004446bc89e8 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e5627c6b87f812c0c80935c878403b662bc2b726 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2ea2caca8a09bf47eab35bf9abd4d73245f86bc0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40191ac46a85af69cb9a2361959695e9c7520f7d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82f68a74f59f61f8275c3df178535c47e220dc61 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92129bf4941e65595d4b3d0531340c80b1bcb452 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce75f79a95a46137c7d5494d4aa7c9fe6b9f9224 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d01fcdfdee2d7d0ba217ef44af8e0a93369d8650 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..013648650210b6e3791c9ebe911c848f3d396385 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9a055372f322f25b99437f41b53b1bd75f138377 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..79369473ee028026ebdcaf3a6ac43b9e33f4dc76 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..622a63b222724e68091c593006c64ac0dd5c9ef3 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0a4c1de7e68dffb2dda6859d4bd0f9bc99b9b6d1 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c4869cc9b42a61a0150f4ad7e682a9866095effc Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..99d27a187a304bab89b1787a4cb14921d6d8598e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d1bcc766f9acc85f66e8d315c945a1f1a5ded740 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1ad233a4e8bc48d021b1708a833e14688f343d1 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5e0210bd7b1c2ae9fcac573a1b49227bc1767bc0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37b568d410d0cb5855f172511a32b56bdea2af65 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e58392df2d3e400421bbbe98e5ee102df56920e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4632ee1f252fbbf2c3424971c39dd2c8b11b7c6e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8fab77101f2cf20f1e2062ad9c75a552adc12c4 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67067026a6d1cf01de13f9fadbb8b5df1f163431 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e90d8e8affec16f010042908786e41933979a00 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01f3e14bf37da7ce59c596541f1b66a763967cd3 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a181976fc946ec8355216f8051cf4b271addf384 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e55c751945d686145067772d46e3fdbd3d942aa0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4da449968f3f15722d3905a4a3c5de5a7ec85d16 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66299cb895ff21e76aa024e681c50923a78bec2f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7349f76a8f4d2a7c102255606fa557af27c5153a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cfea37d35dedb0e7bfa9263246fb82b8ffb78435 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7486d6e553ea43d2e9399aa9665ed0c73badf461 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e9f0f6df58be7aacd10b9e520d7d80b856142988 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1dfc4473793676207c5f8a759d1ce00c41fd98d2 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a68fb70e9a68af21b6da418e31bab9125f4f197 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e1711317edcb2fcc83fbabad10d4eeed7c558d6 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4ddfc362b243810945cea9c81f2c9a969e251b40 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f7575dc1816f72f9e5510d2ae3f8d8992799cfd9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be914c742ae314cec0dcd9756d279cbea611c3c6 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0c31bdf3486d1f2b56447d01a8845e9808638c96 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba8fe2a069a80dee6ada41ca2baff3276ad67f01 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4eda1ea5cfe7675fbfe2801b046a2c4f10ff7e64 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4c7f33dfb8954e9e0eba61ae90ba9e3456999b66 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d4da14987390e5294b256676db07a69bca99b97 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8e996d137ee59410549a8fab2362f7769802ba49 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0784f0c25e24ec108f52abee9badad381a3391a5 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0543d36fcad161d5dea4b28b1d475957abc871dd Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a196589482c24533aa57a2e25873dfd5a7fcfeb9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1acfff1ae8dce149a4d9ec6c86ed59e196ec8e94 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..691e7360ccf3e4849dd2fb989acd131f22346972 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0425d6a905229175cdc70a2932434e3599480b51 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5448f93107b7ab846e6ce1aff0b28d5fc3ff893 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59a871c348390a18aa2f365fd330909ce46e797e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..84c4aba2710740055a358aaba5d99c054af6c6b2 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41fd370f28203b902a387f46bbb38260f8089dd7 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b2bde2d20daf27e6360d48651f48ec6f4599bfe0 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..550921694ac393c089004caf50251696392c7e25 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e94997e2e894b697c11fb6157424a969aebb62a8 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a3cc7df284223dd0d87fad89116ce97d6452460 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3f7992d087f260774c38d3abb16a975cebf811f7 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59bc658ccd8eef7078a787faa3a03acb207dc63e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..83b1eb0e1ae7168d351ac25523aebd8c26fe8c21 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..485e08a0b6336035183297c0d00ac6783a091203 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..50ae3c4f34c130e4a58bb3b180cfdcfd04b4011d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e510e96e291719f7d14f047ca46ba765210dc715 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba853fce6e5fadebaa435bcb11646539134cd7fc Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1dbdec26257dcf81e5ba72699974cc76b94edb5e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..285d0b6ed5d73d6fc5e148bd9553a49d9aa73893 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e62c1650784cceb647c709a074a510dbb731275 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..89e5c0eb8be361b378d6415652be8eda5d049f1e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..09dce670d0c3cd6de6c9e35bf2e2aa3e2572609d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cba1cee734af552ba5a0adc3f970a42a6f7f8d77 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f961fc156ba6c7aa5738dc7cbc1ed3224741cdf8 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca47ca81e4e9ef0cccbbfb5e599500f2e0a866c2 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1b2243c39326d5f25c946593913bd9d2acfd0b85 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c2a0b3829a346d8508ce19445322d5f666cefd7a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f3f7034b221fd3e339f0547ffaa23fe177d97a01 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82484147be51cf8e21aaf41bb36c420673ebfb6b Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..757137ea021ed268ca311749a8554ae6d28f71ba Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d13001e909b1c403244699b58c0f287b4b1b729 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f47b7a70c608fc6a28c42644ea04d8da505bb37e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..15813d2077f845d18d1486dcc7b0be46fa6fe38f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0f8d2ac8ea8ccfdaecd4831ed5bc0a1498a4232e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a1353afac8eddf091e5ef20ce4ad09da3c6ce3e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9afb2178d54304e6c71dfb69186a64c82268b1a2 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a479d3a5f603ac26e6ec9db2df178ac65ab16736 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..80bf68966ce4ddd4207a35ff64670eb25f8d26cf Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb160632ee0914078b72d911f3f0f543f3572b31 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..885b3187465383ec30aca208d69a242b36c0bb7f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bc7515b171ddbcc18d80ead633f887a586a9de77 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..48befd594b69658da2a4d07050ca3f633996a235 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1082705e9bd588d714816476cb9d54a59fc60f71 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1109c59996efd9c6cd9e045ac0120eea3b01eed2 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f829a5477308a1e16d76d6442be3c435cd71bc92 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da170a7d745805e4c6329e1a29c67b1633f4958a Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a719b8e363a0149199c2686c7a2d47e226862308 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c68677ea0883d6801a2c9e51358acb514039d44f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ffd24d4c12d507a217cfb4568cf46944d06f5c21 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..18ef9c354e231da6bfc0641c0b496da91e44507c Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1fad2ad19de6da1c2d9843d19f86149e9b1b9e46 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..832e8d732cb8cb8439e09c9356b33f7f74d79dc4 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af3d7762940ecc81003ef98f28f5dbc6c15d78cd Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..03b568bc2bda954d503eb176b9e9282437e348b9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff4bf24296e64dc28ee0c8e71ebf5d22715b78b8 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a0a680aa2eae0ee4dd9f5c7d98d92996d6eca96c Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..02077c203960c8e44fdd85558ac27900b6281703 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8af21c44092f04e4792bd60121c0e5bd832707c5 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67f02ad720440f0a59b8f837ce7d1b9eeeb93a4e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..576e8c7c2d272f64f1149c1984975671c6eedefc Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6936adc595b2ec4aa70c13719fb41e5453fc8795 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c2b3c52013f2fc65ea44327ac8f0f89c8c947af8 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aabdec41eef9e91870477565b54787edb592567f Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..423883cb055b3c4e2bb26cbafe54d2433bde7175 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..78f7e379937f66349a4cc8be0ccdb5b5dabce417 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b376467688495c88b9b9b05548f4c7fa7df26e82 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..320bc3681db02a053779a21330abccbcf4abfd31 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6af2a651511495b104aaa490c2d98417d9fb534b Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..51fd8603b9cd3c2e845c566cc0e9da8029dc0d51 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..687fb071aea022daf9c53917ba029d1b798590e4 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6655df7750ee41a0f4a233573641a0c4a85a1be7 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f2207e5045997ce2019281a7369f9b4fb31beec Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..58d99761107a07b55862b0f669673d59868b4f4d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6901ec5b06d59d073ec17e524001b188b0bb67cb Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d1fd9d66f6eecd230ae22647843bebb61030c331 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c44324d20a157a1b2cb34e8dfaa5ed5e63a9c74e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a8eb69b9e8902f2bace6ccfa66722907d9e23923 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..628e9c06ab24bd6484180d9090aa86aa54f121a9 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..86a57ef30ce988ab6bbf0e1dc302d14578758959 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9fbbabfa91dbdcd5c7f18e225832d7eca9f88bfc Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fac2efc9b3329d3300b1345062d97ae0f1e4abf5 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c5c2ddd69a94c67c059f81048c430aa91a3dbf40 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bea42e0f338e1fbdd0a9ba03d0bc0a3d148e2a9d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..477814652a3313c6c8d276877281b7ce4c8fc52e Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9b909c6dc66eb7f646506adad1225e41684deca Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04efd565c598865289d72f9e1da79c2839033fce Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da013d49ecc34a9d13180126fbcbfbe8186e802d Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf differ diff --git a/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae8232b34fea8c5794aa08af2fc48a2ff3595390 Binary files /dev/null and b/tex/figures/age/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa76f5df7b03b519eaa6304dd4550b571ce97579 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..92a13829632586a53cc53a837dbbcfbed6e6357e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ee44ad7f2faa1d9b7abd45a41409f1c0426b43a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6e01fd99b9c2cc0dc4bf1e07a5d4981327b782c3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..309d537ef1480005c93c967667a74e6e1f9927da Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f141d62d9155c8a63a64353bdb34b7041a962b8b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f46ecbdcca3146bf702d68e3a28a99e4ed8890ce Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e7e35e718365ba864dba482953f9aa7661f073db Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bf66ff8a276a7c6ad8f429100b7fc814136f0483 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fba077120fadd4b72c13ac5b2c741b01b023b194 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..814eafa1c23db41a657f5e34166fe3c15e58a820 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1e63ecd6c68cde758622201dbe23204f16803212 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a746d897d754e57076edcd6d332fb1918dc633d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c9ea8779829e459b77f3b9cfbd44d38d5969f458 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a1c7cd4cf72a095bf170c2c0788cb93b9139f9d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..aa8d04bf9f3ae6a5fac5c6e06523ef3724c28416 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_asis_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1b70597949cc7c85dbe1e4f759a7c573f94e4725 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..82326be0aa92af62c87d4b11815f630db36f22fa Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..370cf697203d6ead46858c4a3d238b9c2de247f3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..60563bd59098899ac3abdb17e8d19192b0851bba Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..637304f0e18cc5cdb94e19c70108052ee3a66f40 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..bd8f3ad3e255fc9fb3c0d5b17953035f29f9fde9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..070c27ef4e4c5573ee7f680be0fc42f573e00800 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dc1ca70b5f52a2ed7e3e46143e91c48ba81cbba9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8ea7877546fa20e5ce3091148c7443ca6326a4e0 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f7874519b10791958853f7ed65e2a94518d9a0f9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ddc5cec4224631346b9f0faff3baaf1f066a0c18 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a60ba8a74f9008ef6474c3c75aba61943e7cb3ba Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b6a923fa505042e0eac28423eb5182304ed608f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..da3c167a22e80c3ea5bb01fc557f6082074977cf Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0154460f30819ce9a5c488728f6c18a3777cb9f5 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a16122371c38a584ac575b8f5de8daa15ef13594 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_char_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..efd714c9f3660800a6a7a463cd1a959c057395e6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7ffe0ba3e1662a59d38f63f21a7698e30ff1d465 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c75e7f881b9db77eafff607c032bdcf5094c19b8 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..214b6137451b55cfd08ede280817495528be37d6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a7948513342eac19d46d7b9e3a898cd57234012f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4df3acc94045fdd49d670e930a0eab3d35f1dd47 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fd68fc9a04bb2360da80ee883ce7f7915c7ac0ea Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..39515d44416973996e145cf429aeaacbc442c97c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..904e0fdd2711326e76864196ac9b3e059c8a9e99 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..66511b6c8e3909251597f223e3df4f04fb577522 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..57386b58ceca6fd253e59836306734a0237ffa99 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..368547649c5ab13310a86f4dd0bf019494a773ad Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dep_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db228da5f3832359ff1e3410184ab2b9100ac180 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..43ada0879d888c19b7c71eb1c050701c1bfe4695 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e290effc1363d7e7f871766725921130cb87fc15 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5d62bbbaf10a93136c9047673e392637e7561abd Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..831032498b197786db212f3664d6e2dcd55e4f64 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..13892aee3b3a7c2b8067c30d041018bf1f0ba3b0 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..254cc91903b19dfe50c0b1c053a733ac17ec4497 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..be68e9c9edadf3e168d469814e4997fc0e021edf Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..33524ce250a373ba501fdcd908b2cb0175a4b421 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e04fa702aff1d80fece53044efc6cbcf2eee5a61 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fca7508d7d0abf038a8f26b8bd419592121155eb Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3b7b11f40b469b7c479aad6cf2adc77a0a467f45 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f28511fa706192943abdc0caa0382d63c648735 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..92bf4c5b534e0ebd9e9d5837f1dc09ded58b00b4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cf2f87cd41c2aa77addca7c2dc1ec84f5748837c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8872b2345341268f3b93a94c9d5705b8e107ec9d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_dist_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e7792348f3edd2eddacf5b2d941eb3a120007a6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7fe826709ea049577d8326752d24ad8263ae4d77 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85fbd5676f8fbf58d3c52858e9f452ba54a7cfc9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4a25e9bd42e1639eb61e2c153c48421f9a6ab542 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..13771a8d53ff6cc4f1f838e078ad2c155e2fc94c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5de785ca34cba258bc8cbda955306d507d9cd96c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7825294cc66f990838b23e5c2ed20783f959d4f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bc8402b3061f97026956a205920e24f87c1a2c2d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d3423de247145727d18d226081956a22520532f3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..326f9f72282510f31c11ba6b8dcdad68cff0740e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c64990ba5b8208fdecb0d21755171089c3fc969d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9e80804097a888bb145ae986ecc13c989de26048 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..14a2bd88ace54e393523a5d6984619d72cd6e9cd Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..97a3198c7229190c9f12c527a53297c3b137ddeb Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f8fced17e66a555755fbaf97992c75fabc8334ae Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d1b43a7bf3653da6812652dd22bc13b5cbc5c145 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_num_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dda78d11c8ab29035a7a7f17e843098b8a69a954 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5313123d7d431757623e09cabecb4eb0f7e28eef Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dcbc8ba5e2425f971add0ce29da31fedeff198f7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..23177e33d0beaeb4ee27f37e5b14f9dccd5c972f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_polarity_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c0db815baacaf57120c857f0d300f4c264ba10ea Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d527dcacd2924061e06fbe45823ebda30337281c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a08e37df611358833cd8ab88b6c574e90d5b1340 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..79afc1e3064277acef01668bcbfb35540b225824 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..586a7a0acaa932c72b516fbea556e392a015a27a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3cc2d062560c721ac0014e36ed4219e37ca93708 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..83ee07a6e778ef6618b79064186971d6c67657c3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..23338452582ebf81ed00138af3d54f3fe56b359e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e9e4ea7f9c0376faee9f3ca5e13b401c972ab8f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9ebe58faab8658702951a6b937b0fe0d7b792e0b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7146a08b7335be8b902898e4bb38ca56544a8c02 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e37d9b6fe2ad54ae6144291c3f9fea1956bc2d20 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_pos_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e44928177552b6aa833ac031f9e697ab55de6dd4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3f012e6156d977b41dfe8b1165e768edea9e5191 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5d3d8fd6b510c9683db801d2366a87e62cf66e6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7dd454e7a449982ae653f9973121074d358e7e25 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d3e827c41fbf3a99611c7a6405e81770a2134a34 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0d37eacec59393157d1a417661e0733856f0abb1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d35da7e4d54ee424a5dc7b5473a4522d14e4146e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..880423f03ef8878070423307c3f1323b3caa79cc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b866d4b6e182f3104910fe11addba14ee6043b75 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..87bff14e8758411355d6216dda0787b5635e41ac Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0aaf30f51141507fe7192ef56b9c846562e9a34d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2bb7e5f98ed9c7899fc0945ba936837a0df5d3aa Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_tag_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..96c9148a51da36e1a900e24ad04234018ee5a93b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..71cabc3006b30782b985420a27cdde3280433b55 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b94514d77ef75761be135d83b93640de59bc5e23 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8694f7d782baeb211ce03af84dbfe908656db61b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e8eaf547d777405288dfdda33b2bf04f4bc3748 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..6809266fb05fbdae4d4b0e964299fd6d1c716afd Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b289214400e9ca3365ea9b3f3eddcfa4cc919f02 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cd4ad6ae7042db6c79151ea6647e09677741085e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_baseline_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..432fee8f45024b80c5cafb7456847cd575f26897 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ab23b246a9800003c9417928853ca03a980147fa Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..012057a02f5b6ca804ad63e64239f85b392a468b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9b8027a63d3af4d18d3813e518d7703199e1e390 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..baf5f65aec84c39e3b222dd1215ced92328485e7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..12c6f365a60b7718759b8736770e5dbe89348746 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1333e373ba5a9a7d91a38ea5025b770f05129a80 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4eb14809b096084073e0d5999193c93ffb71c664 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0f7ee842b44482cde17d14a128cbbd58fe8dd48f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..f77ccec7eacf110e8a90bf255a584c220e4cbdef Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff6fb59d0c00af54f0b5f4351655708bdbff72bc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..70d0216410a3c41e5777b4b9f88762545bc45365 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..470b33538b4090718846ef8e663a712a085d8423 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..7a67724d1fa37ba442b2d01890a286785733f935 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..60556b49a3bb4b18fc198b539aaf2bc8413e24c2 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..879aae5097e00cd88dcab56b63e9b9b0949a5b91 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a52b4e2a1d6e8fd79ee728b05f1a8365a0e67daa Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ebdc59105812efd1d89a8fb6fd8619e1534302b1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a5571e6ec7747c6c4add62dd762671a987cdd711 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d8ebcedb9b2f5ed6bf7ebc29eca4e8830079ccde Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6791bc6aef6caca576ed425c2becee1287cc7496 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a1a10db48fb9e0678661e54a7d7fd7641687f876 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef3802fb17feeac93d9f182904cc3f6815a3b35f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2cbf24f03c657045d1a6c96cd34909087853046f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c95e43359c08a7bb26c9c379b0d4a3df093de1e4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..80442cb2d73a20e19c3fc8901944cd60d8fd1a57 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1000cf468ca009b7d650a358dde5dbcb0920640a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9e19cb7df1e5a396217b1f44a4fce0b6f00901bc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..48b8d8bea9bdb1de20376c76a5280acb9c16bfe4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..41907e0c5bc668c11e7f1256a4f5ea1e281e8f49 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e738f5d70aa2fe71ba540d99e61cf4108f7b08b9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20aaff2179e1307c9e99c3d678f9746e26a752cb Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f52c5de48b066bc46ee208b16fe9f0a312316f70 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..acf25c1e7c92c3543c80d113a72811f2b00839ff Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d77fc9ef169e025dcc41d4b7b1b3a20388eaf7c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0c3f40dc64ef364bee99c29812d3baebee3e622b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7bcdf90e34045d7d283e0bf546833d309cf2cd08 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cec93d82470805cd9a287d9cb78d6bdb67ba4b11 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..611f9425ce17240bf58f221b3d55ca663f5330e7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f5554d07a9807913934f550a3d91d303cbd9f3b5 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..88a144f51ed09308dc4566158465aed306c719c5 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..8dff4f5214e8caa4fb91626b48cf4ff4fe4bb64f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f72e79e8131e2e0c387e49deb4f2ca9ecac371d7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ae7e721a31fa0b292013bd06124a60d01717ff21 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea7064aaa45f790c6951dc01652b995ee20e1174 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e1c4a272b20ce1d6c8191c238eaf56445cd576df Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e7d25dadb378ebf13755f96352c2fa386e63036 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7483478dc5e20fcb711b5bdc41421de70b636f75 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..28123b53d9a34d1786d1dab26ba022bacf565793 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..002e9770c1faae2add6b7d7d2e230443304f4ab9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d79e834794e545468c0034c6a95d06e14b255ed Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..96b34aef86933760fc7e3b822a7bf177d89551ed Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fafe4285f0fbdffa1258ba4f681e75e152eaa389 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b3c35a66d7e935aa4f1a692fcbc02f108f6f78c2 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85fc8950f692a66c25c031cd7f17270fcc8e8174 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7782e1e3083a9328b4aaaa969d94b33ce00606b7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc36c323cf679fe8d4cd9fefae2552e6e1880e3e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d461fa40810c383fcb4c61960bbafc22b57f19b0 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..972b62ee71a8f716cf300579e4b783c8af47fb39 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..69f84759870cffebdd659934c7ad04b8e268147c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a24617f1772e1bc45cd0edae09095b65dba2d234 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..5871670c810e09c0ab702ee38039f273879ca343 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3ebbb1d6ed644932db66b72ec5529237240363f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..07cac6e76091e280038911bb7d541ada9c5b7d8d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f107a235b03e400e558836bb756745308e9ba85b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e3ef5aa978bc91ebcba92ca5595e0ed0d515c948 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..297bb0cc0154ffd64a6dcd70724e51499cd6d01f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5e7976b93fd479ab368091b2a3d46b65a0b3bcaa Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..05b5100f314766946779b27754aeaa57e6cb4697 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ae6152fce5dcbaf7c6a097cc8887b3424edbc404 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06063d5ecb316439fc59e9a1ed0ef96f9eb2d009 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ff79ea5f405c2ee57355899fadcb54639dbe5842 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c8045ef94caab379d9f934471de31ba936dd38af Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..1c93ff1adc4c49cd2aec19dd276eacf6584dbb6d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4b7f7dad819a57f06123bbb99e730f6c08d52572 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8a79acdbfa2c7e6380b75e2ad889bc9401ad4d58 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4283f4d2bcedb90d900ba4a51adf282c5248468f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..33628974eba0dfa43bc42a8afae07426f34a692b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7be15b3eacfc1ff3499880ece806445bf1ab3c45 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..882594c7760fd8f984c2466f02cde27ea44737dd Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5cdd71f36637fd806670fe229c356c5e0c7e863b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3f5b4d421ec4aac70286f4bc99ec797855e229a1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bd183db9e4f451a962ba757d350b02be32fc8487 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4dfc99b950f6071be02bfcd3eeca36086fd079be Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5d320c48903a625c035799c50e86ff300557a428 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..814ec0c021cf499ddfb5798bb503c8a29d2531ea Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ecbc24d7aad801e70e543f88fdce4521554217d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5a9b1fd804c23612db35b1830f8bd4254666ec42 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8695df443bfd79c3756a97f9a9868147a11c45c1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..71e8907d22afa19874c4cac530ed5cbe2d140b92 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0ba77437cef3907178539fdb746234b5e9c2f31 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e60cc79f09cfcad06ef99e60a53e974537be7189 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab788062c46298415dad797003bc9b480d978996 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3d05d795f9f641a1ccb5d3d538a3512e88df3b3c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3f80d81992a9f7e47162523ee9afe302865074e0 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6b50fd0092b374dfc464a46790aacca1bf2994ab Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb7e0423ae4b6c0abee946f67be4200647a1467d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..c2f2f10d0e414eda06c40c830b0f229c9f2f8535 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c9a0aea7ee5c75a17308eebc668d55058b05b957 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..75699128920acac0602b7ed958bcdf1cef79e853 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..618697f93631a70bd49b102680f3f35cfabbe741 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e3fe0cad2c356496d014ab4cf260915ced521260 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9cb41789c86af6522e36a2bf7fa05e600d8a1ae2 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..75967101e8d29b4d81bbae3c3388e1752060bc52 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4a25dec6505969c30ba8ed636c6f95178eb59e5a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..873d60090617c04cc4c415010950bebfe6d92f92 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e5272a0813cd44e56fc6f33a01681744019c1e38 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4556e5c7ac3eef69731df7105290edf2aae37bd8 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d52f1d69a9b9beb5f9c8551c239a3c4b43d14623 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0d5697054aeb145300387b59cddca645282fef89 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d437a2a0d4f9a37e7e5383d2681b4b4d5e1c8a0a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20fe4a512ec954f4146b50d7fce9ea7a3a9fa8ad Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba2e37bee69975a0905fa034102f1b110e693b07 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..059003d80158d65fa033445579dbb67b3f77f80e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21c06192d0349ef0d082630f742586db56e87d50 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ee0b4d573b5456830c368ecc58d57d15e9db1f6e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66d0c4559a4ed2753a117a9790ffd5300608f64b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d0fdf527519158b5fb0ae566de67288026eaa7fe Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..77514b10817395d73ce3cf8cff11043be0c118b1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c2de065e931c77ee045cdf9a2c6915b2caae8ccc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd0fe26821e4c57a5bc6b8073627a5f65fdef7da Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..3d76b926c1f1a6159dd3848d3958f1c454fd7cd7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc3902865ae5814170ee8b58a9063e43c6cb3220 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..16705083872cbece045d85a58e8d426e1f7e09c4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea456c5c6d4b53a33bddff32d6442e45f00f8c4c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..cb8cec303efe980a330602eb1e11785ca40d1dfe Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..990ad8a3f160d8f90638d292507bace274df1ab8 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5720ea6de453de83866cf70da1fa93b7750bcffc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0620f4c37dc38d0b461dcf9f9a8c9b205e38d02f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..4ecf616be1bc9090b4315ae536a2bfaec6b479b9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4347a213ab2f00f3ff1734745c632c8ea9db7b5f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..95158a7cb5841dce0024221fd1676b7342740aa3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..46664de65dc12ad32c87a0d576bf7daf3aa1d6d4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..dd3753810083381c6f224bd62ef8ebb11e43da85 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..df6889e241e06bcb80e18001c953532b18e72eef Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b23e15d32a6b043de7d3491603af0a18e5bfd40b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..499d6e415fe2a736ad29452dada6d6d9b0bdaad9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ed3f700af12269fa38dbdaaa99abb5276811834a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a24d7bcdaac5e2c5f9c9f3ddeb8a7079c67f43f4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c9e9e1c64b4a7dfd5a403c5970dd96dc22b31277 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c2b35fe4d8f019e7bd3098f59fff03fa35a5770 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..fccd51d321dc0d6b4a712485bd78f610ba2acb39 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dfebfb4fb8d4c7d705269efe03f108cb1a80bd83 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fca2776d817aa75273cab87fba478f463a261343 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59e223bfa03b4cd024e0f927cee4d7ad1b34536e Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..dd2e3058d123a13aec0ae5878c61da7b566a6ff6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7cb73ce78fe17d04ee9c405db083b0c0b20b9879 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..46e149119e11d580f6e6e297708c5a94d71c7f3c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dba40cc2680abb35193a5fd6907d7cfa9fa87173 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..08ab4b2f7487cd4dfd9c80f7a8368c68471a616c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6acd93d4feb3a9d5cbc378e181141f7fa8bb0b1c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..77bb154cadad1ffd59fd0062b1db1fe79ace25db Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c6ab73f22dc4d6094777b8f469e2e9ff481bbd61 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..076b92f84acbce1720b73d8a72706833c79cb5ae Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..702a57914df5070bedf7919b91a807c5b21a37e4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1937f0d543316adced5a48e57b295dcb7763d367 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e955792c332e2ed7a2bf09565f7e4c06fff02ec2 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9bb42cc2755f39b0e0c1d136c462c88c56984244 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..74bfe1da9078eee234ddec5537db0a037fe0e278 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..98ec507213514b9c28afe9f48c0e2455b1e365a1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..085844dd5c7640db791a8b9a4cfbeadea5fc7a26 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9370204f91d81623429f18f7596cccdc861bd551 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..024c9149baf79e3a11d3553392723abb536f08c5 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..796e242a388c521b11c29585864be4ef70101359 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8fbfb76d818d5d03e736982551c2f89f625d3f11 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..d5ab8d2a7831c18f5b92c59ed599a94d74162832 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..395166a7b344a371f299962cfb3249f70dc58276 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..88a3c6d379ab7a560dadf49f7bdcaac3af5a2529 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..950b790a576209f3412a59883281f181e75006b7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..b4b510ee8b8bf34de700c69894c2ed8a636feddb Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f81b44c0fdafed611b1a8f281396bbb72d8c9354 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4bdd60385142ad1285cb4188d3442b6e8456ffb1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba8f37bf58f2c0912a9954f6801f91c222c69fe5 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..02d62daa686575a3a403e2aea98bb66b0334fa12 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb572fb8a8f95b9b8398e4d5c34534626877f676 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f460e98589d2285316875182e3eaf8fcaabf9cc4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27362cfb00e8949b891c1a456fecae18d5192896 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..0f301359458bbbc7e8530af0bbed4e9fcc22d5fc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ffabbe295eb5ed7168512fe2143071d883c102f3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3b232ce7960c124d895acd0c23194f7cd2cb935c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b154c541e93e4797532add5980486073e4f21687 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..89d2194700fd47e2ef9dfd1a2d11273f6f73c1b3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e651ad69c94ab2f8769992e47910312e419730f6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3c15fd98aa6d5464e95975dfc87b12116e8de2 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..03382242580d44504aeb303775c7e8b8465e6c8b Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ecbac96bd33ed9f3a1ddad266dc734ce6d1f6f2a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..458bd89a15d533aba7db491f0e66ec073e1ba70d Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4288122e2ba216ad4bee355daf49101702f50ae6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1310722d8a7a0a6864c7f1fc88daca8d1603c5a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a18ea3c899a5957f32e44c51d7d2e1b4d6ed1dbc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0bcd750e6ea60a425379411f5611208aaf291d6 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3de9549c4be03dfcd73c32b0e0ffe4209d24cada Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2040ac086d63314b189a16747e24332abdf06405 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ada8160af464b4fe47040c636803d7b7b898d5e9 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..abcc34abdf275a8b04824e7cbe8e6291df3a9936 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20ee9791bdc73c546d5756e10dabfbb79157dbc7 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..826b2cb6cad17143581170d913fa64d5ea9e0b7c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..83605a73bdef0d49a9b9989f1f45bdaa0c7df658 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ffd66250283703e0c313f85ee103d9167178bb1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7056102d9b686ad2d4a39aa96042a995b1d404a0 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9af0a67ebad7bc95ac2abb8035d5e7b4d8cfc5d4 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..9664142a5871883b9206f635badcb9d8d65c51d1 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..722afa1effb021ba6fec9851f5e68825250eaef3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5d662d0cc7fe4b12c750ac1f7b98d7c4f0c45e1c Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..abb38039f2d4d94e736236e877fa2da066f88d48 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..ec2288f063d94b838ecf165b4381161f84018a82 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8d3e9313be12b30f482016dfb2b076b81ccc8377 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..369ed2023d42b52bf5fb1bc83ddf4f4ca38b89c0 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..72f9757ed4d108e436f54cbdb1f0a50f410769a8 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..90f88a56bc21f32d2c031b6220123d3f257c076f Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c821312fd4b6c34336c46e6bab02395d5a8d05a3 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..736708d6917c0f3d923b78f1a7042a557ef048bc Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..14ec8c8da204bbb3cf022e1ed6ee338c00ef63a5 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..71e31ea65e9bcc838c40c1135de7dd8e204396e2 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..96f1b943d6bbbd493f026c703dea1e321a6e3fff Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..87b3405a9bd478dd6ecce901eb692eba6891c9f0 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a828d308d7c202af80dd971aa64b309a0a33811a Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..a37828715e03d5147fbb1eb7ed24dd374c8937eb Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab2c590ef29b427cd3c425a9501335f5e79fbccd Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e549c8a4c8a28587d3883489c0c0a5a0ebe74a35 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c87a232a9bed8c96f5c96ec89ab42611252f1ca Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png new file mode 100644 index 0000000000000000000000000000000000000000..e3e154094b74c194207d9183ef971e2e2ed4d790 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.png differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c25eac554e2fca8e783779a5204544ec77303f93 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf differ diff --git a/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d93188ad06a00b76f31109b1f4b94dee0dc2bc63 Binary files /dev/null and b/tex/figures/age/500/proportions/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png differ diff --git a/tex/figures/age/f1_scores_100.pdf b/tex/figures/age/f1_scores_100.pdf index 47946a9c51e068b81b61fb95159ecb2a330dd6eb..e407feacb6d2bcd5b9d78cd3d16210ce9a266c7f 100644 Binary files a/tex/figures/age/f1_scores_100.pdf and b/tex/figures/age/f1_scores_100.pdf differ diff --git a/tex/figures/age/f1_scores_250.pdf b/tex/figures/age/f1_scores_250.pdf index 2aacb5f4fc042d0fdd506a83f6edb990413ad8be..b55cd67f1764a00c083d3cbd51e370d645a652a6 100644 Binary files a/tex/figures/age/f1_scores_250.pdf and b/tex/figures/age/f1_scores_250.pdf differ diff --git a/tex/figures/age/f1_scores_500.pdf b/tex/figures/age/f1_scores_500.pdf index 375ae390352c3048d68d87280835b2d5bd9f5943..4861e9d623e35883094d39be8848b0daf9b682e4 100644 Binary files a/tex/figures/age/f1_scores_500.pdf and b/tex/figures/age/f1_scores_500.pdf differ diff --git a/tex/figures/age/spearman_ext_100.pdf b/tex/figures/age/spearman_ext_100.pdf index 8cd3fe9d4ec83301974d3d7c9287ce94d5625d85..a54b5cf7e52ecf6114bf0661f269418083fbcb4b 100644 Binary files a/tex/figures/age/spearman_ext_100.pdf and b/tex/figures/age/spearman_ext_100.pdf differ diff --git a/tex/figures/age/spearman_ext_250.pdf b/tex/figures/age/spearman_ext_250.pdf index 9dcef8c3e5fbe56540094e9f0ea1ac782a5827a2..a34bf1ff62d41e35985dc73ff0d32770e64146bb 100644 Binary files a/tex/figures/age/spearman_ext_250.pdf and b/tex/figures/age/spearman_ext_250.pdf differ diff --git a/tex/figures/age/spearman_ext_500.pdf b/tex/figures/age/spearman_ext_500.pdf index 0f87177f851b737c3ea2ad4dc3db11ec6c9f2018..f721750488f88471efd26b37f8750cf299c8a207 100644 Binary files a/tex/figures/age/spearman_ext_500.pdf and b/tex/figures/age/spearman_ext_500.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b763979661b799de5361d987c1b61750a350bba Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..25c9757b8a48129e0830b46efe12c74c5f315fbf Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cfaa3fbfb33c0e9f04d164295f154f56ed9c0a39 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..09c26b348bf6cbf17fc2ed42af5c3717e92484eb Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..42226825aa56eb1798b493573c84e4c67d4e1603 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..afc426e4258ba69b28d64e70da8d674a371c28ca Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21a455307c792365aeba482a655a1ef0c9d6e54b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..29381b833ab047a323e90f19dda7826ffa292809 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..63933ea0ba2a253827e1ea7e79991cacc2f2d6b1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5f184b8b1191454484783b329cd2daff0380c959 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3da93e95a2ece741edfc69890245e5cccb4b6bf3 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..43b7a1ff880abb4e4e65ed3dad172515e1c7c8a0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b4b420fbb85494a06bf941264a1e816791c552c5 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..75317e3dfbaee8c39e3269ee11756fc84c1c148b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c450e8b0b4afadab29f8ad5a82ab3d2b871c39df Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7ef6a5d237330cd08716241e8e12b67b30d4ba46 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..966f61907253685e3f8ebac2ad6b1b406d0b30bb Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6ae8c1dee674190d902535f406f9b1892527ac63 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb4e88109a9903c77e022f14774ce8967c78bf69 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..04d06f2b32c54a7689b46c061f351eccf86392b5 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..176490159482d6d5a13a19b5df2f7327957ef883 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f804267e659d87cffbd8a576635000d263fbb84e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..51feac276b1ef85b60a5724b5c166935b3ec753f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..02671911545be30722e622b361145c5f76583f1f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1737bb2a53d7fe3073c76eaa38f4264a2179e15 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..614f38d074adcbc173a75a79caf50ec526db22e6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3de3033d4f17faacc8a33782d782b6fbd7d5abec Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b062fcf1876b72653a2ba8f4927198676db08cd4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b94f78af840c4b34eadc1555211e0de0fac4308 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6cdc8eba5a85d5f479e5d6027ab6a3c0dff0495b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e602361c3e2e30b2db7aa76764e7cc9d3c8b0ca Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8ddf8534e200e123456711086be06257d6e5c809 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f173cff00df8639741eab31eee5ed8d6096d5d0c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c019c66ed036b6c7f994d768e2c7cfd7b76e5f48 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..70f67fe51a8df29017d584bee8524ea79553701a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5e5fe582ccfa22edaf955769635a705e98c29fa3 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f8293d2999614f659324c6fd76c75ab8fae7c96c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e43fa15f72603a965012d0003aa9712deeeca911 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d3bf086e6c48481bedb04e0d5d0a8681f752266 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e3f7a1c843508b4f56607a1fde21614fbf8aa4f4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d947cf21d714f69b28fd5f8d15d0f246d2ce6b17 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..bc39a9075316a271b70fc7faa11d283229e10e34 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f44cd29f26a4f2025e7ee68f7fcf836f8931897d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3b7881a3f9bf06f5714ab2270860956a1e98bcaf Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe9a26647993acf99fcdd4ff0b8693293b54d23a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7f170d1e1b56418158f488aa832c5250cbbce1e2 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b617a3ca2529fdbda1638d1ae0ebfed0abf352c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7e0b31e708e4616a87ac3b3779e9f59a09f097f2 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36adff5b0906e5791104f9d13942f4a38e43541d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ed31e2f278fe468f80c7e564404fe17145a5a12f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aea0a927f3eb2828a86f007c676241489e1d740f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0b297f0c7d60a30fe4b1bd121f106dce74f870ca Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f6dba7c291165d1bd190abda7d80040012ed16d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5aade0bc752fad0eea595b3c2931444c57284995 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed85fed9c78c96c80eb844a81aabd389ed72f6e3 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9efa3b4a05067edf027178dacc333a1813977d7e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eef1a3e82bb775860e71750d0339c87afafb8d1a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7db8a67dfcecfd692d1e31db13f73ed59d6a2b9f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..71c96cc4bcbce39b2753d9a2519501ab0bff0388 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fd763539aaab6278ab0ba2a5a548a9a09ffb2700 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_dist_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7973ba7a17028ec26c1083e41fcd8a655c5de9f6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..73e0248a2e66e517d317cf7030144d32cba3b99f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e91fdc41b19ac735d55a7f44d51bec42d7ed238 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..31f41f10d8ce603a36ea62b7a5e55c83b9bf584a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb0e9c503b0ba609b69dc940b5662073f35f42ce Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d3170424328704f97f711d4b49418a139aedd019 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59aec79bb445c95440203a78b05753fbf0385f78 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..589723888b6b8bbbc18c26f876f08e275617f281 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..48b08548d00ff1f54dd5c0c39893db3fec674dba Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..552311f1c6682bb52820579821a6cd17cffe3afa Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e84a03cb5c09509b03769308461e195aae3a93d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..eefb79fd137020d9ab27f43769de2969b3f3f7f2 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..75b40ae9bed1e8fb9a591c4a75d9487e9f758332 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..06aad6bc36819d1904829117efae56ef48cc8ffc Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98060628987a10ae119bc09f3d5959fe2d9e5ec4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..69543f79c541fc320421ca2081022381e1808d7d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_num_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef757fd816bc05947322f272e0a7305e2cf3f3ef Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..1ba634b4f36225129616280970b906949fb0c89b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..02fa275041396f5a7329ba0eb50f2b31c9f29c6f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..58bdf7dfc854abfe44cae5868f15e60f153aaccd Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_polarity_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d325e117a4e842603e2a378df8171e0daeaa203d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b3e2872a09ad7d635ab7ebc34c1bb8c6555a060d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8aa384cfed3ef57b6dfc8a2bda5c50f1e7197a22 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..00bad4520d0bfa48bc085a84b1f6e0c05de1a8aa Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98649513857b2e7e4ea2572a943ae08a71513821 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c1c2a9bd0803a48bcfc7a5e23d2d5b90a3be5464 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..981260d7b2cfcbf2bdc0d074c0fcc5409a5b792f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bf04e0994769d47c0f8b154f46d2f774aaea8c65 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5558914ae964acec4d672a8a2a30e5aa1a640da2 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..52e2cb95f5cc04bb7ec1d81f53fc06832519dc62 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..13ba4d18b7aa53d67faeb024f46bee446d29ddab Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7d1ed4efe5aecbbd5fa2af787f5c093fd72c6850 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b688a3828a5c96581a664d586649c417cc988c69 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..71e1300014cbb30bf4ab656058d112ad5d0af11c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..110022733569d1336d490e8c6d0bd2568069958a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..05c1555eba86ec4bc554b0705170a57a86fd92ed Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0a6e394fcd4d7ca17b672b3a936f6cec4bb9abfd Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6fdbc57f73f79e73800f6392aa4b38c0cd5e76c8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fbadaff7fe452258bc0b808bf43be6683a9f917e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d716e9a9040ad6396de774d54d3e000eef5b82db Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..667ea762147b6c5bb8ba8bb952a46810e7cf83ed Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0f57b430169e8642807870fe8edaa35fbe671d98 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..48be954a871da9a31d1a22da7f13efae2121ab6f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4d582e6a788d5135e8b14c73f776d97913735d3a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7495ad1dfd8fbf94ff6638fe422e20c49de95343 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..74b331177aa3dfb8650c7c8661561ff31a6aa0e9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8043abdceee396f842847788e4644d1c8fe1287a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c2453b71ac8ceb2c7a1b53919c2d9647fbd13d8d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4b0f74878f5ef125290851baf3a617469536cb0f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d896d95b1ea98cff26e92412d9ef01647fb3b4c8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe99b72885596cccb569daa3b41c81c0ac67554f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..602703880587bc414463c7d5cba9fb5c722ed33f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_baseline_word_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4f7f605c4c3e70dd83dbc685445084ab21ea00d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..206bfa6219516e5e4abcdb1aaab8e42e8680ba2a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c59f6c816960a73f4ad6a089bfbd845923dceb8a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9842f474a7d9af700399109c7fc79666d947924f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..63c4537d1c38350c8c1d9f38fc1a65ff4a433491 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a657f558039fd22c0132b029f7760f8765d2c2d9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..479a78b60d8f5a696cb1773664e610dc1013ff6f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..979ff61d6fc699d85e28c987aaba49dee3d574c4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24e38a373c0cff14d2f5b178544d727feb421741 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0d3964cf6385680f96f4422cef2876af4d78459a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e0b4095ad30faabe9936a2455bc0c3a2477113aa Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b2371e6973fbd1cce16702b8716a2ed53e975940 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a9032613b248798e5e49fc69ac08964bbab71318 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..301b7bac5ecb48c71efa2cff1fe686f44042b945 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a2005b729679af52615822d484608476a8092b6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ed254853b48e10b4d5b184d508e1b96f908095f0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..45bf4b15e87255eb5b260c00d64f5e37b3bf5987 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..1dc22b18668e0e29cd8183a26fd43985bbd009a7 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6781dc9f4cde4300bcd3af155e2ffd1a22eb07da Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dfe664fbfb0b5fdd6c564c130fa1d3623bf3dbc5 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..745d141981db2821569cdfd0ff4d05c45944dd3c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..1304267683896f47680d8225968a3ccee85358b4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..69465c41a841a70237d445cec994e64706614696 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..158db64c8cb41b296d055e8dd6a618e7b336082b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..70812244064e2db4e96c153bc5e06e41df1e3bcf Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6087cb4ee6a260d1d408bc4c6e0f172bb2a95e2e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a5c291f56ed4557018308660577eafebb0d183b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3c1945ed78851dae24c344de2b7c9347fd05b2ff Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1cbfb9e96d391da86c67232b0157fce40f8d399 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..fa60890fd168df6b0488565bdbd530f6e612263a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae7bafffa00cb8e0fb8961ba03d8567129270c48 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..74ea21a20f01ba610a4582f9c79a339b335b6a88 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5c259bb58b83c181140c1d80425bb33a0991f2a1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e5c37bcff4b1641e1487a08a411caa49ff5eee79 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0fea7cbbb05bedf08414bd0ac5b268c2eaa6ff88 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..780ff418134c73ff0437ee4d9b3ea8074b4b2982 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d82012d9cec3fde1980fd734ed5e71dd060f9bf8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c04fd332e047e21068ec44a64d20f0b8c8309015 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4149f117c2f4fd88aba21f9bcab4a62244dfc521 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2c3df7fe3ba1c105185d98418c3e6e630da6d85a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7d1e99c2a692dcbae18f25272239f4290083090 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..16de7a08e80a1b4864413f885fc80f231e25bc02 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fbf32b9ef4e5dd45965a3213df8f9124ecdfebea Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bac6c7ef604838d173c6921c2f161c8a2443df72 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9c95b6e74fdc2f8df29221c8830c5a6b20dc6e3c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..999af86e64588beb55921161789b99b9bf0db269 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..76443cd4a43aeace9fc292b36bac7a0a965a243f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..28b27dc0fbf7b1085a4297567408130cb2b48b7f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c7fd717d943b4b2301483bb9381d3863269c688 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ba6c498ef79e6cf7e53cb6464677e33f172c08a4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..86bd3d637d8d06e06fbc5fde2661f7880a08f3b6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..641d1db1110c4f925775fa15491997c6ed096ff8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d6cdd018c854b79579d78bb6a68ec1b082601fb Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9f43e50a950075b8dd35bd638870d1728bc267a7 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7c9552093b245507183c800171bea954eb2a4c75 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8ca761a89785627e59a01acc322af6033d23f4fd Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..802ff4d10a293bf2b0a4f226855751201c813726 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..26c3d45e5e210958f5d9b3e9dd631777718d7f8a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2ff0c4ad24d4a52fc5fbcb5f4795a126dbd4e47d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..79b37d0b3f17803a41b8e11cdb16e2542c9c2024 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9835156a3f55de1e8b6c8d4052b2996b1ee552ca Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..3862f01e96d830441070932c71255a7afe507054 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d127ebdcb56a0214c061a5b6da4bf784a3a85a38 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..12e04731df13f7d2cf0e59da01f5ae23a2e7ff5d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e5df4fdfd2ab144ff43bc05c1c067d599000e2b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4ea94edb7cd43c642412162d8e850db053d9055d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f81bb377003c71f6395edd9cc247518b9c97fe5b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3d48089bb4e6b59779be27a846e576327f481019 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0db60052f9d0c5d57704e1a437603441159e7afc Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..595e46691fc6ffb4b94d07460c5ae816c7d96e3c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..235a93420dc9703f62c0212967cc38ef89e6200b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..63f81f2308c5fdcf2e44e3abcd67067a623fb176 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce6dbfc7d71f2600baa5d25f9552635a428063c8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..db23b6f08fb50f327ebfdd0ad34e6ad87e6bbac9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..12d4e013636e9d88d73ac91d2348dcf23885fc44 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e2d31be31cf5e50bb93b87daba36d2954ceb61cb Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb52301e03295c7f3ee355871653c24bbbe7c489 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..18e0f3eb8f0dbacd1020f7784d4106d689a0ce30 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7090f7e0a0c11ec4c8024f248d14f7599c3d77f0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c5b1c88da4d6ef5592b34b8a2cb22638d58937e9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f788afa9588f1c516c01b1bf517d73a21d56681 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6244e075e9a494874cdf63534ec59c1ea2afe001 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43fd7b51398d1119b14f8eaea168db712c42db6f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a707a0b319bdc767020365a2cae3409e8528a6c8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3669cc02b189649394d0ea709be9693169e53771 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..77ea19dec2eb2cb2e43b679f182b05057ab82577 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb8396bfff209229d12d1fc6d49f976c3731a2d3 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..15adc01231706b3ab17ecf76a96cfe1a4a82bcb6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e19c7687f26e8c2b502942f88997b575a30a3975 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7f15382e5533ef8a64cc36b470dd32ae77f1d3e6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29588cd8d7382a5a22f5b88dd1b2dc493e9fef99 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5d8f719392d3f27166092aa43c8853df7f48f09d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a9bb27fe82ae385156fa11b4b8a38afd8103a10 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..8142c73cd23b6a79ac3a6ffa792758c41ab78c35 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e254ee6dc7d0e8488509c62e2d70a54db048f2f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..da4424163352dd2e10b3608312182a3780ba81e9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3036eeac199a64017ec259452520ba7a1671d2c3 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..725145cc2a7318b35509f7082c9edbf8974798e2 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5514138f71d5c0d97327d68b53b2b0691b4add8b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a759223b27c42796c644760ef0356116aa52b14e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..993932cdd34df3277256af0df49a62e74d3bc2f1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..129e23430c3ffa8876b2c81ab606d63dfe9c90e1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..63c4bfbb8a9b2dbe84b3fcfb17f1ba46cab54b06 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b5565d1a61bad0fbb699261e84d7408e0516d67e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41721a0a7e1c83405ff32c12a580f4bedd6d1259 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..dc85111db848985c4b08064d25354259121ac450 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8c9674d3579c9742367b7a855731afba4a5d3dac Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..52784cc80847f08bf9d3538642866322504d090a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fab40b147de61467e6f1e3e939183c3048e67be5 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4c5ca6046f57692abb0ef2db741665d22c0c72ef Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d1c61aa918218e764b771b6b43707c0164679023 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2c37018a2271d3c335f70433f0535f082934bc0d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8b31196e5e68b3e84ca49fec29e0f97891122d7 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f98e33ffbae86d79fb7ebdd812d06a43b9760167 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..88620d442017376e79967de70ebfca5be7fe74cb Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f034005644a13901394b908e841f416b022c97b6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed2a1f3d3da93df6d5959e6784667bad86093533 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d2737cf98c0c7910f44a0cc7489e7dc1353725d9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..133e09f1de1fc02664231dc5aa09184426cd0b08 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cc57ab5f02c8eec65564560d9debbff9db926deb Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b657717b5fa98a1db1c52d895576100336242fa Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..54c77a618d15230be61caeba7132801a05c09936 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4a5a001e6884e0a05e817fd0c650bd5a91a8ac0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4092a5ad9ae050c77d1dad69c61b604854997eaf Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67aefaf95ce82dbc2a9e1bbfb2a313f04b1b032f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..eaa0aa33e90af6fc1d2f160f10a2d2bd320b78e2 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1fec7bc86faa306ebd9aa1f67c68de81bcbd5dd0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..21f0e1f5c63ed6f1f401aa4bd0c8e8ceea08a861 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66ef292f8079bceec5e949d02ad42a316ea86310 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4641778b65f0ae2ebea33062ce785ddc5ed972e8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a5fea4292aac0fbcfc1f34ff3e57c0ecc30d6ea Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3cbdfd36821d2b41c6e35947aa8ad9ae46da898d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e439a48b0749b60ae19ed530d54029390f333efd Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4cc037978be6f4bf167ca18f909e9056e521ee9f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a8ceef46671848467a791878589b46aff7d26279 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b88f3824a7a4a474792260af134961a6795e79da Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa1a570a3ccd79d82cae3c8caaaea8a164c76f6c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..479687ae0d1d6ea371e2e9e09571b012088a045f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ea4e44058873890758995bc82bff737b9e9624e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0a12f8bcc500e062f21efff86c3d751d8e1f3eb8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d8c3ccfc51fed29eba01d84c3a9bf9634e19e839 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f55f92d6d9b9c776b2b6d844471f1a33341028e4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9cd3c121d726b1a1695e73d2437421702bf3bb3f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a7f7ca67d2fdbf7b81ad09c0e1197afbd48bf940 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a6b1b166a5160ee6441eb8848d95c9b24e987072 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7e993143757fd88c3352ce089d8da44d22faf7ad Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..539ce46060e42c338df73ae7a105ddc53c86c0d1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4205d7402506d0125dd3ad4b1f0269ddf33e4af0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67d5cafc3b10d79ad03c03329062f780a9d2f530 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9434ef995dab4154f19739eca6ac161a5f6529c4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cc8016f418a287162d1cf0ec4e1643d939aeffa9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..86d25a4513257f6d063eac2defbcaa060a7c96bf Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a40943655ece54497ca243a2015d69058a9f7ee Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..49353de6798ead0e1a8d46256d3cf04295dfa756 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..89c1992debce0e7738200c035e3ebc4f4fc64749 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..632d79255b49debb746518d41d0b59b2540f875c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a0b9a79dbb7980952cdaef26472d1d91cc331a9a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f7d43a97a3d308cb42d8cdb72f9f2b7388809640 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d98d2824ece92ef2f549957977fc56d11ea93bcd Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9a105b61481cf9caa41197aa9475a763822fc575 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b25f417d0a7cc14d6df1587bf2c6d61ab8d49c38 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6226134eb776d87ab9ec0178b408c7108da34ba5 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0bb11c8bcc236d5fe803b5c177427ec0261a9b2f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bca58e4044a4ae319b06a830f77b43ffdc2dbf45 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e7182ba8bdfff1144a15000692df70f316630df Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0cbbf86185154d7b79a1d04df3740bb5780dcddc Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb206a77a348cf75945eaf59462e2b5126f497f7 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..13600796a766fdedf27b3d6368e85cc16dc5eaa0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64e5f7dfb12ecf68260b7e8ff0ea3c4d59fe0a27 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..8a7ced980e91354e97690b5ed98e57b124b47afc Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5b90bfc67764207e2b0ea5ac06a4a951198eb3a1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e3a3cc91a0ce593533eea817da21b9662d1848cd Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f5f91162c0290d53f49620a987a94d2d521c743a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..29f10219cfb9183da670c9f3dc6181d2c06587c6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f28128a05c581e2ed94b5bae05fe643fb7f45485 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8506b89f6bffbc949a71f2c675a4b57a85f449f7 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43689c370832e4350cc2f9cbfd19757dd6fe3332 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a2398995f6be018ea9757609b0dcfa6f14207d99 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb58c4452788ab1f9cbb35beb33853f0d0893e9c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..859481997591449954cbf43ef09d57e4f2f55b7f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e328a1c81045566ab06e0de5ac1f991d4eb01d20 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d281926540dde90f039d2dcf43d51c7b8f2e8200 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dfea0170d2b67f2132e55ad84df6ca42a5974a23 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d9ef8a6648815fd1116cb0df2e1f4fe5dbc4443b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b056d01e89466b7fb6d0530f996c1052a7598629 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b313411bd2d658cf9d250ffea6cc0ee106e0315b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c58010edc52110b3bad92b5ec6bf903b9a7e7f73 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6c27d09f4432a262c31ad7954d540ac2d48ff81f Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa0df86c15b3590ed8c4c8dd3df2f140837d7c64 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..760502ed441f82fe66104073424ec6ff3ebe064c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c0a251eaee3c406e911b474cc55af5e5b2335984 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..85dd50f25f591bc2ae0fb8f522e9a9105335d4f5 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ba39b4c83a4e93cad05ebe1a05d6e73c33f4fe9 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d8804d17b840e32d8cfca3dc690f11a3eba636a1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..55dc53d881865e6aa13b46710e3fa7ee01650545 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a9bc1ebfe440eebaa4b5a352a7483642a6213b2c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32f48d63b1a66783020d3c05050d6595e1e94946 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6d6a32dca1233ca125035d298832695eb7a75498 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..167922865fa78b2cf5a28cbf4d8b8cdd98e05b83 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7103d4f3e217a0df1424641d69fc7edbc8063027 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..747ceddbddf019631bf9a632ba0035375ab09070 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7b4b7f25cd7f5ae72e66dfa84582b465266675de Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e17c7659ef920ae3c8df63ed3d74b97431d23c0 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4ce7875bd246aee6a50b4915bb80f2b2308760b4 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..784f671c1a2fbff435dcbbc844f343253f921ff8 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ff8b218129b8e0e61136dea77952e1be2158124a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04286c307d483076e45fdcec6cb1cc2ceca9ded2 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..394cb9d2d1a778d827b1dd8a29cf444b2e7f655b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d692b9cde7fd784dc10e3d21270595e0b3df89a Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9aa32c17e9c2bbec9396d7ed6cc3a365d8435703 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08a1246742cc39929a4845162ac6b92b9d208a6c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fd4c9a0829ad14c2f2b4873d63084b72703ab056 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea9300d8fc9cded5a1646e9222b1ac43377269e6 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c5909c36f370f78cb9d6021d1d65185eeacd1178 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..00ac276094d63b8d4652cef7e4dc3c0537949378 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2bf9c128495e4bb15a7a64424ddb3781be41487b Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32263fd54a4aa6816e83409d935706bb175f7ff1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..00d1c9cba023403418b555496735b58330f7f09c Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..909a7149c057d6ebbc011b1de79a1a6285598b34 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9b4ef4eb118330186d6f80182a16b6939773bf2d Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b8f93e158e14b0c04527f64611649b74036715ab Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..30224a41318e2643d329ac7dfb303e49a6d355f1 Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17803fb9197165331c09bdd4c2191dcabe476eaf Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..26abaa4c8705d0d9d347f3a691ade900848a7b5e Binary files /dev/null and b/tex/figures/gender/100/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..47224b3105e1dfe62232ff137592015126b6d6c4 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..28d19599691a53906906b1cb6e683e83594381eb Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..090d7cc838b060a535c44d541578e33618e28d31 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3d6ff57c92f769a8e193e3451a006aba1686b066 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0fd7bc93ea589fea97577f12d2ff596e18539819 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ac66873085ecad974f8e8b728dcffbe29f0d90ae Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4a57104e565dd407feb2924c60b790c8085734ba Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0c0daa8bc0ee4c12804850c714cf59082265abc Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bd15335c07f1cc2e2a363d4a72482def1f230f84 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..23a00805b5bb887afca8e7a8f1376bebceb77f46 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40d922309e752c34b0621a19d1a9da77bad0299e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44f38f9a794ed0d6e15bb9fccba7d70da1e823cb Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_asis_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f060437c4e1037b0febdbe02685b571004e09bcd Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b8bb029de61c6349ddb33dd28be14b211f9d35fc Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f5a746ff44515a9689db73bef4e60872fe14cb01 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59952b7858f66575265c4dd997b46bda0ef82a9c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f664af497be9662e8f610da0257211d89537fc14 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..973924cb04f15347a089d2ac33f8f81c5757470e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..10cfcea3620ce8c81a51a829b3ffb20c3ee791c7 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..14b93f3a7d82993f05b7f6f6e08c507c7c481831 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29db07388e3bf9147b473066033279fdcf578f53 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..13f7a09f08ca60730b23711145efb60af6c970e6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0c9c1b1bbb9d03f2b58663801a3103fb3f76e904 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..798a0bd1a5cd374bc4c2571517f486c153f82162 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_char_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67134fd528e50965ed4f4bdf27a219b78dc2cea8 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b1231497fadec6d232499ef9b092a6e7e9498db Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aaae6cd48c56091a9474e816ff859b96436700a5 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..72eea3f41df2d375c343a9ae8d199e1eb3b03924 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..14ffa2cf08ca9316460e5afa857de0efc1882aec Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b29442d350dd963dd9bae70acb5f9f0ab3be1d05 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8368dfe0af09f1e144292ba45ad00bd38d91f380 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c4f46ba960993d95799be3e34f6113b3eddccb24 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a9771871bd3575328f31f4755d91bbee3a21519 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dep_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..853e04c8f10072e4721e7d847891290e47522570 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f913f6779e84e3455a5f4522b2555a3a59a3665 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f7a8d0d4d541fd6a9523a96cc5a1db9cf85e5d58 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c1276f874f03c1644c5221d362a739e92c6c5fe Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c01bd973f92695d2ae6e0e07cb74f4ae2bcf04f8 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e5df2a41a33c63fa23860cc06a1486f59c95b86 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06cbd90357078646a24e15b853733a11e74758dc Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59ded553461a67716362333ea333fefa81bed652 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d07c92767f4cb0ed4249e1893bb1e7b514b89069 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e3960a3ea77f8f8dc950d0b2ca3eb97406143e71 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3fba589135cfa38d2cf6b5bdb7ea46aad5ff3c5a Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ac8e8fa716e8f6307ca0b5e932173a2c6bcf7d9b Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_dist_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e2d1b47cb7dd8cd2a19cb6629672e4f0d76b1a7c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e83d57c4cfe9436b75d00fea292e7642c7c4e4f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..13b784337fc5f5bb5cc158d720a81ee5397255a5 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_emoticon_c_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..019196dfcef404bfd02cf0674709baaf0292d09f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e5c0e516e0fb4ec52676a039525a65de1819768 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5b374deef1dacfc4a205e7135e94fb93d89d5e1 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a21cc56593379ce50529603fa68a57da814abacd Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6fe579d8b2f1425bb664fb8bc6e6b95dfe2d7a5c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4ce39b6749401464f6aa2937ae0ca54ee853050e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_lemma_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a440e69127bb558bec5b4d2c7da79c5ecde37bdc Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..73e619e6e6cb7e1bdc671b7172e1d3b5726632cb Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5aa692a0069d55c035a14b70580425b75b12613b Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_num_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..63a08d24ab1bb0bac8a7c8b9d39faf3f627487e6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d0da6de68866ec022d6193d3534a86b12a746fc Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d988c87bfd8e8c2317d37aa79445d8f646e5b3f3 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_polarity_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b03f8f7542154313c304732fea2f074811e3ec9d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff7d47cec41ab0418a065b63602239ea4ef4275a Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35a0c1315be58437a071708366b1cc8d5fd2d98d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2861098441f988208d7ffb1e277c25879ca602da Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b3fbb9ab8abc791baf55599a82a809949fb53c0c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c85ba8464259c89d47ff7dcdcdedce894dfa431 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..73205745cc094f91bafdd0f507280ba689672c7b Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..39ab2ab2f229fcdc8c0750a5335274c33ca36b26 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4fbbc90c0b1c0d9d8d5a1b3bf3e1165293facd54 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_pos_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..144772fc76fb76fe875d7a085bebc50c76184b72 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3d533c7f881e6f64a97e6f7652285b6c2c085151 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..47304c65efc2b661de64bf01f8c27ba95db46301 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..15b62609989442874d41c8cd05d8a1912a18b5e1 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb26e5059f91d11a87ebe3031e619de1264f1f84 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be70c97725fd60a42a6ed007c6bc4116233c278c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af57a9d8d6b5717d13d3799de45cd47ad141e36f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7352334a786b3c3813e75894c1bd75d632184596 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92a08d50bd7d504cb88cd883dc6877ebfa56e660 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_tag_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ea26c8348d21407c9a29fb81c652a407edb2227 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0647530e64a3ad567ec1aaaf6e25f8e19f535b29 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ed67ee95b8c06970ab858b07297189cf497b2cf Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_word_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..00f71841eea4f05eee645607fb2873cc5f28a8f5 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b19b75811120f5133c93a301afc1f5bceb1dde7f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..280bf51131a7717c5f5f227725d91a1890661fcd Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_baseline_word_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c06506994860d43939d1abb92c6a6282566285b9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24a76a26e1dcb5e67fa911311a87ccc2d2751a5f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2186f6d64d80c7ef1e3be2d939d572e947ac540d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6a22cd32dc853bc99534be27f23f3be1e65260d8 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..81d02df49c36f2a1d546a97b855ea3dc5c06d249 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..561ad9031ca764befa53ae19e652e5cf12dfb02b Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a77218c4c9e4a213c77be8aaacfd857ad19f3047 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27e60b09dcc51a0c84d1202f82ab0d1df86007c9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..87dc818198fb74ecb4b7e02fb9d4f90f599b953d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..52859595da1f4a91d12145c7091bef24682e96f9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..60aaf4a5277bb8172d938e463926c745b6f7de30 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..90671adda84cec7d7bef26587673d7b73019e90d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44b03a965a572d9735a20a9769a639f7b39af8fb Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29cdcf4dd6679687938f6e56af20cf02ef3e4991 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36b4e20ffd95668bb80328ebbeb038872344d80c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c89fecba6587a0c915fb8cdd802ac851f441ee18 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1bb71072600d621ae640640ad406598384dd9d0 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea7b42170110ad7f09cbac79e04a3b3c0748b575 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b2b654d48bcde3aa071310535fd9ca9a59600f73 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c4244660b8a2713607142f83ab9b77b778876a5f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65006b0d758bd25f2a331714cc8387cf39d6fe16 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17f0918382dd335b5ddf2ab1da53e1b4340c10e9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7971a4e233eedbe936aa0c97c47f69c725a09d74 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c44ce4b69db872a604e13117ce77a153d3e480a0 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7bd08c517282ccf440e88c90373d4c6a5df75487 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..95ed1ced7f076269a7c5eabf9d05b163abac1b2f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc15116ac71b6a87ff9b3b109cb5852a6f63803b Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ac4bd3722ebea623ccc181960227849bdbf9772 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b16286514d5ea5e1a12bd9422b09212f0cc59f0 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17466a144842ecf476e9b0c8b327511df506b57e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7de16b88611866842210e05051e4f4247f189847 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1bc1cf941bc553fb44d58830bd83213a92158ad Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a3a60e9bccde09dbb56a4dd76e4930f4ceaaaf95 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..23e4b59a7b7fedcbf1a46c3913d4af1694dc9064 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..475a9b24f0521658befc54bd115c0252469ccbd7 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..416bed3490ee5005264d5d0bb39ba7302d5c0ce0 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..12f9f8d4b473c631a4f702bb9a24325cbd4a1f41 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6dc624e080c06767e899c0ccc4833c590cad3575 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e65aaf0c24b43358b3ff914239799aa147ea04aa Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f09308bc511161de9e72059e873c4cf5403c2d79 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e3f950de8ea2149406635aaae251e764936f5b97 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..57b812f1426f762a95e0f829b951018673e5f97a Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db3a2678aea57fec27a6ec3c2419afb387fabf54 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef5a2f56d134cef7869236aa021a5a8fec6ee18f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a572b0caac068a17effeee6353d16b7d5ae9048d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66b3d02d8a99c44f3c91fa2ec54e5f167b2d845e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3f50afc69d6b960a8524346d542317537d7c4aa9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a863fa759d7a8329ab20ac58b428e45cf4f62848 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d1aaffa3a2263639bbdbda765c3823dc92f30fe Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f8266a5284f7976bd3042aef37e56eef4774401d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dbcd045991ac5cb80cf59a1ebdda1c74ee4ba1ec Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a19887d84b983dbf5cc9245cdb904d0c7c0b0451 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a2b3c6410a04fec26a27ec0079b7a503b20ebdf2 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa5d8182d6382b6313e0249fe479283e976aa4d6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..08b8ce47e8bc16dccafd167560c686c32a36fd3f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa795e079568f87360bb5bb9f534a3255a7bb00e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d46bdc3340338b56de7bcb91375ef09dbabcf7e8 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1324cce10f36a58780b2d1d0208dc4436560fbe8 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5d6b01a0c87c8131d1a150176ccd68511f2e05f6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb25c3c6332e2724a8346d18197a31660966faa4 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7fc91b2a54b383636b03a8272e7712c3b4c114c9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b727fb3282b48ae7e65b3319d06aa91e75dff574 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..afb1f1dfe5e97e4086ea742afa66a03cfcd415f0 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64193a74859ba6e0c9ff559bee005c0429b78378 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f521ec9e79eb8251d9a1e09f4fc7ac7581aaa5a1 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..df1ecdaad6da8c3017c1048d3250d5387cdddd44 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..53f41c807e92a72a38ceea82d122fef539d2526d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a0a81bf3b04acdb37991360299afb831e145899e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cb9853e77beac8d7ab44afc93ccb9233606703f1 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3b6da8c89ea83357a3f4406289200e9c641db93 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b1f5d1bf5dc1cc7556e67adece0697fe8697781 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1113cb0154af27db3fe3c1c9933e18d381d2336 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c4e1942dc0ddd4a2c44ef9968b38810693fa15d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f36e80cead3f39bd3acb8afb5342f0a624db00c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9a075796011677f0fe1922cb1db40915b84cbcb6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e91dfa8650b5e9a2dfc1706d566a891c400c320c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bd7b31585d34953a8a03a1105a894b9b89e0ffc7 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c7f8797319a864f16095d7c570bf983675e7e993 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..110389f3d1033d8084fe7041a4b71f4a9efc4464 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..57bc3f9d64748af5279c1a166fbb5c91db2d8e8e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d5dd31ee0f7058257563fb780fb3d02143fc46e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d79b9786ba281ecc9405e2a4652d8fa301aac2a Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0231d9dc585cc49fbf512ef318080ea62ddc2647 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4b07ead93b81c4882e44d7938c72e2c467b07ffe Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa10f28b2d45d825ae92fd68482e0a498e01c8f4 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b98c95b5cd9316e347d9de4920ccb105fdfd72a6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b127ff0bf0c156d7751be7f921366d552beb09ec Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a168a4f8ba8edb61309757a5e362570f2338164d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d21e1fd6b8f80f2ad82c9f60ed8d46d1fb023aa6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_2_3_4_5_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c8a158a0cd204f3255d25993c7d481b797451c77 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb5e121db8c751e64eaab76cb79ffbab931897df Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8623cf2e3363237b8600db7f8dfb1ac3a9ef1ff7 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65508c35773520933a178d8d57dec97e4c324358 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..341d21da4d6b8ceec101b78b85176c0f46caecb9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..750ca76f1fae6d3ce0d7baba5f7dfc930592297f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd32c6339f540b15479ccced703970a53450555d Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca22e17ff704b5162d7acb92bac993bb7bd8342a Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3dad697ad93484ea8a06775f1f00bea75fdcc9ba Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dcbf891e0c1cc4d244e4bc03696d17e6b470a4ad Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..854e507e09c6971a8433dcc3f8919ba08b9a3807 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0cc12e0cc6e1f032dfd0064a01269029e888102b Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..68f67c685e6a37e9c3c794556e236d9d25ce4a58 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a08dde3e64b6fc2db90f3dbc0e4ec23473437179 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..853b9c3cea6f63114ed32c09ec9ff8fa570c8558 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..475debe24339c3c487475140dd19681685b7edb6 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad6d4b3380f77f3a71701419ff09b85a360490bf Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..777500758c8746fd66aef49644c4c47decd61b66 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc7cc42b2e14d711cce2ccb20b991ebcc4d3c177 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..56e96d9b157385a03cab60e51ca5a5f0b4548b74 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebf215f68fcd63812396f8917b2da728e06e9239 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b8ba1bc92a1a045c62951adbd326be019357841 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebd892075142a5a90d297f7461712a5e1a484f5e Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be92d141324dcbb5720cc6e9650e7e06f131e8b2 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f1f87e623b3607bc9679e750225f420cae2c1fc Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..296cadab5a8eadb32c91f884cdc7a6f91facbff7 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a518dc13420f8a7d52d30a526d433f6e554631ee Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..604d2296168e45b3e87f3571859cdb5ad4c7b736 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..683e9914bc7ec59ed8ef75434aca3e7947e29e52 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b00a6fca9f1ba9414c54d207b54885f49a82d4c Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e47cb31058e30d2cecbd906cb5276c8d0d357ba4 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2b3a81088fa21316f3b7c9b833079a3f4aa4febb Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..73b627e860204c49f5bd354e9e77994c93e1c80f Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0f6b4dfe0c4156346ac096e65b0ef4e4706f949 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d60cc7e31a5d1655b9899e2d7698a03b2f0855b3 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fca036fed93cca5c86af99770f616305049d87e8 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a2b14318807d6fc66f96770b45d23acc8555540 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1337857b1b42a357d1527b8394c351040ae72100 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..059ad6b4de89482139283598f1fb95312cac5821 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf differ diff --git a/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ee2d7aea7689d054310512c98241fcc10d7ae9b9 Binary files /dev/null and b/tex/figures/gender/100/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf differ diff --git a/tex/figures/gender/100/confusion/test.pdf b/tex/figures/gender/100/confusion/test.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0485c02e198ff00a6147b50b86fdfec247c5a0c6 Binary files /dev/null and b/tex/figures/gender/100/confusion/test.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..164e591b36729c2c33b992ec68b3e630acefd971 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0432318a363a8189236d1b238377fed955baa2cf Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a3965704fe478bc7db9a2467a47c59f5cea9fc2 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b52caf9826ea31ba59d5b2286c9a44490d92b7f4 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..21c0b81ea8e4c32c5eb1d19bd9c7d8f55f248d0b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..23e5ba89714c8bf4064216f64c4a32542f534f9e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bd3983ea80edd6d31653085cdcfb3164dde5d1b4 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a37606f2e92e3e70a4686e9f2346f0feff756516 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e95695c76e02051468b808c95de61dec7181ad5c Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b11615b7e07343c8c35e0556777587acbfafe9f8 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41edb3d435617296eac94b2613d300839b9515fe Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0899a113d6d0196dfce929801409b1c28f3ffd25 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e9033639a8aca80baf1e44f888436fe2f15fe68d Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e8c16b4a7d8337f5c1769197715f6dc50a0e6d5d Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a65c9680541deaf0b59a3393ee0aceb25440d200 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..98eaf311667b5aedaf9b37034227d02c6ab93b70 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..750c34fa619a09a7d11eeb5472d5ea687ec7c293 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e0b67ed33b3208b17a3acddf0b0a761d26222354 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a69184415dbdf883569ca37d37534ad0fc18ac21 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b748c8c38c025a7a4fb6cca63d86052eaf35dd70 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b077d96952fedb35afa9e658e1a05e7e77b2f4d1 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4e527ccf54d34cd2240470253d05fcdb3f8b3a11 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8363c9d94f8f24c9828b8fb6fea13edd090912df Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..54b106b62dc332f6a8a01764b66942674e565055 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..86e5bcf7bda6df3866f3c6b4c6c46b089778533e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..2ef07b7ec1faa30c8a0ac050327fafb14f0475a9 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2835777d31687de6af68b5b0e596d9e6ec0de087 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..65b8cbcd717e1fcca5186cbb5ad8aa0934d1a7f6 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..432ec9d80df4dee371249f27f4e78c7776b8d281 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4553ec4ed78277e215dfb42ceef0b4898ffad749 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef5d50eb9e3ed0dbe8f34433dbff3c117cfa3a0b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1bd911fe8564d9a7cacd09994fcf955bbceefad4 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5377a2e0958c8ac12448069d21a9043157bdaa4 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e8b75365a1879cf5e28a6612dba0f13d2c965ac9 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1d427634000ae62660cf0a3cfab92f2bd073a03 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c984564c400286e8ae96896cfd1f8c561f8d92a3 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dff62183a5f3354d9b252dfa07a3c29248d9fea9 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e66caac717ee6cc378476051a0f56d47c8c1072d Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cb18617eb53afa2d5cfb1a17c9e927819a273697 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7db5487f37e7bdc02d37c7da2c5fd42b14c023fe Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36d240864c6aa93585183169169d1b092d5f2abc Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6d27dc099a81b42da1313b26dc0130197909f4ab Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe5bca9cf58bbe4f033d49796804cfe728402832 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..401e3da3e5ba84a358d34ba5378f09cbf34fa70d Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..88bafada24027ed7158fe3c3813746a3c7e03824 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..48f066c35a1affb64eef7584b5fc53c0dfe126b5 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2bb3da79f390cc0b1ec6432db80053bcc64105ee Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..deae6aad244a3de9364abd76a6119236629ebea6 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e66f6ac538b5418c261100c23eae0cab4c40ad2 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e55fe853e01171c1bce8485a2d12136f99920b7f Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6ca0a51dbc89e7ddfa9d12df941359038378fef0 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20a82e052a7a6fc57511c38e9894dd29954b2eb6 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe3d4ee1b46e8d677a30347af019d73bac59ea2c Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..346d0feec0b7747ed724dffdc4b366ba6600a1c8 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e3c3ff379a699193ef771995848ad73089e2c01 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..768005c645372a1e12d3bbf2c8f4265da22bf1b3 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3d72bb9e452d787bb508d1cc3e9104a347af8ea9 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d55cf1b000544b0a7de85b56afa12592f69773ac Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5e7a661116dd6c1d28fa53905800cdca16f1eb47 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f0d1be19ac64e4754bbf5001901c274067877607 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_dist_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9619e11126d96010a9a8f2fadbf4b3be012322b0 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9a2e15d0b71d3e8f9bb190b76d564c53086278d6 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0e38e9edbfbe662a111e2a833e8dd3c2b2dcf257 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..691e3db3ae47fd01a5738ca017bd539e11327f98 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_emoticon_c_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a5e88862cdb2c01a8cadc2511d34d1daf5533cb8 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9233ee098a7d62856a6cc7e06e969b290853dfad Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a597485f7aea388b3bda954c4ccc24f75c92ac9 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1e61bbc28d8e54e3dd71ba76d05b4e222a81226b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4f309d041bb7f82db8a41ad4d377b863a03b817a Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d72c3db7da34d60530fe7c248f4e8cff4bed4783 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5e971f4e20a083780418c6f882965e4d29ac6fa2 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..564c73ac3445209b79284ae1896a33bc0a582e04 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c4b6409896513c97bfec6cbe91fc1bc8f4590dfa Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c91246855f7e8c2bfeb5d9d1a3d4dce60176b5fb Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c74626a9462a6c609d73fca257fbf4644bcd2efa Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..62b2c8e664cc365eb8725f7c80fb43575627487e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_num_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..682f26f3a00d00a6f13e76a6392880ef017e5919 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..216edd1fef6bb7b09a64b4a704a4ed2499c5c480 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a78e36d3221af5a71d6c2d2359d242c700582b4 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..55ca475d0f3afdcb5539e2e784834c4684c259b5 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_polarity_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0dbbf8028ffd4db6eab9ce74df8c340211f4ab26 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5aafd540673f16588d3e42b8821f7ccb568f9959 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e443e9ff4ddcf8dc7e8709bae571449a1877b885 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fd19f24fa0708a255741bfda0bf8c13b58308781 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..211e0440451695cddd608006149e7fcdceabea74 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..32587ad21c8a76b494610df25221f6311d3b0c91 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..50e6adebf39f5c2bfc111514919ee16d1d35568e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d8f6decd856f4336331b2b8f8b4aa65a10b8b7ea Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1eb178cef8237c543aa5810335c680353ea2bb2b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..640cb66f2489bb51c192d7f1fdc80969291150f5 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f6f832721f826f520895422c437d17d574a7459b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dc644f52ab9774a1ad4712dd640c5bd6d3890a0a Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d7951878421bc445148d3956a517a1a6c72cd00 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b2640df78ac164da56bba94be0a3a69e703c58ae Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1cc9e9dc88833ead35768940395e942be53c951a Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ecb477c4be54874889036dd2798075ffba5e4fce Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85f24ba29f02ea8ae4718db8254edc9cd1ad5c60 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4cc1ef77d8755477c8d974eda326b20b02ecb34f Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..053c3e19e119ed3edbb792679f658dc8ae06fa9c Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..08a38709f7bf2c7ef98767fa07483ea49600107f Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea1e55d6560c73dfe24b63d5b3329f7b26e1e2be Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c56b87adbbfc36569a6959c01a9dc831b838b3bd Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..55e9ef71f74ba287a8b0fb64987799aa13e31bdd Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf265344b2e7e18a116c1995151a78016ac5f6b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce4de10d018665e410522afb9fe59521d5eceec0 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..35a231d6f50cba127a004796ebfee29825467ca1 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..28ac5369ed338142a07caba5a93ab40778e26208 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2b11210e3f0bb1abd8817de341e60047e8d6fbc6 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a2002d8a2d01caac64d486d7dfe96303675e2084 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..df321c1680664f0617e9165709e65fb804695bca Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f8f4bf299cf27426b637475410530a2aa087c20b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f3e794dd6b576399e83418762330a955f61eff21 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_baseline_word_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06bbb3e336bc23fa3f8da93b8735f8342808dc30 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..851a05c84f1830b5447daae868db4cbbd8280030 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f634dccf19ce9135bdf33538718380cfb332d3ae Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..33390ff52c3fdd61fd8a4044aeb40197b35ada17 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a149ffe6eda40bb41041c19f2b31bd7adc9051b1 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c048b35d3da006ece070ca070dac6e252959fbae Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c78f58ba64b8f1a4be1011b55a2e4b906165c64 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f5a1e33a3521e35ca50b5589f30d7844639968 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40f23ce6cc5e576206980c46313e70c5f83830b3 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d22c9fc1c9f44cbe9978abda487cd9fba4770e6e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a6e75e74b67366b713f133f9c22f7d636771d6b Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cd0091e25e73b636f6eb1c86069bad993bae5e49 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ea1b0e485cf3968eaaec2bde5eef0b5c5ce812f Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6f45e306af8ce39d357c059d7f3fc4d32b580c05 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ecb533cf57c4910937a251c7a09a7184128e85e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f9e17c62ee819b5b157cab9579154c798cef5d5a Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..07136819af6ceed37ed477a08ec4a7a04788bc45 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4928f4895306faea204d5e5792cd3eb01e70ef42 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..05fe137ceb4d0048ed573442ff984bb957605824 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f521730d97978f90541ae2092cf403b8376bf802 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a7fd09ed810617602b8af218f36db6ce0c8c27a4 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..1c40d29b1149dd9d65a9f46da0971136c42c3fa5 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e7da57a4b88c4c69147fe8faa63674c8df649626 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..87b04e09042517faf871715cbc806c2c5daa9c00 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e9e150618bb480c7c8e5c06f9a8d03e908990f2 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c9b32537eade7ae8d19887a6b3061ed8602cb4c3 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da11d5035a3900a254f1386c5c441109a8e59eeb Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8d542b1052411d8fe8a46bce8f347d621d1aff05 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6250216e4fa1c6a8996327796a692afc9d1e0d54 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..88244664f22c52360180a39cc76c11c4fe76f55e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bf4154c51486a4157d02d0b574fa7aa70b9a4791 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..41298af39c21f4f8eed1a6d1c63be7292fe5dc41 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_2_3_4_5_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c3de485f0a30bb107ba64f89ff529195ac042d7 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..40a51a79db6335902c6d228ae88dc7ff5cc7c8c6 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b8e25915cfa5c9d2b0ce994f132e354833fefe4 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..510887e46620b43f437fa307c1af2ee2c63cdc61 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5b4bdf66622aec3f2bf53907472e26e470ee5a5c Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7af5cf2454c39633ccb3cde70587bc8023c7c5b1 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..599c650dfa808e318708d302819cc5d0e3dfbc2f Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1f9e28902638c677a4a3cd714bab17109554f1fd Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..87ddeca95f4f14b89cae670132c0550227b59c9e Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..41954ca1cb1415460d0f9d9c3c501953b09ce48a Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b510702edac54daabb1325802d09eafbc59bbe06 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..da0bf0dd5cc13febac5e5704ab40c03c6377004d Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d80ad2ecf6e7ba5d9544078b5611096788f79654 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..219b7ee958236b72faf23384527d73cef9255c49 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c126b5bb6de3a683a5b40fe89b5bf46ec8ba4ae5 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8ed074f14d7c909e26093de837188d144611363d Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4bdb9a97729154dc7887f7052484b8defad059bc Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c97eb41574eff1dde3ec4dbabb4ca940ed439af0 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..612d3af9d6608b8af57d02524f9e508898dd0c4f Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cb13240f86c56b6b4187c92b6ba58cd6532a53f7 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8de22aadbfcc5235bce88259826c5e8297d5c737 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..3d947e39430dba010fb7971282ccc99c0062e076 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c22f61eb7c4c070a51d4910420d7630308c66276 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..702b2d853e0d901a483daec8b1570bc03f32c221 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32ddc710d71c18d784b09a7521929b02ceae184c Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7b486d92364e512f3eaeaa8bbfbb484527cc8160 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff0ed79082d9d6c52ba416960474ad927a14de2f Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..051b81e7e9d188f78762340884d08a146bb60526 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..31f7b1f1f0c412589cea3c5f6791a044ce06c1b3 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..3c6d40fe4d463265582c91f75f9097e2d972d345 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24d7f385a0a7f614d4c6848d1a244b6514e4f417 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6bb5e4186828ba2c5aa9ffd6e7b648228c0f0725 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e15ad5e9dd32cbe32300c695884a6ef91c667d59 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c67743709e4a57cb0c8b1d8e564351d4a5ffa8ee Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5447ee27fc2990f24a7ad41d80e32717c81a7501 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7587c84bc8f617f327fcc9d45130a9ff65df1ef2 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..58bc45f74e551182c6bd64cb5b161e22c7c93ccf Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..02c3c4e705f0978790147323cf8fed21fde6d6d5 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3d88684f9f8232b6f117337bcec502b265a37e33 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..2681a1d248dc1fd686d5fab7065d77971dc6da18 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_gender.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8de9d890f29f09a2a8ad2c51b67ecfd4615158d3 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6ceaf7f8f0f592f9d8175b053fbdb76d023e250a Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_100_color_pred.png differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..313cca674acb72c68c90f149b2eb6eb6a0e7d3a7 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_gender.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e93b594b42ee59b6971358626313018f6c0ddac Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.pdf differ diff --git a/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8b3f436d1a01ff1bf35f550ccb80790b4b2c8628 Binary files /dev/null and b/tex/figures/gender/100/proportions/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_100_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6058d99d979eceb361fc7beba73191e06a4a7600 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b3baadcf2d070442bc62ee8996061401f0a5c7b8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab46fd6dbec31d72306c908f34ccbd4628d65c18 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..cea317f470117d5073d65fc98eec6fa7cb008667 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5d5b15849ea23d4236d920040625f6da831386f7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..75032f794bab7cedcaf26186095c4fce28cff2bb Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea56bcb1d7515f2934f37465682316c0e302813c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9612c038814982d054e5eb1dba125b0b51d47913 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8fe7f826a5b30f287dccf922a70947a72d8a8066 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5b8b8786a438893adebd78e61350b4b911fcb580 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65695bf50c20df5768e8850c8120ad3c18e95e32 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..731f4e11c4ab14a76f5272158d3a3418a8294e69 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0c5c7c92d49d4d99b23fd95cabd67560ae7c31c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..3a2ebd4717de810ccb55ee6be39b6a1a2eba4f16 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8201523aa059c27fb295df48dfa218dbeb9f5f0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..83d498e607099a7f513610766f093eb1f9213a96 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7451289f066aa098e54ab02027641268d355ccdd Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..67c43ffa940c731502d51da26c9fa9f18a113bae Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9f1a33e8e0c05b8da1b56cb9cbd156ba001ba208 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dc557e08423a9d9ba6c777da757a47be1cb6a5ab Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04d94f991d1e5ca4c5d6b226344f5cd5db0c147e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..50f4e416551b174e1b9ed89ad6fa0ade7a57a8c8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e5987ca85af6234f983dc86f879b3b4b6f7b803e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1650ac41936dbae58066edf8d51a26d8b060d475 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0ba7b080346eea495cc2979a433fdf036e3f5b1 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..31035e7c3ba018cf32b8131eac2f2a16d6004ecb Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aab32eb0e35306e576dabfa3db765bb56b22de31 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dc1f302ae159ba592f505252f4570cec009b44d5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5d9cd0f1633db54f425565ac057a85d31ede28f4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9a57a3977840f452adacf74b3ae3425d08da25cd Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c63c94543f80a2f10b49079ba482091ce697071b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c4633299e1df77fe8ed1d1b333ca3ebe13ee16e0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7d0da4e104125977928b4e2808eddec3119225d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f69b59113722f994da11a88a0db7bcbb45895e48 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6176715053c175fe45a58924188402d7d8c0977a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3438800b8e288c3ff396998983d0db99f17d42c8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..77696422788fd48e461bc5430284a43f05837bd8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0c850109934a1c22657b923afe1d435a7bd58db4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..89886a94e2e64ece58d33c93f09c477b36758310 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7ee9fea6f7fea8f64f20a2441d953632d148bb34 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5208dbd707afe11f56628a488dd3c0d7f6d03404 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..97c6efa860c6aae9fba6099112d04d5fce61993a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f73052cc6dd75259b65d5ff64d08a19a4f8b9126 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3a504d21a633c60535a5ffdffffeb12777fc063d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db23e145b9f18fe1c3f69c8a0dd6c25a39a6b2e8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..1b8ec5e53180951ab4efb6341c1eeb6d0abffa2b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a464605db0614a61d1c66274b15d7f331c8111d7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c533206a30db9b8619422484e91d5d465704cd89 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af4142da2550ff5378f7a4601eb38b28cc7e8bf3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..eafb5a3b662d3eb2c250d711fa5a7bb8aee75ea0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c57bc8ded487de2182e9b6dc0525ea171962b7d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4030a9e46390e0a7c5424ffa8c431238d9dcc593 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f6f44efd88d1ad35058b3be5910be9ca839de1da Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9152768bf344f9f479067e631ada8e12f5164160 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..273994f11e0a33268d10866694d34467724a06bd Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..21be6529aae5cd4db2bc407926c8bc515a016911 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..feab4b5c8e27e5eda985800a1c55055f738fb28e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..dc2a32ab4f184657f05fc39811d475517e6f5f39 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a38f6736ba189f806901a1803d48ff3ba0ac497c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f868c7b08646f3423c961421f94c275c647ffedf Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_dist_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b9bf27ce3bf80d8c48ae7938e51735e2d5243b4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4d1217181e9fbb2d2cd9873b5748a4ca39c0a345 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b6c2b402cd31e314daac1df882c81e54620db1f5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6484667ab2ea14c57d7e8c26668f4678dad91e62 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c1fad4215a90a7a6062a535d77e73f6737d77a4e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ea9516306c4c1023d72e6373232c054867076baa Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0425d6bc37126c23e160aa87817408a17692964b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1cd4b2560e5ede256a394ee210db8961e46f0570 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..252e6f12e5f517e5b735dfd8c0b8b465b44aefa3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ed3c7e7dd97a78f51ed8d4228ca0f822e0663de5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92e88b30631b6eb973e238682f71c0fd0865c0b9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..44ec9b1bdcbdb31aec45559d547a4e536f26c9f9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..428fd5c9f060e96311cf140d3f397b49f9fa7aa7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..3562f540181eee19954bed07b1896a9b4a16a543 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a8a018ba867384afbc7c85abc9ffeb000802c823 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dc00a9dc4e0d91f6c384ec12c0a828ed9d026a2d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_num_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d1ad9651b090c4b667ec7d589df70dd7fa53878 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..11e7f110d763278deefd8fa0cf9cacc4cde7b1d9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba796128a847b5e9e51d0eebf07760d505e20826 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1b5244c8afeef213bdc2e79e3b86e32bbbada49a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_polarity_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fca0eb2c2dee04c4946e8d0a67d7bcf3ff73d97e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..24f5f8a6dff1ebaced4fdec6d2a61653ecef6f73 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae7632244463a6a81f1f65ceecfbdf52d1bf35da Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..272096378969c3478a2e3d3652cd41fe58076beb Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d1432bf9881b757489320a504fea81a204df4fc Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..312529df3472456e7398b81f917c1132f564e984 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c015e55368c8fbfb545ddfefd6e294157b9ddaf1 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7d72e2e26278277fefa552515bb1b9dacc44e69e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..356866bc9cb783806b7d2a6f3174730adb3e0086 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d2ae9d5fa6a2a0feb4d0bc03097e083f18726c60 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b5ed7b9635c9a54987f6341b5bc554acd2af7fdf Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5959c80cb97006f4ddf6cb602e4b8330b98c4c7c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b75dd57de210f6fd94c491bf0da02819076bc1fe Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..1cbcb87c3cbf76b2913f5baf7d076fb69a61a668 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff8259c94e000397decc63c598b328ab0de66893 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..04f0aff4f5e92f1eefb08d1bdaa50ef33962305e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8410a2d3eb5b784af8fb2bfb13fad53efcf9e366 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..212a588d3064f06a87e376289b8508d2e578f75c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2805495cb06861abf12733d91fe8e3a5c039b450 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9241fc74cf62336f29cd6e9dad103f9220ce1e92 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3a6ac7784b15a22685e9eec0c1b859782951710d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..277f6d4df3f437280715341816b66a6af074c10b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..276c655169cae6e52c6a2342c94360c774246a81 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..56991b4934ca0690c7fe3c8a7567819ba3aee2b9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f378b1d2d9776d875a63eba34d2345523cf5c2f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..8159f13b8aeb07b9dcdfbbc0d17f86887281d93a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25e81176925799655d3bb016c55c6d91ffd6ac24 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..39dc8f097c12e09e78178dcb688bdd71e167d543 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..676c458d14836c1e0350216d11bf1040320db259 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d5a83e08a0f2445e35b59d606c8cf5d2f8a78d0e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b1300fdc9ddbbe7bb79ccd9e21157c7c3328a1d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d129cc49eac2bf2393d2196f1e012e357b53685b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_baseline_word_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..297d3de3ee37fa294b859bec0fa032404d72f944 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..18f2b5e9ebfdb7eaefe9b900650617cd0aa928a9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7399b5f2ebb4fd3bf37fdba47affd59e3132b895 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3b6bfeaeaf25c5a6e25722a6de80006694ccc9df Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..469761b271c6e92666d5b34d09b780f4433e5ae8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c519cb8fd936f4282a57b3a934ce293fe942402a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..782b1fdc1c4327a22402ec3b9453fd3a69ee4f4e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c8daa47c56d4433359efea75eacce97c8bb6ef51 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01a7dbb89dcdf56c75217e022f4209cd521b9fc5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6693c4658793f84c78049207f22ed38d95471a16 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..501b9329d75ed2dd76b58527fdfe82b882671347 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..87afe85d7af8e475ece062dd64ce6c244a9bae09 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e772a7915804369c8996e2b982b7bb178b38395 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5e197231cc184db9277eea285e939afea0f9c75c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a2848caa5f3fa620e9ab620d703443e9185986fd Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..795318926a34a5730d499b7fe0a4fe6108c25f4b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bd14ba4336316f5b1ef3ea49470c0026e66d0640 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..df4bdffa0e86378eee164c263bde1e88f115d1f4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5260ffff7471ebf08806a8111f569fc55208b44d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bccdafd9ca5c47e8ff2129bd2e6dc330392e7280 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4c12a4a03d808cd1396138cd972b66ec425014c2 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c2e15f10735087d76abf35fc088925757445f242 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6fa3a9b9dd71863cfea021a2d3b724c5d83ed3ef Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..58337400795829416b7db4ce36d0f6f35d84ace6 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..465fd008d181d00f8cac4e3e61ff994b11583533 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f6f030466e354909aa565399b18249079d974c3a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b6297f9ebb68690dcd37a5eb0f323571d7a457ad Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2581bfb17db1efb5c9de4f12d5ca6af2c86d4b66 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c606c48bc6345a2c26f4e11088512c4cf7278fc4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e844bcbf75db44eef77c16aedaefe6ecdd2f978a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd4728700a252e51f45cd2b70c992d00f0504d4e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8340d225bb12020466244ebbdc0f1ed5bc2b8276 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1729a4fa3c447221ebe93693b95bd35b2cbdc70e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..8c24b5d11a6c4c968cdcb90fa5699606fc57d870 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4bf38c927e672a75a8367b33f43a6832407d0810 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b2c4ab82cdde9587115f2ab1714426907a107d9b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..77a9161ed3d1d54740fc5932a199eafa0c8ce8d3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..34103bb568bc50d1161b0f48abecca9ad3c111ea Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b6e5394c5cb11cb981b111e5e712d8beb77fa9c9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1c8ee66f672a3e71bd17e166e30e2bd7253e7324 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6882a64edd0fc04e70c6843cf39fc44dead1559a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d518e45f1ef1ebd3ef5d791b59bcc664df1decfe Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3464d85eae2b691530c554ce2cdc821ac964334a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..76c5f818ab6362e72192854253157f9a10ddcb4e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebb56d4aefb51904a2c8a6f5f1205b4cec4ed447 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9d0ae77815cb096c62ab80b63420b1bd813a1916 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..463c91c5b6ae5903253303deef9a724b133628f0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..568b648ef244b961fd677759d461fff59f1c8bd7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..69db3a61f0b7b48b5d5c4f7fe57f0531f5a02a87 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..02b89ec0dd5fbc7e1c18c2b4452c71b74a2e2de4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e33dc036e0c1d6155111e1537ab6e64c44ab9d0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bd057b5ec26634c9a6e1a3dee9c6e77566c5bbd7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..843cf6b24bc4244316f8f89cc4fdf0febe0f6297 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f288b496f89a28729a21f0952aeac233614a86a1 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..716eb2f152e8757529d3e058579954227b8a2010 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8f6af549c7fea53d64606b1bcb8f63101b82875e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ab041bbd7c821ccd9abd455c078e2dca3842d11 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..514395a9f63ef3b852f4b16d9c8ff2f6d3242073 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..890be73219bff304cc6479a127ee0d7b3e5384d8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..53f301feceb79e9843dacb9557bcf4b9cfcd789f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b881f8d2416967bc1099e1b3de6e8e2c8c6df270 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4425f98205dc726aca6343a2d77d0a646c083ac0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a41a4e6cef6b7d7a974935aa97a2b14ca0bd2656 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1f422f14709d28d984d202e450886209126cb454 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61fe1ba43f9a66607ef1250158f9b0ce007c8358 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a55ede707769c888c013976dfc05e9d4a47811c3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba463267d020a943a0809151634ff6059ae9eea2 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7e4670e615c99d6e8b7309ff3a0ca075c8491b1c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..afa4702797a618a650dd861fca80f16c3fc66354 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..3b3b702b4e74721c68002a3e794fcd96b96021a8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cf2ac26580b6f5685abe32591caf417e661d844e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2a53d1f9024a764f62dd139c88e85a47a17ea622 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5c49c9e58e538bc655715380b9c2e8aa838ac019 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..31bba9929f8f8dd2f5f33a872514798718a7fd6e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3843a6d961f267cf0f7a0054bdca80fb05259a27 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a2320506e8b81f368b254f98eda24988386adb06 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d9e4835e7ed381c4f5c5006aae57b4cdc3301de4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..1243a3a7174ee9ff95f6060f59bdc5635ca73d5e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..22b94ea427581000af97df683f3dfcbf51f7afda Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..076f7c57371159c26c3cb00ef013249ff807b5ce Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1de4910f001bd3fd2c8f645f76f6105998ed6ba6 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..04934c0c247178621239e9cc4317d01a4269fd2f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..45ff6e57c2428d9cbeda98741a17e152a89bcad7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d8f971ed608812c44719dd7b30d5ace5cdc57078 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4653b209f954e195bd91dfeacb03bdd664014371 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7a90c139e4b02ce4a2a0773a728d18290b3c33a5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa622101403dc008ad0ce9afbef03cc8bab06c8d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d54caadbaa1569b3ad53acb6b94ff017f1fca8c6 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b29e76a5d40447f392410c5df89fa15e24660b2 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a2e825657f80691120af1111be3d76e1cb77e9e5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..93be395a3a0756416b6080c938adf2af932b3d1f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..eb28074354a557b2860d48a7a818ee260ef287f1 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..399e4f4eac7e0c872e0086c11af857fa8bb91238 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..324ae592fdac933fd98ea0d04930dda0f9dc321a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..23f1b51e8f8b77198755f847d3589d07fc7654e7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..344cc44f4ad698ee3e6e85a23ee84f5698b26af5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e90f049d26ed67c730901defc66cd0911ab42e8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..93ddce97d5700137f509ef0e0982f1e398d00304 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..546487d1dade6b51b3a76b7ddb95e843f2c6feb8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4d5dfbe954b7a11143e52e4a789e1ffbcb2a5f7c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..091cee21813f194b52f05a05f4c754eba6008c6b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a09a77ece83cbaea92f2b1d9dbe08c21e924853d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5bd7cfc2ee3a6ebbaec0d8083b47d5b9693a8e37 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..97c7a33dbd2d725d3db27c6bbb5bd53ae1927970 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb98b0eee37e91015cf0b5178a45420f399e00ac Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..2147aad79e254fa4fad70a48258e6a06d0a29283 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f19608af4f246ac40f54b42fab379b24b39a938b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..705c2d8aac5d7971fd999e2acc56400586ecb604 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3bf20deceb37b5212c44e76d33d9f114b70f4c95 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b8856980a289adac04e87807e35c25fa89bcb30f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa2e9d6dd5f4431905eaef77a1f51de85c610495 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..06a382788f7a3ce40b6e3f00b77d6a9c4175ccf5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a65a6574982f31b80180ad64a00cf1a50e7bb1a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7d1a29f4610242aead20299207ce35b3e87009a3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..30fadcebf465aea71dec54bf3fc0d329f9d5be98 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8909f0b80cd1835890225bbc0bbff00744d58e79 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a7875eac3928234690d625a22a0b42dce7669102 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f3f9f2524bd6bf877b0db8f1e621ffd85c830c14 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4dda8a4155afa05925e35488daed289301d42e7f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..94d6c21d73592716c5e56793ee52d4e48775d220 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a96b4ee9808e9252030cd76d1164da498b7c774c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ce6fbd684d52dba61ac7a446da3295e80d54f227 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..afcb02eda9a22ad450f6b9a3ecf1d1035e6517ae Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c1d16447175d90dad5dc1929660529954ce8c9ac Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be1b3502cb4dd6168932bbd6bebcddbc48c55163 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7f7433834564649dd4c02dc993a68ac33755a698 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..356d50578f4cc08d66f88964c708261b74b60e97 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4d58d9eba0fc0463d554b5b2c237771c33d7fa6e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f922685683c60d2667cb14dda3e48e6e6c2edf30 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5dcfd9d7e73f14749e7121b4fe0a8e5ba6c5f2a8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8e412110e7099aeb383176ec287d30bb1d08f091 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a1ac45b1a0ec6df1ea94d4f3d4aa62ced3e94f59 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b8a8fabb3bad05b6f75e4e86116179bc1c7661ef Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f00f72bb76c3b9985f4d11d8fbbec4d9fa20210a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d1b8bc1bf4e90cc0674d996d257fbdfac034053 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..358eaefe90b77912bfd7815b0b3d2d9ae970f5d9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a7e3dea0b7e6e660285eee13bd6aed5d10b894cf Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..e5eac01006bad66b15573858de504a9782269232 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ac65a5e5399c15cd23c5b7e29554247a22899bac Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a5b3674fd89f6ba2f501005f673ba92fdb4f5d7f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b5dff09ea7fc9407767310bb987d11cb1abbc46f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f4e736f41bb3dd417065c9047822105b53fccb49 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d814f50639bb7850f6d83232ed1cd3ab0eed6d9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f15daeff5626df873923c42a53bd9dc6c8044927 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_2_3_4_5_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..71b36c9c5745a1c0d1a33856ae05c5b99ee14a0e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..109c425eb95ded79e170b2c02d1dde310b3a70ce Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44a197b0415c0213b3d7675bcb217b4667a82ca7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..edd2ad093cc89da9f17b0eb69e933fea70a3003c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cecd854f439fcf453a7e980471958fdfb2666fd9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9de9b74300a7480e9169b7a66be93a6918a0d49b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f732c3706f84bb94ed1e05d9b74606cc0f7eeea0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1736d3b53da3cfb85fed13c5870ad8c910160de0 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da10c4696d15cd2d2dd8bb6f008f00b62006a186 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba32b82413d9290fbd44c3c5c6ae506d400e496 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d815f1a96508fe68652e926a0884fee7e5d130e5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..afe8269e8c6b6e1a9c1c35068f92583683c97754 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..993a2ce23d0faf2b8ca4efeadb65e1453cf3c510 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d3abb63448409d0f63ddfe4ad7771e9c2cbc818f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..060c2d398aeb33c56200596912b8b9ad6c69cd2e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fbf788af6b0425f8fa2280ed4cf93d37f4200c56 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..131528a323f1a682c47d1a0e1ca063c371a4adc3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c933171010151e0d0a59c7ad9774cb041249c6dc Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c9962e4555987e50318039d45a0527f2162b7cf Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..dbf679a7172de995bd08c0be8f9310a50ba29ff7 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..678b7ed0cc9089930bb2e573636d9d1d36707ac5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..18d91bbc362a684d31aec08b18257692655f693d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb195e24aabb8787ad4d1b869839a46baf2eba6c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0efb56a484be91214b0084e75d6a159af42057 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8e6ff3588bfbf343c737ccba800da8e2b65c293c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d1d357a6fcd1c0fd751e3338bc9a22c2b85053f3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5f31a883b2385ac0f49a62295e1fde74358902c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f2d1930159226dfd733474d9a1a5f746818b0e40 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..34cf74812b20a73bc42a2f8e3bf105c906b5b889 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..01fc279310fbdaa91e244ae99a1d810978ddfef9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..515c7d488b9ef8b34ee294ca3f1494e8477403d1 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..43887c85a1202ae26d7eeafb3eb163e086513d14 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64cd2a090ce9dbe906df9878870cf1e36e1fc028 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..263f564fb8ab2b353e4b323bca6a3e385d93c329 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cb801d16ecd140b9a726ef8354d68cf9082d8724 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3bd43b81f674f79b0b7062c6ea36a687f07c9f78 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f0abfc6536ad01e5c507c5dc62557f78f78c4f91 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c6c5d2a8d74e3c9e63904107ba1662b069739b24 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c8e295270399c9335f9a3f648b5fb2459af6cec Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e12a144d59f097c0c92ece8f58ddf3fc1c38e346 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f162cabc82b6fb643265def8a0d998580ec42cf Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4350f0c818d533516f45c9f87ddd93c6862caef6 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7b75f57d382c7e91f3717ab1cf2b94b11f9a3ce8 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a408e4b835691482e4bae4e223f1ac468f19ccd9 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..89627d898b9ee250518965f99da930b5554d4a63 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..cc9fbdcc430838f7ab69d76ec73b105c33f7ac3c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2280894a9473a51528bd670e59e651d70d2d4e49 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6eff29a4c5f32a04e0476be8d95bfd7472290ac4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..75dd93389a1ec6f933a4a694dbd78597a96189f6 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..8cf41988d7ef7c3a67e196e15ef126cbc336f367 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8cc7eb6d0477f1fca9a92eb77b9a2053f842675c Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7eca556357eab107c556c863ed87e502d258c5b3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5e0b8ec80f51322ef9565be3d76817a5212e47a Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..207b6380189b39ed8f1433b315d2c978f24a74e5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb9ff234d8b69c628121893a47770d4045b7520f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e7334028287edf699fae4e618e16b1f1e2bb6ca4 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aed2eeaa16fa3f8e906eab3f21a7776916595a33 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0d211415f703d9b9fc80dd153aeb57ee0558174e Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..184b14445351b5818569c03a59cf77fb2c873590 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9e5de18142c6acc7b06e81ac39af6e4f0fa61f89 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c98a45fa61a01d42c72aa79e217bdb5e90dd170 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0ed3b6cf40bf4529f7e9f587e7d39fe29ae0fb25 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad3fdb233fb2048f8b4c590ee79b00533c15cdda Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6bf390be471f720d26ed02af4efb1ad51e0b2988 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0042ea5dd16f7bb4438511637540fd3788f79494 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..fa1e10f6a0bee8bd74d818c2c561f7cace19a791 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d3168a7b74590ff41f6783f42ce9a0f61660b88 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..98c7ae802405a781239c38e71898258297655ad3 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a5d678be5a634c8cd516d782bb6d90e2e035ffaf Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f511f6c671f06c9ad8f8d293f335e3a519917c73 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f792604448287442f54799f6d89e4e29f60e949f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2f3009dec676c9e105be795d6090e67c57d76d5b Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6238df7ff8bb3a9aca21dfe1c71c9316017c7b43 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a4febcb4f13c6fd8f084279c865194469d40d48f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8d736a795ee4c34ece245f42eb19825c94776154 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2e329bd7a3d53899a31be54654eb6a1b5ff9f8d5 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b35d3dcacb9fd7ea0cd00a2bf2a74e45ccd8ff3d Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..77a44b3efb72eccbabfc7afe216dfc92436243ef Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.png differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..deab54979880b1e6d6637114ad9fc53d20569a29 Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.pdf differ diff --git a/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..368b410f3ddf38bcf30bc692092b1f3f0e40654f Binary files /dev/null and b/tex/figures/gender/250/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_pred.png differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..675d92ea6ff3af60806c62646fb4502b89021162 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db1955eb101c3605b9b52ac635f838587a2f3928 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8406e699c7d1569a6dfd48bba98d309e54d248c6 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e8e06b3862536d094ac7caa79f784b3b82ae743 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7f90d1e58bc6fb4fef2295c48fdaeb83f1a5d377 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85ae2a478a296d9912c1fa26c4675d5985361ba7 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5864aaf0e8f37c2d17bd142948008c847f98d7ff Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..71b76b00051fb854a90fb717282427159ac43169 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b066a592a29be2197332db253c7c97671e54388 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4ea58e78234aaabf2df75767b975181b2886193d Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5299ef4cd32c4f89fa6dd31a06ec6f985c070987 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1c8de351aa4d4512b81e39fdecb39d35c8abc48 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_asis_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4c9a3ee517e36a2630980a80a0e3a01f306dc265 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32c091f4c15493b91177f9222dd2e8b48620ca14 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cf0b0e4d92523cad10c73d492a0a4e51d0d39589 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e15ea469bd947df9a10c5a8294b66f21a6cddb2b Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc4bcdef1d626e16879ddbe5c86ba4ead3d33fbc Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3be612748432ef2e6f8b29484b2a71d4bda22a53 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f74f5587eaed0ed4696cf31c2f920b318b5854e4 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b6a55fdb882057d19a1c0d6d2fe2363e62d8cf19 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a635ddf52359c8a89d917f48b82c659dccb2c83 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..176cf77d58704dbdd702d12c80deac3cf752aae9 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36fc4cd7209bcfd55065888143e9f8b16e3cef59 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3c8d8241baea904b479c3f8f472fffbbdc0eb6e9 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_char_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a62b136695403096914de2cea64e88f0b9d1517 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43cb471325165904981e0e1f08441d2a19705e59 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6d29b381e3b2bb64712afefdf71d9203c71d9461 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a224701e4d5a16c3a1706bfcca1e0f4a0cce06d2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca506a7f0d0a087dd2a495767eff79bc8b977649 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5933baa56aeb57b374775d7289c26daa7f0b8e47 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..949028ffb9b5248f925b53be3396817b1964bc89 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0bc27e2f04e73d9462fba4b94bf2096ec490ac2b Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5dadbeb23b8ae27cd00ece23708b6dc17500a7d3 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dep_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4af286aa7ced76bb89709b0f0e772024ea4937ee Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8ca9a9121e5eafb47b1a3ad797374f73453d88bd Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a6c870f83672613a16da2cd62511818304889d18 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..80518ab160554e1353fad31ff1076f099a8a4f3c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..63702a9db44f3b7e491daead83cd4cb2d7d301d2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4be7edf97f1bc928e8606758aae8867235044775 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a0cada89662500c36631406c7d90839d343761f Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b11443f9319dde4a08d0c452beba138c82634e57 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5efc337831f15e0a045fa3a49d4991e8531e9277 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..22e1be245adb9c3138e368bfcca3042aa37720ef Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d002149708b58feeeddef79f35e61146d17ab4c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e5d53aac8899692633dd690223436a409c3d65a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_dist_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43f80697d90770613aaf7f39b48b715476b437e8 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af7216319c6a38f73f31f4f60848fd9c57e3b712 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..297b05e4f2034528b6b2711360fc7de0b3554b6a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_emoticon_c_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd9d784c60165a9754a494f1d739f1a5bd952095 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f109e9c206a30c43cb91ed6fdd5124f9a44e1411 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40fefe850eb8143a32141513ddb6d29386abb278 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e8a29186bc36f6ff75ed84a23c0daa411082ea0 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b42b2190d07a799efc2c7d05bc733b53c88a82c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24b0a2ed5bb3a178acd87efe17fb03edceb03810 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_lemma_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..41a4cca343e86c42a5766ce5f12d4cd3329ad373 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8eb99e95e8791d6602a4499ce7ccdf72990ad737 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed5a61f3e22461fda7fa4b40877811af8a9c2b8b Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_num_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d59ca4e0a092b5c4741203389725fd54c13fa64c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..70532263af19d9ddb787e8954591a08809a24fd2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ab936ad101619dd8c7a113cc87ecc109c90d482 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_polarity_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9779d7b1c91bb41ff898f2c1e69497ababeb393a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8079077a0d2bea7bdd8c362d1991426b524ec346 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d9f5d9d9a9a62b0ab0230dd11b9ccb9ca6bef172 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4810ca819ff8cea936de1825958063cdb548ef03 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d1908ee27ee72aed2b923b0d60eca228e36658f Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3db12229ac3e2fd5ed76c4105fd522e373937d18 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b57c78483739aecbb04995cf991f82d9042bf07 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e606fd7601e2d5c417329965714601e6ad6dbe5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..670b8caad8e1d0fa31837c5e65c58153e5ce61a2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_pos_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6fc2c8a718ef5865101f5429f6c1524664a06bd0 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9f98b4a8b5436b7df6ea1e7f7c89ce20d9163b59 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1305577f1d1b32cfa2828d4bf86d4f2674d60273 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..20105447f60e32200d761bfc1dba162002d405d2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f2cbd4b4e344bd2e8487d3a332a3b3b0bb174db6 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d3ed5967e15302217727acb69dbf881fae67481c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..538494500a1c71698e4150a1fc10c8a6af6931c9 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3346d7aaf90c4b3546c3c3e1fa18b0e72944ce71 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66d56bf2cb45fab41076e9e0a6da3cde13609615 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_tag_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bec80e5c6f59518a099b02de5b748d1e4cdce2a0 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3f01e34ca03b9203d7f33817a23023c6f0e6258 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c6573654f6d3fd129afc3f4b7adb4352b2c02096 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_word_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..599b8594533ab56cc5c16acb35eeaf537d175076 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9ab1295f7b2651e82b9f645cd453af604974bba6 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7bfe4cfc7f8140f8e192ae787fe32e1022a98b70 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_baseline_word_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1918e43dc297de0a2572ac44c072a0c6311fe71a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b6df981983b6468d9e349fc974ea30c45e8e8a28 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e4d122049c804468fd5205f79cca511112972590 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a26f1969f141cd5b6310352779b817795a04370 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65e0719d4385e3dc71f4130a2cc135bb2df9d225 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b40b2f2e0aabd4b84fb96b9d186bcbae6e35556c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a10919abb2eeabf644a41ddf89ebcbdce40f1fa7 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8bfabfda70da20cf2af3aad7599503a3276a3411 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f5d6bded711b123e51d138abd0ce095422faedb4 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0a87a8a7dbda4e0c5280a59320d8ce67e64426be Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..72a15b904ea49cbae4aa198c265c6e01963c2e0f Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..284a7b3f4ce53c066cb68b827b044cd91fd8d4d5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8e9120ee0db5a9a22c39d584a7f33b45e762aac2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..97bf65e6f4f0f868100ec23e343b295008c83602 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d024af54a7c8d1a1baa27fe584851e4533c2a0fc Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25d8f8df899a28b61036572fa2d6f56238292bab Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd59cfde32be0ada7853e89054de595ef547e2a5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e4d6e8982d6ffceca15a9a1f43c3dc20c7362c5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..11afc892caa2417cb8aae7385ad8af0ecfb0d535 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..712f78036435c744fb5ffd2fb8a53003b1f27a06 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d50ff75362c7cf6b43b0521bd3142e43fee16644 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b93131a1f423375d6431f8947e2e003a14ca76be Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..efc7ecde9e7cf6487229bd72fdcd524c76ce31c1 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5c8548e957d279ca0bdb7dba1140c61a106121c2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f13f214b717b47e96dfe4206acbcca1d87ae720 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04d017da35819181618447325e6a0dd23537c4c4 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..efb2af01eaff5edd7b9aa289db52d3c8e741b5b2 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..783b9ce22bd449d73952d880cbd29c379b8b413c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9fea966d9682cc85e477772ae81608af882ea85b Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e3833450073ba2a1b6ff71afc1c45a9c515c449 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ab6436f3a30648251fda3260bcd0bce5f7e00da Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..89bf54aa7f61c3ff684e4b3377ef7b0d20099553 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a988653453fe8fb8d701273c1b323544b5de078e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..253ad3212d313b5d6e7a9981c6395ba59289a762 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29f8613b5b333a887028bac38dfc7c55d8ce8057 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2cce0bffac1903c47dcbd9e2ea17e2d8078168ca Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..11229e4530df40ba869e9a5319c8223e8d047e34 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..411354d8b72085f14aee3bd533c80d4675a700de Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..078c837275e1d9e03bc2fedb5762f4d379158fd5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d90a65e843bcd66cbd65e22a20f816f48bad0776 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61a0de8f784c2a0172a8a6be5ff138537ccead18 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61434c8ab8d3feb40a44dfb53a2fb81c29fd93c5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d7fd1d3ac7c9273ea11772792c2fbd31ce847ddc Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2090d8a6d15be56a03f87682aac24ff10b1042dc Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f728f791f9fc56474e8152b649df4c8ed3e20ce1 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..271a332c15ccb7560b305738316d7181324a72c3 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fc96004ed625c41d2a940ffb291ba2d65708c052 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb4b710d23bc28ee1482b5af525d6e1a24a17fef Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a3f1dbabeb30e6d1c0e056dc7d7089d3b3109c9b Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e0f406ca3f235a876c21527dbf1a4c85cbcc5151 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5da09b5aaa2d81e613b7fcfb4b45c4744c358cea Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f463cd41afdabac7a5ada391ccd625a4f5525f5b Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9a4fd33b32fd30cb26281efe2c62e67e15eb591a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..752aabc6b8799ef0ce13cb6d71610b8bbfd21a18 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..caad1e514d4e837fb59a2da1c4cc780b35fdb5b5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..977c0536ff175fbfa52bb622f7e6569b02c9be80 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..972dfc8bcf561396fb11d79d262e78da26d45b79 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b3277857a7d91b9d3844eb8f1cc95743c1fbbce7 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..732e409b7d346c2489e24e8a276e2d4b920884fd Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..daeea8149e66d31c2ede92f4705321def4f6774a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d42f5afeabee724d3933b09a9d26172e1471b2d0 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..99c81def49fefe0d95346bacc6ef519c13d45e6e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e150e52f0fba8f9150762d4564c88f434c69ccb Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..47ca778ecdcecb54058226499ea79575c7a8487c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40213e4844089e4c111db6b9c3acfa5eb1e826df Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e0824489522190958d882d4e41ef7b5c5ebc3d5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b876c6ec4649104aece72401b6136a3981578303 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..45f04634b2316f6bd58b881067d95f12a5a28fcc Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b3080081f7a24ac617b49c9b3451e371e421987 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f11c22cf60cd3d7ba863402173e7b581e840369a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0bb562cee947d8d32fa031245814f512ac8955c9 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e9999636f1185c41e7373731722a574349c5128a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b4ac28dbfae1dc6b1879b9f7fce839fce34d16f5 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc1e0e608cda371d997adfff72f707a2b9fa6722 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f656fc8e6dd7e1194b52319fa9de0b07c2808f1 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ea906f8e9ff815e3a15291c440462dd3571a7b4e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ded7a895d38c9ade778dcb58385de0085963a6e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01466b964ba240fde166026d26025e6968580ba6 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6f305d19b4c8ed7ccecc66521d576bd2099484d1 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..776b6eda697ef804cf02a79a8db7088deffbc5f7 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e5d2b5525b71737d8f21c210b1d6f254b447030 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b7fc8619e38bfba267cdc66ce7a6158fe02cf55 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..465e42bf30a371137f8f9faeba7d08dc50906269 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0ef356b6b67f50ca1fa2eb5b4c2f57a4b080643c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c3910617b92518749e408dbf401a170726cfa70 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3dbeb60d5cc9efc50f7f025f66e8847f2a0e7c72 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..12453d933f28e4f6c0f072f55a4b0c15fec87221 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a684777474b831ad21ed2bb6f22ddde08ecb0df6 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e0000807d002b94f927e5f8b22c0358033f297d6 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_2_3_4_5_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0416e014caad60efc7e16355950febd5a139b722 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c33c7013bd582ce740dabde602d6d50a19065e98 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bf3ffb0588fbacb4c1e867c8472df3f6b5887eb9 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9bcf547d6041b3843d3c4826ed43b62e83e4a865 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d73d6be8424f9ebce378927dfb39afe0b417482b Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25adb74f18ae685de1069105e22b50ebac9d949a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..384f5a8906664c115bae2cca7706c3e6aa15eb7f Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8b74963513fb88c2f6ed7efc7bd7b39df50f035a Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ee0010ff0a920ef6bc4a3b27ebce0f1a9ad2b136 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb0375748b3afb9de5cf16941f257f9ef8ba29b8 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1dd56112356e5d84883220b206dfd6643b17bbe7 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7d4299abe754cf68f8487de0bb173721635899b3 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fef8e92faccc881be902d7b03fb6973e48256bfb Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5860f5bd362fe0eb54270d3ec12255de6e58438 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8badedb2406d7994afde69414373ea9a3a5d69e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1373ffd64daed4693d69a8dec3bf7b5edb97ba29 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8f677dd96cf5241a7a067adea24fe384af6e27bd Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7abf9bde65226c7c9927b2b6da5ae6de75e7f323 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3f20328dd6bb070ef2f182ad88b95a837f190c3c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7fc6fbeb7fdbe5c695b621e0a6d67b34fac99e51 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..505749bcb2dba5fcce9eaaf2fbd8253042cd036c Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..31a9b1cdb13024b7dd9c24f4b4826993565f48cc Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..92a1a32a9681197e98f8c6b8b7aa42cf5917da9e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..51991fecb10c764ae523339230a4cddff9980c19 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1510ae940aa79d1c0d3f79a2c2eb78a04ad0c1a3 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..59276b43b04b3594e4d899a7980740931eb8ce5e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fd097d743c8edc35717e7faf99ed9269ac172ab0 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..76131a165953730217ecaa9697e4c2866505c8e8 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f4e8a9f8c7bee1a2e17678fa85a72c100a47e27e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1220c31eb9d1c909b35134913f2d96fc1e572898 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6a5ba742ce8a406a1751b1dd1bbf030e0756de9d Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a27ef69c41e51e8fe6cd00ae5895e3844cbaa553 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aeb277319f17009c6e16c34df477c1a45e24996e Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fb0d8883fc16511c416953f8f277c492166ec741 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ac34e85eba57d414e9ec25ea65b55c62e0bb20fe Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35b4e9fadccc6ecee1c638b8549146d83111d712 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..639c8cb56494970da3e0a8cb14de35efce0091cc Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e8e348709455768e01261c93e3fb0005935906d Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..359c1df52ff3562b765ed9f469ed27d2154d8bb7 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf differ diff --git a/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..97818ae1748a99ad1ac1ed22a8f5838397daa424 Binary files /dev/null and b/tex/figures/gender/250/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5bb82fd4a650612db102b7ff3d84ed88e038b33b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c19cf114491bad13f221f89a10f24998f8be5922 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d246ff3cc4968b1a8dcfa2d0b89bfc86d4ce03e3 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..08d42a0377751eaec1ffbf4e1f4849041b6469de Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c1ebb64fe0f23ef411f7e62117b1a14ec61b3117 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ac0189eccf50c3bfb46f1119c63ba84b30fb050b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f6dbc909aa325873c3c3a9899a7ae50e7ded7f46 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b06f5c52e5b6fb3fce9496e5192aa8ce0b27d443 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cf5f5224ca7ef0ce9238e8089fdf79ed680355b8 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a6b2c53aaf9152b471ab252219bc76b2bca6e191 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9e8bfae8a03ff4cb37447698bd2e278291cf9963 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3703a6949dd3ad0343fb9c99c8795a9dc91cd254 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ce4aa2d3ce25ff9b70d1af6ea2f4e12f7bcd4c9 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c1ca32d0e88eb5697f1a780caeb61570d192186e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b27f9631f7b41641476cad77d24a95cfbb82254c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..eb92172d8c50a5929c768db841c313e377eff01f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_asis_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a310a8a2932013e1fe6c9483e958627963fdadcc Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0cde55b5e80f64ac56af81a35a14f7e63cd8584d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..630ada73fa741217004d50b7f255bc9054b6ddd8 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8b4c8414e5ea0df2fb918ef6976606c17d85abcc Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a47410f2818fdcd932b0e09949462792d0a2ea14 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c532b90adfc4331f86e7294d655fec5defc57f0e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..216fb73c110058d39f39a75fb68b805a8664f77d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1871a318c58394892912e1b85d6ba10e81d3de74 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..62c40a079c3809d9cd35d825146999387316f9bd Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f4975cdb49f432ee9252cd4200db5ba1b270a9c6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..de4af53e0d0fe8b4ba0efa69224ecb97d186fd85 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b3c1905b5ce58f3417dbf70391e97d85e9cd3e76 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5fdca862044153e9d968c4a24e5e8ea83e7ee159 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a3d753c8a7076184adce5fc18a7b04f801f8acda Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..163b83082750afde7bbbf9e9e3e815b9b98fd416 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2e5ba075a7f08b3b355f852c647d993ed3d8960b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_char_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..be932927917a4bb16409a868d9c24fa75d79c3e4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9111852e27cd526ba1252faa7f8865bdbcd554d8 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d60f97c4c2493cc9f9b0a1a360d4db9bc6b3a6b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..c5ae95bb5d64c7a724cf0f311f032a7d5fa988d4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..936d8e5635af23ed6de17bc5d62048e00af6880e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..87f58960d5e8ba5e88a424cff09a29daa42eafa3 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ee230e822b9669b28927836d8688cfe1a1cec0d6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..de50b4837ee11f50c1c4ee8af0558ca2f20a38f7 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32d424e677a1cc2eecfd648e3d6d37a7815f3720 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..40b803da1f93f455af5cea1025b808dc5d3f1704 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c9120d2ca0917e690c8f50d522a03320f937332d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..06ce4840287dea76a51b74caf67b92672d6ea183 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dep_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ffef4982cfb0cec905535756fecb1bfea8ab48e5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..95d2b3eebcd712f1b0c5144895996a3acee27a43 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..565a67aa708e7717cb6b50692e4c33fa47a2cbe2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8f2ce716415d104752dd3465703bba47e135bef2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..74bff72eef8cfdff5523171ab0cd274d39d3b51f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ea2ca8f2ffd777989d7dfc4d4de867cf1493b9fc Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3307a0df05b11a315a026ae9359df011cd6e2b4e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9f2da395b472508fa6f4828e4602e285a5e39a8c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eaee5124e6e7caef24de6e865628920d1ab6a444 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4035f2b70a6dd370747cafb7b7b4ee1cb4e38834 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e4ea429d1b2893cbe0b2e6a6a98fcb2da9854d42 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f85f321a807d4e179d5ee2a19489f52334d584d0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab3e59d8f5ce911efe25481702410f6ebec965a1 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..8d139d3d52b311a6371da2ef0c665ce1007e3bec Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..13fb208324a38e3aa284b53894eebc59cfb6d540 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8508cb150b0f32908b933fbff740e03c00070f04 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_dist_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a2c6b055861760394b3c0cf0af3368bca41a7d4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..37016587c26b56449f80492186efbbfd6cff1d36 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e5cfb33d89a4871f6519040d1013b8c4eca96166 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6df120d41d1e39fbecebaa58fb56d9a83d4f6e4e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d50eee8dc9fc43481cbc8aabb5c39a6972010a58 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6006eb70e043e7059d2ff5c54e31a6e64b58a1fb Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2528ead01d87cc62f3eeb015321e93369eb17c4d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..85d9cc184aad0e36c946c5126107919cb152a3ec Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d855327fd387d259bc04e64dd302f3b9220e44d9 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..60192c64add59070b7715bedecb234d040e08c79 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..79e2e6b9a1180cfe0699d1aaac8cb8aef3c423f1 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b62e98bb3ed973a88c444cd790907e27019a6b90 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_lemma_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..123d1d72f2d67bc2f6ed2b9ca8ee993295543c1c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b5124c6485a2ada48d7dc346311b7eccb995ed25 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b6f7c2d3a5fd5d772951b38fce5ec5feff3752a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8af11c31d7dfcb9332eb04ca4ac94f86f21b8df8 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_num_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..431292bd1add49917fc8c7cf4201a75c25c52170 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9df725bfb33877af30effbd40179036e71a8a7ee Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..876396be249597ea025c2914cefa8d9ffc043f59 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..199ffdcce335e0fc9b5f635e42b84934d00a59ee Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_polarity_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fedc894d9fb86ca4937a2fd30b9801339b582d8a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..cbe31e958510a40151c8cf985b7d32e516c53ade Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..990ff3fa262fe2f220d1596cad42532edc9dd1b2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8dd17260e63d6093fa142eaa8424422b77299a89 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b04706bf92483d85ee20261c27cb7eb5ab63e30d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..8569d5076e958c42d79ce5207c162b81444c7d7a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..579f99aedf3586f21d6f29652828ba1383457659 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ad93444560a148be9c351375243075af9d88b129 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..086f9627a0fc79c233c9c3ed9343429a4bdec30f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4bd4c066b30e34087920f31760884929a449036b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4a6547b32024b713d51d5ee70dbc788a47afd5c0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8756db2233967bc8a1d31d150bc0c068797a1a38 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_pos_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..611ea06d7ba864e23c03f2875851cc4e3b4d4d76 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7cdece61a87eded136641d3685be6b2aee2cd667 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..28b6aee1b5f95449c3c849c8f6a0a3b3e1077b02 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..748c4e779aac176a3d28d492990fa7c21ca931d5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2857fb025c4981146b042252fd1e8a6b1f5bf4f2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7205fc3ff0761250741f65b5eff2e47716fab906 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d332aeeddd3e4ef941d8703476ee1abe73a4d0b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ee61e05cb2fce134a9c285a2e352013f5a84ad7e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..acd981e3a195d3d51c3efdd6c58c80fdff0b30e5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0117c0cbaa087f517b689e7a470edf216331b8af Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..54465dfbb2a0a22db9e8307dd517e09723a9bb4e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5c22cc74e434338429be0bf80c36c6973a5df64e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_tag_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cff753c78b44495d9fb587ac968565f6bc8ded1e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a46c8fb5989c14f567e1202decec737c0854a1bb Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c41a866f1aac234f503745e26cd8ee6cc95a7a7 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..92334cabbfed77c2a9b37418ed0f209a44c86d8f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..91af0977ec2249ca08fe39851b2633f6895c2479 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..0c7fa2e8c6a51e84470c26ac5744e9af6bf93716 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..982c71005e690b864645bf4f3c10792ee9898133 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..907966eb6fb80efb6a49dce10dd1d0500663b88b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_baseline_word_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eab45595611f388c1861626578771c4bdac67b5e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..84c5177444404fb437ecb6dc9e50c5c1222dbc7a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4ab8cc68a80f4c9d58ef06379738dd2b0b109fe5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3249f368ba6d273321700a6fb6e7b8982953f059 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bda2cd80feada8cb8302935de6084726d7eed5b4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..972a8316137e30fed6f57558f30914961b2ac4ad Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..49561ebd6dc41c2a2d0c0d93fb505dec59b241af Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..08671e47b8fc1d6f8f341c6ae8b60dbf53003bd2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c11126a1478b5029f4ad9cf48e2171afc6bb15b5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..98e798776069b6d6fb5e145ff6fe73024f6c3bb3 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f9ae16aebdb62f4861aa941d331eb5b78f291e53 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c2c73a59b24bdee94e0969e4644cf4f282f9c6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..337cd8c1f5181974f69e64ec71c6aa08c62b73c0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b3cae37bc93cedfff2eed047f5d21b608cc491b5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f8a25327adc6044445ac9b6e1faf8f0b178b085 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8267cff0da71654e7e37ad3c775802a43d2be272 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2a208ef11692bb4d21fc8c7e4ff364c568072ab4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..dc42a2ad7d4547f472d3a01556a0ee49e760c789 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..52cd2147b3050a66c48bc6bba40ca0d36bcd24a9 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..115a6cf870580f70a874e85375ca9456d2396a3c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6ff91b547b30eb67181e745c555a10b3884aebd4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..84b7bf820fe8231815e63ff1dfe9ba9c819bec99 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a83ec61c04a63bc450320a01459ce574446a8f4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..66d64005c7275ced3c806eb065cf31d0599233d9 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..167d023fb98f8594e352e59f1e08c258498fca5d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..3e44c5b059a7c57be4a470ea96f2547e6121b89c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ba26f5d24a6a37a8dea66c8af7d90f6762fcd1a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7e641d3ee0bf9a235da8894ce732c9d36428b27b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f5250dc4ed32ef70aaafb78f20bb1e9d1da4a502 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..fac98b0e69391e19cbee4b77de135811a9816ab5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..530637b0f3cd76dc06046500ddd59466afceb31b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3ec03166a21d50478ea6f939fc7a431242f9fd93 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1c8e33ca203d9f5caf2e0d25e3f2f69d1caf0bd5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..09260aac792cb086006ffa947f21c44d498d1aca Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4cb013fd297d637b149b674f3214e5525ee234d2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e31a6a92c8e79089a39a9a50483c58fe966ceb99 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f2be86dc9e63748a67c7469cdf31048c91404d25 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9328f2805b14f6b662954d0df8f1cc1c5533d73c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..351512816abb3ae31ecac3a2fc267efcc43ea9e0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..0f8c066744542602237e6be74abe3d0b83ca294a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4746debb1b0c6ab0b74b7c1c8bfbc5db8ea0f390 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ea2751bb0442c05627aebd6ab1f68493fa8368c7 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c75259252bf7e007273bd5f7d6a33c9dc441e826 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..87c72060f159d9ee1d187f7d92213e8ec8fd2c7c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ec7531f56df50e92e83ed3a79db47b97e9a299fc Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4fe663d858f41291c02ed3e825c45513268fde8c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35d092553bc9e1b146c7ae607d5aab582986eadd Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..ccf90085eb8513788593568c26188c4d84b1481a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d1a2ae86b8bd4162685a87e4443d942fa5e1aee Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5ab88fb7c35022eeb8b9d7103b77549295e4d14f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..df792999ad491c7f3eb8d19f6bd9a2782d190439 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e2960c38737fef56b1b68c60a6f7e74ba9960b25 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e02b02d86a20892ea451f9fbab026ee0d8486fbe Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..507769e1cd239188eb16e70d2e7adebb0d5d1c16 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ff787efd57e92f37c93d2d2786bbfd3217ce70a2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5b50e640f04eac027c2888dd85ef9596387b51e0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..50fee519670131d4dae69006bc41abf8785467d3 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d92609122e2cc4edccbb48351cb9d2bd152f96dc Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3a08d8fc777ff97cdede7d591dd4f610cd54cc41 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7553dee630eda72da66717cbcc7aea8a27dc3866 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0b3fdda6f2ecc64526ea7c3dbb79cbde7edb8faa Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..911fe6054f14663c3c2962a78e29906e926a0d48 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cc3a69c3544ed667219973649bbfa511e68c96a7 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e2df9233d78e884d71444a88e5f5b1daeea6922d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d04e1d52bea70dc64c0920745c28eb88dfaaa6c4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b082fa849cd5c7ab2ec8d0e4d29f2bc6832254b3 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..80e1b3b3f631532d8d8b6288384c40e54a3d7cc6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f7eb4263ca456a62de1a1c51484f58a071cbd448 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6bb6cccee40edb356cec118e12bc7d26a5ef9329 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..32af8bb7c7c2572c16ec71c302b450afd1f821f6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db136126245c4d406b2cfa1a3609a952fa2d8027 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..36b646cd4664c774359fa48087968018539a77d4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f60855ad0979a0d334dfa35b5dd7c15597ec9fa3 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..d6e5ae997429512bdf12f8ed0d48166f0ef30b62 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..756c81f7a80a510e1b26fad5b47b195f5a183eaa Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..2bd4d7b3c782b9cbbbc3e2c1590ad837d9c5475d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d585accd14e31fc83bb6d77b3d24f4896d644027 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..572b92f89c2d2cfcfedc35c5888e75b032aa3a7e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ffc3efb190291a02a2f767bc26b80004db709168 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a50c1f124c426c8d233d43e404f5e2c0a4a7000f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe8317d63c56fc384f30ec42dcd97eebad5acdb7 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f98d663adebef24eaf23ab78448659acb4099962 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d1bbb61efd99a5343a292e63d949d8270bfe895 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7ddc857442b922d5ee63945c653f1c71c6ef0857 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2f9f674bde381d5fb76d4d540909f5f4cae29a59 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9e0ffc69b4ebc9debfa2e12388c507760ad27668 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..823c62a20b195380dcea148cd720eeb1ab287d18 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..540bf1ca80ab341844ddb8990e72275520d0298f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4a17126525b08b0d9069e73be2a1f7cf25cd1613 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..fb2f624f1c48d364d2e2cf948ea1898232608d7a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..802421e4f7326308fd4d01c662114e40e45bb0b0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..234fe1dd433d62a5cfb5e0ba88d0332ef5d3944d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dac86968c9cacb8ed4ac3acbbd1f8f257bfbbf2b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c377c1e8f7856c878f16cc599d0b1a7d001ad7d4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9cf184b68ef6cdfd0c38d8eb8bdef0d500e6cb85 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..9198e6d948d854a998959da51a1bbbca83029b69 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61f9d5050445b4050b4aac7a53e0ff828bf6186a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c9e3f6e2232665e570262d83dccb96ea32472201 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8313fe3bdf4f42d967efae799bdf98815b6e2236 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..bd4d146191af32afbc1cfa43afc60c2980da604a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6997995a70a15132b8cebd861e61591a761928b5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..59bb58d12215d8f651066fed82684a58bd4d4145 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9efc2090d9c886c2bff0e7b912c18dc05f465eaf Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..978c65d83a443d6417ff10a176dee5299fa11c38 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..848943597c34b4ce631ad6fcfcb5f360fbe89995 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6820373b8e54ef7e1c9b08819710a385ccc820ea Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b76934a6ab9d3d8a566afef31b290a6816e0e854 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..10433f54cde462c0c757ea1144a9c783bd81b997 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..67d75e2eba58b7bcbc6b9380a6ab252947a695ed Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ad3e2b125493838aa8cacdbfc2a689ee3f372550 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d239b7fe085961adc0fcd67ef1d4472df05aa2d6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..e88ed0bf7aa22f0f189c64327bbd05da09985b11 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c631c7d599f03c14dd9a671220bac7cfb320249 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..344b783a9db3ad0202553865cc0eeb9d72eb383f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4e902a240bc475ee5190c54720bb95ee59283a18 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..73bafb09c1b3522172db087e6e88b908eb132752 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ac75ce360de5aa052d3edf2d1e49472a5bdeeb1 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f376033bd38ad7fe9448386f2a728eced8523b8a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b82f957701718f6b858be6f1326059fdeb47e573 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..4892501e8c18adb1e878097b9599dede331a5a3f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba46c7b70194f3974cd50a1876767414a9afba76 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..b11d32357005fcebcb542572a72f650e9edf98b1 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e25c22d56e315358997e2b45d2b76b6623c286e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..71a43432dbcdb66f5671170b309737419aaa7060 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab349a4c7dcc9b8feeef0a05d684f680a0d17143 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9bda52049694233f29c6c2311d9ed0f5c430d50e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..db96820b17430dc54e841ee6535b4f00fe292789 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..352f45f13b2b5ad9916fee1dd9899d34e7e30177 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3be8c682b4b47fe7052fb1dd405893292315ba34 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..392ff5ee9ba621b535e98d58f60e1a7fde133b5f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e30105bcfee6350cda0dc00354478631fd603bad Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a9b8369b3a2030f038ea446ea63112f7be5eeaf5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ef749124c2136be332b11063821789fc7cb42cc4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c31fb8b6600eb3c5f59356e60d695abcfecde7fe Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cfd13fb74ca7fb3aa2a2e5cb6557abda02ad8801 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..331762a57fefd4ea97fde1d3a87c85ba394fa51f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_4_5_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..966719da1b15a89028f9d7e793d4e6da2fce2147 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..08725f12940cc57201cae6f21bf991386d6a255f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..262d8f50535c01b42ffc602804a73e169360e702 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..20190494942e6fb46c0218e9d997ea4ad4387c17 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..230f008306c012a43025d3d2d9856eaabf7774c0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ebcbc88bffac393a1f23c0f0bb99b0a86f485e43 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..220122adcea3d25284ff7a36bffd66696862465a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..972b99847f5e8314744edbcec60c14cafa1fe729 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6c0af5af0978a503ebbe669a9fd1453ea7b4b72c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..fa2b7bba53fbeaca8c3a927c91230af852bfcdab Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..80d38d358841ca9c8181cfa315a2ac0d1eeaec6e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..6938ecb5f0c401d30e49e98894557f8b7b3b2aa4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..36a0e5dd2623b29716c381fb840baf4de54a783e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..cbb3bb5cc86ae83b8dff6f7eeb40e55e76f292c1 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e143d82738c250f63c1415fc1028efa9d283d54c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..43086d803ef4703dd1882acbbf8d60b83ce7bdad Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bdd2daedf295d89540e31ef0e964f9f1efabdc62 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..c7760b29f3c8660afa944308a18ca38aa5de580b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a03c3b0e5881f36ceb6803151dc7b0dcfae4577c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..d27887d2ff8fcff85ad133ae7f208e8b2589356b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d2dc34267ace1b8806f24088db4c6cd085cc585d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..9349035f658b006308f8b2b6db789f4172d2f2cd Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bdbdc75600a0e1d40298d3d46f6985e09db7bb83 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..10220ca1a8831841c53815d51f06fd475cb7d816 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..253c0899ceef07ea36d6fd63ea38577871fe8374 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4e6dff53d2ddee2bc3fcfced2e60725233c5b412 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0aa13478ed8961d959f67db232fe1e6caf816f97 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..656cb9f8804d4424884680c7e4f1cca14dc39489 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8c013aa3faa2e6750a184ec723205a27c06d02b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..7a655ca266c3c552b7ff1b25f061f103a8a169d1 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..07e0717aca928ca33173ee90568158be23d70fc6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..8c6ce264b0fecadba521eedd381b7c1e84ec38c4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..69fecfdd45c9f88e3c0b1c35fa6478549b03c35d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4b96a04df2e2307a0ecc55427d40bceeb15e5eca Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9f4a1719aab5dac794c6b9359ea2b7c85c52a7da Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..f5e59d7822836317058a8b21847d7a6f9c9a653c Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1ab959e3904fd49a714dc0d518cfbc69792b2028 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..4b37388e4daba725e45d7e41a52f9088ac8af786 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b183d1e039de76c3112ede8e087491c76699aa9d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..a47ce9a7ecc31d35e314c84d6927e8dc34b0ed71 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f04d69428cabff331640169de4ee2a3c45b8c27e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..395af8bc0f6cece261bdb94ad9dff13423d58ee7 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e8f32219dbd040631ebc9ebebc0286e1be2d9d92 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..62d6d99b441b0909c743e4554a8b4233e8e43ebb Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3b37fdf29dec02ec3f25b249920e4c4355195ffe Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..603190305c75fd03c6b3183adac93e4b8dc99dc0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7c3976116fc09978d4f8a5e37b3c07b7315ef604 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5d85b9015eafe3f760f438ed8aadffa4408877e0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2c44ad8f0b3478fbc0c7811260f363fe266ec550 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..ac52985e132b7597962b4aea62006f4c0f5c938f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cc261983e7759200884a425f0a78464cb262092d Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..89a781921b6039bc2de56dda35572e38dac52f5a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e0ce20ea56aaf28de2605037122fd4b1320b6305 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6a854bca641431103aaf918de7cd8865c46e7815 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ce589ea5049066b72033551499dbb115807a78d2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..7b8d3f20bf6f51a50ecd4258778f0f966447e3d5 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3fc1b0e010b6767035e31cfc8becc1c6d788849b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..2dc8b71f492a2f5a6621a8a0548502d9cc449458 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..29c11730c4ffc6204657c948cbfa88832ebc3257 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..daf9fa7d3df02420b1eca935b3d96617b97cc002 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2426baabe2ba7f225c402de61bf6fee8cbc098ce Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..5f8a06b06f7d40237a1ca9bff66038529e87f791 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..950e993ffd033731ee39b47fc024e91ea52f6f5f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..b99564747b934fe861e4972bea5d4903c41fc415 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65712d189b147643d008a3c997f0217340bfb8db Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a0a3930c3bc79ba9c3d8ff583c2303027f5a5fc0 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3a020bd8246507fe55ad6fa49afc2dcaf77fe092 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..fcd1c69a45fe01bbc744ce83c881334fa23e4c32 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..feb5980cb4195eb25772919bfa3ae20ea8476ddf Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c1d39c12b0d621f27eea38043a87074f4055a6 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82a429a893de336e4f81a7f2d220673ae8785d17 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..29343654f44fc49118306a75eded97c8edc93003 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa0e14f12e60147e2e64ac5f6366dde742b27088 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..697b376179a68cd438d9132ec3cf12c0a6a9d58e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e5b49412ac66d1e0f175572f287d61eb3070cf17 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..5f865466b871614601c9211e961713ce1b01e78e Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f039cd5d18a547e118998198b2e05fbed558c2a Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..a3db7cd66b916a4da2698b13f6303ea4f4f37248 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..62f68b504d30da3b8feff4304f299a117b863336 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..90c074c42871780ec6eac7b7b007235de4f4c873 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5aacce2c204108166c9680e82c2e1fd87a0650de Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8f733ebfb20e311d3a7534044dcf71511f869f Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4a3b7dfc4e67b9d12fa9075ba767ff8d3594f1cc Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..3321630dd1431d0a1bbf10885bb3e2792324909b Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2315dfdecb8270c2f13a3230ab1db1df21cdf158 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.png new file mode 100644 index 0000000000000000000000000000000000000000..6a9961a2f58e22947d7c2b8232960fdb1ce592c2 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.png differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5f36fc6a3721acfd789b99503b9780207acee1f9 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.pdf differ diff --git a/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png new file mode 100644 index 0000000000000000000000000000000000000000..1b5dc7a6f34f334e75fc0e3171e10a2d99fc2ce4 Binary files /dev/null and b/tex/figures/gender/500/bars/proportions_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_pred.png differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3316f54acec81e588559e524826a0544ed84e88b Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f810d9e8030174976a2fb1d7c358010404a05115 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d8718dfa95f0483358fdebee58e9e972cc7ea5d0 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1d3c2e1e629d013cd5f1aa81881da426a933b86 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bbeffe9a26f5bbbe1a17d07bc7131e97f7e0e7f1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c0b96f877077b74308ebd412838e0c1558148991 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a70678f2f96cccaf2021b56d6e48aa1ad0837650 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e012c2cc75ec1829284827b6270a404a42ddd21 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..636228943292cd2fdb636101c62ba1b42c3b5251 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..081fdf114e234739a5aa06d478671c393d8b59e3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..10cccb81d474bf1a315fbc4986ea5668fbe6694d Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dc7e24aef2dacbf03121b153625814d5d89f13b3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_asis_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..30eac7e83c90439eb7f4a33c2d3ad4e508ad0ba7 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e87f39ada9596bd7351a53556802ddb4f6b0c624 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1a7c34c6c71c3bd51a6fc1fe14b1cca054277d73 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fafd9b5ec2d6bf8249713cf7148ad1d0085098ac Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..93c4c53da49bb580e01016695f0226ba86eed0a0 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ee61363487c2db08c3d1d2e2919414710b6fc60 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bf760e7daafaf489ea976d0f3fe3c88f2c4ddab4 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad8b856a98806e48ccbd34a7829c9db53de4e769 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d2f5380e190fdc1d4bfe0a9641810f0fc82eecf0 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..73c6a873201ad01694f2e0f730a745e25f6a70ad Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aa9e2d022c2f8bb882a0a84dfd806e33ace73e9c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4b8c893760a1e6fe8203dde28db7e2d293445bac Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_char_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bdd34467db6b29800217ee89c3bfeada13d7e8c1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e5e42a189accb6ff5b6451baa4d870e66ac4e323 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..24f1809e6907b4a284942b2dd0dae3b974b72468 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bc9a1a145afdd609a084700ca0664c8a98aa2ff4 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c122cafc773de528424a7cf16c6f9449f3c020c1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04643dd84e571ae77ac2d8533cea4b27cceba5c7 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6a60dbb31d3314038528fce8a63d3afed187521e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..480098a132e72a356190cc89f5c3984e600c2ac5 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ac9541127feb068cf87cd851ac38cf1253e90604 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dep_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4fe5756e38bbd519e3d796a7fc59181e1fbf0e0f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..323cc4f690e833b9cd2cd36d5a855b745b13abef Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..96e8fe2ed5819d41b662ba30687545891d03dee3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..18dcb7f5eda75f686578e2cb942d46b4d35f235e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4d89b1c2066f5f2246d20272f664ef046299d168 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..34cd970931e21fb27e8dea205b7225fa5e0bfe2c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..638eddfae8d5a57139ddd2793ba28167fc60b109 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d5618c6600cedd6ba346436d88bdaa75d3916e42 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..178cbca4295c85ec41fdd0c30b88d5acb3f9c28b Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6e309edb3ba2464471be18b954c0a5ed9eebef3c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cdaa0ebc291f64c61cfe2bebe25176b9c6f9527f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27f7a43578a2cc8eaa4f1ad6898484e4b4993166 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_dist_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e316effd46beed2ee1c4a9c69a1a22a30478d686 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5dfa7e655e34dca77f17adf18c252cbb0708388b Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8d6b8a87c280b56a4cd3f0735f29e0c4f7ac467d Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_emoticon_c_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1e35a61624457fc2227a53c4667b9f827f0dcf34 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd3fae90f1263cce71a532ff01c25e2dd98dfb2b Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a8e217032375c06fde6462e81c387f615e6c13fb Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5c08b679bf6e63957a35d3ab66e83a8f2c8d6165 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8326c9accd45d7df5e01dd66b0b1609201f07083 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..276e1587e8cde1600a09f629b4966a332962f088 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01cd72ada8f1c38fae2f91277fcf25610560f3c0 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..960945d613dc22aa081fafb34cc833f98309a914 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ddd191431937abc65eb410cd5f60cbfd309ac721 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_num_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d20ef1b30185d100140d9ffc5d779d09c0f27d8b Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..39df74d590b76e3b7fe8487a039112df3577c2ce Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..156e0f4d91d64c1e3a2658f18766185d3b876aae Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_polarity_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f3c2d836c91c2a11017e3933b57ad9f55cd3d486 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a050535025be7b8e9ed154024fba1d56d223d1d5 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f4ac69179031ac17897018d28219bf101e5ad481 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4af0ad42b929ca61c6e7df1f8d38bac4ea5a16f8 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..98af80a12a2c9cabff499c21b9e8c7eafce44add Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e33dc59ce20532b58660ea4d8bdf058e82d2dccf Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fa77755782efed0b7444aa361658916fe4f800c8 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4615319f90c0b5565a0a2c8bc8933c1283e52f6 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b429e8be2bcb76bcfddec2a5003b0030a2f4a00c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_pos_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bc287d9bf6e6d8dc44776b57c34aeb75c075ccd2 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a48ea53a38ec89165b04f092e9370b311ecfbcbd Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..31b8453d32c69d2f0498bbd92effc32a80b468cd Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..10087a04bd038561d7afd960404658c35faa3c16 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d2548a69eb52473cf9288373fddea1b255b11764 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1555406857a95a23c552d5484600434dbd315b2c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..600bc8de65cf009cad3c0a99e071a8a1395479f3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3bf6bd2e43bf159a064b9b97d6a03386edd76ffa Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fde00936cf76ad4b396b6013f2fae18ca894cc46 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_tag_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cbd5c9d3a1058992f65188e4448fc4e33f8f1a67 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0728cdf99f9207a96067c011a78033afc372ca04 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af3a2cfe97a625e2ede3370b5d15add1c9233355 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae50102273e729326dac671369ab402b3cddf2e4 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da87b1fe128560d010119ded36d51bc0e672c22e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..982d2b42599ec6702af7db42770e66f0e334d547 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_baseline_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0225013e1fa3363c87238e7438a8685265bb7b47 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd97d34fc3f8522473cc9aca07ff1d4ed0341eb0 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8df4392b120331ed5c9dec77412b5908fb60906f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5ca7947c096a2c0b54dd10b3d08e8613472af3d8 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8d21fc90d7bce29b7ac43dc98b5e91cf0fce6316 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..78344308cf3de50a5e4a9e364575c79d3c361eb0 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..43b33c15118230688555be7fe4906e405be5a013 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..deba64f05d2fd03a9ab1b7507a46ecc4e9d63e22 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2fb694214239ad3062f6e3bfc5d45e3a8c385716 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bbbf208a8001cf51665edb37ba2c9bebe65fd601 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b825e7ca429a0838aa80c6bf16cba395bc7d570c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1466ebc38b37506e7808060414138514ebb95f75 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8fbc672f2443d04bb47a44c205fac5f22baa1a32 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..42eb1020ce85fba7b76f6c391480cf35dced7e29 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..781b95690bba50bebaa9838e7c6d0fb00493aa57 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dbb08e14190bd76f73b79b470c185ce0808bd46d Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..64529514cda67b2d6f04ce5889956bfe05401567 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0e576e32541d2b917f98981480d98c1be70ec996 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4b0bd9f335c524f8b25b3d1883e07343059d2fcc Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..49ea5784f99f75ed2b06dc50ab2e5782f8ce752b Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd09e8d72905ee3154432affc53eda475159ded7 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44df8327458eba5e9dc0ae7de7485329df70f37d Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3031ae2e404e0a6502bc3a4fd442bfb992865fe1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6b83ad49a9f7a3b2edb98a17030e013ad8c90cf9 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d5d294533106433f2acf6dfeb69fed211422884 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bc449ac2334b0a8a0cf01e844fa2352ab81d1b5e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..267fe0c2ccb8ce6ccec9beeafb399c44317d2296 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a553e16945f66e71ddd5b42b833f7882178aaa67 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6045902045875a377a76732dceaa8ed55cb34aee Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..569306fc4e48c271870adbed74ed88b3964ec09f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..457e635840625f2b6989e5037202b4c144574633 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..04c6bc5dbd975fec6a02adaf65d80ab2300794bd Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..edb5f58409458b7fcaa29a2485683444e70c2db9 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..472f6f09103ce5cc7ceff7a19b1f21047ecb8ddb Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da710e232f5da90746b1e0d8f3879aad11e0c64e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bb6ce7de9b13c97b7863ddf3951e050ba8322ce9 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17a64b096b98c619f1e078f6b40e7dcf98930855 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1f88702d0321c959edf254bf0e7c63295c9cbfc1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8a50110fee359fcd345760a929f51468756adae5 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..848bda2bd83b686d0ab690cc49bfcb6be8bcc093 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..763dfa5b20d8c89254d39d9f353c283a523707e5 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ba1f8cc8cf77b8984923e25a5b52ca4401efd6e9 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f1eb9992144af59e916242641ad9790ca8b6b586 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd003bc560ef53688d2a17c60620f121041320d8 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..deeef0b3a728b0b06be78cfed420a8b47f56ea72 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..724597353dfda16d32074b71d0310af7787ca88d Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e4f35f844decca11dca35b5ac8d2c9dbce616f1f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b9f89a583601b08c35316f7d000473bdfe6cdcfe Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0e03fb7e16a2420cf772277f2e2dd2354a008f82 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ee8b63a9ecb2f8c91dca2d7f4e57995e9fe962d3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ca9c57d40f9f29a528a1dbfb0efa3ddf62e0a870 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3e45ef3795c12d9abdf6c6e2ad905abb7879bc4c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..400cd21d515b5582bb2a2c55753a118f25317590 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ad7858355b8b780d364c00cefaee0fba60c00895 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5796d6db5ae740eeb0b2c974afd2b4c7a3ef82df Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3ad8951c634fb2b0660e1e0d65157df0acce8f29 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0529f369bfc2570cabd4936bdcbb29e0124fd416 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5198c73ef94cd593fb6b800af61fd0f78291d4e2 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b0795a1124051f4a04ae7634057c039e9fd8a79b Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4abceacbec10b186bc6fe6bb4242b4b08e5d4e3c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fe646e68ddf98ca3733c6465cd353c0878600714 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..87cf618b5e35bcc25703c056fbe2199dc4b6e94c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..492230fb092c03d36e91ce146a535004c1998e15 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2ac414ed10c566ccb1270f26415e012ad6c1081e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b99516900e76888ad92de70643d950f25c5abe9e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0942f672f654c7a52343ab6051878ad509f21fd7 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ae582f1e7e7fa6a3b3792ae7c1271bd3a1e80b21 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..83532ad6ffb5ef5caa39f9e0791b9dd73d9c9d8a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a3c265f295cc0e3b2f84be9e9a6d9a8bd15e056e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..48b6146c3df2ebe6193b0b2e1509be334a9c3754 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..97b9ed3b9124f70bc210a14e27c7fb5d42fe9396 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..804018094f975b2f772e631bbc0bad8528e32107 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..23da4e0f8e8312982d71dab9dbe1967ff68df150 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eb2fb09753d2379e7e9d288d674a65b4c505b509 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..486828565d034e60b2496be7ec2bf3340aff04ce Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a1692a3117201884328bc826f5e820f08a4da4af Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..6866a118559a95af1d5c657cebb3d300d361caa1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..df29c666a4e45f960f210ea21e4d49b29b216f4a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2daaf20610be114ca52a33abe09ddb3deb37f331 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..605667396b4efb0d00ab73b8fdf71ee6d40d4cff Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9a329f5f76b0e7d9a1b7cbc901149c9ad4b171b3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..68b62537f9219dc4c26c78de5fd57aa3a183621a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82e3365ba4935c28073cba620f57bc37bc704fab Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1cb801c9fa017a3fb337811a2cec04c97e9f2dd3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d34b4d1bcf5f89f98b76b7bae5dee5a1c3d2aed9 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..514efdd47e9c602275c4b0719927dcd6b5553a4e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3818f3834ae75981eaa5393cb5aa7697fb1ef139 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a788fb2fc7a6cd44de53ad0ef305610f882006f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..eae766a5419be8c69096d5a3248695df8d6b4140 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c47ae8990f49b0f30c227650ee495dcf3c9dc1f1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..487eaf89f1c4bc35fc6f2117a8bbb722db9faf1f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7ba20bafad3da318ed4d7e379fd1635ff3667adb Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..40c8d4c91630fadd2cbee2a9b4679a7250ab4b1f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b0a67a80bc5d10a08c8a94fbaed3a6be32b09fc Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..072ec78cd0656ff669b11efd101adb6b9c9844d1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5b325d7a7a03beeeae6998e3a37ddf360d7c27bc Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ab9300f269487429d20ba7e803af0db87275e13c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..fbf476b553e0edc7cc9ee541053f2d3bc990efa2 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a23fab0b40d7b95d01e633d2febb64c535858ce Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..82baf297e8f2be48a6518f2843bd9d8c33e4d207 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5a95c3aeaafdb2e5c6416882d98aa3e46ebbc5a1 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..097b2b74dd8e060150c5dc7c25e6e255087690e7 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_4_5_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5d31ba256f017c56d30346079ec15d3b165d6fad Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..686ccc52e448877ce0669d97608190f087ab143a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d8dee1d15def7c82cbafbfd664ef2aa365551257 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..58d0e27d7ab5a51bca3b1c02f27f7012e3fff512 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..60580ff1db69840f70b6bcc1596ed1947b9eaa90 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f9b3f69fc2b41328a8a8230accb631891e847d6f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..16db7652d4a3845e8fbf89ba7aa436f800c06808 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3317dbec76b8d002dce3b45ffbe4494034d9031e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..178e4f18a275de2d9be92364c3c7b19781df1391 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f1320d428e4632636da39f0be8c2545217cbe670 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..85f567cb60acbb3331a97bbbcd6fe7b67fa350b2 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d60b4caef485a4d76fa7e0fa7cc78385ff846dea Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e1d85fbc05d0d3bfeb5b86d41e2690647e171eb7 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c751e4d3c1f0d53671200880e3dca407825d4f27 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..811ede8a624fc612639b6d41346e74b1af51b360 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..42d398c9422ae176afaea83619c9f080e7293a52 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ed8c902bfaca84ef2df2a11685d9abba2eb6f27a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..babdfbd9c40ea7dbb642fdbc7fb0d0128001ca31 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..aea84dc39745e9bb8dc38feb443989dc06ca6334 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4778c6e4db89cc6983dbaf32d20fb0f6cd464a57 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..65bc0620f242982aa10639d688dc904db24e3bff Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0726a031266d842252c950cff313936494b42191 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dd1a63f0ca799ad056539a7544238630ea7209ae Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5c40620d5969071daedd97b9c9d04ebc9cfb4a36 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..17a710f6c89b4a0e1b2ca5016ba574354a990816 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b28a2b7065fe774734c21e815c23a2b05c6a7416 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..132d85a11e6d7eceb89e31282be476d4b859deda Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cdb514605521f2c3014ed835106b6458f23442be Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..670c03f29cb226143cb6fd4129765fe27eb57912 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..afef786c681303bdf2a57333d9cc99557ecef308 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..72430be14d6d4ec2732295baaf570f3c12ab0f40 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d46ccd463d9a5ab5bcc57c6f8219a6c7b275c4c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dbec376acf497c408fda9c60125b01636fe41c13 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c7a8d61dbd99e98cc3f6c128c6276618f4d40783 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3bc1d9767a29ca3110e77e20f5dbc7aac64c0855 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..37840ff48be5dd106991de680f2811b2616e029c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ebe17551a44168039802c58efc4a005784a7ce5e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2413575639fb1911a47304815fd5a68e785e4392 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..835287eb374f2eed922896030fe723595c07131e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_3_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..da5e981d0668286d17be7fb02f880f6c91bdf18a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..20ac228fc7cf00f7d96b096b52d9e3daf7c5a97c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d0a3742cce1c4c1ae98de8aea4671ab3db463e8d Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..27b3ef02292c3d8b16e9a08a0999b497484aff8a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..06f9e1eec7de142b3aea7b829bfe1b06a775a424 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..5dcc0c31dd9ac3353411a9a912a88b12693d2105 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7e64cceccb985364e725976f3b9e7b02f2565ce3 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1cda2a9f059111fc2eea2c4451b6f601bb54046c Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..3842265ffc5ec801fc9ec001199de6dd367f1789 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..136663efb160032fa5cd5dc8dd4e85071569c08a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a37a5082043b4137f7de55a331395198e27e6b08 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..af284200308d50da5bbec92b358c4fbd30364c5d Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..16ddafc9812e7ca13d85d913d8f47b0a3637caa0 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..de69b076ecf4f9678c3949d628975aadcf31f86f Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..ec0b7e352b0a89f70c279e032beadb337569b7dd Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_2_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b7e128253f1832f093540939b6c94e458c952c16 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..deebfd06ddb3209888d8d1a197da13d467bddd79 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f33f6b98fe1c498e6287fec82f0109701f8acf79 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..b1f016493aaa9f178c255548941938041e6c7e99 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..66bba059779908adfdfe7ad83eff40002abac744 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0d26c5d84dd5206b3fbc6595d4931638d7e0087e Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2e7cc4041dc0fc3f79bfd6f3194e3cbddd005e31 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..25f6a75b9e7372b1cf75964cf502eccd80fa4462 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b0a3c6703b09e7432745c9cd5440cf92818117a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf new file mode 100644 index 0000000000000000000000000000000000000000..337e4772b02ac399dcfeb4085afb811426fd4f0a Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..44181aa8c984c555c2359aabf221d69dbec24453 Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf differ diff --git a/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf new file mode 100644 index 0000000000000000000000000000000000000000..61ce222b490c33accb33efe630570d5e0c095eee Binary files /dev/null and b/tex/figures/gender/500/confusion/confusion_stacked_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_only_false.pdf differ diff --git a/tex/figures/gender/f1_scores_100.pdf b/tex/figures/gender/f1_scores_100.pdf index 5aa9b2bd76b3bd87e365c0e62a9851bee2609cfb..aad34a746ab687b9f310f8d347b6a2aedfeab055 100644 Binary files a/tex/figures/gender/f1_scores_100.pdf and b/tex/figures/gender/f1_scores_100.pdf differ diff --git a/tex/figures/gender/f1_scores_250.pdf b/tex/figures/gender/f1_scores_250.pdf index 945c10a0e92dcaa1cb331f8de00230cd9d368f76..029964b248fc810237a2439d4b375c6ec5ce8d3b 100644 Binary files a/tex/figures/gender/f1_scores_250.pdf and b/tex/figures/gender/f1_scores_250.pdf differ diff --git a/tex/figures/gender/f1_scores_500.pdf b/tex/figures/gender/f1_scores_500.pdf index 7240c33c9b2797b2565d564a9faf6cbb7d65e6c0..72d2334381da6e95ba955b343703801c54294b8f 100644 Binary files a/tex/figures/gender/f1_scores_500.pdf and b/tex/figures/gender/f1_scores_500.pdf differ diff --git a/tex/figures/gender/spearman_ext_100.pdf b/tex/figures/gender/spearman_ext_100.pdf index 6e8f33707134397305d1836cadb4e91fc29cdbc1..fb19e8b33f3d5c015748f0054da10ad4d2b659f3 100644 Binary files a/tex/figures/gender/spearman_ext_100.pdf and b/tex/figures/gender/spearman_ext_100.pdf differ diff --git a/tex/figures/gender/spearman_ext_250.pdf b/tex/figures/gender/spearman_ext_250.pdf index 9f009a88cae0d2c45257bb724ca64c8d6b932280..ca6d4450bbd4a33dbffad92df21a19c6b1793258 100644 Binary files a/tex/figures/gender/spearman_ext_250.pdf and b/tex/figures/gender/spearman_ext_250.pdf differ diff --git a/tex/figures/gender/spearman_ext_500.pdf b/tex/figures/gender/spearman_ext_500.pdf index 249204bbeb19276afa1d58e10829da9a3e17aa75..24f8aa66ff97ff14dfc5521cd207a736f119f3fc 100644 Binary files a/tex/figures/gender/spearman_ext_500.pdf and b/tex/figures/gender/spearman_ext_500.pdf differ diff --git a/tex/introduction.tex b/tex/introduction.tex index dfd9249dd4be65f1630020941d8a441ab0fe3d89..2aaa2141eddf0bfc46469460d263c29555da9fb8 100644 --- a/tex/introduction.tex +++ b/tex/introduction.tex @@ -1,37 +1,41 @@ \section{Introduction} \label{sec:intro} -In traditional studies within the social sciences, characteristics such as age or gender are key traits as they have proven to be central to understanding and modeling human behavior \parencite[e.g.][]{lahey2000age, Gneezy2004GenderAge,Charness2012StrongTaking,Booth2012GenderMatter,Sutter2014GenderPersist, Bian2017GenderInterests}. -While traditionally studies within the field focused on lab experiments as well as questionnaires, large-scale datasets have, until recently, been of limited availability. Especially, when it comes to text data, the analysis often proved resource-intensive and the results are difficult to assess. -However, in general that data is a wealth of information, even more so since the amount of text data generated by individuals increased massively with the advent of services such as Facebook\textsuperscript{\textregistered} or Twitter\textsuperscript{\textregistered} \parencite{InternetLiveStats2019TwitterStatistics}. -With such large amounts of data, new methods in machine learning and natural language processing (NLP) gained great popularity, especially within the social sciences. -In order to mine that treasure-trove researchers increasingly turn to the application of NLP to answer prevailing questions in the social sciences \parencite[e.g.]{bail2016combining, pavlick2016gun, costa2019analysis, burley2020nlp}. +In traditional studies within the social sciences, characteristics such as age or gender are key traits as they have proven to be central to understanding and modeling human behavior \parencite[e.g.,][]{lahey2000age, Gneezy2004GenderAge,Charness2012StrongTaking,Booth2012GenderMatter,Sutter2014GenderPersist, Bian2017GenderInterests}. +While traditionally studies within the field focused on lab experiments as well as questionnaires, large-scale datasets have, until recently, been of limited availability. Especially when it comes to text data, the analysis often proved resource-intensive and the results are difficult to assess. +However, in general, that data is a wealth of information, even more so since the amount of text data generated by individuals increased massively with the advent of services such as Facebook or Twitter \parencite{InternetLiveStats2019TwitterStatistics}. +With such large amounts of data, new methods in machine-learning and natural language processing (NLP) gained great popularity, especially within the social sciences. +In order to mine that treasure trove, researchers increasingly turn to the application of NLP to answer prevailing questions in the social sciences \parencite[e.g.,]{bail2016combining, pavlick2016gun, costa2019analysis, burley2020nlp}. The technology as such is, depending on the algorithms, comparatively simple to use in terms of know-how when one considers the textual features for identification as well as the difficulty of setting up and training the respective algorithms \parencite{Narayanan2012OnIdentification}. -By reducing the entrance cost in such way, this technology has certainly great potential. -Here, the section of authorship analysis is becoming an area of special relevance to the social scientists. The reason is simply that while a large amount of text data is available, often characteristics of the individual, e.g. age, gender but also their identity as such, is not. The main goal of that particular area therefore is to profile characteristics such as age, gender but also political orientation or even the author's identity from texts written by the individual. -As such, while studies within the social sciences making use of that new type of data continue to include these characteristics due to their proven relevance in past research \parencite[e.g.][]{bail2016combining, colleoni2014echo}, authorship analysis is used to compensate for the lack of ground truth. That is often done by using a layered approach, first inferring the missing characteristics with a trained classifier, and then in turn using that as input to their research approach \parencite{barbera2015understanding, huang2020contribution}. -Moreover, these characteristics are not only important as an input for further research but also as identifying information. In the adjacent field where NLP and behavioral sciences intersect, the law community is making use of such analysis for the targeting and researching of incriminating online behavior, e.g. hate speech \parencite{Djuric2015HateEmbeddings,Laub2019HateComparisons,zufall2020operationalizing}. -In that, also the practical application of authorship analysis becomes relevant when pursuing offenses. +By reducing the entrance cost in such a way, this technology certainly has great potential. +Here, the section of authorship analysis is becoming an area of special relevance to the social scientists. The reason is simply that, while a large amount of text data is available, characteristics of the individual, such as age and gender, but also their identity, often are not. The main goal of that particular area is therefore to profile characteristics such as age and gender, but also political orientation or even the author's identity from texts written by the individual. +As such, while studies within the social sciences, in making use of that new type of data, continue to include these characteristics due to their proven relevance in past research \parencite[e.g.][]{bail2016combining, colleoni2014echo}, authorship analysis is used to compensate for the lack of ground truth. That is often done by using a layered approach, first inferring the missing characteristics with a trained classifier, and then in turn using that as input to their research approach \parencite{barbera2015understanding, huang2020contribution}. +Moreover, these characteristics are not only important as an input for further research, but also as identifying information. In the adjacent field where NLP and behavioral sciences intersect, the law community is making use of such analysis for the targeting and researching of incriminating online behavior, e.g., hate speech \parencite{Djuric2015HateEmbeddings,Laub2019HateComparisons,zufall2020operationalizing}. +The practical application of authorship analysis also becomes relevant when pursuing offenses. Often, online users do not use their real names, and finding out their identities becomes difficult either because it is not available or because the companies having access to the information are not willing to share it \parencite{facebook}. -Consequently, often during such an investigation \textit{forensic} authorship analysis is employed to gain additional information on the potential offender. Due to the high volume of data, these processes become increasingly automated and as such the research field of automated forensic authorship analysis is well established \parencite{Rocha2017AuthorshipForensics}.\\ +Consequently, often during such an investigation, \textit{forensic} authorship analysis is employed to gain additional information on the potential offender. Due to the high volume of data, these processes become increasingly automated and as such the research field of automated forensic authorship analysis is well established \parencite{Rocha2017AuthorshipForensics}.\\ -However, while state-of-the-art methods regularly manage to achieve a high accuracy for authorship analysis \parencite{Rocha2017AuthorshipForensics}, some call the field's scientific character into question \parencite{Chaski2001EmpiricalTechniques}. +However, while state-of-the-art methods regularly manage to achieve a high accuracy for authorship analysis \parencite{Rocha2017AuthorshipForensics}, some call the field's scientific character into question \parencite{Chaski2001EmpiricalTechniques}. This is due to the fact that current research of automated authorship analysis mostly focuses on correct predictions, using a wide set of features which often varies between different papers \parencite{Rocha2017AuthorshipForensics}. -The focus seems to lie on achieving the best results, showing the viability of automated authorship analysis often to the detriment of rigorous explainability and transparency \parencite{Chaski2012BestIdentification}. This not only generally concerns research employing such models but, when used by law enforcement, it is also directly related to the admissibility of findings from automated authorship analysis in the courts as transparency as well as rigor might not satisfy the demands before the law \parencite{Chaski2012BestIdentification}. Consequently, the technology is in need of further assessment before being used even more widely than already the case.\\ -That result is somewhat surprising as one of the more extensive surveys on literature targeting \textit{forensic} authorship analysis notes the importance of and need for a \textquote{well-defined process} \parencite{Rocha2017AuthorshipForensics} in order to satisfy the high requirements for explainability before the law. +The focus seems to lie on achieving the best results, showing the viability of automated authorship analysis often to the detriment of rigorous explainability and transparency \parencite{Chaski2012BestIdentification}. This not only generally concerns research employing such models but, when used by law enforcement, it is also directly related to the admissibility of findings from automated authorship analysis in the courts, as transparency and rigor might not satisfy the demands before the law \parencite{Chaski2012BestIdentification}. +As such, this topic is very much of normative interest. Explainability and transparency are the central aspects when a decision made by some model affects individuals. Within the field of law, as outlined above, that may affect the individual directly as she comes under suspicion when identified by the machine. In social sciences, they may be more indirectly affected. One way would be when predicted labels on a datasset are used for further analysis. The result from such an analysis may inform policy decisions. However, the error will propagate. As the underlying labels assigned by the machine were systematically faulty, the policy design will be as well. +On the one hand, it is therefore paramount that, when exposed to such machine-informed decisions and label assignments, there are no systematic patterns of errors. On the other hand, the things driving the prediction result should be more than just spurious correlations, present in one dataset, absent in the next. +Consequently, the technology is in need of further assessment before being used even more widely than is already the case.\\ +%That result is somewhat surprising, as one of the more extensive surveys on literature targeting \textit{forensic} authorship analysis notes the importance of and need for a \textquote{well-defined process} \parencite{Rocha2017AuthorshipForensics} in order to satisfy the high requirements for explainability before the law.\\ + Besides understanding the algorithm, such an explainability would require two things: -One concerns the topic-independence which means that the features predictive of an author should not depend on the content of the text \parencite{Narayanan2012OnIdentification}. +One concerns the topic independence, which means that the features predictive of an author should not depend on the content of the text \parencite{Narayanan2012OnIdentification}. The second aspect is rarely mentioned. -Most models are trained at one point in time, on one particular text corpus related to one domain. -Using this at a later point in time, however, assumes that in the meantime there was no shift in the underlying features used or shifts in the set used by a particular author. -If one looks for example at age, it may be that at the moment older people are using more grammatically correct language in the online environment compared to younger people \parencite{Flekova2016ExploringTwitter}. -Naturally that is merely a snapshot of the current environment. -It does not imply that the next generation features the same pattern and consequently, any model trained on the old pattern might inadvertently miss-classify when confronted with the new pattern. +Most models are trained, at one point in time, on one particular text corpus related to one domain. +Using the trained model at a later point in time, however, assumes that in the meantime there was no shift in the underlying features used or shifts in the set used by a particular author. +If one looks at age, for example, it may be that older people are currently using more grammatically correct language in the online environment compared to younger people \parencite{Flekova2016ExploringTwitter}. +Naturally, that is merely a snapshot of the current environment. +It does not imply that the next generation features the same pattern, and consequently, any model trained on the old pattern might inadvertently misclassify when confronted with the new pattern. For that reason, it is necessary to assess the stability of individual features used by the classifier, when the underlying data and thus the patterns change slightly. -There are only very few forays seeking to address such problems, for example like \textcite{Azarbonyad2015Time-awareStreams} do with their temporal weighting of features. -As stylometry is rooted in the humanities and thus the social sciences \parencite{Neal2017SurveyingApplications} it is surprising that not more efforts have been made so far to see whether some author characteristics result in some stable topic- and domain-independent features and feature importance.\\ +There are only very few forays seeking to address such problems, for example as \textcite{Azarbonyad2015Time-awareStreams} do with their temporal weighting of features. +As stylometry is rooted in the humanities and thus the social sciences \parencite{Neal2017SurveyingApplications}, it is surprising that not more efforts have been made so far to see whether some author characteristics result in some stable topic- and domain-independent features and feature importance.\\ -Therefore the central aspect of our approach is helping to answer that question about the feature stability as well as their relevance. We seek to extend the understanding about the fundamentals of language and communication. We think that such a stability analysis would aid immensely in assessing the rigor of predictions therefore making them safer to use in the legal context. Moreover, it would also help to better establish the boundaries of transferability and stability of models and their predictions which is needed when used as input for further research. -This contribution is therefore interdisciplinary in nature as it tries to address an issue affecting multiple fields. -While the lack of contributions was already pointed out \textcite{Rocha2017AuthorshipForensics}, only recently has there been any notable forays. In general, there has been an effort to make model predictions more explainable \parencite{Ribeiro2016WhyClassifier, samek2019explainable}. A systematic approach , however, looking at changes when features are systematically varied is as of yet limited. The study by \textcite{koppel2011authorship} look at authorship analysis "in the wild`` and systemically vary the number of authors as well as the number of features to assess quantify performance gains and losses. They do not focus on featuretypes and do not extend their study towards analyzing the changes in within the model. Recently, \textcite{boenninghoff2019explainable} showed a method to make a complex model based on a neuronal net explainable. Their approach is limited to their specific model and does also not analyze what the decisive features correspond to, i.e. how much context they encode. In that vein, \textcite{sanchez2017comparison} is closer to our approach. They also seek to limit topic-dependency and focus on featuretypes. However, their goal is to find a good subset of ngrams for their featureset with high predictive power. The paper closest to ours is the one by \textcite{sage2020investigating}. Their analysis is focused on different featuretypes and the influence of varying ngram-lengths. They systematically vary both in order to find the impact on performance. However, they do not extend their analysis to different input sets and also focus on longer news articles instead of the more common data of microblog texts. Moreover, we also extend that analysis into the domain of stability, assessing whether there are shifts in feature-importance. +Therefore, the central aspect of our approach is helping to answer that question about the stability. We assess the stability in terms of predictions and in terms of feature importance. We seek to extend the understanding about the fundamentals of language and communication. We think that such a stability analysis would aid immensely in assessing the rigor of predictions, therefore making them safer to use in the legal context. Moreover, it would also help us to better establish the boundaries of transferability and stability of models and their predictions, which is needed predictions of such models are used as input for further research. +This contribution is therefore interdisciplinary in nature, as it tries to address an issue affecting multiple fields. +While the lack of contributions has already been pointed out \textcite{Rocha2017AuthorshipForensics}, only recently, have there been any notable forays. In general, there has been an effort to make model predictions more explainable \parencite{Ribeiro2016WhyClassifier, samek2019explainable}. A systematic approach , however, looking at changes when features are systematically varied, is still limited. The study by \textcite{koppel2011authorship} looks at authorship analysis ``in the wild'' and systemically varies the number of authors as well as the number of features to assess and quantify gains and losses in performance. However, the authors do not focus on feature types and do not extend their study towards analyzing the changes in within the model. Recently, \textcite{boenninghoff2019explainable} showed a method to make a complex model based on a neuronal net explainable. Their approach is limited to their specific model and does not analyze either what the decisive features correspond to, i.e., how much context they encode. In that vein, \textcite{sanchez2017comparison} is closer to our approach. They also seek to limit topic dependency and focus on feature types. However, their goal is to find a good subset of n-grams for their feature set with high predictive power. The paper closest to ours is the one by \textcite{sage2020investigating}. Their analysis is focused on different feature types and the influence of varying n-gram lengths. They systematically vary both in order to find the impact on performance. However, they do not extend their analysis to different input sets and also focus on longer news articles instead of the more common data of microblog texts. Moreover, we also extend that analysis into the domain of stability, assessing whether there are shifts in feature importance. diff --git a/tex/main.aux b/tex/main.aux index 5868dc75e5b6c18bba1a4ddbf8a1a4374601b876..2237bf304513bd43a502bd53d1fba589173e53bc 100644 --- a/tex/main.aux +++ b/tex/main.aux @@ -1,5 +1,10 @@ \relax \providecommand\hyper@newdestlabel[2]{} +\providecommand*\new@tpo@label[2]{} +\@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } +\@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } +\@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } +\abx@aux@refcontext{nyt/global//global/global} \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined \global\let\oldcontentsline\contentsline @@ -16,21 +21,9 @@ \gdef\HyperFirstAtBeginDocument#1{#1} \providecommand\HyField@AuxAddToFields[1]{} \providecommand\HyField@AuxAddToCoFields[2]{} -\@writefile{toc}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } -\@writefile{lof}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } -\@writefile{lot}{\boolfalse {citerequest}\boolfalse {citetracker}\boolfalse {pagetracker}\boolfalse {backtracker}\relax } -\abx@aux@refcontext{nyt/global//global/global} +\providecommand\BKM@entry[2]{} \providecommand \oddpage@label [2]{} -\abx@aux@cite{InternetLiveStats2019TwitterStatistics} -\abx@aux@segm{0}{0}{InternetLiveStats2019TwitterStatistics} -\abx@aux@cite{bail2016combining} -\abx@aux@segm{0}{0}{bail2016combining} -\abx@aux@cite{pavlick2016gun} -\abx@aux@segm{0}{0}{pavlick2016gun} -\abx@aux@cite{costa2019analysis} -\abx@aux@segm{0}{0}{costa2019analysis} -\abx@aux@cite{burley2020nlp} -\abx@aux@segm{0}{0}{burley2020nlp} +\BKM@entry{id=1,dest={73656374696F6E2E31},srcline={1}}{496E74726F64756374696F6E} \abx@aux@cite{lahey2000age} \abx@aux@segm{0}{0}{lahey2000age} \abx@aux@cite{Gneezy2004GenderAge} @@ -43,6 +36,18 @@ \abx@aux@segm{0}{0}{Sutter2014GenderPersist} \abx@aux@cite{Bian2017GenderInterests} \abx@aux@segm{0}{0}{Bian2017GenderInterests} +\abx@aux@cite{InternetLiveStats2019TwitterStatistics} +\abx@aux@segm{0}{0}{InternetLiveStats2019TwitterStatistics} +\abx@aux@cite{bail2016combining} +\abx@aux@segm{0}{0}{bail2016combining} +\abx@aux@cite{pavlick2016gun} +\abx@aux@segm{0}{0}{pavlick2016gun} +\abx@aux@cite{costa2019analysis} +\abx@aux@segm{0}{0}{costa2019analysis} +\abx@aux@cite{burley2020nlp} +\abx@aux@segm{0}{0}{burley2020nlp} +\abx@aux@cite{Narayanan2012OnIdentification} +\abx@aux@segm{0}{0}{Narayanan2012OnIdentification} \abx@aux@cite{bail2016combining} \abx@aux@segm{0}{0}{bail2016combining} \abx@aux@cite{colleoni2014echo} @@ -61,8 +66,29 @@ \abx@aux@segm{0}{0}{facebook} \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} -\abx@aux@cite{Narayanan2012OnIdentification} -\abx@aux@segm{0}{0}{Narayanan2012OnIdentification} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{2}{section.1}\protected@file@percent } +\newlabel{sec:intro}{{1}{2}{Introduction}{section.1}{}} +\newlabel{sec:intro@cref}{{[section][1][]1}{[1][2][]2}} +\abx@aux@page{1}{2} +\abx@aux@page{2}{2} +\abx@aux@page{3}{2} +\abx@aux@page{4}{2} +\abx@aux@page{5}{2} +\abx@aux@page{6}{2} +\abx@aux@page{7}{2} +\abx@aux@page{8}{2} +\abx@aux@page{9}{2} +\abx@aux@page{10}{2} +\abx@aux@page{11}{2} +\abx@aux@page{12}{2} +\abx@aux@page{13}{2} +\abx@aux@page{14}{2} +\abx@aux@page{15}{2} +\abx@aux@page{16}{2} +\abx@aux@page{17}{2} +\abx@aux@page{18}{2} +\abx@aux@page{19}{2} +\abx@aux@page{20}{2} \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} \abx@aux@cite{Chaski2001EmpiricalTechniques} @@ -73,8 +99,6 @@ \abx@aux@segm{0}{0}{Chaski2012BestIdentification} \abx@aux@cite{Chaski2012BestIdentification} \abx@aux@segm{0}{0}{Chaski2012BestIdentification} -\abx@aux@cite{Rocha2017AuthorshipForensics} -\abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} \abx@aux@cite{Narayanan2012OnIdentification} \abx@aux@segm{0}{0}{Narayanan2012OnIdentification} \abx@aux@cite{Flekova2016ExploringTwitter} @@ -83,8 +107,16 @@ \abx@aux@segm{0}{0}{Azarbonyad2015Time-awareStreams} \abx@aux@cite{Neal2017SurveyingApplications} \abx@aux@segm{0}{0}{Neal2017SurveyingApplications} -\abx@aux@cite{Narayanan2012OnIdentification} -\abx@aux@segm{0}{0}{Narayanan2012OnIdentification} +\abx@aux@page{21}{3} +\abx@aux@page{22}{3} +\abx@aux@page{23}{3} +\abx@aux@page{24}{3} +\abx@aux@page{25}{3} +\abx@aux@page{26}{3} +\abx@aux@page{27}{3} +\abx@aux@page{28}{3} +\abx@aux@page{29}{3} +\abx@aux@page{30}{3} \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} \abx@aux@cite{Ribeiro2016WhyClassifier} @@ -99,34 +131,74 @@ \abx@aux@segm{0}{0}{sanchez2017comparison} \abx@aux@cite{sage2020investigating} \abx@aux@segm{0}{0}{sage2020investigating} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{2}{section.1}\protected@file@percent } -\newlabel{sec:intro}{{1}{2}{Introduction}{section.1}{}} -\abx@aux@page{1}{2} -\abx@aux@page{2}{2} -\abx@aux@page{3}{2} -\abx@aux@page{4}{2} -\abx@aux@page{5}{2} -\abx@aux@page{6}{2} -\abx@aux@page{7}{2} -\abx@aux@page{8}{2} -\abx@aux@page{9}{2} -\abx@aux@page{10}{2} -\abx@aux@page{11}{2} -\abx@aux@page{12}{2} -\abx@aux@page{13}{2} -\abx@aux@page{14}{2} -\abx@aux@page{15}{2} -\abx@aux@page{16}{2} -\abx@aux@page{17}{2} -\abx@aux@page{18}{2} -\abx@aux@page{19}{2} -\abx@aux@page{20}{2} -\abx@aux@page{21}{2} -\abx@aux@page{22}{2} -\abx@aux@page{23}{2} -\abx@aux@page{24}{2} -\abx@aux@page{25}{2} -\abx@aux@page{26}{2} +\BKM@entry{id=2,dest={73656374696F6E2E32},srcline={1}}{4578706572696D656E74616C2044657369676E20616E642044617461} +\abx@aux@cite{custodio2021stacked} +\abx@aux@segm{0}{0}{custodio2021stacked} +\abx@aux@cite{custodio2021stacked} +\abx@aux@segm{0}{0}{custodio2021stacked} +\abx@aux@page{31}{4} +\abx@aux@page{32}{4} +\abx@aux@page{33}{4} +\abx@aux@page{34}{4} +\abx@aux@page{35}{4} +\abx@aux@page{36}{4} +\abx@aux@page{37}{4} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {2}Experimental Design and Data}{4}{section.2}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Synopsis}{4}{paragraph*.2}\protected@file@percent } +\BKM@entry{id=3,dest={73756273656374696F6E2E322E31},srcline={17}}{44617461} +\abx@aux@cite{Neal2017SurveyingApplications} +\abx@aux@segm{0}{0}{Neal2017SurveyingApplications} +\abx@aux@cite{Neal2017SurveyingApplications} +\abx@aux@segm{0}{0}{Neal2017SurveyingApplications} +\abx@aux@cite{Halvani2016AuthorshipTopics} +\abx@aux@segm{0}{0}{Halvani2016AuthorshipTopics} +\abx@aux@cite{Narayanan2012OnIdentification} +\abx@aux@segm{0}{0}{Narayanan2012OnIdentification} +\abx@aux@cite{Rocha2017AuthorshipForensics} +\abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} +\abx@aux@cite{Spitters2016AuthorshipForums} +\abx@aux@segm{0}{0}{Spitters2016AuthorshipForums} +\abx@aux@page{38}{5} +\abx@aux@page{39}{5} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Data}{5}{subsection.2.1}\protected@file@percent } +\abx@aux@page{40}{5} +\abx@aux@page{41}{5} +\abx@aux@page{42}{5} +\abx@aux@page{43}{5} +\abx@aux@page{44}{5} +\abx@aux@page{45}{5} +\abx@aux@cite{Theophilo2019AMicro-messages} +\abx@aux@segm{0}{0}{Theophilo2019AMicro-messages} +\abx@aux@cite{Verhoeven2016Twisty:Profiling} +\abx@aux@segm{0}{0}{Verhoeven2016Twisty:Profiling} +\abx@aux@cite{Brocardo2015AuthorshipAuthentication} +\abx@aux@segm{0}{0}{Brocardo2015AuthorshipAuthentication} +\abx@aux@cite{Stamatatos2015OverviewLab} +\abx@aux@segm{0}{0}{Stamatatos2015OverviewLab} +\abx@aux@cite{Halvani2016AuthorshipTopics} +\abx@aux@segm{0}{0}{Halvani2016AuthorshipTopics} +\abx@aux@cite{Varol2017OnlineCharacterization} +\abx@aux@segm{0}{0}{Varol2017OnlineCharacterization} +\abx@aux@cite{Narayanan2012OnIdentification} +\abx@aux@segm{0}{0}{Narayanan2012OnIdentification} +\abx@aux@cite{PAN2019CelebrityProfiling} +\abx@aux@segm{0}{0}{PAN2019CelebrityProfiling} +\abx@aux@cite{Schmidt2014TwitterPublics} +\abx@aux@segm{0}{0}{Schmidt2014TwitterPublics} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Statistics of the Dataset\relax }}{6}{table.1}\protected@file@percent } +\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} +\newlabel{tab:dataset}{{1}{6}{Statistics of the Dataset\relax }{table.1}{}} +\newlabel{tab:dataset@cref}{{[table][1][]1}{[1][6][]6}} +\abx@aux@page{46}{6} +\abx@aux@page{47}{6} +\abx@aux@page{48}{6} +\abx@aux@page{49}{6} +\abx@aux@page{50}{6} +\abx@aux@page{51}{6} +\abx@aux@page{52}{6} +\abx@aux@page{53}{6} +\abx@aux@page{54}{6} +\BKM@entry{id=4,dest={73756273656374696F6E2E322E32},srcline={45}}{4665617475726520456E67696E656572696E67} \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} \abx@aux@cite{Spitters2016AuthorshipForums} @@ -149,224 +221,465 @@ \abx@aux@segm{0}{0}{custodio2021stacked} \abx@aux@cite{huang2020contribution} \abx@aux@segm{0}{0}{huang2020contribution} -\abx@aux@page{27}{3} -\abx@aux@page{28}{3} -\abx@aux@page{29}{3} -\abx@aux@page{30}{3} -\abx@aux@page{31}{3} -\abx@aux@page{32}{3} -\abx@aux@page{33}{3} -\abx@aux@page{34}{3} -\abx@aux@page{35}{3} -\abx@aux@page{36}{3} -\abx@aux@page{37}{3} -\abx@aux@page{38}{3} -\abx@aux@page{39}{3} \abx@aux@cite{Stamatatos2017authorship} \abx@aux@segm{0}{0}{Stamatatos2017authorship} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Feature Engineering}{7}{subsection.2.2}\protected@file@percent } +\abx@aux@page{55}{7} +\abx@aux@page{56}{7} +\abx@aux@page{57}{7} +\abx@aux@page{58}{7} +\abx@aux@page{59}{7} +\abx@aux@page{60}{7} +\abx@aux@page{61}{7} +\abx@aux@page{62}{7} +\abx@aux@page{63}{7} +\abx@aux@page{64}{7} +\abx@aux@page{65}{7} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Text Distortion}{7}{paragraph*.4}\protected@file@percent } \abx@aux@cite{Stamatatos2013OnFeatures} \abx@aux@segm{0}{0}{Stamatatos2013OnFeatures} \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {2}Experimental Design and Data}{4}{section.2}\protected@file@percent } -\abx@aux@page{40}{4} -\abx@aux@page{41}{4} -\abx@aux@page{42}{4} -\abx@aux@page{43}{4} -\abx@aux@page{44}{4} -\abx@aux@page{45}{4} -\abx@aux@page{46}{4} -\abx@aux@page{47}{4} -\abx@aux@page{48}{4} -\abx@aux@page{49}{4} -\abx@aux@page{50}{4} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Text Distortion}{4}{section*.1}\protected@file@percent } -\abx@aux@page{51}{4} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Character}{4}{section*.2}\protected@file@percent } -\abx@aux@page{52}{4} -\abx@aux@page{53}{4} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Unprocessed Text}{4}{section*.3}\protected@file@percent } \abx@aux@cite{huang2020contribution} \abx@aux@segm{0}{0}{huang2020contribution} -\abx@aux@cite{dietterich2000ensemble} -\abx@aux@segm{0}{0}{dietterich2000ensemble} -\abx@aux@cite{custodio2021stacked} -\abx@aux@segm{0}{0}{custodio2021stacked} -\abx@aux@cite{custodio2021stacked} -\abx@aux@segm{0}{0}{custodio2021stacked} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Part-of-Speech}{5}{section*.4}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Language-specific morphological features}{5}{section*.5}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Syntactic Dependencies}{5}{section*.6}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Lemma}{5}{section*.7}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Words}{5}{section*.8}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Numerical Features}{5}{section*.9}\protected@file@percent } -\abx@aux@page{54}{5} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Experimental Setup}{5}{subsection.2.1}\protected@file@percent } -\abx@aux@page{55}{5} -\abx@aux@page{56}{5} +\abx@aux@page{66}{8} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Character}{8}{paragraph*.6}\protected@file@percent } +\abx@aux@page{67}{8} +\abx@aux@page{68}{8} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Unprocessed Text}{8}{paragraph*.8}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Part-of-Speech}{8}{paragraph*.10}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Language-specific morphological features}{8}{paragraph*.12}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Syntactic Dependencies}{8}{paragraph*.14}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Lemma}{8}{paragraph*.16}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Words}{8}{paragraph*.18}\protected@file@percent } \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} \abx@aux@cite{custodio2021stacked} \abx@aux@segm{0}{0}{custodio2021stacked} \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} -\abx@aux@page{57}{6} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Preprocessing and Models}{6}{section*.10}\protected@file@percent } -\abx@aux@page{58}{6} -\abx@aux@page{59}{6} -\abx@aux@page{60}{6} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Evaluation Measures}{6}{subsection.2.2}\protected@file@percent } -\abx@aux@cite{Neal2017SurveyingApplications} -\abx@aux@segm{0}{0}{Neal2017SurveyingApplications} -\abx@aux@cite{Neal2017SurveyingApplications} -\abx@aux@segm{0}{0}{Neal2017SurveyingApplications} -\abx@aux@cite{Halvani2016AuthorshipTopics} -\abx@aux@segm{0}{0}{Halvani2016AuthorshipTopics} -\abx@aux@cite{Narayanan2012OnIdentification} -\abx@aux@segm{0}{0}{Narayanan2012OnIdentification} -\abx@aux@cite{Rocha2017AuthorshipForensics} -\abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} -\abx@aux@cite{Spitters2016AuthorshipForums} -\abx@aux@segm{0}{0}{Spitters2016AuthorshipForums} -\abx@aux@cite{Theophilo2019AMicro-messages} -\abx@aux@segm{0}{0}{Theophilo2019AMicro-messages} -\abx@aux@cite{Verhoeven2016Twisty:Profiling} -\abx@aux@segm{0}{0}{Verhoeven2016Twisty:Profiling} -\abx@aux@cite{Brocardo2015AuthorshipAuthentication} -\abx@aux@segm{0}{0}{Brocardo2015AuthorshipAuthentication} -\abx@aux@cite{Stamatatos2015OverviewLab} -\abx@aux@segm{0}{0}{Stamatatos2015OverviewLab} -\abx@aux@cite{Halvani2016AuthorshipTopics} -\abx@aux@segm{0}{0}{Halvani2016AuthorshipTopics} -\abx@aux@cite{Varol2017OnlineCharacterization} -\abx@aux@segm{0}{0}{Varol2017OnlineCharacterization} -\abx@aux@cite{Narayanan2012OnIdentification} -\abx@aux@segm{0}{0}{Narayanan2012OnIdentification} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Target}{7}{subsection.2.3}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Data}{7}{subsection.2.4}\protected@file@percent } -\abx@aux@page{61}{7} -\abx@aux@page{62}{7} -\abx@aux@page{63}{7} -\abx@aux@page{64}{7} -\abx@aux@page{65}{7} -\abx@aux@page{66}{7} -\abx@aux@page{67}{7} -\abx@aux@page{68}{7} -\abx@aux@page{69}{7} -\abx@aux@page{70}{7} -\abx@aux@cite{PAN2019CelebrityProfiling} -\abx@aux@segm{0}{0}{PAN2019CelebrityProfiling} -\abx@aux@cite{Schmidt2014TwitterPublics} -\abx@aux@segm{0}{0}{Schmidt2014TwitterPublics} +\BKM@entry{id=5,dest={73756273656374696F6E2E322E33},srcline={98}}{4578706572696D656E74616C205365747570} +\abx@aux@cite{dietterich2000ensemble} +\abx@aux@segm{0}{0}{dietterich2000ensemble} +\abx@aux@cite{custodio2021stacked} +\abx@aux@segm{0}{0}{custodio2021stacked} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Numerical Features}{9}{paragraph*.20}\protected@file@percent } +\abx@aux@page{69}{9} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{\nonumberline Preprocessing, Models, and Targets}{9}{paragraph*.22}\protected@file@percent } +\abx@aux@page{70}{9} +\abx@aux@page{71}{9} +\abx@aux@page{72}{9} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Experimental Setup}{9}{subsection.2.3}\protected@file@percent } \abx@aux@cite{custodio2021stacked} \abx@aux@segm{0}{0}{custodio2021stacked} +\BKM@entry{id=6,dest={73756273656374696F6E2E322E34},srcline={116}}{4576616C756174696F6E204D65617375726573} +\abx@aux@page{73}{10} +\abx@aux@page{74}{10} +\abx@aux@page{75}{10} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {2.4}Evaluation Measures}{10}{subsection.2.4}\protected@file@percent } +\BKM@entry{id=7,dest={73656374696F6E2E33},srcline={1}}{53746162696C697479206F662050726564696374696F6E73} \abx@aux@cite{custodio2021stacked} \abx@aux@segm{0}{0}{custodio2021stacked} -\abx@aux@page{71}{8} -\abx@aux@page{72}{8} -\abx@aux@page{73}{8} -\abx@aux@page{74}{8} -\abx@aux@page{75}{8} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Synopsis}{8}{section*.11}\protected@file@percent } -\abx@aux@page{76}{8} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {3}Results}{8}{section.3}\protected@file@percent } -\abx@aux@page{77}{8} +\BKM@entry{id=8,dest={73756273656374696F6E2E332E31},srcline={9}}{416767726567617465204F7665727669657720666F7220466561747572652D53746162696C697479} \abx@aux@cite{custodio2021stacked} \abx@aux@segm{0}{0}{custodio2021stacked} \abx@aux@cite{wiegmann2019overview} \abx@aux@segm{0}{0}{wiegmann2019overview} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {paragraph}{Aggregate Overview}{9}{section*.12}\protected@file@percent } -\abx@aux@page{78}{9} -\abx@aux@page{79}{9} -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces F1-Score for all Featuretype-Sets for an Instancelength of 500 Characters\relax }}{9}{figure.caption.13}\protected@file@percent } -\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} -\newlabel{fig:f1_500}{{1}{9}{F1-Score for all Featuretype-Sets for an Instancelength of 500 Characters\relax }{figure.caption.13}{}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {3}Stability of Predictions}{12}{section.3}\protected@file@percent } +\newlabel{att:sec:prediction}{{3}{12}{Stability of Predictions}{section.3}{}} +\newlabel{att:sec:prediction@cref}{{[section][3][]3}{[1][12][]12}} +\abx@aux@page{76}{12} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Aggregate Overview for Feature-Stability}{12}{subsection.3.1}\protected@file@percent } +\abx@aux@page{77}{12} +\abx@aux@page{78}{12} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces F1-score input instance length of 500 characters.\relax }}{13}{figure.caption.23}\protected@file@percent } +\newlabel{fig:f1_500}{{1}{13}{F1-score input instance length of 500 characters.\relax }{figure.caption.23}{}} +\newlabel{fig:f1_500@cref}{{[figure][1][]1}{[1][12][]13}} +\BKM@entry{id=9,dest={73756273656374696F6E2E332E32},srcline={68}}{417574686F722D4C6576656C20416E616C79736973} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Extended Spearman correlation input instance length of 500 characters.\relax }}{14}{figure.caption.24}\protected@file@percent } +\newlabel{fig:ext_spearman_500}{{2}{14}{Extended Spearman correlation input instance length of 500 characters.\relax }{figure.caption.24}{}} +\newlabel{fig:ext_spearman_500@cref}{{[figure][2][]2}{[1][13][]14}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Author-Level Analysis}{14}{subsection.3.2}\protected@file@percent } +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Author-level results for the full feature set with an input instance length of 500 characters.\relax }}{15}{figure.caption.25}\protected@file@percent } +\newlabel{fig:acc_auth_500}{{3}{15}{Author-level results for the full feature set with an input instance length of 500 characters.\relax }{figure.caption.25}{}} +\newlabel{fig:acc_auth_500@cref}{{[figure][3][]3}{[1][15][]15}} +\abx@aux@cite{Flekova2016ExploringTwitter} +\abx@aux@segm{0}{0}{Flekova2016ExploringTwitter} +\abx@aux@cite{DeJonge2012TextmessageStudents} +\abx@aux@segm{0}{0}{DeJonge2012TextmessageStudents} +\abx@aux@cite{Chan2018SocialTwitter} +\abx@aux@segm{0}{0}{Chan2018SocialTwitter} +\abx@aux@page{79}{16} +\abx@aux@page{80}{16} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Confusion matrices for target \textit {gender}.\relax }}{17}{figure.caption.26}\protected@file@percent } +\newlabel{fig:gender_conf_auth_500}{{4}{17}{Confusion matrices for target \textit {gender}.\relax }{figure.caption.26}{}} +\newlabel{fig:gender_conf_auth_500@cref}{{[figure][4][]4}{[1][16][]17}} +\abx@aux@page{81}{17} +\BKM@entry{id=10,dest={73656374696F6E2E34},srcline={1}}{526F627573746E657373206F6620466561747572652D496D706F7274616E6365} +\BKM@entry{id=11,dest={73756273656374696F6E2E342E31},srcline={5}}{426173656C696E65} \abx@aux@cite{Rocha2017AuthorshipForensics} \abx@aux@segm{0}{0}{Rocha2017AuthorshipForensics} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Confusion matrices for target \textit {age}.\relax }}{18}{figure.caption.27}\protected@file@percent } +\newlabel{fig:age_conf_auth_500}{{5}{18}{Confusion matrices for target \textit {age}.\relax }{figure.caption.27}{}} +\newlabel{fig:age_conf_auth_500@cref}{{[figure][5][]5}{[1][17][]18}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {4}Robustness of Feature-Importance}{18}{section.4}\protected@file@percent } +\newlabel{att:sec:importance}{{4}{18}{Robustness of Feature-Importance}{section.4}{}} +\newlabel{att:sec:importance@cref}{{[section][4][]4}{[1][18][]18}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Baseline}{18}{subsection.4.1}\protected@file@percent } +\abx@aux@page{82}{18} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual feature types\relax }}{19}{table.2}\protected@file@percent } +\newlabel{tab:gender_f1_dist_500_baseline_individual}{{2}{19}{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual feature types\relax }{table.2}{}} +\newlabel{tab:gender_f1_dist_500_baseline_individual@cref}{{[table][2][]2}{[1][18][]19}} \abx@aux@cite{DeJonge2012TextmessageStudents} \abx@aux@segm{0}{0}{DeJonge2012TextmessageStudents} \abx@aux@cite{Hovy2015TaggingAge} \abx@aux@segm{0}{0}{Hovy2015TaggingAge} -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 500 Characters\relax }}{10}{figure.caption.14}\protected@file@percent } -\newlabel{fig:ext_spearman_500}{{2}{10}{Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 500 Characters\relax }{figure.caption.14}{}} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual Featuretypes\relax }}{11}{table.caption.15}\protected@file@percent } -\newlabel{tab:gender_f1_dist_500_baseline_individual}{{1}{11}{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual Featuretypes\relax }{table.caption.15}{}} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {3.1}Baseline}{11}{subsection.3.1}\protected@file@percent } -\abx@aux@page{80}{11} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual Featuretypes\relax }}{12}{table.caption.16}\protected@file@percent } -\newlabel{tab:age_f1_dist_500_baseline_individual}{{2}{12}{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual Featuretypes\relax }{table.caption.16}{}} -\abx@aux@page{81}{12} -\abx@aux@page{82}{12} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }}{13}{table.caption.17}\protected@file@percent } -\newlabel{tab:gender_f1_dist_500_direct_dwald}{{3}{13}{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }{table.caption.17}{}} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {3.2}Cumulated}{13}{subsection.3.2}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual feature types\relax }}{20}{table.3}\protected@file@percent } +\newlabel{tab:age_f1_dist_500_baseline_individual}{{3}{20}{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a feature-wise model on the individual feature types\relax }{table.3}{}} +\newlabel{tab:age_f1_dist_500_baseline_individual@cref}{{[table][3][]3}{[1][20][]20}} +\BKM@entry{id=12,dest={73756273656374696F6E2E342E32},srcline={34}}{43756D756C61746564} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {4}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }}{21}{table.4}\protected@file@percent } +\newlabel{tab:gender_f1_dist_500_direct_dwald}{{4}{21}{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }{table.4}{}} +\newlabel{tab:gender_f1_dist_500_direct_dwald@cref}{{[table][4][]4}{[1][21][]21}} +\abx@aux@page{83}{21} +\abx@aux@page{84}{21} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Cumulated}{21}{subsection.4.2}\protected@file@percent } +\BKM@entry{id=13,dest={73656374696F6E2E35},srcline={1}}{44697363757373696F6E} \abx@aux@cite{wiegmann2019overview} \abx@aux@segm{0}{0}{wiegmann2019overview} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {4}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }}{14}{table.caption.18}\protected@file@percent } -\newlabel{tab:age_f1_dist_500_direct_dwald}{{4}{14}{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }{table.caption.18}{}} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {4}Discussion}{14}{section.4}\protected@file@percent } -\abx@aux@page{83}{14} -\abx@aux@page{84}{16} -\abx@aux@page{85}{16} -\abx@aux@page{86}{16} -\abx@aux@page{87}{16} -\abx@aux@page{88}{16} -\abx@aux@page{89}{16} -\abx@aux@page{90}{16} -\abx@aux@page{91}{16} -\abx@aux@page{92}{16} -\abx@aux@page{93}{16} -\abx@aux@page{94}{16} -\abx@aux@page{95}{16} -\abx@aux@page{96}{16} -\abx@aux@page{97}{16} -\abx@aux@page{98}{16} -\abx@aux@page{99}{16} -\abx@aux@page{100}{16} -\abx@aux@page{101}{16} -\abx@aux@page{102}{16} -\abx@aux@page{103}{17} -\abx@aux@page{104}{17} -\abx@aux@page{105}{17} -\abx@aux@page{106}{17} -\abx@aux@page{107}{17} -\abx@aux@page{108}{17} -\abx@aux@page{109}{17} -\abx@aux@page{110}{17} -\abx@aux@page{111}{17} -\abx@aux@page{112}{17} -\abx@aux@page{113}{17} -\abx@aux@page{114}{17} -\abx@aux@page{115}{17} -\abx@aux@page{116}{17} -\abx@aux@page{117}{17} -\abx@aux@page{118}{17} -\abx@aux@page{119}{17} -\abx@aux@page{120}{17} -\abx@aux@page{121}{17} -\abx@aux@page{122}{17} -\abx@aux@page{123}{18} -\abx@aux@page{124}{18} -\abx@aux@page{125}{18} -\abx@aux@page{126}{18} -\abx@aux@page{127}{18} -\abx@aux@page{128}{18} -\abx@aux@page{129}{18} -\abx@aux@page{130}{18} -\abx@aux@page{131}{18} -\abx@aux@page{132}{18} -\abx@aux@page{133}{18} -\abx@aux@page{134}{18} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{Appendix}{19}{section*.20}\protected@file@percent } -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {A1}Figures}{19}{appendix.A}\protected@file@percent } -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.1}{\ignorespaces F1-Score for all Featuretype-Sets for an Instancelength of 100 Characters\relax }}{19}{figure.caption.21}\protected@file@percent } -\newlabel{fig:f1_100}{{A.1}{19}{F1-Score for all Featuretype-Sets for an Instancelength of 100 Characters\relax }{figure.caption.21}{}} -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.2}{\ignorespaces Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 100 Characters\relax }}{19}{figure.caption.22}\protected@file@percent } -\newlabel{fig:ext_spearman_100}{{A.2}{19}{Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 100 Characters\relax }{figure.caption.22}{}} -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.3}{\ignorespaces F1-Score for all Featuretype-Sets for an Instancelength of 250 Characters\relax }}{20}{figure.caption.23}\protected@file@percent } -\newlabel{fig:f1_250}{{A.3}{20}{F1-Score for all Featuretype-Sets for an Instancelength of 250 Characters\relax }{figure.caption.23}{}} -\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.4}{\ignorespaces Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 250 Characters\relax }}{20}{figure.caption.24}\protected@file@percent } -\newlabel{fig:ext_spearman_250}{{A.4}{20}{Extended Spearman Correlation for all Featuretype-Sets for an Instancelength of 250 Characters\relax }{figure.caption.24}{}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {5}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }}{22}{table.5}\protected@file@percent } +\newlabel{tab:age_f1_dist_500_direct_dwald}{{5}{22}{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a cumulated model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }{table.5}{}} +\newlabel{tab:age_f1_dist_500_direct_dwald@cref}{{[table][5][]5}{[1][21][]22}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {5}Discussion}{22}{section.5}\protected@file@percent } +\abx@aux@page{85}{23} +\abx@aux@page{86}{25} +\abx@aux@page{87}{25} +\abx@aux@page{88}{25} +\abx@aux@page{89}{25} +\abx@aux@page{90}{25} +\abx@aux@page{91}{25} +\abx@aux@page{92}{25} +\abx@aux@page{93}{25} +\abx@aux@page{94}{25} +\abx@aux@page{95}{25} +\abx@aux@page{96}{25} +\abx@aux@page{97}{25} +\abx@aux@page{98}{25} +\abx@aux@page{99}{25} +\abx@aux@page{100}{25} +\abx@aux@page{101}{25} +\abx@aux@page{102}{26} +\abx@aux@page{103}{26} +\abx@aux@page{104}{26} +\abx@aux@page{105}{26} +\abx@aux@page{106}{26} +\abx@aux@page{107}{26} +\abx@aux@page{108}{26} +\abx@aux@page{109}{26} +\abx@aux@page{110}{26} +\abx@aux@page{111}{26} +\abx@aux@page{112}{26} +\abx@aux@page{113}{26} +\abx@aux@page{114}{26} +\abx@aux@page{115}{26} +\abx@aux@page{116}{26} +\abx@aux@page{117}{26} +\abx@aux@page{118}{26} +\abx@aux@page{119}{27} +\abx@aux@page{120}{27} +\abx@aux@page{121}{27} +\abx@aux@page{122}{27} +\abx@aux@page{123}{27} +\abx@aux@page{124}{27} +\abx@aux@page{125}{27} +\abx@aux@page{126}{27} +\abx@aux@page{127}{27} +\abx@aux@page{128}{27} +\abx@aux@page{129}{27} +\abx@aux@page{130}{27} +\abx@aux@page{131}{27} +\abx@aux@page{132}{27} +\abx@aux@page{133}{27} +\abx@aux@page{134}{28} +\abx@aux@page{135}{28} +\abx@aux@page{136}{28} +\abx@aux@page{137}{28} +\BKM@entry{id=14,dest={73656374696F6E2A2E3239},srcline={77}}{417070656E646978} +\BKM@entry{id=15,dest={617070656E6469782E41},srcline={8}}{46696775726573} +\BKM@entry{id=16,dest={73756273656374696F6E2E412E31},srcline={3}}{416767726567617465204F76657276696577} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{Appendix}{29}{section*.29}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {A1}Figures}{29}{appendix.A}\protected@file@percent } +\newlabel{sec:att_app_figures}{{A1}{29}{Figures}{appendix.A}{}} +\newlabel{sec:att_app_figures@cref}{{[appendix][1][2147483647]A1}{[1][29][]29}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {A1.1}Aggregate Overview}{29}{subsection.A.1}\protected@file@percent } +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.1}{\ignorespaces F1-Score for all feature type-Sets for an input instance length of 100 characters.\relax }}{29}{figure.caption.30}\protected@file@percent } +\newlabel{fig:f1_100}{{A.1}{29}{F1-Score for all feature type-Sets for an input instance length of 100 characters.\relax }{figure.caption.30}{}} +\newlabel{fig:f1_100@cref}{{[figure][1][2147483647]A.1}{[1][29][]29}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.2}{\ignorespaces Extended Spearman correlations for all feature type-Sets for an input instance length of 100 characters.\relax }}{30}{figure.caption.31}\protected@file@percent } +\newlabel{fig:ext_spearman_100}{{A.2}{30}{Extended Spearman correlations for all feature type-Sets for an input instance length of 100 characters.\relax }{figure.caption.31}{}} +\newlabel{fig:ext_spearman_100@cref}{{[figure][2][2147483647]A.2}{[1][29][]30}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.3}{\ignorespaces F1-Score for all feature type-Sets for an input instance length of 250 characters\relax }}{31}{figure.caption.32}\protected@file@percent } +\newlabel{fig:f1_250}{{A.3}{31}{F1-Score for all feature type-Sets for an input instance length of 250 characters\relax }{figure.caption.32}{}} +\newlabel{fig:f1_250@cref}{{[figure][3][2147483647]A.3}{[1][29][]31}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.4}{\ignorespaces Extended Spearman correlation for all feature type sets for an input instance length of 250 characters.\relax }}{32}{figure.caption.33}\protected@file@percent } +\newlabel{fig:ext_spearman_250}{{A.4}{32}{Extended Spearman correlation for all feature type sets for an input instance length of 250 characters.\relax }{figure.caption.33}{}} +\newlabel{fig:ext_spearman_250@cref}{{[figure][4][2147483647]A.4}{[1][29][]32}} +\BKM@entry{id=17,dest={73756273656374696F6E2E412E32},srcline={78}}{417574686F722D4C6576656C20416E616C79736973} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {A1.2}Author-Level Analysis}{33}{subsection.A.2}\protected@file@percent } +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.5}{\ignorespaces Author-Level Results for the Full feature set with an input instance length of 100 characters.\relax }}{33}{figure.caption.34}\protected@file@percent } +\newlabel{fig:acc_auth_100}{{A.5}{33}{Author-Level Results for the Full feature set with an input instance length of 100 characters.\relax }{figure.caption.34}{}} +\newlabel{fig:acc_auth_100@cref}{{[figure][5][2147483647]A.5}{[1][33][]33}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.6}{\ignorespaces Author-Level Results for the Full feature set in an input instance length of 100 characters.\relax }}{34}{figure.caption.35}\protected@file@percent } +\newlabel{fig:acc_auth_250}{{A.6}{34}{Author-Level Results for the Full feature set in an input instance length of 100 characters.\relax }{figure.caption.35}{}} +\newlabel{fig:acc_auth_250@cref}{{[figure][6][2147483647]A.6}{[1][33][]34}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.7}{\ignorespaces Author-Level Results for the full feature set with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }}{35}{figure.caption.36}\protected@file@percent } +\newlabel{fig:acc_auth_100_cwald}{{A.7}{35}{Author-Level Results for the full feature set with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }{figure.caption.36}{}} +\newlabel{fig:acc_auth_100_cwald@cref}{{[figure][7][2147483647]A.7}{[1][33][]35}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.8}{\ignorespaces Author-Level Results for the full feature set in an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }}{36}{figure.caption.37}\protected@file@percent } +\newlabel{fig:acc_auth_250_cwald}{{A.8}{36}{Author-Level Results for the full feature set in an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }{figure.caption.37}{}} +\newlabel{fig:acc_auth_250_cwald@cref}{{[figure][8][2147483647]A.8}{[1][33][]36}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.9}{\ignorespaces Confusion matrices for target \textit {gender} with an input instance length 100 characters - all feature types.\relax }}{37}{figure.caption.38}\protected@file@percent } +\newlabel{fig:gender_conf_auth_100}{{A.9}{37}{Confusion matrices for target \textit {gender} with an input instance length 100 characters - all feature types.\relax }{figure.caption.38}{}} +\newlabel{fig:gender_conf_auth_100@cref}{{[figure][9][2147483647]A.9}{[1][33][]37}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.10}{\ignorespaces Confusion matrices for target \textit {gender} with an input instance length of 250 characters - all feature types.\relax }}{38}{figure.caption.39}\protected@file@percent } +\newlabel{fig:gender_conf_auth_250}{{A.10}{38}{Confusion matrices for target \textit {gender} with an input instance length of 250 characters - all feature types.\relax }{figure.caption.39}{}} +\newlabel{fig:gender_conf_auth_250@cref}{{[figure][10][2147483647]A.10}{[1][33][]38}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.11}{\ignorespaces Confusion matrices for target \textit {age} with an input instance length 100 characters - all feature types.\relax }}{39}{figure.caption.40}\protected@file@percent } +\newlabel{fig:age_conf_auth_100}{{A.11}{39}{Confusion matrices for target \textit {age} with an input instance length 100 characters - all feature types.\relax }{figure.caption.40}{}} +\newlabel{fig:age_conf_auth_100@cref}{{[figure][11][2147483647]A.11}{[1][33][]39}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.12}{\ignorespaces Confusion matrices for target \textit {age} with an input instance length of 250 characters - all feature types.\relax }}{40}{figure.caption.41}\protected@file@percent } +\newlabel{fig:age_conf_auth_250}{{A.12}{40}{Confusion matrices for target \textit {age} with an input instance length of 250 characters - all feature types.\relax }{figure.caption.41}{}} +\newlabel{fig:age_conf_auth_250@cref}{{[figure][12][2147483647]A.12}{[1][33][]40}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.13}{\ignorespaces Confusion matrices for target \textit {gender} with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }}{41}{figure.caption.42}\protected@file@percent } +\newlabel{fig:gender_conf_auth_100_cwald}{{A.13}{41}{Confusion matrices for target \textit {gender} with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }{figure.caption.42}{}} +\newlabel{fig:gender_conf_auth_100_cwald@cref}{{[figure][13][2147483647]A.13}{[1][33][]41}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.14}{\ignorespaces Confusion matrices for target \textit {gender} with an input instance length of 250 characters - ASIS-CHAR-LEMMA-WORD.\relax }}{42}{figure.caption.43}\protected@file@percent } +\newlabel{fig:gender_conf_auth_250_cwald}{{A.14}{42}{Confusion matrices for target \textit {gender} with an input instance length of 250 characters - ASIS-CHAR-LEMMA-WORD.\relax }{figure.caption.43}{}} +\newlabel{fig:gender_conf_auth_250_cwald@cref}{{[figure][14][2147483647]A.14}{[1][33][]42}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.15}{\ignorespaces Confusion matrices for target \textit {age} with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }}{43}{figure.caption.44}\protected@file@percent } +\newlabel{fig:age_conf_auth_100_cwald}{{A.15}{43}{Confusion matrices for target \textit {age} with an input instance length of 100 characters - ASIS-CHAR-LEMMA-WORD.\relax }{figure.caption.44}{}} +\newlabel{fig:age_conf_auth_100_cwald@cref}{{[figure][15][2147483647]A.15}{[1][33][]43}} +\@writefile{lof}{\defcounter {refsection}{0}\relax }\@writefile{lof}{\contentsline {figure}{\numberline {A.16}{\ignorespaces Confusion matrices for target \textit {age} with an input instance length of 250 characters - ASIS-CHAR-LEMMA-WORD.\relax }}{44}{figure.caption.45}\protected@file@percent } +\newlabel{fig:age_conf_auth_250_cwald}{{A.16}{44}{Confusion matrices for target \textit {age} with an input instance length of 250 characters - ASIS-CHAR-LEMMA-WORD.\relax }{figure.caption.45}{}} +\newlabel{fig:age_conf_auth_250_cwald@cref}{{[figure][16][2147483647]A.16}{[1][33][]44}} +\BKM@entry{id=18,dest={617070656E6469782E42},srcline={13}}{5461626C6573} +\BKM@entry{id=19,dest={73756273656374696F6E2E422E31},srcline={4}}{44617461205365742053746174697374696373} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {A2}Tables}{45}{appendix.B}\protected@file@percent } +\newlabel{sec:att_app_tables}{{A2}{45}{Tables}{appendix.B}{}} +\newlabel{sec:att_app_tables@cref}{{[appendix][2][2147483647]A2}{[1][45][]45}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {A2.1}Data Set Statistics}{45}{subsection.B.1}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.1}{\ignorespaces Statistics of the Dataset\relax }}{45}{table.1}\protected@file@percent } +\newlabel{tab:dataset_train}{{A.1}{45}{Statistics of the Dataset\relax }{table.1}{}} +\newlabel{tab:dataset_train@cref}{{[table][1][2147483647]A.1}{[1][45][]45}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.2}{\ignorespaces Statistics of the Dataset\relax }}{45}{table.2}\protected@file@percent } +\newlabel{tab:dataset_val}{{A.2}{45}{Statistics of the Dataset\relax }{table.2}{}} +\newlabel{tab:dataset_val@cref}{{[table][2][2147483647]A.2}{[1][45][]45}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.3}{\ignorespaces Statistics of the Dataset\relax }}{46}{table.3}\protected@file@percent } +\newlabel{tab:dataset_test}{{A.3}{46}{Statistics of the Dataset\relax }{table.3}{}} +\newlabel{tab:dataset_test@cref}{{[table][3][2147483647]A.3}{[1][45][]46}} +\BKM@entry{id=20,dest={73756273656374696F6E2E422E32},srcline={11}}{426173656C696E65} +\BKM@entry{id=21,dest={73756273756273656374696F6E2E422E322E31},srcline={12}}{4D696E696D756D206F6620436861726163746572733A20313030} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {A2.2}Baseline}{47}{subsection.B.2}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.2.1}Minimum of Characters: 100}{47}{subsubsection.B.2.1}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.4}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }}{47}{table.4}\protected@file@percent } +\newlabel{tab:Gender_acc_100_baseline_individual}{{A.4}{47}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }{table.4}{}} +\newlabel{tab:Gender_acc_100_baseline_individual@cref}{{[table][4][2147483647]A.4}{[1][47][]47}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.5}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }}{48}{table.5}\protected@file@percent } +\newlabel{tab:Gender_dist_100_baseline_individual}{{A.5}{48}{Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }{table.5}{}} +\newlabel{tab:Gender_dist_100_baseline_individual@cref}{{[table][5][2147483647]A.5}{[1][47][]48}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.6}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }}{49}{table.6}\protected@file@percent } +\newlabel{tab:Age_acc_100_baseline_individual}{{A.6}{49}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }{table.6}{}} +\newlabel{tab:Age_acc_100_baseline_individual@cref}{{[table][6][2147483647]A.6}{[1][47][]49}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.7}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }}{50}{table.7}\protected@file@percent } +\newlabel{tab:Age_dist_100_baseline_individual}{{A.7}{50}{Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a feature-wise model on the individual feature types\relax }{table.7}{}} +\newlabel{tab:Age_dist_100_baseline_individual@cref}{{[table][7][2147483647]A.7}{[1][47][]50}} +\BKM@entry{id=22,dest={73756273756273656374696F6E2E422E322E32},srcline={22}}{4D696E696D756D206F6620436861726163746572733A20323530} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.2.2}Minimum of Characters: 250}{51}{subsubsection.B.2.2}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.8}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }}{51}{table.8}\protected@file@percent } +\newlabel{tab:Gender_acc_250_baseline_individual}{{A.8}{51}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }{table.8}{}} +\newlabel{tab:Gender_acc_250_baseline_individual@cref}{{[table][8][2147483647]A.8}{[1][51][]51}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.9}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }}{52}{table.9}\protected@file@percent } +\newlabel{tab:Gender_dist_250_baseline_individual}{{A.9}{52}{Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }{table.9}{}} +\newlabel{tab:Gender_dist_250_baseline_individual@cref}{{[table][9][2147483647]A.9}{[1][51][]52}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.10}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }}{53}{table.10}\protected@file@percent } +\newlabel{tab:Age_acc_250_baseline_individual}{{A.10}{53}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }{table.10}{}} +\newlabel{tab:Age_acc_250_baseline_individual@cref}{{[table][10][2147483647]A.10}{[1][51][]53}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.11}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }}{54}{table.11}\protected@file@percent } +\newlabel{tab:Age_dist_250_baseline_individual}{{A.11}{54}{Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a feature-wise model on the individual feature types\relax }{table.11}{}} +\newlabel{tab:Age_dist_250_baseline_individual@cref}{{[table][11][2147483647]A.11}{[1][51][]54}} +\BKM@entry{id=23,dest={73756273756273656374696F6E2E422E322E33},srcline={30}}{4D696E696D756D206F6620436861726163746572733A20353030} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.2.3}Minimum of Characters: 500}{55}{subsubsection.B.2.3}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.12}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }}{55}{table.12}\protected@file@percent } +\newlabel{tab:Gender_acc_500_baseline_individual}{{A.12}{55}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }{table.12}{}} +\newlabel{tab:Gender_acc_500_baseline_individual@cref}{{[table][12][2147483647]A.12}{[1][55][]55}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.13}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }}{56}{table.13}\protected@file@percent } +\newlabel{tab:Gender_dist_500_baseline_individual}{{A.13}{56}{Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }{table.13}{}} +\newlabel{tab:Gender_dist_500_baseline_individual@cref}{{[table][13][2147483647]A.13}{[1][55][]56}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.14}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }}{57}{table.14}\protected@file@percent } +\newlabel{tab:Age_acc_500_baseline_individual}{{A.14}{57}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }{table.14}{}} +\newlabel{tab:Age_acc_500_baseline_individual@cref}{{[table][14][2147483647]A.14}{[1][55][]57}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.15}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }}{58}{table.15}\protected@file@percent } +\newlabel{tab:Age_dist_500_baseline_individual}{{A.15}{58}{Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a feature-wise model on the individual feature types\relax }{table.15}{}} +\newlabel{tab:Age_dist_500_baseline_individual@cref}{{[table][15][2147483647]A.15}{[1][55][]58}} +\BKM@entry{id=24,dest={73756273656374696F6E2E422E33},srcline={42}}{444953542C20434841522C20415349532C20574F52442C20616E64204C454D4D41} +\BKM@entry{id=25,dest={73756273756273656374696F6E2E422E332E31},srcline={43}}{4D696E696D756D206F6620436861726163746572733A20313030205C3034362043756D756C61746564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {A2.3}DIST, CHAR, ASIS, WORD, and LEMMA}{59}{subsection.B.3}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.3.1}Minimum of Characters: 100 \& Cumulated}{59}{subsubsection.B.3.1}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.16}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{59}{table.16}\protected@file@percent } +\newlabel{tab:Gender_acc_100_direct_dwald}{{A.16}{59}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.16}{}} +\newlabel{tab:Gender_acc_100_direct_dwald@cref}{{[table][16][2147483647]A.16}{[1][59][]59}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.17}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{59}{table.17}\protected@file@percent } +\newlabel{tab:Gender_dist_100_direct_dwald}{{A.17}{59}{Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.17}{}} +\newlabel{tab:Gender_dist_100_direct_dwald@cref}{{[table][17][2147483647]A.17}{[1][59][]59}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.18}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{60}{table.18}\protected@file@percent } +\newlabel{tab:Age_acc_100_direct_dwald}{{A.18}{60}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.18}{}} +\newlabel{tab:Age_acc_100_direct_dwald@cref}{{[table][18][2147483647]A.18}{[1][59][]60}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.19}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{60}{table.19}\protected@file@percent } +\newlabel{tab:Age_dist_100_direct_dwald}{{A.19}{60}{Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.19}{}} +\newlabel{tab:Age_dist_100_direct_dwald@cref}{{[table][19][2147483647]A.19}{[1][59][]60}} +\BKM@entry{id=26,dest={73756273756273656374696F6E2E422E332E32},srcline={53}}{4D696E696D756D206F6620436861726163746572733A20323530205C3034362043756D756C61746564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.3.2}Minimum of Characters: 250 \& Cumulated}{61}{subsubsection.B.3.2}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.20}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{61}{table.20}\protected@file@percent } +\newlabel{tab:Gender_acc_250_direct_dwald}{{A.20}{61}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.20}{}} +\newlabel{tab:Gender_acc_250_direct_dwald@cref}{{[table][20][2147483647]A.20}{[1][61][]61}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.21}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{61}{table.21}\protected@file@percent } +\newlabel{tab:Gender_dist_250_direct_dwald}{{A.21}{61}{Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.21}{}} +\newlabel{tab:Gender_dist_250_direct_dwald@cref}{{[table][21][2147483647]A.21}{[1][61][]61}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.22}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{62}{table.22}\protected@file@percent } +\newlabel{tab:Age_acc_250_direct_dwald}{{A.22}{62}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.22}{}} +\newlabel{tab:Age_acc_250_direct_dwald@cref}{{[table][22][2147483647]A.22}{[1][61][]62}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.23}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{62}{table.23}\protected@file@percent } +\newlabel{tab:Age_dist_250_direct_dwald}{{A.23}{62}{Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.23}{}} +\newlabel{tab:Age_dist_250_direct_dwald@cref}{{[table][23][2147483647]A.23}{[1][61][]62}} +\BKM@entry{id=27,dest={73756273756273656374696F6E2E422E332E33},srcline={63}}{4D696E696D756D206F6620436861726163746572733A20353030205C3034362043756D756C61746564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.3.3}Minimum of Characters: 500 \& Cumulated}{63}{subsubsection.B.3.3}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.24}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{63}{table.24}\protected@file@percent } +\newlabel{tab:Gender_acc_500_direct_dwald}{{A.24}{63}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.24}{}} +\newlabel{tab:Gender_acc_500_direct_dwald@cref}{{[table][24][2147483647]A.24}{[1][63][]63}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.25}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{63}{table.25}\protected@file@percent } +\newlabel{tab:Gender_dist_500_direct_dwald}{{A.25}{63}{Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.25}{}} +\newlabel{tab:Gender_dist_500_direct_dwald@cref}{{[table][25][2147483647]A.25}{[1][63][]63}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.26}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{64}{table.26}\protected@file@percent } +\newlabel{tab:Age_acc_500_direct_dwald}{{A.26}{64}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.26}{}} +\newlabel{tab:Age_acc_500_direct_dwald@cref}{{[table][26][2147483647]A.26}{[1][63][]64}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.27}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{64}{table.27}\protected@file@percent } +\newlabel{tab:Age_dist_500_direct_dwald}{{A.27}{64}{Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.27}{}} +\newlabel{tab:Age_dist_500_direct_dwald@cref}{{[table][27][2147483647]A.27}{[1][63][]64}} +\BKM@entry{id=28,dest={73756273756273656374696F6E2E422E332E34},srcline={75}}{4D696E696D756D206F6620436861726163746572733A20313030205C30343620537461636B6564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.3.4}Minimum of Characters: 100 \& Stacked}{65}{subsubsection.B.3.4}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.28}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{65}{table.28}\protected@file@percent } +\newlabel{tab:Gender_acc_100_dynAA_dwald}{{A.28}{65}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.28}{}} +\newlabel{tab:Gender_acc_100_dynAA_dwald@cref}{{[table][28][2147483647]A.28}{[1][65][]65}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.29}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{65}{table.29}\protected@file@percent } +\newlabel{tab:Gender_dist_100_dynAA_dwald}{{A.29}{65}{Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.29}{}} +\newlabel{tab:Gender_dist_100_dynAA_dwald@cref}{{[table][29][2147483647]A.29}{[1][65][]65}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.30}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{66}{table.30}\protected@file@percent } +\newlabel{tab:Age_acc_100_dynAA_dwald}{{A.30}{66}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.30}{}} +\newlabel{tab:Age_acc_100_dynAA_dwald@cref}{{[table][30][2147483647]A.30}{[1][65][]66}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.31}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{66}{table.31}\protected@file@percent } +\newlabel{tab:Age_dist_100_dynAA_dwald}{{A.31}{66}{Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.31}{}} +\newlabel{tab:Age_dist_100_dynAA_dwald@cref}{{[table][31][2147483647]A.31}{[1][65][]66}} +\BKM@entry{id=29,dest={73756273756273656374696F6E2E422E332E35},srcline={86}}{4D696E696D756D206F6620436861726163746572733A20323530205C30343620537461636B6564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.3.5}Minimum of Characters: 250 \& Stacked}{67}{subsubsection.B.3.5}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.32}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{67}{table.32}\protected@file@percent } +\newlabel{tab:Gender_acc_250_dynAA_dwald}{{A.32}{67}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.32}{}} +\newlabel{tab:Gender_acc_250_dynAA_dwald@cref}{{[table][32][2147483647]A.32}{[1][67][]67}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.33}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{67}{table.33}\protected@file@percent } +\newlabel{tab:Gender_dist_250_dynAA_dwald}{{A.33}{67}{Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.33}{}} +\newlabel{tab:Gender_dist_250_dynAA_dwald@cref}{{[table][33][2147483647]A.33}{[1][67][]67}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.34}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{68}{table.34}\protected@file@percent } +\newlabel{tab:Age_acc_250_dynAA_dwald}{{A.34}{68}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.34}{}} +\newlabel{tab:Age_acc_250_dynAA_dwald@cref}{{[table][34][2147483647]A.34}{[1][67][]68}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.35}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{68}{table.35}\protected@file@percent } +\newlabel{tab:Age_dist_250_dynAA_dwald}{{A.35}{68}{Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.35}{}} +\newlabel{tab:Age_dist_250_dynAA_dwald@cref}{{[table][35][2147483647]A.35}{[1][67][]68}} +\BKM@entry{id=30,dest={73756273756273656374696F6E2E422E332E36},srcline={96}}{4D696E696D756D206F6620436861726163746572733A20353030205C30343620537461636B6564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.3.6}Minimum of Characters: 500 \& Stacked}{69}{subsubsection.B.3.6}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.36}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{69}{table.36}\protected@file@percent } +\newlabel{tab:Gender_acc_500_dynAA_dwald}{{A.36}{69}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.36}{}} +\newlabel{tab:Gender_acc_500_dynAA_dwald@cref}{{[table][36][2147483647]A.36}{[1][69][]69}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.37}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{69}{table.37}\protected@file@percent } +\newlabel{tab:Gender_dist_500_dynAA_dwald}{{A.37}{69}{Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.37}{}} +\newlabel{tab:Gender_dist_500_dynAA_dwald@cref}{{[table][37][2147483647]A.37}{[1][69][]69}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.38}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{70}{table.38}\protected@file@percent } +\newlabel{tab:Age_acc_500_dynAA_dwald}{{A.38}{70}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.38}{}} +\newlabel{tab:Age_acc_500_dynAA_dwald@cref}{{[table][38][2147483647]A.38}{[1][69][]70}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.39}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }}{70}{table.39}\protected@file@percent } +\newlabel{tab:Age_dist_500_dynAA_dwald}{{A.39}{70}{Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)\relax }{table.39}{}} +\newlabel{tab:Age_dist_500_dynAA_dwald@cref}{{[table][39][2147483647]A.39}{[1][69][]70}} +\BKM@entry{id=31,dest={73756273656374696F6E2E422E34},srcline={107}}{46756C6C20536574206F662066656174757265207479706573} +\BKM@entry{id=32,dest={73756273756273656374696F6E2E422E342E31},srcline={108}}{4D696E696D756D206F6620436861726163746572733A20313030205C3034362043756D756C61746564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsection}{\numberline {A2.4}Full Set of feature types}{71}{subsection.B.4}\protected@file@percent } +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.4.1}Minimum of Characters: 100 \& Cumulated}{71}{subsubsection.B.4.1}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.40}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }}{71}{table.40}\protected@file@percent } +\newlabel{tab:Gender_acc_100_direct_full}{{A.40}{71}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }{table.40}{}} +\newlabel{tab:Gender_acc_100_direct_full@cref}{{[table][40][2147483647]A.40}{[1][71][]71}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.41}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }}{71}{table.41}\protected@file@percent } +\newlabel{tab:Gender_dist_100_direct_full}{{A.41}{71}{Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }{table.41}{}} +\newlabel{tab:Gender_dist_100_direct_full@cref}{{[table][41][2147483647]A.41}{[1][71][]71}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.42}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }}{72}{table.42}\protected@file@percent } +\newlabel{tab:Age_acc_100_direct_full}{{A.42}{72}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }{table.42}{}} +\newlabel{tab:Age_acc_100_direct_full@cref}{{[table][42][2147483647]A.42}{[1][71][]72}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.43}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }}{72}{table.43}\protected@file@percent } +\newlabel{tab:Age_dist_100_direct_full}{{A.43}{72}{Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a cumulated model on the ordered, full feature set\relax }{table.43}{}} +\newlabel{tab:Age_dist_100_direct_full@cref}{{[table][43][2147483647]A.43}{[1][71][]72}} +\BKM@entry{id=33,dest={73756273756273656374696F6E2E422E342E32},srcline={117}}{4D696E696D756D206F6620436861726163746572733A20323530205C3034362043756D756C61746564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.4.2}Minimum of Characters: 250 \& Cumulated}{73}{subsubsection.B.4.2}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.44}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }}{73}{table.44}\protected@file@percent } +\newlabel{tab:Gender_acc_250_direct_full}{{A.44}{73}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }{table.44}{}} +\newlabel{tab:Gender_acc_250_direct_full@cref}{{[table][44][2147483647]A.44}{[1][73][]73}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.45}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }}{73}{table.45}\protected@file@percent } +\newlabel{tab:Gender_dist_250_direct_full}{{A.45}{73}{Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }{table.45}{}} +\newlabel{tab:Gender_dist_250_direct_full@cref}{{[table][45][2147483647]A.45}{[1][73][]73}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.46}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }}{74}{table.46}\protected@file@percent } +\newlabel{tab:Age_acc_250_direct_full}{{A.46}{74}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }{table.46}{}} +\newlabel{tab:Age_acc_250_direct_full@cref}{{[table][46][2147483647]A.46}{[1][73][]74}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.47}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }}{74}{table.47}\protected@file@percent } +\newlabel{tab:Age_dist_250_direct_full}{{A.47}{74}{Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a cumulated model on the ordered, full feature set\relax }{table.47}{}} +\newlabel{tab:Age_dist_250_direct_full@cref}{{[table][47][2147483647]A.47}{[1][73][]74}} +\BKM@entry{id=34,dest={73756273756273656374696F6E2E422E342E33},srcline={126}}{4D696E696D756D206F6620436861726163746572733A20353030205C3034362043756D756C61746564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.4.3}Minimum of Characters: 500 \& Cumulated}{75}{subsubsection.B.4.3}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.48}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }}{75}{table.48}\protected@file@percent } +\newlabel{tab:Gender_acc_500_direct_full}{{A.48}{75}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }{table.48}{}} +\newlabel{tab:Gender_acc_500_direct_full@cref}{{[table][48][2147483647]A.48}{[1][75][]75}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.49}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }}{75}{table.49}\protected@file@percent } +\newlabel{tab:Gender_dist_500_direct_full}{{A.49}{75}{Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }{table.49}{}} +\newlabel{tab:Gender_dist_500_direct_full@cref}{{[table][49][2147483647]A.49}{[1][75][]75}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.50}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }}{76}{table.50}\protected@file@percent } +\newlabel{tab:Age_acc_500_direct_full}{{A.50}{76}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }{table.50}{}} +\newlabel{tab:Age_acc_500_direct_full@cref}{{[table][50][2147483647]A.50}{[1][75][]76}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.51}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }}{76}{table.51}\protected@file@percent } +\newlabel{tab:Age_dist_500_direct_full}{{A.51}{76}{Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a cumulated model on the ordered, full feature set\relax }{table.51}{}} +\newlabel{tab:Age_dist_500_direct_full@cref}{{[table][51][2147483647]A.51}{[1][75][]76}} +\BKM@entry{id=35,dest={73756273756273656374696F6E2E422E342E34},srcline={136}}{4D696E696D756D206F6620436861726163746572733A20313030205C30343620537461636B6564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.4.4}Minimum of Characters: 100 \& Stacked}{77}{subsubsection.B.4.4}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.52}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }}{77}{table.52}\protected@file@percent } +\newlabel{tab:Gender_acc_100_dynAA_full}{{A.52}{77}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }{table.52}{}} +\newlabel{tab:Gender_acc_100_dynAA_full@cref}{{[table][52][2147483647]A.52}{[1][77][]77}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.53}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }}{77}{table.53}\protected@file@percent } +\newlabel{tab:Gender_dist_100_dynAA_full}{{A.53}{77}{Stability of feature importance for the prediction of gender on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }{table.53}{}} +\newlabel{tab:Gender_dist_100_dynAA_full@cref}{{[table][53][2147483647]A.53}{[1][77][]77}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.54}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }}{78}{table.54}\protected@file@percent } +\newlabel{tab:Age_acc_100_dynAA_full}{{A.54}{78}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }{table.54}{}} +\newlabel{tab:Age_acc_100_dynAA_full@cref}{{[table][54][2147483647]A.54}{[1][77][]78}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.55}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }}{78}{table.55}\protected@file@percent } +\newlabel{tab:Age_dist_100_dynAA_full}{{A.55}{78}{Stability of feature importance for the prediction of age on a minimal input instance length of 100 characters using a stacked model on the ordered, full feature set\relax }{table.55}{}} +\newlabel{tab:Age_dist_100_dynAA_full@cref}{{[table][55][2147483647]A.55}{[1][77][]78}} +\BKM@entry{id=36,dest={73756273756273656374696F6E2E422E342E35},srcline={145}}{4D696E696D756D206F6620436861726163746572733A20323530205C30343620537461636B6564} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.4.5}Minimum of Characters: 250 \& Stacked}{79}{subsubsection.B.4.5}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.56}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }}{79}{table.56}\protected@file@percent } +\newlabel{tab:Gender_acc_250_dynAA_full}{{A.56}{79}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }{table.56}{}} +\newlabel{tab:Gender_acc_250_dynAA_full@cref}{{[table][56][2147483647]A.56}{[1][79][]79}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.57}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }}{79}{table.57}\protected@file@percent } +\newlabel{tab:Gender_dist_250_dynAA_full}{{A.57}{79}{Stability of feature importance for the prediction of gender on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }{table.57}{}} +\newlabel{tab:Gender_dist_250_dynAA_full@cref}{{[table][57][2147483647]A.57}{[1][79][]79}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.58}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }}{80}{table.58}\protected@file@percent } +\newlabel{tab:Age_acc_250_dynAA_full}{{A.58}{80}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }{table.58}{}} +\newlabel{tab:Age_acc_250_dynAA_full@cref}{{[table][58][2147483647]A.58}{[1][79][]80}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.59}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }}{80}{table.59}\protected@file@percent } +\newlabel{tab:Age_dist_250_dynAA_full}{{A.59}{80}{Stability of feature importance for the prediction of age on a minimal input instance length of 250 characters using a stacked model on the ordered, full feature set\relax }{table.59}{}} +\newlabel{tab:Age_dist_250_dynAA_full@cref}{{[table][59][2147483647]A.59}{[1][79][]80}} +\BKM@entry{id=37,dest={73756273756273656374696F6E2E422E342E36},srcline={153}}{4D696E696D756D206F6620436861726163746572733A20353030205C30343620537461636B6564} \abx@aux@refcontextdefaultsdone \abx@aux@defaultrefcontext{0}{Azarbonyad2015Time-awareStreams}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{bail2016combining}{nyt/global//global/global} @@ -376,6 +689,7 @@ \abx@aux@defaultrefcontext{0}{Booth2012GenderMatter}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Brocardo2015AuthorshipAuthentication}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{burley2020nlp}{nyt/global//global/global} +\abx@aux@defaultrefcontext{0}{Chan2018SocialTwitter}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Charness2012StrongTaking}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Chaski2001EmpiricalTechniques}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Chaski2012BestIdentification}{nyt/global//global/global} @@ -396,7 +710,6 @@ \abx@aux@defaultrefcontext{0}{koppel2011authorship}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{lahey2000age}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Laub2019HateComparisons}{nyt/global//global/global} -\abx@aux@defaultrefcontext{0}{facebook}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Narayanan2012OnIdentification}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Neal2017SurveyingApplications}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{PAN2019CelebrityProfiling}{nyt/global//global/global} @@ -413,20 +726,23 @@ \abx@aux@defaultrefcontext{0}{Stamatatos2013OnFeatures}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Stamatatos2017authorship}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Stamatatos2015OverviewLab}{nyt/global//global/global} +\abx@aux@defaultrefcontext{0}{facebook}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Sutter2014GenderPersist}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Theophilo2019AMicro-messages}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Varol2017OnlineCharacterization}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{Verhoeven2016Twisty:Profiling}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{wiegmann2019overview}{nyt/global//global/global} \abx@aux@defaultrefcontext{0}{zufall2020operationalizing}{nyt/global//global/global} -\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {section}{\numberline {A2}Tables}{21}{appendix.B}\protected@file@percent } -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.1}{\ignorespaces Accuracy and F1-scores for the prediction of gender on a minimal tweet length of 250 chars using a feature-wise model on the individual Featuretypes\relax }}{21}{table.caption.25}\protected@file@percent } -\newlabel{tab:gender_acc_250_baseline_individual}{{A.1}{21}{Accuracy and F1-scores for the prediction of gender on a minimal tweet length of 250 chars using a feature-wise model on the individual Featuretypes\relax }{table.caption.25}{}} -\newlabel{tab:gender_dist_250_baseline_individual}{{\caption@xref {tab:gender_dist_250_baseline_individual}{ on input line 3}}{22}{Tables}{table.caption.26}{}} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.2}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a stacked model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }}{22}{table.caption.27}\protected@file@percent } -\newlabel{tab:gender_f1_dist_500_dynAA_dwald}{{A.2}{22}{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a stacked model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }{table.caption.27}{}} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.3}{\ignorespaces Accuracy and F1-scores for the prediction of age on a minimal tweet length of 250 chars using a feature-wise model on the individual Featuretypes\relax }}{23}{table.caption.28}\protected@file@percent } -\newlabel{tab:age_acc_250_baseline_individual}{{A.3}{23}{Accuracy and F1-scores for the prediction of age on a minimal tweet length of 250 chars using a feature-wise model on the individual Featuretypes\relax }{table.caption.28}{}} -\newlabel{tab:age_dist_250_baseline_individual}{{\caption@xref {tab:age_dist_250_baseline_individual}{ on input line 3}}{24}{Tables}{table.caption.29}{}} -\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.4}{\ignorespaces F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a stacked model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }}{24}{table.caption.30}\protected@file@percent } -\newlabel{tab:age_f1_dist_500_dynAA_dwald}{{A.4}{24}{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a stacked model on the reduced Featureset (DIST, CHAR, LEMMA, WORD)\relax }{table.caption.30}{}} +\@writefile{toc}{\defcounter {refsection}{0}\relax }\@writefile{toc}{\contentsline {subsubsection}{\numberline {A2.4.6}Minimum of Characters: 500 \& Stacked}{81}{subsubsection.B.4.6}\protected@file@percent } +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.60}{\ignorespaces 'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }}{81}{table.60}\protected@file@percent } +\newlabel{tab:Gender_acc_500_dynAA_full}{{A.60}{81}{'Accuracy and F1-scores for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }{table.60}{}} +\newlabel{tab:Gender_acc_500_dynAA_full@cref}{{[table][60][2147483647]A.60}{[1][81][]81}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.61}{\ignorespaces Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }}{81}{table.61}\protected@file@percent } +\newlabel{tab:Gender_dist_500_dynAA_full}{{A.61}{81}{Stability of feature importance for the prediction of gender on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }{table.61}{}} +\newlabel{tab:Gender_dist_500_dynAA_full@cref}{{[table][61][2147483647]A.61}{[1][81][]81}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.62}{\ignorespaces 'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }}{82}{table.62}\protected@file@percent } +\newlabel{tab:Age_acc_500_dynAA_full}{{A.62}{82}{'Accuracy and F1-scores for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }{table.62}{}} +\newlabel{tab:Age_acc_500_dynAA_full@cref}{{[table][62][2147483647]A.62}{[1][81][]82}} +\@writefile{lot}{\defcounter {refsection}{0}\relax }\@writefile{lot}{\contentsline {table}{\numberline {A.63}{\ignorespaces Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }}{82}{table.63}\protected@file@percent } +\newlabel{tab:Age_dist_500_dynAA_full}{{A.63}{82}{Stability of feature importance for the prediction of age on a minimal input instance length of 500 characters using a stacked model on the ordered, full feature set\relax }{table.63}{}} +\newlabel{tab:Age_dist_500_dynAA_full@cref}{{[table][63][2147483647]A.63}{[1][81][]82}} diff --git a/tex/main.bbl b/tex/main.bbl index 17095aced958c1cc3aac34ed342f0db68112e669..666563cce79c5d17e900cfd518e22ea8d3536545 100644 --- a/tex/main.bbl +++ b/tex/main.bbl @@ -394,6 +394,39 @@ \field{pages}{152\bibrangedash 159} \range{pages}{8} \endentry + \entry{Chan2018SocialTwitter}{inproceedings}{} + \name{author}{2}{}{% + {{un=0,uniquepart=base,hash=b201feca42a0d06c48c5984458b57c5f}{% + family={Chan}, + familyi={C\bibinitperiod}, + given={Sophia}, + giveni={S\bibinitperiod}, + givenun=0}}% + {{un=0,uniquepart=base,hash=08b40b43ab255b3f5a2b4fb6a7728c23}{% + family={Fyshe}, + familyi={F\bibinitperiod}, + given={Alona}, + giveni={A\bibinitperiod}, + givenun=0}}% + } + \strng{namehash}{3b179682a1e1838776cdcec5aa4f1899} + \strng{fullhash}{3b179682a1e1838776cdcec5aa4f1899} + \strng{bibnamehash}{3b179682a1e1838776cdcec5aa4f1899} + \strng{authorbibnamehash}{3b179682a1e1838776cdcec5aa4f1899} + \strng{authornamehash}{3b179682a1e1838776cdcec5aa4f1899} + \strng{authorfullhash}{3b179682a1e1838776cdcec5aa4f1899} + \field{sortinit}{C} + \field{sortinithash}{4c244ceae61406cdc0cc2ce1cb1ff703} + \field{extradatescope}{labelyear} + \field{labeldatesource}{year} + \field{labelnamesource}{author} + \field{labeltitlesource}{title} + \field{booktitle}{Proceedings of the Second Workshop on Computational Modeling of People’s Opinions, Personality, and Emotions in Social Media} + \field{title}{{Social and Emotional Correlates of Capitalization on Twitter}} + \field{year}{2018} + \field{pages}{10\bibrangedash 15} + \range{pages}{6} + \endentry \entry{Charness2012StrongTaking}{article}{} \name{author}{2}{}{% {{un=0,uniquepart=base,hash=134e92f09e5ba63f519ccd0a63b0dcff}{% @@ -1206,40 +1239,6 @@ \verb https://www.cfr.org/backgrounder/hate-speech-social-media-global-comparisons \endverb \endentry - \entry{facebook}{online}{} - \name{author}{1}{}{% - {{un=0,uniquepart=base,hash=308f06c5fc394642d1ced66a1c157c5e}{% - family={Nachrichten}, - familyi={N\bibinitperiod}, - given={Stuttgarter}, - giveni={S\bibinitperiod}, - givenun=0}}% - } - \strng{namehash}{308f06c5fc394642d1ced66a1c157c5e} - \strng{fullhash}{308f06c5fc394642d1ced66a1c157c5e} - \strng{bibnamehash}{308f06c5fc394642d1ced66a1c157c5e} - \strng{authorbibnamehash}{308f06c5fc394642d1ced66a1c157c5e} - \strng{authornamehash}{308f06c5fc394642d1ced66a1c157c5e} - \strng{authorfullhash}{308f06c5fc394642d1ced66a1c157c5e} - \field{sortinit}{N} - \field{sortinithash}{98cf339a479c0454fe09153a08675a15} - \field{extradatescope}{labelyear} - \field{labeldatesource}{year} - \field{labelnamesource}{author} - \field{labeltitlesource}{title} - \field{title}{Bitte, Facebook, Hilf uns} - \field{urlday}{22} - \field{urlmonth}{7} - \field{urlyear}{2021} - \field{year}{2017} - \field{urldateera}{ce} - \verb{urlraw} - \verb https://www.stuttgarter-nachrichten.de/inhalt.polizei-als-bittsteller-bei-straftaten-bitte-facebook-hilf-uns.a3a743a3-d41e-479c-aba7-d5bc4da25286.html - \endverb - \verb{url} - \verb https://www.stuttgarter-nachrichten.de/inhalt.polizei-als-bittsteller-bei-straftaten-bitte-facebook-hilf-uns.a3a743a3-d41e-479c-aba7-d5bc4da25286.html - \endverb - \endentry \entry{Narayanan2012OnIdentification}{inproceedings}{} \name{author}{7}{}{% {{un=0,uniquepart=base,hash=95dc795a2be14c50fb6a924acc135ff8}{% @@ -1991,6 +1990,37 @@ \field{pages}{518\bibrangedash 538} \range{pages}{21} \endentry + \entry{facebook}{online}{} + \name{author}{1}{}{% + {{un=0,uniquepart=base,hash=9e3da02e903645b8c7fcb8a67c7cbe7e}{% + family={{Stuttgarter Nachrichten}}, + familyi={S\bibinitperiod}}}% + } + \strng{namehash}{9e3da02e903645b8c7fcb8a67c7cbe7e} + \strng{fullhash}{9e3da02e903645b8c7fcb8a67c7cbe7e} + \strng{bibnamehash}{9e3da02e903645b8c7fcb8a67c7cbe7e} + \strng{authorbibnamehash}{9e3da02e903645b8c7fcb8a67c7cbe7e} + \strng{authornamehash}{9e3da02e903645b8c7fcb8a67c7cbe7e} + \strng{authorfullhash}{9e3da02e903645b8c7fcb8a67c7cbe7e} + \field{sortinit}{S} + \field{sortinithash}{c319cff79d99c853d775f88277d4e45f} + \field{extradatescope}{labelyear} + \field{labeldatesource}{year} + \field{labelnamesource}{author} + \field{labeltitlesource}{title} + \field{title}{Bitte, Facebook, Hilf uns} + \field{urlday}{22} + \field{urlmonth}{7} + \field{urlyear}{2021} + \field{year}{2017} + \field{urldateera}{ce} + \verb{urlraw} + \verb https://www.stuttgarter-nachrichten.de/inhalt.polizei-als-bittsteller-bei-straftaten-bitte-facebook-hilf-uns.a3a743a3-d41e-479c-aba7-d5bc4da25286.html + \endverb + \verb{url} + \verb https://www.stuttgarter-nachrichten.de/inhalt.polizei-als-bittsteller-bei-straftaten-bitte-facebook-hilf-uns.a3a743a3-d41e-479c-aba7-d5bc4da25286.html + \endverb + \endentry \entry{Sutter2014GenderPersist}{article}{} \name{author}{2}{}{% {{un=0,uniquepart=base,hash=848a999889a2e54a98fd472b1ba29520}{% diff --git a/tex/main.bcf b/tex/main.bcf index a6f8e0cf0562bb0013d58ba512f70d0078598da4..7734cdea9cd0254dfacdd1f978b6fcf5d4321871 100644 --- a/tex/main.bcf +++ b/tex/main.bcf @@ -2351,89 +2351,91 @@ <bcf:datasource type="file" datatype="bibtex" glob="false">references.bib</bcf:datasource> </bcf:bibdata> <bcf:section number="0"> - <bcf:citekey order="1">InternetLiveStats2019TwitterStatistics</bcf:citekey> - <bcf:citekey order="2">bail2016combining</bcf:citekey> - <bcf:citekey order="2">pavlick2016gun</bcf:citekey> - <bcf:citekey order="2">costa2019analysis</bcf:citekey> - <bcf:citekey order="2">burley2020nlp</bcf:citekey> - <bcf:citekey order="3">lahey2000age</bcf:citekey> - <bcf:citekey order="3">Gneezy2004GenderAge</bcf:citekey> - <bcf:citekey order="3">Charness2012StrongTaking</bcf:citekey> - <bcf:citekey order="3">Booth2012GenderMatter</bcf:citekey> - <bcf:citekey order="3">Sutter2014GenderPersist</bcf:citekey> - <bcf:citekey order="3">Bian2017GenderInterests</bcf:citekey> - <bcf:citekey order="4">bail2016combining</bcf:citekey> - <bcf:citekey order="4">colleoni2014echo</bcf:citekey> - <bcf:citekey order="5">barbera2015understanding</bcf:citekey> - <bcf:citekey order="5">huang2020contribution</bcf:citekey> - <bcf:citekey order="6">Djuric2015HateEmbeddings</bcf:citekey> - <bcf:citekey order="6">Laub2019HateComparisons</bcf:citekey> - <bcf:citekey order="6">zufall2020operationalizing</bcf:citekey> - <bcf:citekey order="7">facebook</bcf:citekey> - <bcf:citekey order="8">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="9">Narayanan2012OnIdentification</bcf:citekey> + <bcf:citekey order="1">lahey2000age</bcf:citekey> + <bcf:citekey order="1">Gneezy2004GenderAge</bcf:citekey> + <bcf:citekey order="1">Charness2012StrongTaking</bcf:citekey> + <bcf:citekey order="1">Booth2012GenderMatter</bcf:citekey> + <bcf:citekey order="1">Sutter2014GenderPersist</bcf:citekey> + <bcf:citekey order="1">Bian2017GenderInterests</bcf:citekey> + <bcf:citekey order="2">InternetLiveStats2019TwitterStatistics</bcf:citekey> + <bcf:citekey order="3">bail2016combining</bcf:citekey> + <bcf:citekey order="3">pavlick2016gun</bcf:citekey> + <bcf:citekey order="3">costa2019analysis</bcf:citekey> + <bcf:citekey order="3">burley2020nlp</bcf:citekey> + <bcf:citekey order="4">Narayanan2012OnIdentification</bcf:citekey> + <bcf:citekey order="5">bail2016combining</bcf:citekey> + <bcf:citekey order="5">colleoni2014echo</bcf:citekey> + <bcf:citekey order="6">barbera2015understanding</bcf:citekey> + <bcf:citekey order="6">huang2020contribution</bcf:citekey> + <bcf:citekey order="7">Djuric2015HateEmbeddings</bcf:citekey> + <bcf:citekey order="7">Laub2019HateComparisons</bcf:citekey> + <bcf:citekey order="7">zufall2020operationalizing</bcf:citekey> + <bcf:citekey order="8">facebook</bcf:citekey> + <bcf:citekey order="9">Rocha2017AuthorshipForensics</bcf:citekey> <bcf:citekey order="10">Rocha2017AuthorshipForensics</bcf:citekey> <bcf:citekey order="11">Chaski2001EmpiricalTechniques</bcf:citekey> <bcf:citekey order="12">Rocha2017AuthorshipForensics</bcf:citekey> <bcf:citekey order="13">Chaski2012BestIdentification</bcf:citekey> <bcf:citekey order="14">Chaski2012BestIdentification</bcf:citekey> - <bcf:citekey order="15">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="16">Narayanan2012OnIdentification</bcf:citekey> - <bcf:citekey order="17">Flekova2016ExploringTwitter</bcf:citekey> - <bcf:citekey order="18">Azarbonyad2015Time-awareStreams</bcf:citekey> - <bcf:citekey order="19">Neal2017SurveyingApplications</bcf:citekey> - <bcf:citekey order="20">Narayanan2012OnIdentification</bcf:citekey> - <bcf:citekey order="21">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="22">Ribeiro2016WhyClassifier</bcf:citekey> - <bcf:citekey order="22">samek2019explainable</bcf:citekey> - <bcf:citekey order="23">koppel2011authorship</bcf:citekey> - <bcf:citekey order="24">boenninghoff2019explainable</bcf:citekey> - <bcf:citekey order="25">sanchez2017comparison</bcf:citekey> - <bcf:citekey order="26">sage2020investigating</bcf:citekey> - <bcf:citekey order="27">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="28">Spitters2016AuthorshipForums</bcf:citekey> - <bcf:citekey order="29">Keselj2003N-gram-basedAttribution</bcf:citekey> - <bcf:citekey order="29">Stamatatos2009AMethods</bcf:citekey> - <bcf:citekey order="29">Peng2003LanguageModels</bcf:citekey> - <bcf:citekey order="30">Forstall2010FeaturesSound</bcf:citekey> - <bcf:citekey order="31">Stamatatos2013OnFeatures</bcf:citekey> - <bcf:citekey order="32">Narayanan2012OnIdentification</bcf:citekey> - <bcf:citekey order="32">Spitters2016AuthorshipForums</bcf:citekey> - <bcf:citekey order="33">custodio2021stacked</bcf:citekey> - <bcf:citekey order="34">huang2020contribution</bcf:citekey> - <bcf:citekey order="35">Stamatatos2017authorship</bcf:citekey> - <bcf:citekey order="36">Stamatatos2013OnFeatures</bcf:citekey> - <bcf:citekey order="37">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="38">huang2020contribution</bcf:citekey> - <bcf:citekey order="39">dietterich2000ensemble</bcf:citekey> - <bcf:citekey order="40">custodio2021stacked</bcf:citekey> - <bcf:citekey order="41">custodio2021stacked</bcf:citekey> - <bcf:citekey order="42">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="42">custodio2021stacked</bcf:citekey> - <bcf:citekey order="43">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="44">Neal2017SurveyingApplications</bcf:citekey> - <bcf:citekey order="45">Neal2017SurveyingApplications</bcf:citekey> - <bcf:citekey order="46">Halvani2016AuthorshipTopics</bcf:citekey> - <bcf:citekey order="47">Narayanan2012OnIdentification</bcf:citekey> - <bcf:citekey order="47">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="47">Spitters2016AuthorshipForums</bcf:citekey> - <bcf:citekey order="48">Theophilo2019AMicro-messages</bcf:citekey> - <bcf:citekey order="49">Verhoeven2016Twisty:Profiling</bcf:citekey> - <bcf:citekey order="50">Brocardo2015AuthorshipAuthentication</bcf:citekey> - <bcf:citekey order="51">Stamatatos2015OverviewLab</bcf:citekey> - <bcf:citekey order="52">Halvani2016AuthorshipTopics</bcf:citekey> - <bcf:citekey order="53">Varol2017OnlineCharacterization</bcf:citekey> - <bcf:citekey order="54">Narayanan2012OnIdentification</bcf:citekey> - <bcf:citekey order="55">PAN2019CelebrityProfiling</bcf:citekey> - <bcf:citekey order="56">Schmidt2014TwitterPublics</bcf:citekey> + <bcf:citekey order="15">Narayanan2012OnIdentification</bcf:citekey> + <bcf:citekey order="16">Flekova2016ExploringTwitter</bcf:citekey> + <bcf:citekey order="17">Azarbonyad2015Time-awareStreams</bcf:citekey> + <bcf:citekey order="18">Neal2017SurveyingApplications</bcf:citekey> + <bcf:citekey order="19">Rocha2017AuthorshipForensics</bcf:citekey> + <bcf:citekey order="20">Ribeiro2016WhyClassifier</bcf:citekey> + <bcf:citekey order="20">samek2019explainable</bcf:citekey> + <bcf:citekey order="21">koppel2011authorship</bcf:citekey> + <bcf:citekey order="22">boenninghoff2019explainable</bcf:citekey> + <bcf:citekey order="23">sanchez2017comparison</bcf:citekey> + <bcf:citekey order="24">sage2020investigating</bcf:citekey> + <bcf:citekey order="25">custodio2021stacked</bcf:citekey> + <bcf:citekey order="26">custodio2021stacked</bcf:citekey> + <bcf:citekey order="27">Neal2017SurveyingApplications</bcf:citekey> + <bcf:citekey order="28">Neal2017SurveyingApplications</bcf:citekey> + <bcf:citekey order="29">Halvani2016AuthorshipTopics</bcf:citekey> + <bcf:citekey order="30">Narayanan2012OnIdentification</bcf:citekey> + <bcf:citekey order="30">Rocha2017AuthorshipForensics</bcf:citekey> + <bcf:citekey order="30">Spitters2016AuthorshipForums</bcf:citekey> + <bcf:citekey order="31">Theophilo2019AMicro-messages</bcf:citekey> + <bcf:citekey order="32">Verhoeven2016Twisty:Profiling</bcf:citekey> + <bcf:citekey order="33">Brocardo2015AuthorshipAuthentication</bcf:citekey> + <bcf:citekey order="34">Stamatatos2015OverviewLab</bcf:citekey> + <bcf:citekey order="35">Halvani2016AuthorshipTopics</bcf:citekey> + <bcf:citekey order="36">Varol2017OnlineCharacterization</bcf:citekey> + <bcf:citekey order="37">Narayanan2012OnIdentification</bcf:citekey> + <bcf:citekey order="38">PAN2019CelebrityProfiling</bcf:citekey> + <bcf:citekey order="39">Schmidt2014TwitterPublics</bcf:citekey> + <bcf:citekey order="40">Rocha2017AuthorshipForensics</bcf:citekey> + <bcf:citekey order="41">Spitters2016AuthorshipForums</bcf:citekey> + <bcf:citekey order="42">Keselj2003N-gram-basedAttribution</bcf:citekey> + <bcf:citekey order="42">Stamatatos2009AMethods</bcf:citekey> + <bcf:citekey order="42">Peng2003LanguageModels</bcf:citekey> + <bcf:citekey order="43">Forstall2010FeaturesSound</bcf:citekey> + <bcf:citekey order="44">Stamatatos2013OnFeatures</bcf:citekey> + <bcf:citekey order="45">Narayanan2012OnIdentification</bcf:citekey> + <bcf:citekey order="45">Spitters2016AuthorshipForums</bcf:citekey> + <bcf:citekey order="46">custodio2021stacked</bcf:citekey> + <bcf:citekey order="47">huang2020contribution</bcf:citekey> + <bcf:citekey order="48">Stamatatos2017authorship</bcf:citekey> + <bcf:citekey order="49">Stamatatos2013OnFeatures</bcf:citekey> + <bcf:citekey order="50">Rocha2017AuthorshipForensics</bcf:citekey> + <bcf:citekey order="51">huang2020contribution</bcf:citekey> + <bcf:citekey order="52">Rocha2017AuthorshipForensics</bcf:citekey> + <bcf:citekey order="52">custodio2021stacked</bcf:citekey> + <bcf:citekey order="53">Rocha2017AuthorshipForensics</bcf:citekey> + <bcf:citekey order="54">dietterich2000ensemble</bcf:citekey> + <bcf:citekey order="55">custodio2021stacked</bcf:citekey> + <bcf:citekey order="56">custodio2021stacked</bcf:citekey> <bcf:citekey order="57">custodio2021stacked</bcf:citekey> <bcf:citekey order="58">custodio2021stacked</bcf:citekey> - <bcf:citekey order="59">custodio2021stacked</bcf:citekey> - <bcf:citekey order="60">wiegmann2019overview</bcf:citekey> - <bcf:citekey order="61">Rocha2017AuthorshipForensics</bcf:citekey> - <bcf:citekey order="62">DeJonge2012TextmessageStudents</bcf:citekey> - <bcf:citekey order="62">Hovy2015TaggingAge</bcf:citekey> - <bcf:citekey order="63">wiegmann2019overview</bcf:citekey> + <bcf:citekey order="59">wiegmann2019overview</bcf:citekey> + <bcf:citekey order="60">Flekova2016ExploringTwitter</bcf:citekey> + <bcf:citekey order="61">DeJonge2012TextmessageStudents</bcf:citekey> + <bcf:citekey order="62">Chan2018SocialTwitter</bcf:citekey> + <bcf:citekey order="63">Rocha2017AuthorshipForensics</bcf:citekey> + <bcf:citekey order="64">DeJonge2012TextmessageStudents</bcf:citekey> + <bcf:citekey order="64">Hovy2015TaggingAge</bcf:citekey> + <bcf:citekey order="65">wiegmann2019overview</bcf:citekey> </bcf:section> <!-- SORTING TEMPLATES --> <bcf:sortingtemplate name="nyt"> diff --git a/tex/main.blg b/tex/main.blg index 407070f5307dc45efca5888953fe9da73afac739..582eb392deaa625cf20a45addd1b21a51a9ca8be 100644 --- a/tex/main.blg +++ b/tex/main.blg @@ -1,17 +1,17 @@ [0] Config.pm:312> INFO - This is Biber 2.15 (beta) [0] Config.pm:315> INFO - Logfile is 'main.blg' -[105] biber-MSWIN64:330> INFO - === -[130] Biber.pm:415> INFO - Reading 'main.bcf' -[248] Biber.pm:952> INFO - Found 51 citekeys in bib section 0 -[265] Biber.pm:4334> INFO - Processing section 0 -[286] Biber.pm:4523> INFO - Looking for bibtex format file 'references.bib' for section 0 -[296] bibtex.pm:1682> INFO - LaTeX decoding ... -[596] bibtex.pm:1494> INFO - Found BibTeX data source 'references.bib' -[870] Utils.pm:395> WARN - ISBN '2163-8284' in entry 'Forstall2010FeaturesSound' is invalid - run biber with '--validate_datamodel' for details. -[1023] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'variable = shifted' with 'variable = non-ignorable' -[1023] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'normalization = NFD' with 'normalization = prenormalized' -[1023] Biber.pm:4162> INFO - Sorting list 'nyt/global//global/global' of type 'entry' with template 'nyt' and locale 'en-US' -[1023] Biber.pm:4168> INFO - No sort tailoring available for locale 'en-US' -[1107] bbl.pm:651> INFO - Writing 'main.bbl' with encoding 'UTF-8' -[1152] bbl.pm:754> INFO - Output to main.bbl -[1153] Biber.pm:128> INFO - WARNINGS: 1 +[102] biber-MSWIN64:330> INFO - === +[122] Biber.pm:415> INFO - Reading 'main.bcf' +[239] Biber.pm:952> INFO - Found 52 citekeys in bib section 0 +[256] Biber.pm:4334> INFO - Processing section 0 +[272] Biber.pm:4523> INFO - Looking for bibtex format file 'references.bib' for section 0 +[282] bibtex.pm:1682> INFO - LaTeX decoding ... +[585] bibtex.pm:1494> INFO - Found BibTeX data source 'references.bib' +[916] Utils.pm:395> WARN - ISBN '2163-8284' in entry 'Forstall2010FeaturesSound' is invalid - run biber with '--validate_datamodel' for details. +[1069] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'normalization = NFD' with 'normalization = prenormalized' +[1069] UCollate.pm:68> INFO - Overriding locale 'en-US' defaults 'variable = shifted' with 'variable = non-ignorable' +[1069] Biber.pm:4162> INFO - Sorting list 'nyt/global//global/global' of type 'entry' with template 'nyt' and locale 'en-US' +[1069] Biber.pm:4168> INFO - No sort tailoring available for locale 'en-US' +[1137] bbl.pm:651> INFO - Writing 'main.bbl' with encoding 'UTF-8' +[1179] bbl.pm:754> INFO - Output to main.bbl +[1179] Biber.pm:128> INFO - WARNINGS: 1 diff --git a/tex/main.log b/tex/main.log index c09143781926a3853470351917b78fc9670991ad..d700aafe833241ab4878ebb53950476c5ea74727 100644 --- a/tex/main.log +++ b/tex/main.log @@ -1,166 +1,140 @@ -This is pdfTeX, Version 3.14159265-2.6-1.40.21 (MiKTeX 20.7) (preloaded format=pdflatex 2020.9.10) 23 JUL 2021 09:06 +This is pdfTeX, Version 3.14159265-2.6-1.40.21 (MiKTeX 20.7) (preloaded format=pdflatex 2020.9.10) 8 AUG 2021 02:00 entering extended mode **./main.tex (main.tex LaTeX2e <2020-02-02> patch level 5 L3 programming layer <2020-09-03> -("C:\Program Files\MiKTeX 2.9\tex/latex/base\article.cls" -Document Class: article 2019/12/20 v1.4l Standard LaTeX document class -("C:\Program Files\MiKTeX 2.9\tex/latex/base\size11.clo" -File: size11.clo 2019/12/20 v1.4l Standard LaTeX file (size option) -) -\c@part=\count168 -\c@section=\count169 -\c@subsection=\count170 -\c@subsubsection=\count171 -\c@paragraph=\count172 -\c@subparagraph=\count173 -\c@figure=\count174 -\c@table=\count175 -\abovecaptionskip=\skip47 -\belowcaptionskip=\skip48 +("C:\Program Files\MiKTeX 2.9\tex/latex/koma-script\scrartcl.cls" +Document Class: scrartcl 2020/07/22 v3.31 KOMA-Script document class (article) +("C:\Program Files\MiKTeX 2.9\tex/latex/koma-script\scrkbase.sty" +Package: scrkbase 2020/07/22 v3.31 KOMA-Script package (KOMA-Script-dependent b +asics and keyval usage) + +("C:\Program Files\MiKTeX 2.9\tex/latex/koma-script\scrbase.sty" +Package: scrbase 2020/07/22 v3.31 KOMA-Script package (KOMA-Script-independent +basics and keyval usage) + +("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\keyval.sty" +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks15 +) +("C:\Program Files\MiKTeX 2.9\tex/latex/koma-script\scrlfile.sty" +Package: scrlfile 2020/07/22 v3.31 KOMA-Script package (loading files) +))) +("C:\Program Files\MiKTeX 2.9\tex/latex/koma-script\tocbasic.sty" +Package: tocbasic 2020/07/22 v3.31 KOMA-Script package (handling toc-files) +\scr@dte@tocline@numberwidth=\skip47 +\scr@dte@tocline@numbox=\box45 +) +Package tocbasic Info: babel extension for `toc' omitted +(tocbasic) because of missing \bbl@set@language on input line 135. +Package scrartcl Info: You've used standard option `11pt'. +(scrartcl) This is correct! +(scrartcl) Internally I'm using `fontsize=11pt'. +(scrartcl) If you'd like to set the option with \KOMAoptions, +(scrartcl) you'd have to use `fontsize=11pt' there +(scrartcl) instead of `11pt', too. +Class scrartcl Info: File `scrsize11pt.clo' used to setup font sizes on input l +ine 2221. + +("C:\Program Files\MiKTeX 2.9\tex/latex/koma-script\scrsize11pt.clo" +File: scrsize11pt.clo 2020/07/22 v3.31 KOMA-Script font size class option (11pt +) +) +("C:\Program Files\MiKTeX 2.9\tex/latex/koma-script\typearea.sty" +Package: typearea 2020/07/22 v3.31 KOMA-Script package (type area) +\ta@bcor=\skip48 +\ta@div=\count168 +Package typearea Info: You've used standard option `a4paper'. +(typearea) This is correct! +(typearea) Internally I'm using `paper=a4'. +(typearea) If you'd like to set the option with \KOMAoptions, +(typearea) you'd have to use `paper=a4' there +(typearea) instead of `a4paper', too. +\ta@hblk=\skip49 +\ta@vblk=\skip50 +\ta@temp=\skip51 +\footheight=\skip52 +Package typearea Info: These are the values describing the layout: +(typearea) DIV = 10 +(typearea) BCOR = 0.0pt +(typearea) \paperwidth = 597.50793pt +(typearea) \textwidth = 418.25555pt +(typearea) DIV departure = -6% +(typearea) \evensidemargin = 17.3562pt +(typearea) \oddsidemargin = 17.3562pt +(typearea) \paperheight = 845.04694pt +(typearea) \textheight = 595.80026pt +(typearea) \topmargin = -25.16531pt +(typearea) \headheight = 17.0pt +(typearea) \headsep = 20.40001pt +(typearea) \topskip = 11.0pt +(typearea) \footskip = 47.6pt +(typearea) \baselineskip = 13.6pt +(typearea) on input line 1739. +) +\c@part=\count169 +\c@section=\count170 +\c@subsection=\count171 +\c@subsubsection=\count172 +\c@paragraph=\count173 +\c@subparagraph=\count174 +\scr@dte@section@maxnumwidth=\skip53 +Class scrartcl Info: using compatibility default `runin=bysign' +(scrartcl) for `\section on input line 4794. +Class scrartcl Info: using compatibility default `afterindent=bysign' +(scrartcl) for `\section on input line 4794. +\scr@dte@part@maxnumwidth=\skip54 +Class scrartcl Info: using compatibility default `afterindent=false' +(scrartcl) for `\part on input line 4802. +\scr@dte@subsection@maxnumwidth=\skip55 +Class scrartcl Info: using compatibility default `runin=bysign' +(scrartcl) for `\subsection on input line 4812. +Class scrartcl Info: using compatibility default `afterindent=bysign' +(scrartcl) for `\subsection on input line 4812. +\scr@dte@subsubsection@maxnumwidth=\skip56 +Class scrartcl Info: using compatibility default `runin=bysign' +(scrartcl) for `\subsubsection on input line 4822. +Class scrartcl Info: using compatibility default `afterindent=bysign' +(scrartcl) for `\subsubsection on input line 4822. +\scr@dte@paragraph@maxnumwidth=\skip57 +Class scrartcl Info: using compatibility default `runin=bysign' +(scrartcl) for `\paragraph on input line 4833. +Class scrartcl Info: using compatibility default `afterindent=bysign' +(scrartcl) for `\paragraph on input line 4833. +\scr@dte@subparagraph@maxnumwidth=\skip58 +Class scrartcl Info: using compatibility default `runin=bysign' +(scrartcl) for `\subparagraph on input line 4843. +Class scrartcl Info: using compatibility default `afterindent=bysign' +(scrartcl) for `\subparagraph on input line 4843. +\abovecaptionskip=\skip59 +\belowcaptionskip=\skip60 +\c@pti@nb@sid@b@x=\box46 +Package tocbasic Info: babel extension for `lof' omitted +(tocbasic) because of missing \bbl@set@language on input line 6075. + +\scr@dte@figure@maxnumwidth=\skip61 +\c@figure=\count175 +Package tocbasic Info: babel extension for `lot' omitted +(tocbasic) because of missing \bbl@set@language on input line 6087. + +\scr@dte@table@maxnumwidth=\skip62 +\c@table=\count176 +Class scrartcl Info: Redefining `\numberline' on input line 6251. \bibindent=\dimen134 ) ("C:\Program Files\MiKTeX 2.9\tex/latex/base\inputenc.sty" Package: inputenc 2018/08/11 v1.3c Input encoding file -\inpenc@prehook=\toks15 -\inpenc@posthook=\toks16 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/preprint\fullpage.sty -Package: fullpage 1999/02/23 1.1 (PWD) -\FP@margin=\skip49 +\inpenc@prehook=\toks16 +\inpenc@posthook=\toks17 ) ("C:\Program Files\MiKTeX 2.9\tex/latex/url\url.sty" \Urlmuskip=\muskip16 Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. ) -("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hyperref.sty" -Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/ltxcmds\ltxcmds.sty -Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) -) -("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\iftex.sty" -Package: iftex 2020/03/06 v1.0d TeX engine tests -) -("C:\Program Files\MiKTeX 2.9\tex/generic/pdftexcmds\pdftexcmds.sty" -Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO -) - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/infwarerr\infwarerr.s -ty -Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) -) -Package pdftexcmds Info: \pdf@primitive is available. -Package pdftexcmds Info: \pdf@ifprimitive is available. -Package pdftexcmds Info: \pdfdraftmode found. -) ("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\keyval.sty" -Package: keyval 2014/10/28 v1.15 key=value parser (DPC) -\KV@toks@=\toks17 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/kvsetkeys\kvsetkeys.s -ty -Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/kvdefinekeys\kvdefine -keys.sty -Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/pdfescape\pdfescape.s -ty -Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) -) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/hycolor\hycolor.sty -Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/letltxmacro\letltxmacro -.sty -Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/auxhook\auxhook.sty -Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/kvoptions\kvoptions.sty -Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) -) -\@linkdim=\dimen135 -\Hy@linkcounter=\count176 -\Hy@pagecounter=\count177 - ("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\pd1enc.def" -File: pd1enc.def 2020-05-15 v7.00e Hyperref: PDFDocEncoding definition (HO) -Now handling font encoding PD1 ... -... no UTF-8 mapping file for font encoding PD1 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/intcalc\intcalc.sty -Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/etexcmds\etexcmds.sty -Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) -) -\Hy@SavedSpaceFactor=\count178 -Package hyperref Info: Hyper figures OFF on input line 4464. -Package hyperref Info: Link nesting OFF on input line 4469. -Package hyperref Info: Hyper index ON on input line 4472. -Package hyperref Info: Plain pages OFF on input line 4479. -Package hyperref Info: Backreferencing OFF on input line 4484. -Package hyperref Info: Implicit mode ON; LaTeX internals redefined. -Package hyperref Info: Bookmarks ON on input line 4717. -\c@Hy@tempcnt=\count179 -LaTeX Info: Redefining \url on input line 5076. -\XeTeXLinkMargin=\dimen136 - (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/bitset\bitset.sty -Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/bigintcalc\bigintcalc -.sty -Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO -) -)) -\Fld@menulength=\count180 -\Field@Width=\dimen137 -\Fld@charsize=\dimen138 -Package hyperref Info: Hyper figures OFF on input line 6347. -Package hyperref Info: Link nesting OFF on input line 6352. -Package hyperref Info: Hyper index ON on input line 6355. -Package hyperref Info: backreferencing OFF on input line 6362. -Package hyperref Info: Link coloring OFF on input line 6367. -Package hyperref Info: Link coloring with OCG OFF on input line 6372. -Package hyperref Info: PDF/A mode OFF on input line 6377. -LaTeX Info: Redefining \ref on input line 6417. -LaTeX Info: Redefining \pageref on input line 6421. - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/atbegshi\atbegshi.sty -Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) -) -\Hy@abspage=\count181 -\c@Item=\count182 -\c@Hfootnote=\count183 -) -Package hyperref Info: Driver (autodetected): hpdftex. - ("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hpdftex.def" -File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/atveryend\atveryend.sty -Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO) -Package atveryend Info: \enddocument detected (standard20110627). -) -\Fld@listcount=\count184 -\c@bookmark@seq@number=\count185 - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/rerunfilecheck\rerunfil -echeck.sty -Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/uniquecounter\uniquec -ounter.sty -Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) -) -Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 -86. -) -\Hy@SectionHShift=\skip50 -) ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsmath.sty" +("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsmath.sty" Package: amsmath 2020/01/20 v2.17e AMS math features -\@mathmargin=\skip51 +\@mathmargin=\skip63 For additional information on amsmath, use the `?' option. ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amstext.sty" @@ -169,103 +143,79 @@ Package: amstext 2000/06/29 v2.01 AMS text ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsgen.sty" File: amsgen.sty 1999/11/30 v2.0 generic functions \@emptytoks=\toks18 -\ex@=\dimen139 +\ex@=\dimen135 )) ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsbsy.sty" Package: amsbsy 1999/11/29 v1.2d Bold Symbols -\pmbraise@=\dimen140 +\pmbraise@=\dimen136 ) ("C:\Program Files\MiKTeX 2.9\tex/latex/amsmath\amsopn.sty" Package: amsopn 2016/03/08 v2.02 operator names ) -\inf@bad=\count186 +\inf@bad=\count177 LaTeX Info: Redefining \frac on input line 227. -\uproot@=\count187 -\leftroot@=\count188 +\uproot@=\count178 +\leftroot@=\count179 LaTeX Info: Redefining \overline on input line 389. -\classnum@=\count189 -\DOTSCASE@=\count190 +\classnum@=\count180 +\DOTSCASE@=\count181 LaTeX Info: Redefining \ldots on input line 486. LaTeX Info: Redefining \dots on input line 489. LaTeX Info: Redefining \cdots on input line 610. -\Mathstrutbox@=\box45 -\strutbox@=\box46 -\big@size=\dimen141 +\Mathstrutbox@=\box47 +\strutbox@=\box48 +\big@size=\dimen137 LaTeX Font Info: Redeclaring font encoding OML on input line 733. LaTeX Font Info: Redeclaring font encoding OMS on input line 734. -\macc@depth=\count191 -\c@MaxMatrixCols=\count192 +\macc@depth=\count182 +\c@MaxMatrixCols=\count183 \dotsspace@=\muskip17 -\c@parentequation=\count193 -\dspbrk@lvl=\count194 +\c@parentequation=\count184 +\dspbrk@lvl=\count185 \tag@help=\toks19 -\row@=\count195 -\column@=\count196 -\maxfields@=\count197 +\row@=\count186 +\column@=\count187 +\maxfields@=\count188 \andhelp@=\toks20 -\eqnshift@=\dimen142 -\alignsep@=\dimen143 -\tagshift@=\dimen144 -\tagwidth@=\dimen145 -\totwidth@=\dimen146 -\lineht@=\dimen147 +\eqnshift@=\dimen138 +\alignsep@=\dimen139 +\tagshift@=\dimen140 +\tagwidth@=\dimen141 +\totwidth@=\dimen142 +\lineht@=\dimen143 \@envbody=\toks21 -\multlinegap=\skip52 -\multlinetaggap=\skip53 +\multlinegap=\skip64 +\multlinetaggap=\skip65 \mathdisplay@stack=\toks22 LaTeX Info: Redefining \[ on input line 2859. LaTeX Info: Redefining \] on input line 2860. ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/booktabs\booktabs.sty Package: booktabs 2020/01/12 v1.61803398 Publication quality tables -\heavyrulewidth=\dimen148 -\lightrulewidth=\dimen149 -\cmidrulewidth=\dimen150 -\belowrulesep=\dimen151 -\belowbottomsep=\dimen152 -\aboverulesep=\dimen153 -\abovetopsep=\dimen154 -\cmidrulesep=\dimen155 -\cmidrulekern=\dimen156 -\defaultaddspace=\dimen157 -\@cmidla=\count198 -\@cmidlb=\count199 -\@aboverulesep=\dimen158 -\@belowrulesep=\dimen159 -\@thisruleclass=\count266 -\@lastruleclass=\count267 -\@thisrulewidth=\dimen160 +\heavyrulewidth=\dimen144 +\lightrulewidth=\dimen145 +\cmidrulewidth=\dimen146 +\belowrulesep=\dimen147 +\belowbottomsep=\dimen148 +\aboverulesep=\dimen149 +\abovetopsep=\dimen150 +\cmidrulesep=\dimen151 +\cmidrulekern=\dimen152 +\defaultaddspace=\dimen153 +\@cmidla=\count189 +\@cmidlb=\count190 +\@aboverulesep=\dimen154 +\@belowrulesep=\dimen155 +\@thisruleclass=\count191 +\@lastruleclass=\count192 +\@thisrulewidth=\dimen156 ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/multirow\multirow.sty Package: multirow 2019/05/31 v2.5 Span multiple rows of a table -\multirow@colwidth=\skip54 -\multirow@cntb=\count268 -\multirow@dima=\skip55 -\bigstrutjot=\dimen161 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/titling\titling.sty -Package: titling 2009/09/04 v2.1d maketitle typesetting -\thanksmarkwidth=\skip56 -\thanksmargin=\skip57 -\droptitle=\skip58 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\caption.sty -Package: caption 2020/09/02 v3.5a Customizing captions (AR) - -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\caption3.sty -Package: caption3 2020/08/30 v2.0 caption3 kernel (AR) -\captionmargin=\dimen162 -\captionmargin@=\dimen163 -\captionwidth=\dimen164 -\caption@tempdima=\dimen165 -\caption@indent=\dimen166 -\caption@parindent=\dimen167 -\caption@hangindent=\dimen168 -Package caption Info: Standard document class detected. -) -\c@caption@flags=\count269 -\c@continuedfloat=\count270 -Package caption Info: hyperref package is loaded. +\multirow@colwidth=\skip66 +\multirow@cntb=\count193 +\multirow@dima=\skip67 +\bigstrutjot=\dimen157 ) ("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\graphicx.sty" Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) @@ -284,98 +234,8 @@ Package graphics Info: Driver file: pdftex.def on input line 105. ("C:\Program Files\MiKTeX 2.9\tex/latex/graphics-def\pdftex.def" File: pdftex.def 2020/08/26 v1.2 Graphics/color driver for pdftex )) -\Gin@req@height=\dimen169 -\Gin@req@width=\dimen170 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\subcaption.sty -Package: subcaption 2020/08/23 v1.3g Sub-captions (AR) -\c@subfigure=\count271 -\c@subtable=\count272 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/filecontents\fileconten -ts.sty -Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT -eX document - - -Package filecontents Warning: This package is obsolete. Disabling it and -(filecontents) passing control to the filecontents environment -(filecontents) defined by the LaTeX kernel. - -) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/float\float.sty -Package: float 2001/11/08 v1.3d Float enhancements (AL) -\c@float@type=\count273 -\float@exts=\toks23 -\float@box=\box47 -\@float@everytoks=\toks24 -\@floatcapt=\box48 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/enumitem\enumitem.sty -Package: enumitem 2019/06/20 v3.9 Customized lists -\labelindent=\skip59 -\enit@outerparindent=\dimen171 -\enit@toks=\toks25 -\enit@inbox=\box49 -\enit@count@id=\count274 -\enitdp@description=\count275 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/threeparttable\threepar -ttable.sty -Package: threeparttable 2003/06/13 v 3.0 -\@tempboxb=\box50 -) ("C:\Program Files\MiKTeX 2.9\tex/latex/tools\longtable.sty" -Package: longtable 2020/01/07 v4.13 Multi-page Table package (DPC) -\LTleft=\skip60 -\LTright=\skip61 -\LTpre=\skip62 -\LTpost=\skip63 -\LTchunksize=\count276 -\LTcapwidth=\dimen172 -\LT@head=\box51 -\LT@firsthead=\box52 -\LT@foot=\box53 -\LT@lastfoot=\box54 -\LT@cols=\count277 -\LT@rows=\count278 -\c@LT@tables=\count279 -\c@LT@chunks=\count280 -\LT@p@ftn=\toks26 -) -("C:\Program Files\MiKTeX 2.9\tex/latex/tools\tabularx.sty" -Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) - -("C:\Program Files\MiKTeX 2.9\tex/latex/tools\array.sty" -Package: array 2019/08/31 v2.4l Tabular extension package (FMi) -\col@sep=\dimen173 -\ar@mcellbox=\box55 -\extrarowheight=\dimen174 -\NC@list=\toks27 -\extratabsurround=\skip64 -\backup@length=\skip65 -\ar@cellbox=\box56 -) -\TX@col@width=\dimen175 -\TX@old@table=\dimen176 -\TX@old@col=\dimen177 -\TX@target=\dimen178 -\TX@delta=\dimen179 -\TX@cols=\count281 -\TX@ftn=\toks28 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/appendix\appendix.sty -Package: appendix 2020/02/08 v1.2c extra appendix facilities -\c@@pps=\count282 -\c@@ppsavesec=\count283 -\c@@ppsaveapp=\count284 -) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/fancyvrb\fancyvrb.sty -Package: fancyvrb 2020/05/03 v3.6 verbatim text (tvz,hv) -\FV@CodeLineNo=\count285 -\FV@InFile=\read2 -\FV@TabBox=\box57 -\c@FancyVerbLine=\count286 -\FV@StepNumber=\count287 -\FV@OutFile=\write3 +\Gin@req@height=\dimen158 +\Gin@req@width=\dimen159 ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/adjustbox\adjustbox.sty Package: adjustbox 2020/08/19 v1.3 Adjusting TeX boxes (trim, clip, ...) @@ -384,10 +244,10 @@ Package: xkeyval 2014/12/03 v2.7a package option processing (HA) ("C:\Program Files\MiKTeX 2.9\tex/generic/xkeyval\xkeyval.tex" ("C:\Program Files\MiKTeX 2.9\tex/generic/xkeyval\xkvutils.tex" -\XKV@toks=\toks29 -\XKV@tempa@toks=\toks30 +\XKV@toks=\toks23 +\XKV@tempa@toks=\toks24 ) -\XKV@depth=\count288 +\XKV@depth=\count194 File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) )) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/adjustbox\adjcalc.sty @@ -400,49 +260,132 @@ Package: trimclip 2020/08/19 v1.2 Trim and clip general TeX material (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/collectbox\collectbox.s ty Package: collectbox 2012/05/17 v0.4b Collect macro arguments as boxes -\collectedbox=\box58 +\collectedbox=\box49 ) -\tc@llx=\dimen180 -\tc@lly=\dimen181 -\tc@urx=\dimen182 -\tc@ury=\dimen183 +\tc@llx=\dimen160 +\tc@lly=\dimen161 +\tc@urx=\dimen162 +\tc@ury=\dimen163 Package trimclip Info: Using driver 'tc-pdftex.def'. (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/adjustbox\tc-pdftex.def File: tc-pdftex.def 2019/01/04 v2.2 Clipping driver for pdftex )) -\adjbox@Width=\dimen184 -\adjbox@Height=\dimen185 -\adjbox@Depth=\dimen186 -\adjbox@Totalheight=\dimen187 -\adjbox@pwidth=\dimen188 -\adjbox@pheight=\dimen189 -\adjbox@pdepth=\dimen190 -\adjbox@ptotalheight=\dimen191 +\adjbox@Width=\dimen164 +\adjbox@Height=\dimen165 +\adjbox@Depth=\dimen166 +\adjbox@Totalheight=\dimen167 +\adjbox@pwidth=\dimen168 +\adjbox@pheight=\dimen169 +\adjbox@pdepth=\dimen170 +\adjbox@ptotalheight=\dimen171 (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/ifoddpage\ifoddpage.sty Package: ifoddpage 2016/04/23 v1.1 Conditionals for odd/even page detection -\c@checkoddpage=\count289 +\c@checkoddpage=\count195 ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/varwidth\varwidth.sty Package: varwidth 2009/03/30 ver 0.92; Variable-width minipages -\@vwid@box=\box59 -\sift@deathcycles=\count290 -\@vwid@loff=\dimen192 -\@vwid@roff=\dimen193 +\@vwid@box=\box50 +\sift@deathcycles=\count196 +\@vwid@loff=\dimen172 +\@vwid@roff=\dimen173 +)) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\caption.sty +Package: caption 2020/09/02 v3.5a Customizing captions (AR) + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\caption3.sty +Package: caption3 2020/08/30 v2.0 caption3 kernel (AR) +\captionmargin=\dimen174 +\captionmargin@=\dimen175 +\captionwidth=\dimen176 +\caption@tempdima=\dimen177 +\caption@indent=\dimen178 +\caption@parindent=\dimen179 +\caption@hangindent=\dimen180 +Package caption Info: KOMA-Script document class detected. + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\caption-koma.st +o +File: caption-koma.sto 2020/08/22 v2.0 Adaption of the caption package to the K +OMA-Script document classes (AR) )) +\c@caption@flags=\count197 +\c@continuedfloat=\count198 +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\subcaption.sty +Package: subcaption 2020/08/23 v1.3g Sub-captions (AR) +\c@subfigure=\count199 +\c@subtable=\count266 +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/filecontents\fileconten +ts.sty +Package: filecontents 2019/09/20 v1.5 Create an external file from within a LaT +eX document + + +Package filecontents Warning: This package is obsolete. Disabling it and +(filecontents) passing control to the filecontents environment +(filecontents) defined by the LaTeX kernel. + +) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/enumitem\enumitem.sty +Package: enumitem 2019/06/20 v3.9 Customized lists +\labelindent=\skip68 +\enit@outerparindent=\dimen181 +\enit@toks=\toks25 +\enit@inbox=\box51 +\enit@count@id=\count267 +\enitdp@description=\count268 +) ("C:\Program Files\MiKTeX 2.9\tex/latex/tools\tabularx.sty" +Package: tabularx 2020/01/15 v2.11c `tabularx' package (DPC) + +("C:\Program Files\MiKTeX 2.9\tex/latex/tools\array.sty" +Package: array 2019/08/31 v2.4l Tabular extension package (FMi) +\col@sep=\dimen182 +\ar@mcellbox=\box52 +\extrarowheight=\dimen183 +\NC@list=\toks26 +\extratabsurround=\skip69 +\backup@length=\skip70 +\ar@cellbox=\box53 +) +\TX@col@width=\dimen184 +\TX@old@table=\dimen185 +\TX@old@col=\dimen186 +\TX@target=\dimen187 +\TX@delta=\dimen188 +\TX@cols=\count269 +\TX@ftn=\toks27 +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/appendix\appendix.sty +Package: appendix 2020/02/08 v1.2c extra appendix facilities +\c@@pps=\count270 +\c@@ppsavesec=\count271 +\c@@ppsaveapp=\count272 +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/fancyvrb\fancyvrb.sty +Package: fancyvrb 2020/05/03 v3.6 verbatim text (tvz,hv) +\FV@CodeLineNo=\count273 +\FV@InFile=\read2 +\FV@TabBox=\box54 +\c@FancyVerbLine=\count274 +\FV@StepNumber=\count275 +\FV@OutFile=\write3 +) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/placeins\placeins.sty Package: placeins 2005/04/18 v 2.2 ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/preprint\authblk.sty Package: authblk 2001/02/27 1.3 (PWD) -\affilsep=\skip66 -\@affilsep=\skip67 -\c@Maxaffil=\count291 -\c@authors=\count292 -\c@affil=\count293 +\affilsep=\skip71 +\@affilsep=\skip72 +\c@Maxaffil=\count276 +\c@authors=\count277 +\c@affil=\count278 ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/pdflscape\pdflscape.sty Package: pdflscape 2019/12/05 v0.12 Display of landscape pages in PDF (HO) +("C:\Program Files\MiKTeX 2.9\tex/generic/iftex\iftex.sty" +Package: iftex 2020/03/06 v1.0d TeX engine tests +) ("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\lscape.sty" Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC) ) @@ -454,17 +397,17 @@ Package: rotating 2016/08/11 v2.16d rotated objects in LaTeX ("C:\Program Files\MiKTeX 2.9\tex/latex/base\ifthen.sty" Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) ) -\c@r@tfl@t=\count294 -\rotFPtop=\skip68 -\rotFPbot=\skip69 -\rot@float@box=\box60 -\rot@mess@toks=\toks31 +\c@r@tfl@t=\count279 +\rotFPtop=\skip73 +\rotFPbot=\skip74 +\rot@float@box=\box55 +\rot@mess@toks=\toks28 ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/makecell\makecell.sty Package: makecell 2009/08/03 V0.1e Managing of Tab Column Heads and Cells -\rotheadsize=\dimen194 -\c@nlinenum=\count295 -\TeXr@lab=\toks32 +\rotheadsize=\dimen189 +\c@nlinenum=\count280 +\TeXr@lab=\toks29 ) ("C:\Program Files\MiKTeX 2.9\tex/latex/graphics\color.sty" Package: color 2019/11/23 v1.2a Standard LaTeX Color (DPC) @@ -476,22 +419,32 @@ Package color Info: Driver file: pdftex.def on input line 147. ) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/colortbl\colortbl.sty Package: colortbl 2020/01/04 v1.0e Color table columns (DPC) -\everycr=\toks33 -\minrowclearance=\skip70 +\everycr=\toks30 +\minrowclearance=\skip75 +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/float\float.sty +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count281 +\float@exts=\toks31 +\float@box=\box56 +\@float@everytoks=\toks32 +\@floatcapt=\box57 ) +\@float@every@table=\toks33 + (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/csquotes\csquotes.sty Package: csquotes 2019-12-06 v5.2j context-sensitive quotations (JAW) ("C:\Program Files\MiKTeX 2.9\tex/latex/etoolbox\etoolbox.sty" Package: etoolbox 2020/08/24 v2.5j e-TeX tools for LaTeX (JAW) -\etb@tempcnta=\count296 -) -\csq@reset=\count297 -\csq@gtype=\count298 -\csq@glevel=\count299 -\csq@qlevel=\count300 -\csq@maxlvl=\count301 -\csq@tshold=\count302 +\etb@tempcnta=\count282 +) +\csq@reset=\count283 +\csq@gtype=\count284 +\csq@glevel=\count285 +\csq@qlevel=\count286 +\csq@maxlvl=\count287 +\csq@tshold=\count288 \csq@ltx@everypar=\toks34 (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/csquotes\csquotes.def @@ -507,69 +460,90 @@ Package csquotes Info: Enabling multilingual quotes. ) ("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\biblatex.sty" Package: biblatex 2020/08/23 v3.15a programmable bibliographies (PK/MW) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/logreq\logreq.sty +("C:\Program Files\MiKTeX 2.9\tex/generic/pdftexcmds\pdftexcmds.sty" +Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO +) + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/infwarerr\infwarerr.s +ty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/ltxcmds\ltxcmds.sty +Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/kvoptions\kvoptions.sty +Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/kvsetkeys\kvsetkeys.s +ty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +)) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/logreq\logreq.sty Package: logreq 2010/08/04 v1.0 xml request logger -\lrq@indent=\count303 +\lrq@indent=\count289 (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/logreq\logreq.def File: logreq.def 2010/08/04 v1.0 logreq spec v1.0 )) -\c@tabx@nest=\count304 -\c@listtotal=\count305 -\c@listcount=\count306 -\c@liststart=\count307 -\c@liststop=\count308 -\c@citecount=\count309 -\c@citetotal=\count310 -\c@multicitecount=\count311 -\c@multicitetotal=\count312 -\c@instcount=\count313 -\c@maxnames=\count314 -\c@minnames=\count315 -\c@maxitems=\count316 -\c@minitems=\count317 -\c@citecounter=\count318 -\c@maxcitecounter=\count319 -\c@savedcitecounter=\count320 -\c@uniquelist=\count321 -\c@uniquename=\count322 -\c@refsection=\count323 -\c@refsegment=\count324 -\c@maxextratitle=\count325 -\c@maxextratitleyear=\count326 -\c@maxextraname=\count327 -\c@maxextradate=\count328 -\c@maxextraalpha=\count329 -\c@abbrvpenalty=\count330 -\c@highnamepenalty=\count331 -\c@lownamepenalty=\count332 -\c@maxparens=\count333 -\c@parenlevel=\count334 -\blx@tempcnta=\count335 -\blx@tempcntb=\count336 -\blx@tempcntc=\count337 -\blx@maxsection=\count338 -\blx@maxsegment@0=\count339 -\blx@notetype=\count340 -\blx@parenlevel@text=\count341 -\blx@parenlevel@foot=\count342 -\blx@sectionciteorder@0=\count343 -\blx@entrysetcounter=\count344 -\blx@biblioinstance=\count345 -\labelnumberwidth=\skip71 -\labelalphawidth=\skip72 -\biblabelsep=\skip73 -\bibitemsep=\skip74 -\bibnamesep=\skip75 -\bibinitsep=\skip76 -\bibparsep=\skip77 -\bibhang=\skip78 +\c@tabx@nest=\count290 +\c@listtotal=\count291 +\c@listcount=\count292 +\c@liststart=\count293 +\c@liststop=\count294 +\c@citecount=\count295 +\c@citetotal=\count296 +\c@multicitecount=\count297 +\c@multicitetotal=\count298 +\c@instcount=\count299 +\c@maxnames=\count300 +\c@minnames=\count301 +\c@maxitems=\count302 +\c@minitems=\count303 +\c@citecounter=\count304 +\c@maxcitecounter=\count305 +\c@savedcitecounter=\count306 +\c@uniquelist=\count307 +\c@uniquename=\count308 +\c@refsection=\count309 +\c@refsegment=\count310 +\c@maxextratitle=\count311 +\c@maxextratitleyear=\count312 +\c@maxextraname=\count313 +\c@maxextradate=\count314 +\c@maxextraalpha=\count315 +\c@abbrvpenalty=\count316 +\c@highnamepenalty=\count317 +\c@lownamepenalty=\count318 +\c@maxparens=\count319 +\c@parenlevel=\count320 +\blx@tempcnta=\count321 +\blx@tempcntb=\count322 +\blx@tempcntc=\count323 +\blx@maxsection=\count324 +\blx@maxsegment@0=\count325 +\blx@notetype=\count326 +\blx@parenlevel@text=\count327 +\blx@parenlevel@foot=\count328 +\blx@sectionciteorder@0=\count329 +\blx@entrysetcounter=\count330 +\blx@biblioinstance=\count331 +\labelnumberwidth=\skip76 +\labelalphawidth=\skip77 +\biblabelsep=\skip78 +\bibitemsep=\skip79 +\bibnamesep=\skip80 +\bibinitsep=\skip81 +\bibparsep=\skip82 +\bibhang=\skip83 \blx@bcfin=\read3 \blx@bcfout=\write4 \blx@langwohyphens=\language79 -\c@mincomprange=\count346 -\c@maxcomprange=\count347 -\c@mincompwidth=\count348 +\c@mincomprange=\count332 +\c@maxcomprange=\count333 +\c@mincompwidth=\count334 Package biblatex Info: Trying to load biblatex default data model... Package biblatex Info: ... file 'blx-dm.def' found. @@ -580,88 +554,88 @@ Package biblatex Info: Trying to load biblatex style data model... Package biblatex Info: ... file 'authoryear.dbx' not found. Package biblatex Info: Trying to load biblatex custom data model... Package biblatex Info: ... file 'biblatex-dm.cfg' not found. -\c@afterword=\count349 -\c@savedafterword=\count350 -\c@annotator=\count351 -\c@savedannotator=\count352 -\c@author=\count353 -\c@savedauthor=\count354 -\c@bookauthor=\count355 -\c@savedbookauthor=\count356 -\c@commentator=\count357 -\c@savedcommentator=\count358 -\c@editor=\count359 -\c@savededitor=\count360 -\c@editora=\count361 -\c@savededitora=\count362 -\c@editorb=\count363 -\c@savededitorb=\count364 -\c@editorc=\count365 -\c@savededitorc=\count366 -\c@foreword=\count367 -\c@savedforeword=\count368 -\c@holder=\count369 -\c@savedholder=\count370 -\c@introduction=\count371 -\c@savedintroduction=\count372 -\c@namea=\count373 -\c@savednamea=\count374 -\c@nameb=\count375 -\c@savednameb=\count376 -\c@namec=\count377 -\c@savednamec=\count378 -\c@translator=\count379 -\c@savedtranslator=\count380 -\c@shortauthor=\count381 -\c@savedshortauthor=\count382 -\c@shorteditor=\count383 -\c@savedshorteditor=\count384 -\c@labelname=\count385 -\c@savedlabelname=\count386 -\c@institution=\count387 -\c@savedinstitution=\count388 -\c@lista=\count389 -\c@savedlista=\count390 -\c@listb=\count391 -\c@savedlistb=\count392 -\c@listc=\count393 -\c@savedlistc=\count394 -\c@listd=\count395 -\c@savedlistd=\count396 -\c@liste=\count397 -\c@savedliste=\count398 -\c@listf=\count399 -\c@savedlistf=\count400 -\c@location=\count401 -\c@savedlocation=\count402 -\c@organization=\count403 -\c@savedorganization=\count404 -\c@origlocation=\count405 -\c@savedoriglocation=\count406 -\c@origpublisher=\count407 -\c@savedorigpublisher=\count408 -\c@publisher=\count409 -\c@savedpublisher=\count410 -\c@language=\count411 -\c@savedlanguage=\count412 -\c@origlanguage=\count413 -\c@savedoriglanguage=\count414 -\c@pageref=\count415 -\c@savedpageref=\count416 -\shorthandwidth=\skip79 -\shortjournalwidth=\skip80 -\shortserieswidth=\skip81 -\shorttitlewidth=\skip82 -\shortauthorwidth=\skip83 -\shorteditorwidth=\skip84 -\locallabelnumberwidth=\skip85 -\locallabelalphawidth=\skip86 -\localshorthandwidth=\skip87 -\localshortjournalwidth=\skip88 -\localshortserieswidth=\skip89 -\localshorttitlewidth=\skip90 -\localshortauthorwidth=\skip91 -\localshorteditorwidth=\skip92 +\c@afterword=\count335 +\c@savedafterword=\count336 +\c@annotator=\count337 +\c@savedannotator=\count338 +\c@author=\count339 +\c@savedauthor=\count340 +\c@bookauthor=\count341 +\c@savedbookauthor=\count342 +\c@commentator=\count343 +\c@savedcommentator=\count344 +\c@editor=\count345 +\c@savededitor=\count346 +\c@editora=\count347 +\c@savededitora=\count348 +\c@editorb=\count349 +\c@savededitorb=\count350 +\c@editorc=\count351 +\c@savededitorc=\count352 +\c@foreword=\count353 +\c@savedforeword=\count354 +\c@holder=\count355 +\c@savedholder=\count356 +\c@introduction=\count357 +\c@savedintroduction=\count358 +\c@namea=\count359 +\c@savednamea=\count360 +\c@nameb=\count361 +\c@savednameb=\count362 +\c@namec=\count363 +\c@savednamec=\count364 +\c@translator=\count365 +\c@savedtranslator=\count366 +\c@shortauthor=\count367 +\c@savedshortauthor=\count368 +\c@shorteditor=\count369 +\c@savedshorteditor=\count370 +\c@labelname=\count371 +\c@savedlabelname=\count372 +\c@institution=\count373 +\c@savedinstitution=\count374 +\c@lista=\count375 +\c@savedlista=\count376 +\c@listb=\count377 +\c@savedlistb=\count378 +\c@listc=\count379 +\c@savedlistc=\count380 +\c@listd=\count381 +\c@savedlistd=\count382 +\c@liste=\count383 +\c@savedliste=\count384 +\c@listf=\count385 +\c@savedlistf=\count386 +\c@location=\count387 +\c@savedlocation=\count388 +\c@organization=\count389 +\c@savedorganization=\count390 +\c@origlocation=\count391 +\c@savedoriglocation=\count392 +\c@origpublisher=\count393 +\c@savedorigpublisher=\count394 +\c@publisher=\count395 +\c@savedpublisher=\count396 +\c@language=\count397 +\c@savedlanguage=\count398 +\c@origlanguage=\count399 +\c@savedoriglanguage=\count400 +\c@pageref=\count401 +\c@savedpageref=\count402 +\shorthandwidth=\skip84 +\shortjournalwidth=\skip85 +\shortserieswidth=\skip86 +\shorttitlewidth=\skip87 +\shortauthorwidth=\skip88 +\shorteditorwidth=\skip89 +\locallabelnumberwidth=\skip90 +\locallabelalphawidth=\skip91 +\localshorthandwidth=\skip92 +\localshortjournalwidth=\skip93 +\localshortserieswidth=\skip94 +\localshorttitlewidth=\skip95 +\localshortauthorwidth=\skip96 +\localshorteditorwidth=\skip97 Package biblatex Info: Trying to load compatibility code... Package biblatex Info: ... file 'blx-compat.def' found. @@ -673,8 +647,8 @@ Package: expl3 2020-09-03 L3 programming layer (loader) ("C:\Program Files\MiKTeX 2.9\tex/latex/l3backend\l3backend-pdftex.def" File: l3backend-pdftex.def 2020-09-01 L3 backend support: PDF output (pdfTeX) -\l__kernel_color_stack_int=\count417 -\l__pdf_internal_box=\box61 +\l__kernel_color_stack_int=\count403 +\l__pdf_internal_box=\box58 )) Package biblatex Info: expl3 (biblatex) 2020-09-03 L3 programming layer (loader) @@ -688,10 +662,10 @@ Package biblatex Info: ... file 'blx-case-expl3.def' found. Package: xparse 2020-05-15 L3 Experimental document command parser ("C:\Program Files\MiKTeX 2.9\tex/latex/l3packages/xparse\xparse-generic.tex" -\l__xparse_current_arg_int=\count418 -\g__xparse_grabber_int=\count419 -\l__xparse_m_args_int=\count420 -\l__xparse_v_nesting_int=\count421 +\l__xparse_current_arg_int=\count404 +\g__xparse_grabber_int=\count405 +\l__xparse_m_args_int=\count406 +\l__xparse_v_nesting_int=\count407 )) File: blx-case-expl3 2020/08/23 v3.15a expl3 case changing code for biblatex ) @@ -699,19 +673,19 @@ Package biblatex Info: Trying to load generic definitions... Package biblatex Info: ... file 'biblatex.def' found. ("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\biblatex.def" File: biblatex.def 2020/08/23 v3.15a biblatex compatibility (PK/MW) -\c@textcitecount=\count422 -\c@textcitetotal=\count423 -\c@textcitemaxnames=\count424 -\c@biburlbigbreakpenalty=\count425 -\c@biburlbreakpenalty=\count426 -\c@biburlnumpenalty=\count427 -\c@biburlucpenalty=\count428 -\c@biburllcpenalty=\count429 +\c@textcitecount=\count408 +\c@textcitetotal=\count409 +\c@textcitemaxnames=\count410 +\c@biburlbigbreakpenalty=\count411 +\c@biburlbreakpenalty=\count412 +\c@biburlnumpenalty=\count413 +\c@biburlucpenalty=\count414 +\c@biburllcpenalty=\count415 \biburlbigskip=\muskip18 \biburlnumskip=\muskip19 \biburlucskip=\muskip20 \biburllcskip=\muskip21 -\c@smartand=\count430 +\c@smartand=\count416 ) Package biblatex Info: Trying to load natbib compatibility... Package biblatex Info: ... file 'blx-natbib.def' found. @@ -731,8 +705,8 @@ Package biblatex Info: ... file 'standard.bbx' found. ("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex/bbx\standard.bbx" File: standard.bbx 2020/08/23 v3.15a biblatex bibliography style (PK/MW) -\c@bbx:relatedcount=\count431 -\c@bbx:relatedtotal=\count432 +\c@bbx:relatedcount=\count417 +\c@bbx:relatedtotal=\count418 )) Package biblatex Info: Trying to load citation style 'authoryear'... Package biblatex Info: ... file 'authoryear.cbx' found. @@ -753,82 +727,169 @@ Package biblatex Info: ... file 'biblatex.cfg' found. ("C:\Program Files\MiKTeX 2.9\tex/latex/biblatex\biblatex.cfg" File: biblatex.cfg )) -Package csquotes Info: Checking for multilingual support... -Package csquotes Info: ... none found. - +("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hyperref.sty" +Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX -Package csquotes Warning: No multilingual support. -(csquotes) Cannot enable multilingual quotes on input line 46. +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/kvdefinekeys\kvdefine +keys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/pdfescape\pdfescape.s +ty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/hycolor\hycolor.sty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/letltxmacro\letltxmacro +.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/auxhook\auxhook.sty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) +\@linkdim=\dimen190 +\Hy@linkcounter=\count419 +\Hy@pagecounter=\count420 -(main.aux) -\openout1 = `main.aux'. +("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\pd1enc.def" +File: pd1enc.def 2020-05-15 v7.00e Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/intcalc\intcalc.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/etexcmds\etexcmds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count421 +Package hyperref Info: Hyper figures OFF on input line 4464. +Package hyperref Info: Link nesting OFF on input line 4469. +Package hyperref Info: Hyper index ON on input line 4472. +Package hyperref Info: Plain pages OFF on input line 4479. +Package hyperref Info: Backreferencing OFF on input line 4484. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4717. +\c@Hy@tempcnt=\count422 +LaTeX Info: Redefining \url on input line 5076. +\XeTeXLinkMargin=\dimen191 + (C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/bitset\bitset.sty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) -LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 46. -LaTeX Font Info: ... okay on input line 46. -LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 46. -LaTeX Font Info: ... okay on input line 46. -LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 46. -LaTeX Font Info: ... okay on input line 46. -LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 46. -LaTeX Font Info: ... okay on input line 46. -LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 46. -LaTeX Font Info: ... okay on input line 46. -LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 46. -LaTeX Font Info: ... okay on input line 46. -LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 46. -LaTeX Font Info: ... okay on input line 46. -LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 46. -LaTeX Font Info: ... okay on input line 46. -\AtBeginShipoutBox=\box62 -Package hyperref Info: Link coloring OFF on input line 46. - ("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\nameref.sty" -Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/bigintcalc\bigintcalc +.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO +) +)) +\Fld@menulength=\count423 +\Field@Width=\dimen192 +\Fld@charsize=\dimen193 +Package hyperref Info: Hyper figures OFF on input line 6347. +Package hyperref Info: Link nesting OFF on input line 6352. +Package hyperref Info: Hyper index ON on input line 6355. +Package hyperref Info: backreferencing OFF on input line 6362. +Package hyperref Info: Link coloring OFF on input line 6367. +Package hyperref Info: Link coloring with OCG OFF on input line 6372. +Package hyperref Info: PDF/A mode OFF on input line 6377. +LaTeX Info: Redefining \ref on input line 6417. +LaTeX Info: Redefining \pageref on input line 6421. -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/refcount\refcount.sty -Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/atbegshi\atbegshi.sty +Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) ) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/gettitlestring\gettit -lestring.sty -Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +\Hy@abspage=\count424 +\c@Item=\count425 +\c@Hfootnote=\count426 ) -\c@section@level=\count433 +Package hyperref Info: Driver (autodetected): hpdftex. + ("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\hpdftex.def" +File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/atveryend\atveryend.sty +Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO) ) -LaTeX Info: Redefining \ref on input line 46. -LaTeX Info: Redefining \pageref on input line 46. -LaTeX Info: Redefining \nameref on input line 46. - (main.out) (main.out) -\@outlinefile=\write5 -\openout5 = `main.out'. +\Fld@listcount=\count427 +\c@bookmark@seq@number=\count428 -Package caption Info: Begin \AtBeginDocument code. -Package caption Info: float package is loaded. -Package caption Info: longtable package is loaded. +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/rerunfilecheck\rerunfil +echeck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) -(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/caption\ltcaption.sty -Package: ltcaption 2020/05/30 v1.4b longtable captions (AR) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/uniquecounter\uniquec +ounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) ) -Package caption Info: rotating package is loaded. -Package caption Info: threeparttable package is loaded. -Package caption Info: End \AtBeginDocument code. +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2 +86. +) +\Hy@SectionHShift=\skip98 +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/cleveref\cleveref.sty +Package: cleveref 2018/03/27 v0.21.4 Intelligent cross-referencing +Package cleveref Info: `hyperref' support loaded on input line 2370. +LaTeX Info: Redefining \cref on input line 2370. +LaTeX Info: Redefining \Cref on input line 2370. +LaTeX Info: Redefining \crefrange on input line 2370. +LaTeX Info: Redefining \Crefrange on input line 2370. +LaTeX Info: Redefining \cpageref on input line 2370. +LaTeX Info: Redefining \Cpageref on input line 2370. +LaTeX Info: Redefining \cpagerefrange on input line 2370. +LaTeX Info: Redefining \Cpagerefrange on input line 2370. +LaTeX Info: Redefining \labelcref on input line 2370. +LaTeX Info: Redefining \labelcpageref on input line 2370. +) +Package csquotes Info: Checking for multilingual support... +Package csquotes Info: ... none found. + + +Package csquotes Warning: No multilingual support. +(csquotes) Cannot enable multilingual quotes on input line 51. + +(main.aux) +\openout1 = `main.aux'. -("C:\Program Files\MiKTeX 2.9\tex/context/base/mkii\supp-pdf.mkii" +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 51. +LaTeX Font Info: ... okay on input line 51. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 51. +LaTeX Font Info: ... okay on input line 51. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 51. +LaTeX Font Info: ... okay on input line 51. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 51. +LaTeX Font Info: ... okay on input line 51. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 51. +LaTeX Font Info: ... okay on input line 51. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 51. +LaTeX Font Info: ... okay on input line 51. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 51. +LaTeX Font Info: ... okay on input line 51. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 51. +LaTeX Font Info: ... okay on input line 51. +Package scrbase Info: activating english \contentsname on input line 51. +Package scrbase Info: activating english \listfigurename on input line 51. +Package scrbase Info: activating english \listtablename on input line 51. + ("C:\Program Files\MiKTeX 2.9\tex/context/base/mkii\supp-pdf.mkii" [Loading MPS to PDF converter (version 2006.09.02).] -\scratchcounter=\count434 -\scratchdimen=\dimen195 -\scratchbox=\box63 -\nofMPsegments=\count435 -\nofMParguments=\count436 +\scratchcounter=\count429 +\scratchdimen=\dimen194 +\scratchbox=\box59 +\nofMPsegments=\count430 +\nofMParguments=\count431 \everyMPshowfont=\toks35 -\MPscratchCnt=\count437 -\MPscratchDim=\dimen196 -\MPnumerator=\count438 -\makeMPintoPDFobject=\count439 +\MPscratchCnt=\count432 +\MPscratchDim=\dimen195 +\MPnumerator=\count433 +\makeMPintoPDFobject=\count434 \everyMPtoPDFconversion=\toks36 ) ("C:\Program Files\MiKTeX 2.9\tex/latex/epstopdf-pkg\epstopdf-base.sty" Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 85. ) +Package caption Info: Begin \AtBeginDocument code. +Package caption Info: float package is loaded. +Package caption Info: hyperref package is loaded. +Package caption Info: rotating package is loaded. +Package caption Info: End \AtBeginDocument code. Package biblatex Info: Trying to load language 'english'... Package biblatex Info: ... file 'english.lbx' found. @@ -843,244 +904,1127 @@ Package biblatex Info: Automatic encoding selection. Package biblatex Info: Trying to load bibliographic data... Package biblatex Info: ... file 'main.bbl' found. (main.bbl) -Package biblatex Info: Reference section=0 on input line 46. -Package biblatex Info: Reference segment=0 on input line 46. +Package biblatex Info: Reference section=0 on input line 51. +Package biblatex Info: Reference segment=0 on input line 51. +\AtBeginShipoutBox=\box60 +Package hyperref Info: Link coloring OFF on input line 51. + +("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\nameref.sty" +Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/refcount\refcount.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/generic/gettitlestring\gettit +lestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count435 +) +LaTeX Info: Redefining \ref on input line 51. +LaTeX Info: Redefining \pageref on input line 51. +LaTeX Info: Redefining \nameref on input line 51. + (main.out) (main.out) +\@outlinefile=\write5 +\openout5 = `main.out'. + +Class scrartcl Info: loading recommended package `bookmark'. +(scrartcl) Using `bookmark' together with `hyperref' is recommended, +(scrartcl) because of handling of possible bookmark level gaps. +(scrartcl) You can avoid loading `bookmark' with KOMA-Script option +(scrartcl) `bookmarkpackage=false' before \begin{document} and +(scrartcl) you can avoid this message adding: +(scrartcl) \usepackage{bookmark} +(scrartcl) before \begin{document} on input line 51. + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/bookmark\bookmark.sty +Package: bookmark 2019/12/03 v1.28 PDF bookmarks (HO) + +(C:\Users\schubert\AppData\Roaming\MiKTeX\2.9\tex/latex/bookmark\bkm-pdftex.def +File: bkm-pdftex.def 2019/12/03 v1.28 bookmark driver for pdfTeX (HO) +Package auxhook Info: \AddLineBeginMainAux comes a little late, +(auxhook) because the main .aux file is already opened on input lin +e 168. +\BKM@id=\count436 +)) [1 -[1 {C:/Users/schubert/AppData/Local/MiKTeX/2.9/pdftex/config/pdftex.map}] (introduction.tex Package placeins Info: No floats held, on input line 1. -Underfull \hbox (badness 10000) in paragraph at lines 3--13 +Underfull \hbox (badness 10000) in paragraph at lines 3--16 [] [2 - Package placeins Info: Float barrier, from input line 1, processed on page 2, l ands on page 2. -]) (experimental_setup.tex -Package placeins Info: No floats held, on input line 1. - [3 -Package placeins Info: Float barrier, from input line 1, processed on page 3, l -ands on page 3. -] [4] [5] [6] -Underfull \hbox (badness 10000) in paragraph at lines 78--87 +] +Underfull \hbox (badness 10000) in paragraph at lines 17--24 [] -Underfull \hbox (badness 10000) in paragraph at lines 88--96 +Underfull \hbox (badness 10000) in paragraph at lines 25--36 [] -[7]) (results.tex +[3]) +Package placeins Info: No floats held, on input line 63. + (experimental_setup.tex Package placeins Info: No floats held, on input line 1. - [8 -Package placeins Info: Float barrier, from input line 1, processed on page 8, l -ands on page 8. + [4 +Package placeins Info: Float barrier, from input line 63, processed on page 4, +lands on page 4. +Package placeins Info: Float barrier, from input line 1, processed on page 4, l +ands on page 4. ] -<figures/gender/f1_scores_500.pdf, id=267, 867.24pt x 578.16pt> +Underfull \hbox (badness 10000) in paragraph at lines 18--27 + + [] + +[5] (tables/dataset.tex) +Underfull \hbox (badness 10000) in paragraph at lines 30--38 + + [] + +[6] [7] [8] [9] +Underfull \hbox (badness 10000) in paragraph at lines 106--108 + + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 109--110 + + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 117--121 + + [] + +[10] +Underfull \hbox (badness 10000) in paragraph at lines 122--124 + + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 125--127 + + [] + +[11]) +Package placeins Info: No floats held, on input line 65. + (results.tex +Package placeins Info: No floats held, on input line 1. +<figures/gender/f1_scores_500.pdf, id=243, 867.24pt x 578.16pt> File: figures/gender/f1_scores_500.pdf Graphic file (type pdf) <use figures/gender/f1_scores_500.pdf> Package pdftex.def Info: figures/gender/f1_scores_500.pdf used on input line 1 -8. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/age/f1_scores_500.pdf, id=268, 867.24pt x 578.16pt> +9. +(pdftex.def) Requested size: 204.94751pt x 136.6263pt. +<figures/age/f1_scores_500.pdf, id=244, 867.24pt x 578.16pt> File: figures/age/f1_scores_500.pdf Graphic file (type pdf) <use figures/age/f1_scores_500.pdf> -Package pdftex.def Info: figures/age/f1_scores_500.pdf used on input line 24. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. - [9 <./figures/gender/f1_scores_500.pdf> <./figures/age/f1_scores_500.pdf - -pdfTeX warning: pdflatex.exe (file ./figures/age/f1_scores_500.pdf): PDF inclus -ion: multiple pdfs with page group included in a single page ->] -<figures/gender/spearman_ext_500.pdf, id=394, 867.24pt x 578.16pt> +Package pdftex.def Info: figures/age/f1_scores_500.pdf used on input line 25. +(pdftex.def) Requested size: 204.94751pt x 136.6263pt. + [12 +Package placeins Info: Float barrier, from input line 65, processed on page 12, + lands on page 12. +Package placeins Info: Float barrier, from input line 1, processed on page 12, +lands on page 12. +] +<figures/gender/spearman_ext_500.pdf, id=261, 867.24pt x 578.16pt> File: figures/gender/spearman_ext_500.pdf Graphic file (type pdf) <use figures/gender/spearman_ext_500.pdf> Package pdftex.def Info: figures/gender/spearman_ext_500.pdf used on input lin -e 46. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/age/spearman_ext_500.pdf, id=395, 867.24pt x 578.16pt> +e 48. +(pdftex.def) Requested size: 204.94751pt x 136.6263pt. +<figures/age/spearman_ext_500.pdf, id=262, 867.24pt x 578.16pt> File: figures/age/spearman_ext_500.pdf Graphic file (type pdf) <use figures/age/spearman_ext_500.pdf> Package pdftex.def Info: figures/age/spearman_ext_500.pdf used on input line 5 -2. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. +4. +(pdftex.def) Requested size: 204.94751pt x 136.6263pt. + [13 <./figures/gender/f1_scores_500.pdf> <./figures/age/f1_scores_500.pdf -Underfull \hbox (badness 10000) in paragraph at lines 58--59 +pdfTeX warning: pdflatex.exe (file ./figures/age/f1_scores_500.pdf): PDF inclus +ion: multiple pdfs with page group included in a single page +>] +Underfull \hbox (badness 10000) in paragraph at lines 61--62 [] -(tables/gender/latex/results_gender_individual_baseline_500_f1_dist.tex) -(tables/age/latex/results_age_individual_baseline_500_f1_dist.tex) [10 <./figur -es/gender/spearman_ext_500.pdf> <./figures/age/spearman_ext_500.pdf + +Underfull \hbox (badness 10000) in paragraph at lines 69--70 + + [] + +[14 <./figures/gender/spearman_ext_500.pdf> <./figures/age/spearman_ext_500.pdf + pdfTeX warning: pdflatex.exe (file ./figures/age/spearman_ext_500.pdf): PDF inc lusion: multiple pdfs with page group included in a single page ->] [11] [12] (tables/gender/latex/results_gender_dwald_direct_500_f1_dist.tex) -(tables/age/latex/results_age_dwald_direct_500_f1_dist.tex) [13]) +>] +<figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_500_color_gender.pdf, id=512, 1073.15309pt x 27 +3.86314pt> +File: figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf Graphic file (type pd +f) +<use figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_500_color_gender.pdf> +Package pdftex.def Info: figures/gender/500/bars/proportions_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf u +sed on input line 76. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_wo +rd_emoticon_c_polarity_num_1_500_color_centered_age.pdf, id=513, 1073.15309pt x + 273.86314pt> +File: figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lem +ma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf Graphic file (type + pdf) +<use figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemm +a_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf> +Package pdftex.def Info: figures/age/500/bars/proportions_cumulated_dist_char_a +sis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf + used on input line 82. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. + +Underfull \hbox (badness 10000) in paragraph at lines 71--91 + + [] + +[15 <./figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep +_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf> <./figures/age/500/ +bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_pol +arity_num_1_500_color_centered_age.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/500/bars/proportions_cumulated +_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_cent +ered_age.pdf): PDF inclusion: multiple pdfs with page group included in a singl +e page +>] +<figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf, id=606, 939.49713pt x 25 +3.2549pt> +File: figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_d +ep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf Graphic file (type p +df) +<use figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_de +p_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf> +Package pdftex.def Info: figures/gender/500/confusion/confusion_cumulated_dist_ +char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf +used on input line 97. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf, id=607, 939.49713p +t x 253.2549pt> +File: figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_d +ep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf Graphic file ( +type pdf) +<use figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_de +p_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf> +Package pdftex.def Info: figures/gender/500/confusion/confusion_cumulated_dist_ +char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false +.pdf used on input line 103. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. + +Underfull \hbox (badness 10000) in paragraph at lines 111--114 + + [] + +[16] +<figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_500_mode_basic.pdf, id=620, 933.07605pt x 253.2 +549pt> +File: figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf Graphic file (type pdf) + +<use figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf> +Package pdftex.def Info: figures/age/500/confusion/confusion_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf use +d on input line 121. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf, id=621, 933.07605pt x + 253.2549pt> +File: figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf Graphic file (typ +e pdf) +<use figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf> +Package pdftex.def Info: figures/age/500/confusion/confusion_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pd +f used on input line 127. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +) +Package placeins Info: Must dump some floats on input line 67. + [17 +Package placeins Info: Float barrier, from input line 67, processed on page 17, + lands on page 17. + <./figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep +_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf> <./figures/gender/500 +/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c +_polarity_num_1_500_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/gender/500/confusion/confusion_cum +ulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode +_major_false.pdf): PDF inclusion: multiple pdfs with page group included in a s +ingle page +>] +Package placeins Info: Check again: on input line 67. +Package placeins Info: No floats held, on input line 67. + (robustness.tex +Package placeins Info: No floats held, on input line 1. + +Underfull \hbox (badness 10000) in paragraph at lines 6--9 + + [] + +(tables/gender/latex/results_gender_individual_baseline_500_f1_dist.tex) +Underfull \hbox (badness 10000) in paragraph at lines 12--18 + + [] + +[18 +Package placeins Info: Float barrier, from input line 67, processed on page 18, + lands on page 18. +Package placeins Info: Float barrier, from input line 1, processed on page 18, +lands on page 18. + <./figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf> <./figures/age/500/confu +sion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polar +ity_num_1_500_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/500/confusion/confusion_cumula +ted_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_ma +jor_false.pdf): PDF inclusion: multiple pdfs with page group included in a sing +le page +>] [19] (tables/age/latex/results_age_individual_baseline_500_f1_dist.tex) +Underfull \hbox (badness 10000) in paragraph at lines 24--27 + + [] + +[20] (tables/gender/latex/results_gender_dwald_direct_500_f1_dist.tex) +(tables/age/latex/results_age_dwald_direct_500_f1_dist.tex)) [21] +Package placeins Info: No floats held, on input line 69. + (discussion.tex Package placeins Info: No floats held, on input line 1. -) [14 -Package placeins Info: Float barrier, from input line 1, processed on page 14, -lands on page 14. -] [15] -Package placeins Info: No floats held, on input line 54. - [16 - -Package placeins Info: Float barrier, from input line 55, processed on page 16, - lands on page 16. + +Underfull \hbox (badness 10000) in paragraph at lines 2--9 + + [] + +[22 +Package placeins Info: Float barrier, from input line 69, processed on page 22, + lands on page 22. +Package placeins Info: Float barrier, from input line 1, processed on page 22, +lands on page 22. ] -Overfull \hbox (4.43237pt too wide) in paragraph at lines 55--55 -\OT1/cmtt/m/n/10.95 nachrichten . de / inhalt . polizei -[] als -[] bittsteller - -[] bei -[] straftaten -[] bitte -[] facebook -[] +Underfull \hbox (badness 10000) in paragraph at lines 10--15 + [] -[17] [18] -Package placeins Info: No floats held, on input line 58. - (appendix.tex -Package placeins Info: No floats held, on input line 9. +[23] +Underfull \hbox (badness 10000) in paragraph at lines 16--22 + + [] + + +Underfull \hbox (badness 10000) in paragraph at lines 23--24 + + [] + +) [24] +Package placeins Info: No floats held, on input line 72. + +Overfull \hbox (4.36052pt too wide) in paragraph at lines 73--73 +\OT1/cmr/m/n/10.95 tel-lec-tual abil-ity emerge early and in-flu-ence chil-dren +'s in-ter-ests". In: \OT1/cmr/m/it/10.95 Sci-ence \OT1/cmr/m/n/10.95 355.6323, + [] + +[25 + +Package placeins Info: Float barrier, from input line 73, processed on page 25, + lands on page 25. +] [26] +Overfull \hbox (15.90771pt too wide) in paragraph at lines 73--73 +[][]\OT1/cmr/m/n/10.95 Stuttgarter Nachrichten (2017). \OT1/cmr/m/it/10.95 Bitt +e, Face-book, Hilf uns\OT1/cmr/m/n/10.95 . \OT1/cmr/m/sc/10.95 url\OT1/cmr/m/n/ +10.95 : []$\OT1/cmtt/m/n/10.95 https : / / www . stuttgarter -[] + [] + +[27] [28] + +Class scrartcl Warning: You are using `\begin{appendix}...\end{appendix}'. +(scrartcl) You should note, that `\appendix' is a mostly globally +(scrartcl) working command not an enviroment with only local +(scrartcl) effects. Therefore `\end{appendix}' will neither +(scrartcl) switch back to normal section numbering nor finish +(scrartcl) every other effect of `\begin{appendix}'. +(scrartcl) Nevertheless, some effects may end with +(scrartcl) `\end{appendix}' and the document may become +(scrartcl) inconsistent. +(scrartcl) Because of this, you should remove `\end{appendix}' +(scrartcl) and replace `\begin{appendix}' by command +(scrartcl) `\appendix' on input line 75. + +Package placeins Info: No floats held, on input line 76. +(appendix.tex +Package placeins Info: No floats held, on input line 8. (app_figures.tex -<figures/gender/f1_scores_100.pdf, id=580, 867.24pt x 578.16pt> +Package placeins Info: No floats held, on input line 2. +<figures/gender/f1_scores_100.pdf, id=818, 867.24pt x 578.16pt> File: figures/gender/f1_scores_100.pdf Graphic file (type pdf) <use figures/gender/f1_scores_100.pdf> -Package pdftex.def Info: figures/gender/f1_scores_100.pdf used on input line 6 +Package pdftex.def Info: figures/gender/f1_scores_100.pdf used on input line 8 . -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/age/f1_scores_100.pdf, id=581, 867.24pt x 578.16pt> +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +<figures/age/f1_scores_100.pdf, id=819, 867.24pt x 578.16pt> File: figures/age/f1_scores_100.pdf Graphic file (type pdf) <use figures/age/f1_scores_100.pdf> -Package pdftex.def Info: figures/age/f1_scores_100.pdf used on input line 12. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/gender/spearman_ext_100.pdf, id=582, 867.24pt x 578.16pt> +Package pdftex.def Info: figures/age/f1_scores_100.pdf used on input line 14. +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +<figures/gender/spearman_ext_100.pdf, id=820, 867.24pt x 578.16pt> File: figures/gender/spearman_ext_100.pdf Graphic file (type pdf) <use figures/gender/spearman_ext_100.pdf> Package pdftex.def Info: figures/gender/spearman_ext_100.pdf used on input lin -e 23. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/age/spearman_ext_100.pdf, id=583, 867.24pt x 578.16pt> +e 26. +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +<figures/age/spearman_ext_100.pdf, id=821, 867.24pt x 578.16pt> File: figures/age/spearman_ext_100.pdf Graphic file (type pdf) <use figures/age/spearman_ext_100.pdf> -Package pdftex.def Info: figures/age/spearman_ext_100.pdf used on input line 2 -9. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/gender/f1_scores_250.pdf, id=584, 867.24pt x 578.16pt> +Package pdftex.def Info: figures/age/spearman_ext_100.pdf used on input line 3 +2. +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +<figures/gender/f1_scores_250.pdf, id=822, 867.24pt x 578.16pt> File: figures/gender/f1_scores_250.pdf Graphic file (type pdf) <use figures/gender/f1_scores_250.pdf> Package pdftex.def Info: figures/gender/f1_scores_250.pdf used on input line 4 -0. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/age/f1_scores_250.pdf, id=585, 867.24pt x 578.16pt> +4. +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +<figures/age/f1_scores_250.pdf, id=823, 867.24pt x 578.16pt> File: figures/age/f1_scores_250.pdf Graphic file (type pdf) <use figures/age/f1_scores_250.pdf> -Package pdftex.def Info: figures/age/f1_scores_250.pdf used on input line 46. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/gender/spearman_ext_250.pdf, id=586, 867.24pt x 578.16pt> +Package pdftex.def Info: figures/age/f1_scores_250.pdf used on input line 50. +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +<figures/gender/spearman_ext_250.pdf, id=824, 867.24pt x 578.16pt> File: figures/gender/spearman_ext_250.pdf Graphic file (type pdf) <use figures/gender/spearman_ext_250.pdf> Package pdftex.def Info: figures/gender/spearman_ext_250.pdf used on input lin -e 57. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -<figures/age/spearman_ext_250.pdf, id=587, 867.24pt x 578.16pt> +e 61. +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +<figures/age/spearman_ext_250.pdf, id=825, 867.24pt x 578.16pt> File: figures/age/spearman_ext_250.pdf Graphic file (type pdf) <use figures/age/spearman_ext_250.pdf> Package pdftex.def Info: figures/age/spearman_ext_250.pdf used on input line 6 -3. -(pdftex.def) Requested size: 221.95676pt x 147.97139pt. -) -Package placeins Info: Must dump some floats on input line 11. - [19 - -Package placeins Info: Float barrier, from input line 58, processed on page 19, - lands on page 19. -Package placeins Info: Float barrier, from input line 9, processed on page 19, -lands on page 19. -Package placeins Info: Float barrier, from input line 11, processed on page 19, - lands on page 19. +7. +(pdftex.def) Requested size: 292.7776pt x 195.18674pt. +Package placeins Info: Must dump some floats on input line 76. + [29 + +Package placeins Info: Float barrier, from input line 76, processed on page 29, + lands on page 29. +Package placeins Info: Float barrier, from input line 8, processed on page 29, +lands on page 29. +Package placeins Info: Float barrier, from input line 2, processed on page 29, +lands on page 29. +Package placeins Info: Float barrier, from input line 76, processed on page 29, + lands on page 29. <./figures/gender/f1_scores_100.pdf> <./figures/age/f1_scores_100.pdf pdfTeX warning: pdflatex.exe (file ./figures/age/f1_scores_100.pdf): PDF inclus ion: multiple pdfs with page group included in a single page -> <./figures/gender/spearman_ext_100.pdf - -pdfTeX warning: pdflatex.exe (file ./figures/gender/spearman_ext_100.pdf): PDF -inclusion: multiple pdfs with page group included in a single page -> <./figures/age/spearman_ext_100.pdf +>] [30 <./figures/gender/spearman_ext_100.pdf> <./figures/age/spearman_ext_100. +pdf pdfTeX warning: pdflatex.exe (file ./figures/age/spearman_ext_100.pdf): PDF inc lusion: multiple pdfs with page group included in a single page ->] [20 <./figures/gender/f1_scores_250.pdf> <./figures/age/f1_scores_250.pdf +>] [31 <./figures/gender/f1_scores_250.pdf> <./figures/age/f1_scores_250.pdf pdfTeX warning: pdflatex.exe (file ./figures/age/f1_scores_250.pdf): PDF inclus ion: multiple pdfs with page group included in a single page -> <./figures/gender/spearman_ext_250.pdf - -pdfTeX warning: pdflatex.exe (file ./figures/gender/spearman_ext_250.pdf): PDF -inclusion: multiple pdfs with page group included in a single page -> <./figures/age/spearman_ext_250.pdf +>] [32 <./figures/gender/spearman_ext_250.pdf> <./figures/age/spearman_ext_250. +pdf pdfTeX warning: pdflatex.exe (file ./figures/age/spearman_ext_250.pdf): PDF inc lusion: multiple pdfs with page group included in a single page >] -Package placeins Info: Check again: on input line 11. -Package placeins Info: No floats held, on input line 11. +Package placeins Info: Check again: on input line 76. +Package placeins Info: No floats held, on input line 76. +<figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_100_color_gender.pdf, id=1298, 1073.15309pt x 2 +73.86314pt> +File: figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf Graphic file (type pd +f) +<use figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_100_color_gender.pdf> +Package pdftex.def Info: figures/gender/100/bars/proportions_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_gender.pdf u +sed on input line 85. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_wo +rd_emoticon_c_polarity_num_1_100_color_centered_age.pdf, id=1299, 1073.15309pt +x 273.86314pt> +File: figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lem +ma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf Graphic file (type + pdf) +<use figures/age/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemm +a_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf> +Package pdftex.def Info: figures/age/100/bars/proportions_cumulated_dist_char_a +sis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_centered_age.pdf + used on input line 91. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_250_color_gender.pdf, id=1300, 1073.15309pt x 2 +73.86314pt> +File: figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf Graphic file (type pd +f) +<use figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_250_color_gender.pdf> +Package pdftex.def Info: figures/gender/250/bars/proportions_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf u +sed on input line 103. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_wo +rd_emoticon_c_polarity_num_1_250_color_centered_age.pdf, id=1301, 1073.15309pt +x 273.86314pt> +File: figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lem +ma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf Graphic file (type + pdf) +<use figures/age/250/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemm +a_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf> +Package pdftex.def Info: figures/age/250/bars/proportions_cumulated_dist_char_a +sis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_centered_age.pdf + used on input line 109. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_10 +0_color_gender.pdf, id=1302, 1073.15309pt x 273.86314pt> +File: figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1 +_2_100_color_gender.pdf Graphic file (type pdf) +<use figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_ +2_100_color_gender.pdf> +Package pdftex.def Info: figures/gender/100/bars/proportions_cumulated_dist_cha +r_asis_lemma_word_1_2_100_color_gender.pdf used on input line 122. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_100_c +olor_centered_age.pdf, id=1303, 1073.15309pt x 273.86314pt> +File: figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_ +100_color_centered_age.pdf Graphic file (type pdf) +<use figures/age/100/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_1 +00_color_centered_age.pdf> +Package pdftex.def Info: figures/age/100/bars/proportions_cumulated_dist_char_a +sis_lemma_word_1_2_100_color_centered_age.pdf used on input line 128. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_25 +0_color_gender.pdf, id=1304, 1073.15309pt x 273.86314pt> +File: figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1 +_2_250_color_gender.pdf Graphic file (type pdf) +<use figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_ +2_250_color_gender.pdf> +Package pdftex.def Info: figures/gender/250/bars/proportions_cumulated_dist_cha +r_asis_lemma_word_1_2_250_color_gender.pdf used on input line 140. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_250_c +olor_centered_age.pdf, id=1305, 1073.15309pt x 273.86314pt> +File: figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_ +250_color_centered_age.pdf Graphic file (type pdf) +<use figures/age/250/bars/proportions_cumulated_dist_char_asis_lemma_word_1_2_2 +50_color_centered_age.pdf> +Package pdftex.def Info: figures/age/250/bars/proportions_cumulated_dist_char_a +sis_lemma_word_1_2_250_color_centered_age.pdf used on input line 146. +(pdftex.def) Requested size: 334.60571pt x 85.38979pt. +<figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf, id=1306, 939.49713pt x 2 +53.2549pt> +File: figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_d +ep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf Graphic file (type p +df) +<use figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_de +p_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf> +Package pdftex.def Info: figures/gender/100/confusion/confusion_cumulated_dist_ +char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf +used on input line 160. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf, id=1307, 939.49713 +pt x 253.2549pt> +File: figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_d +ep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf Graphic file ( +type pdf) +<use figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_de +p_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf> +Package pdftex.def Info: figures/gender/100/confusion/confusion_cumulated_dist_ +char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false +.pdf used on input line 166. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf, id=1308, 939.49713pt x 2 +53.2549pt> +File: figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_d +ep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf Graphic file (type p +df) +<use figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_de +p_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf> +Package pdftex.def Info: figures/gender/250/confusion/confusion_cumulated_dist_ +char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf +used on input line 179. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf, id=1309, 939.49713 +pt x 253.2549pt> +File: figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_d +ep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf Graphic file ( +type pdf) +<use figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_de +p_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf> +Package pdftex.def Info: figures/gender/250/confusion/confusion_cumulated_dist_ +char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false +.pdf used on input line 185. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_100_mode_basic.pdf, id=1310, 933.07605pt x 253. +2549pt> +File: figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf Graphic file (type pdf) + +<use figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf> +Package pdftex.def Info: figures/age/100/confusion/confusion_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf use +d on input line 198. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf, id=1311, 933.07605pt +x 253.2549pt> +File: figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf Graphic file (typ +e pdf) +<use figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_100_mode_major_false.pdf> +Package pdftex.def Info: figures/age/100/confusion/confusion_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_major_false.pd +f used on input line 204. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_250_mode_basic.pdf, id=1312, 933.07605pt x 253. +2549pt> +File: figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf Graphic file (type pdf) + +<use figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf> +Package pdftex.def Info: figures/age/250/confusion/confusion_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf use +d on input line 217. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma +_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf, id=1313, 933.07605pt +x 253.2549pt> +File: figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_ +lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf Graphic file (typ +e pdf) +<use figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_l +emma_word_emoticon_c_polarity_num_1_250_mode_major_false.pdf> +Package pdftex.def Info: figures/age/250/confusion/confusion_cumulated_dist_cha +r_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_major_false.pd +f used on input line 223. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2 +_100_mode_basic.pdf, id=1314, 939.49713pt x 253.2549pt> +File: figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_wor +d_1_2_100_mode_basic.pdf Graphic file (type pdf) +<use figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word +_1_2_100_mode_basic.pdf> +Package pdftex.def Info: figures/gender/100/confusion/confusion_cumulated_dist_ +char_asis_lemma_word_1_2_100_mode_basic.pdf used on input line 236. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2 +_100_mode_major_false.pdf, id=1315, 939.49713pt x 253.2549pt> +File: figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_wor +d_1_2_100_mode_major_false.pdf Graphic file (type pdf) +<use figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma_word +_1_2_100_mode_major_false.pdf> +Package pdftex.def Info: figures/gender/100/confusion/confusion_cumulated_dist_ +char_asis_lemma_word_1_2_100_mode_major_false.pdf used on input line 242. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2 +_250_mode_basic.pdf, id=1316, 939.49713pt x 253.2549pt> +File: figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_wor +d_1_2_250_mode_basic.pdf Graphic file (type pdf) +<use figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word +_1_2_250_mode_basic.pdf> +Package pdftex.def Info: figures/gender/250/confusion/confusion_cumulated_dist_ +char_asis_lemma_word_1_2_250_mode_basic.pdf used on input line 255. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2 +_250_mode_major_false.pdf, id=1317, 939.49713pt x 253.2549pt> +File: figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_wor +d_1_2_250_mode_major_false.pdf Graphic file (type pdf) +<use figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma_word +_1_2_250_mode_major_false.pdf> +Package pdftex.def Info: figures/gender/250/confusion/confusion_cumulated_dist_ +char_asis_lemma_word_1_2_250_mode_major_false.pdf used on input line 261. +(pdftex.def) Requested size: 334.60571pt x 90.19786pt. +<figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_10 +0_mode_basic.pdf, id=1318, 933.07605pt x 253.2549pt> +File: figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1 +_2_100_mode_basic.pdf Graphic file (type pdf) +<use figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_ +2_100_mode_basic.pdf> +Package pdftex.def Info: figures/age/100/confusion/confusion_cumulated_dist_cha +r_asis_lemma_word_1_2_100_mode_basic.pdf used on input line 277. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_10 +0_mode_major_false.pdf, id=1319, 933.07605pt x 253.2549pt> +File: figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1 +_2_100_mode_major_false.pdf Graphic file (type pdf) +<use figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_ +2_100_mode_major_false.pdf> +Package pdftex.def Info: figures/age/100/confusion/confusion_cumulated_dist_cha +r_asis_lemma_word_1_2_100_mode_major_false.pdf used on input line 283. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_25 +0_mode_basic.pdf, id=1320, 933.07605pt x 253.2549pt> +File: figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1 +_2_250_mode_basic.pdf Graphic file (type pdf) +<use figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_ +2_250_mode_basic.pdf> +Package pdftex.def Info: figures/age/250/confusion/confusion_cumulated_dist_cha +r_asis_lemma_word_1_2_250_mode_basic.pdf used on input line 296. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +<figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_2_25 +0_mode_major_false.pdf, id=1321, 933.07605pt x 253.2549pt> +File: figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1 +_2_250_mode_major_false.pdf Graphic file (type pdf) +<use figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_word_1_ +2_250_mode_major_false.pdf> +Package pdftex.def Info: figures/age/250/confusion/confusion_cumulated_dist_cha +r_asis_lemma_word_1_2_250_mode_major_false.pdf used on input line 302. +(pdftex.def) Requested size: 334.60571pt x 90.81616pt. +) [33 +Package placeins Info: Float barrier, from input line 76, processed on page 33, + lands on page 33. + + <./figures/gender/100/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_le +mma_word_emoticon_c_polarity_num_1_100_color_gender.pdf> <./figures/age/100/bar +s/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polari +ty_num_1_100_color_centered_age.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/100/bars/proportions_cumulated +_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_color_cent +ered_age.pdf): PDF inclusion: multiple pdfs with page group included in a singl +e page +>] [34 <./figures/gender/250/bars/proportions_cumulated_dist_char_asis_pos_tag_ +dep_lemma_word_emoticon_c_polarity_num_1_250_color_gender.pdf> <./figures/age/2 +50/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_ +polarity_num_1_250_color_centered_age.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/250/bars/proportions_cumulated +_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_color_cent +ered_age.pdf): PDF inclusion: multiple pdfs with page group included in a singl +e page +>] [35 <./figures/gender/100/bars/proportions_cumulated_dist_char_asis_lemma_wo +rd_1_2_100_color_gender.pdf> <./figures/age/100/bars/proportions_cumulated_dist +_char_asis_lemma_word_1_2_100_color_centered_age.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/100/bars/proportions_cumulated +_dist_char_asis_lemma_word_1_2_100_color_centered_age.pdf): PDF inclusion: mult +iple pdfs with page group included in a single page +>] [36 <./figures/gender/250/bars/proportions_cumulated_dist_char_asis_lemma_wo +rd_1_2_250_color_gender.pdf> <./figures/age/250/bars/proportions_cumulated_dist +_char_asis_lemma_word_1_2_250_color_centered_age.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/250/bars/proportions_cumulated +_dist_char_asis_lemma_word_1_2_250_color_centered_age.pdf): PDF inclusion: mult +iple pdfs with page group included in a single page +>] [37 <./figures/gender/100/confusion/confusion_cumulated_dist_char_asis_pos_t +ag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf> <./figures/gend +er/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emot +icon_c_polarity_num_1_100_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/gender/100/confusion/confusion_cum +ulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode +_major_false.pdf): PDF inclusion: multiple pdfs with page group included in a s +ingle page +>] [38 <./figures/gender/250/confusion/confusion_cumulated_dist_char_asis_pos_t +ag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf> <./figures/gend +er/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emot +icon_c_polarity_num_1_250_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/gender/250/confusion/confusion_cum +ulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode +_major_false.pdf): PDF inclusion: multiple pdfs with page group included in a s +ingle page +>] [39 <./figures/age/100/confusion/confusion_cumulated_dist_char_asis_pos_tag_ +dep_lemma_word_emoticon_c_polarity_num_1_100_mode_basic.pdf> <./figures/age/100 +/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c +_polarity_num_1_100_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/100/confusion/confusion_cumula +ted_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_100_mode_ma +jor_false.pdf): PDF inclusion: multiple pdfs with page group included in a sing +le page +>] [40 <./figures/age/250/confusion/confusion_cumulated_dist_char_asis_pos_tag_ +dep_lemma_word_emoticon_c_polarity_num_1_250_mode_basic.pdf> <./figures/age/250 +/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c +_polarity_num_1_250_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/250/confusion/confusion_cumula +ted_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_250_mode_ma +jor_false.pdf): PDF inclusion: multiple pdfs with page group included in a sing +le page +>] [41 <./figures/gender/100/confusion/confusion_cumulated_dist_char_asis_lemma +_word_1_2_100_mode_basic.pdf> <./figures/gender/100/confusion/confusion_cumulat +ed_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/gender/100/confusion/confusion_cum +ulated_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf): PDF inclusion: +multiple pdfs with page group included in a single page +>] [42 <./figures/gender/250/confusion/confusion_cumulated_dist_char_asis_lemma +_word_1_2_250_mode_basic.pdf> <./figures/gender/250/confusion/confusion_cumulat +ed_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/gender/250/confusion/confusion_cum +ulated_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf): PDF inclusion: +multiple pdfs with page group included in a single page +>] [43 <./figures/age/100/confusion/confusion_cumulated_dist_char_asis_lemma_wo +rd_1_2_100_mode_basic.pdf> <./figures/age/100/confusion/confusion_cumulated_dis +t_char_asis_lemma_word_1_2_100_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/100/confusion/confusion_cumula +ted_dist_char_asis_lemma_word_1_2_100_mode_major_false.pdf): PDF inclusion: mul +tiple pdfs with page group included in a single page +>] [44 <./figures/age/250/confusion/confusion_cumulated_dist_char_asis_lemma_wo +rd_1_2_250_mode_basic.pdf> <./figures/age/250/confusion/confusion_cumulated_dis +t_char_asis_lemma_word_1_2_250_mode_major_false.pdf + +pdfTeX warning: pdflatex.exe (file ./figures/age/250/confusion/confusion_cumula +ted_dist_char_asis_lemma_word_1_2_250_mode_major_false.pdf): PDF inclusion: mul +tiple pdfs with page group included in a single page +>] +Package placeins Info: No floats held, on input line 12. +Package placeins Info: No floats held, on input line 13. (app_tables.tex +Package placeins Info: No floats held, on input line 3. + (tables/train_dataset.texpdfTeX warning (ext4): destination with the same iden +tifier (name{table.1}) has been already used, duplicate ignored +<to be read again> + \relax +l.29 \end{table} + ) (tables/val_dataset.texpdfTeX warning (ext4): destination wit +h the same identifier (name{table.2}) has been already used, duplicate ignored +<to be read again> + \relax +l.29 \end{table} + ) (tables/test_dataset.texpdfTeX warning (ext4): destination wi +th the same identifier (name{table.3}) has been already used, duplicate ignored + +<to be read again> + \relax +l.29 \end{table} + ) +Package placeins Info: Must dump some floats on input line 9. + [45 + +Package placeins Info: Float barrier, from input line 12, processed on page 45, + lands on page 45. +Package placeins Info: Float barrier, from input line 13, processed on page 45, + lands on page 45. +Package placeins Info: Float barrier, from input line 3, processed on page 45, +lands on page 45. +Package placeins Info: Float barrier, from input line 9, processed on page 45, +lands on page 45. +] +Package placeins Info: Check again: on input line 9. +Package placeins Info: No floats held, on input line 9. + [46] +(tables/gender/latex/results_gender_individual_baseline_100_acc.texpdfTeX warni +ng (ext4): destination with the same identifier (name{table.4}) has been alread +y used, duplicate ignored +<to be read again> + \relax +l.52 \end{table} + ) +(tables/gender/latex/results_gender_individual_baseline_100_dist.texpdfTeX warn +ing (ext4): destination with the same identifier (name{table.5}) has been alrea +dy used, duplicate ignored +<to be read again> + \relax +l.52 \end{table} + ) (tables/age/latex/results_age_individual_baseline_100_acc.tex +) (tables/age/latex/results_age_individual_baseline_100_dist.tex) +Package placeins Info: Must dump some floats on input line 20. + [47 +Package placeins Info: Float barrier, from input line 9, processed on page 46, +lands on page 47. + +Package placeins Info: Float barrier, from input line 20, processed on page 47, + lands on page 47. +] +Package placeins Info: Check again: on input line 20. + + +Package placeins Warning: Some floats are stuck, on input line 20. + +[48] [49] [50] (tables/gender/latex/results_gender_individual_baseline_250_acc.tex) (tables/gender/latex/results_gender_individual_baseline_250_dist.tex) -(tables/gender/latex/results_gender_dwald_dynAA_500_f1_dist.tex) (tables/age/latex/results_age_individual_baseline_250_acc.tex) (tables/age/latex/results_age_individual_baseline_250_dist.tex) -(tables/age/latex/results_age_dwald_dynAA_500_f1_dist.tex))) -Package atveryend Info: Empty hook `BeforeClearDocument' on input line 63. - [21 -Package placeins Info: Float barrier, from input line 11, processed on page 21, - lands on page 21. -] [22] [23] -[24] -Package atveryend Info: Empty hook `AfterLastShipout' on input line 63. +Package placeins Info: Must dump some floats on input line 28. + [51 +Package placeins Info: Float barrier, from input line 20, processed on page 48, + lands on page 51. + + +Package placeins Info: Float barrier, from input line 28, processed on page 51, + lands on page 51. +] +Package placeins Info: Check again: on input line 28. + + +Package placeins Warning: Some floats are stuck, on input line 28. + +[52] [53] [54] +(tables/gender/latex/results_gender_individual_baseline_500_acc.tex) +(tables/gender/latex/results_gender_individual_baseline_500_dist.tex) +(tables/age/latex/results_age_individual_baseline_500_acc.tex) +(tables/age/latex/results_age_individual_baseline_500_dist.tex) +Package placeins Info: Must dump some floats on input line 40. + [55 +Package placeins Info: Float barrier, from input line 28, processed on page 52, + lands on page 55. + + +Package placeins Info: Float barrier, from input line 40, processed on page 55, + lands on page 55. +] +Package placeins Info: Check again: on input line 40. + + +Package placeins Warning: Some floats are stuck, on input line 40. + +[56] [57] [58] (tables/gender/latex/results_gender_dwald_direct_100_acc.tex) +(tables/gender/latex/results_gender_dwald_direct_100_dist.tex) +(tables/age/latex/results_age_dwald_direct_100_acc.tex) +(tables/age/latex/results_age_dwald_direct_100_dist.tex) +Package placeins Info: Must dump some floats on input line 51. + [59 +Package placeins Info: Float barrier, from input line 40, processed on page 56, + lands on page 59. + + +Package placeins Info: Float barrier, from input line 51, processed on page 59, + lands on page 59. +] +Package placeins Info: Check again: on input line 51. +Package placeins Info: No floats held, on input line 51. + [60] +(tables/gender/latex/results_gender_dwald_direct_250_acc.tex) +(tables/gender/latex/results_gender_dwald_direct_250_dist.tex) +(tables/age/latex/results_age_dwald_direct_250_acc.tex) +(tables/age/latex/results_age_dwald_direct_250_dist.tex) +Package placeins Info: Must dump some floats on input line 61. + [61 +Package placeins Info: Float barrier, from input line 51, processed on page 60, + lands on page 61. + +Package placeins Info: Float barrier, from input line 61, processed on page 61, + lands on page 61. +] +Package placeins Info: Check again: on input line 61. +Package placeins Info: No floats held, on input line 61. + [62] +(tables/gender/latex/results_gender_dwald_direct_500_acc.tex) +(tables/gender/latex/results_gender_dwald_direct_500_dist.tex) +(tables/age/latex/results_age_dwald_direct_500_acc.tex) +(tables/age/latex/results_age_dwald_direct_500_dist.tex) +Package placeins Info: Must dump some floats on input line 71. + [63 +Package placeins Info: Float barrier, from input line 61, processed on page 62, + lands on page 63. + +Package placeins Info: Float barrier, from input line 71, processed on page 63, + lands on page 63. +] +Package placeins Info: Check again: on input line 71. +Package placeins Info: No floats held, on input line 71. + [64] +(tables/gender/latex/results_gender_dwald_dynAA_100_acc.tex) +(tables/gender/latex/results_gender_dwald_dynAA_100_dist.tex) +(tables/age/latex/results_age_dwald_dynAA_100_acc.tex) +(tables/age/latex/results_age_dwald_dynAA_100_dist.tex) +Package placeins Info: Must dump some floats on input line 84. + [65 +Package placeins Info: Float barrier, from input line 71, processed on page 64, + lands on page 65. + +Package placeins Info: Float barrier, from input line 84, processed on page 65, + lands on page 65. +] +Package placeins Info: Check again: on input line 84. +Package placeins Info: No floats held, on input line 84. + [66] +(tables/gender/latex/results_gender_dwald_dynAA_250_acc.tex) +(tables/gender/latex/results_gender_dwald_dynAA_250_dist.tex) +(tables/age/latex/results_age_dwald_dynAA_250_acc.tex) +(tables/age/latex/results_age_dwald_dynAA_250_dist.tex) +Package placeins Info: Must dump some floats on input line 94. + [67 +Package placeins Info: Float barrier, from input line 84, processed on page 66, + lands on page 67. + +Package placeins Info: Float barrier, from input line 94, processed on page 67, + lands on page 67. +] +Package placeins Info: Check again: on input line 94. +Package placeins Info: No floats held, on input line 94. + [68] +(tables/gender/latex/results_gender_dwald_dynAA_500_acc.tex) +(tables/gender/latex/results_gender_dwald_dynAA_500_dist.tex) +(tables/age/latex/results_age_dwald_dynAA_500_acc.tex) +(tables/age/latex/results_age_dwald_dynAA_500_dist.tex) +Package placeins Info: Must dump some floats on input line 103. + [69 +Package placeins Info: Float barrier, from input line 94, processed on page 68, + lands on page 69. + +Package placeins Info: Float barrier, from input line 103, processed on page 69 +, lands on page 69. +] +Package placeins Info: Check again: on input line 103. +Package placeins Info: No floats held, on input line 103. + [70] +(tables/gender/latex/results_gender_full_direct_100_acc.tex) +(tables/gender/latex/results_gender_full_direct_100_dist.tex) +(tables/age/latex/results_age_full_direct_100_acc.tex) +(tables/age/latex/results_age_full_direct_100_dist.tex) +Package placeins Info: Must dump some floats on input line 115. + [71 +Package placeins Info: Float barrier, from input line 103, processed on page 70 +, lands on page 71. + +Package placeins Info: Float barrier, from input line 115, processed on page 71 +, lands on page 71. +] +Package placeins Info: Check again: on input line 115. +Package placeins Info: No floats held, on input line 115. + [72] +(tables/gender/latex/results_gender_full_direct_250_acc.tex) +(tables/gender/latex/results_gender_full_direct_250_dist.tex) +(tables/age/latex/results_age_full_direct_250_acc.tex) +(tables/age/latex/results_age_full_direct_250_dist.tex) +Package placeins Info: Must dump some floats on input line 124. + [73 +Package placeins Info: Float barrier, from input line 115, processed on page 72 +, lands on page 73. + +Package placeins Info: Float barrier, from input line 124, processed on page 73 +, lands on page 73. +] +Package placeins Info: Check again: on input line 124. +Package placeins Info: No floats held, on input line 124. + [74] +(tables/gender/latex/results_gender_full_direct_500_acc.tex) +(tables/gender/latex/results_gender_full_direct_500_dist.tex) +(tables/age/latex/results_age_full_direct_500_acc.tex) +(tables/age/latex/results_age_full_direct_500_dist.tex) +Package placeins Info: Must dump some floats on input line 134. + [75 +Package placeins Info: Float barrier, from input line 124, processed on page 74 +, lands on page 75. + +Package placeins Info: Float barrier, from input line 134, processed on page 75 +, lands on page 75. +] +Package placeins Info: Check again: on input line 134. +Package placeins Info: No floats held, on input line 134. + [76] +(tables/gender/latex/results_gender_full_dynAA_100_acc.tex) +(tables/gender/latex/results_gender_full_dynAA_100_dist.tex) +(tables/age/latex/results_age_full_dynAA_100_acc.tex) +(tables/age/latex/results_age_full_dynAA_100_dist.tex) +Package placeins Info: Must dump some floats on input line 143. + [77 +Package placeins Info: Float barrier, from input line 134, processed on page 76 +, lands on page 77. + +Package placeins Info: Float barrier, from input line 143, processed on page 77 +, lands on page 77. +] +Package placeins Info: Check again: on input line 143. +Package placeins Info: No floats held, on input line 143. + [78] +(tables/gender/latex/results_gender_full_dynAA_250_acc.tex) +(tables/gender/latex/results_gender_full_dynAA_250_dist.tex) +(tables/age/latex/results_age_full_dynAA_250_acc.tex) +(tables/age/latex/results_age_full_dynAA_250_dist.tex) +Package placeins Info: Must dump some floats on input line 151. + [79 +Package placeins Info: Float barrier, from input line 143, processed on page 78 +, lands on page 79. + +Package placeins Info: Float barrier, from input line 151, processed on page 79 +, lands on page 79. +] +Package placeins Info: Check again: on input line 151. +Package placeins Info: No floats held, on input line 151. + [80] +(tables/gender/latex/results_gender_full_dynAA_500_acc.tex) +(tables/gender/latex/results_gender_full_dynAA_500_dist.tex) +(tables/age/latex/results_age_full_dynAA_500_acc.tex) +(tables/age/latex/results_age_full_dynAA_500_dist.tex))) +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 81. + [81 +Package placeins Info: Float barrier, from input line 151, processed on page 80 +, lands on page 81. + +] [82] +Package atveryend Info: Empty hook `AfterLastShipout' on input line 81. (main.aux) -Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 63. -Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 63. +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 81. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 81. Package rerunfilecheck Info: File `main.out' has not changed. -(rerunfilecheck) Checksum: 3BBCBD807148EFB3B668349C3E2D2D9E;689. +(rerunfilecheck) Checksum: D41D8CD98F00B204E9800998ECF8427E;0. Package logreq Info: Writing requests to 'main.run.xml'. \openout1 = `main.run.xml'. -Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 63. ) Here is how much of TeX's memory you used: - 18575 strings out of 481199 - 335970 string characters out of 2913464 - 1135454 words of memory out of 3000000 - 33696 multiletter control sequences out of 15000+200000 - 544180 words of font info for 61 fonts, out of 3000000 for 9000 + 23759 strings out of 481199 + 485494 string characters out of 2913464 + 1336060 words of memory out of 3000000 + 38496 multiletter control sequences out of 15000+200000 + 544390 words of font info for 62 fonts, out of 3000000 for 9000 1141 hyphenation exceptions out of 8191 - 43i,18n,67p,1912b,1544s stack positions out of 5000i,500n,10000p,200000b,50000s -pdfTeX warning (dest): name{Hfootnote.1} has been referenced but does not exi -st, replaced by a fixed one - - <C:\Users\schubert\AppData\Local\MiKTeX\2.9\fonts/pk/ljfour/jknappen/ec/dpi600 -\tcrm0600.pk> <C:\Users\schubert\AppData\Local\MiKTeX\2.9\fonts/pk/ljfour/jknap -pen/ec/dpi600\tcrm0800.pk><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfo -nts/cm/cmbx10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/c -mbx12.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmcsc10.p -fb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmmi10.pfb><C:/P -rogram Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmmi6.pfb><C:/Program Fi -les/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr10.pfb><C:/Program Files/MiKTe -X 2.9/fonts/type1/public/amsfonts/cm/cmr12.pfb><C:/Program Files/MiKTeX 2.9/fon -ts/type1/public/amsfonts/cm/cmr17.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/ -public/amsfonts/cm/cmr6.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/ams -fonts/cm/cmr8.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/c -mr9.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy10.pfb> -<C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmti10.pfb><C:/Prog -ram Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmtt10.pfb><C:/Program File -s/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmtt9.pfb> -Output written on main.pdf (24 pages, 556934 bytes). + 57i,19n,107p,10628b,1554s stack positions out of 5000i,500n,10000p,200000b,50000s +<C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmcsc10.pfb><C:/P +rogram Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmmi10.pfb><C:/Program F +iles/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmmi8.pfb><C:/Program Files/MiKT +eX 2.9/fonts/type1/public/amsfonts/cm/cmmi9.pfb><C:/Program Files/MiKTeX 2.9/fo +nts/type1/public/amsfonts/cm/cmr10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1 +/public/amsfonts/cm/cmr12.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/a +msfonts/cm/cmr6.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm +/cmr8.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmr9.pfb> +<C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmssbx10.pfb><C:/Pr +ogram Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy10.pfb><C:/Program Fi +les/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmsy6.pfb><C:/Program Files/MiKTe +X 2.9/fonts/type1/public/amsfonts/cm/cmsy8.pfb><C:/Program Files/MiKTeX 2.9/fon +ts/type1/public/amsfonts/cm/cmsy9.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/ +public/amsfonts/cm/cmti10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/a +msfonts/cm/cmti8.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/c +m/cmtt10.pfb><C:/Program Files/MiKTeX 2.9/fonts/type1/public/amsfonts/cm/cmtt9. +pfb> +Output written on main.pdf (82 pages, 1367479 bytes). PDF statistics: - 1145 PDF objects out of 1200 (max. 8388607) - 129 named destinations out of 1000 (max. 500000) - 165 words of extra memory for PDF output out of 10000 (max. 10000000) + 2642 PDF objects out of 2984 (max. 8388607) + 289 named destinations out of 1000 (max. 500000) + 507 words of extra memory for PDF output out of 10000 (max. 10000000) diff --git a/tex/main.out b/tex/main.out index 93ef75aa47473ed0852d2374548fae823b3b61ad..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 --- a/tex/main.out +++ b/tex/main.out @@ -1,13 +0,0 @@ -\BOOKMARK [1][-]{section.1}{Introduction}{}% 1 -\BOOKMARK [1][-]{section.2}{Experimental Design and Data}{}% 2 -\BOOKMARK [2][-]{subsection.2.1}{Experimental Setup}{section.2}% 3 -\BOOKMARK [2][-]{subsection.2.2}{Evaluation Measures}{section.2}% 4 -\BOOKMARK [2][-]{subsection.2.3}{Target}{section.2}% 5 -\BOOKMARK [2][-]{subsection.2.4}{Data}{section.2}% 6 -\BOOKMARK [1][-]{section.3}{Results}{}% 7 -\BOOKMARK [2][-]{subsection.3.1}{Baseline}{section.3}% 8 -\BOOKMARK [2][-]{subsection.3.2}{Cumulated}{section.3}% 9 -\BOOKMARK [1][-]{section.4}{Discussion}{}% 10 -\BOOKMARK [1][-]{section*.20}{Appendix}{}% 11 -\BOOKMARK [1][-]{appendix.A}{Figures}{}% 12 -\BOOKMARK [1][-]{appendix.B}{Tables}{}% 13 diff --git a/tex/main.pdf b/tex/main.pdf index 9a3577778ccb82904b454a45d6c2a54997d93c90..88516f1dbd5d79fe217000069e6b52f0978afaba 100644 Binary files a/tex/main.pdf and b/tex/main.pdf differ diff --git a/tex/main.synctex.gz b/tex/main.synctex.gz index fadf21f5cd13ac12c647b456b9e0b6adf51c193f..43f49441640bf65149a00ba262da48baa4cbdeb3 100644 Binary files a/tex/main.synctex.gz and b/tex/main.synctex.gz differ diff --git a/tex/main.tex b/tex/main.tex index a87a7c2cd69694651f6f923c4af83242ac464e4a..1969d6768ccc8efd94f13a6230e5d3ff9b47777e 100644 --- a/tex/main.tex +++ b/tex/main.tex @@ -1,20 +1,20 @@ % !TeX spellcheck = en_US -\documentclass[a4paper, 11pt]{article} +\documentclass[a4paper, 11pt]{scrartcl} \usepackage[utf8]{inputenc} -\usepackage{fullpage} % changes the margin +%\usepackage{fullpage} % changes the margin \usepackage{url} \usepackage{amsmath} \usepackage{booktabs} \usepackage{multirow} -\usepackage{titling} -\usepackage{caption} \usepackage{graphicx} \usepackage{adjustbox} +%\usepackage{titling} +\usepackage{caption} \usepackage{subcaption} \usepackage{filecontents} \usepackage{enumitem} -\usepackage[flushleft]{threeparttable} -\usepackage{longtable, tabularx} +%\usepackage[flushleft]{threeparttable} +\usepackage{tabularx} \usepackage{multirow} \usepackage[toc,page]{appendix} \usepackage{fancyvrb} %for txt input @@ -35,9 +35,10 @@ \definecolor{LightCyan}{rgb}{0.88,1,1} %\renewcommand\theadfont{\small\bfseries} % for bold in table using \small \renewcommand\theadgape{} -\title{Working Title: Feature Attribution} -\author[1]{Marcel H. Schubert\thanks{Corresponding author. schubert@coll.mpg.de}} -\affil[1]{Max-Planck Institute for Research on Collective Goods} +\title{Systematic Errors and the Stability of Feature Importance} +\subtitle{An Assessment for the Social Scientists} +\author[1]{Marcel H. Schubert} +\affil[1]{\scriptsize Max-Planck Institute for Research on Collective Goods} \date{ } \usepackage[autostyle]{csquotes} @@ -45,9 +46,19 @@ \usepackage[backend=biber, style=authoryear, natbib= true, url=false, doi=false, eprint=false, isbn=false]{biblatex} \addbibresource{references.bib} \usepackage[hidelinks]{hyperref} +\usepackage{cleveref} + \begin{document} -\maketitle -\clearpage + +\begin{titlepage} + + \maketitle + + \begin{abstract} + \noindent + Machine-learning is used ever more widely, particularly in the social sciences and in law. Here, Natural Language Processing (NLP) finds many cases of use as it enables the processing of large-scale online text data. However, often the focus only lies on a model's performance and not on its transparency. That lack of transparency is especially troubling as the users of those models may often not be its designers. As such, they have no way of assessing whether there are systematic errors or whether the performance hinges on unknown, possibly unstable, factors. Here, we offer an in-depth analysis of the effect small variations in the input have on systematic errors and feature stability. Our aim is to enable social scientists and practitioners using the technology to assess whether they may invite either normative or unwanted systematic errors into their results when using current technologies. + \end{abstract} +\end{titlepage} \input{introduction.tex} \FloatBarrier \input{experimental_setup.tex} @@ -61,10 +72,10 @@ \printbibliography \clearpage -%\begin{appendix} +\begin{appendix} \section*{Appendix} \addcontentsline{toc}{section}{Appendix} \input{appendix.tex} -%\end{appendix} +\end{appendix} \end{document} \ No newline at end of file diff --git a/tex/main_old.pdf b/tex/main_old.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e17006873add93fc28699c6dacbd38dcdac38279 Binary files /dev/null and b/tex/main_old.pdf differ diff --git a/tex/references.bib b/tex/references.bib index 9f6cc24335adecabfbea53969e3e38f4fa379518..be9515d4556986d7ad673c2087555f49f072b6b1 100644 --- a/tex/references.bib +++ b/tex/references.bib @@ -1911,7 +1911,7 @@ @online{facebook, - author = {Stuttgarter Nachrichten}, + author = {{Stuttgarter Nachrichten}}, title = {Bitte, Facebook, Hilf uns}, year = 2017, url={https://www.stuttgarter-nachrichten.de/inhalt.polizei-als-bittsteller-bei-straftaten-bitte-facebook-hilf-uns.a3a743a3-d41e-479c-aba7-d5bc4da25286.html}, diff --git a/tex/results.tex b/tex/results.tex index 9ada759d6e92c5f39d0fe5c64ae80700f52f27f5..78d5b4f868e564385b93f4289848f95352973e52 100644 --- a/tex/results.tex +++ b/tex/results.tex @@ -1,132 +1,134 @@ -\section{Results} -The results were computed on HPC system making use of 72 cores with 256GB of RAM.\footnote{\href{https://docs.mpcdf.mpg.de/doc/computing/raven-user-guide.html}{MPCDF HPC System "Raven"}} -Of our classifiers, the SVM outperformed the logistic classifier as well as the Naive Bayes Classifier as a firts-layer model. +\section{Stability of Predictions} +\label{att:sec:prediction} +The results were computed on HPC system, making use of 72 cores with 256GB of RAM.\footnote{\href{https://docs.mpcdf.mpg.de/doc/computing/raven-user-guide.html}{MPCDF HPC System "Raven".}} +Of our classifiers, the SVM outperformed the logistic classifier as well as the Naive Bayes Classifier as a first-layer model. Thus, for all results a SVM was used as the first-layer model. For the stacked model, a logistic classifier was used for the second layer to stay close to the setup by \textcite{custodio2021stacked}. -Overall, per target the result of the experimental setup is comprised of 1200 SVM as well stacked models, i.e. 2400 models in total for both targets. -To enable a concise analysis, we opted to showcase the results for the textset with an inputlength of 500 characters. The results for the other textsets may be found in the Appendix. +Overall, per target, the result of the experimental setup is comprised of 1200 SVMs as well stacked models, i.e., 2400 models in total for both targets. +To enable a concise analysis, we opted to showcase the results for the text set for which individual inputs have a length of 500 characters. The results for the other text sets may be found in the Appendix. -\subsection{Aggregate Overview} -First, we will look at the aggregated results for our experiments. In \autoref{fig:f1_500}, we see the f1-scores for the classifiers trained on the dataset with a minimum character length of 500 per instance. As in previous results, the score declines markedly in the number of authors. However, especially the models trained either with different featuretypes as input (labeled "cumulated") or those trained similarly to the DynAA model by \textcite{custodio2021stacked} (labeled "stacked") perform consistently. +\subsection{Aggregate Overview for Feature-Stability} +First, we will look at the aggregated results for our experiments. In \autoref{fig:f1_500}, we see the F1-scores for the classifiers trained on the dataset with a minimum character length of 500 per instance. As in previous results, the score declines markedly in the number of authors. However, especially the models trained either with different feature types as input (labeled "cumulated") or those trained similarly to the DynAA model by \textcite{custodio2021stacked} (labeled "stacked") perform consistently. Moreover, overall the results are in line with previous top-performing results on the PAN2019 dataset \parencite{wiegmann2019overview}. -The baseline models trained on featuresets consisting of singular types have a high variance in performance. That, is not surprising as we look at individual models each trained on one type of features. As can be seen in \autoref{tab:gender_f1_dist_500_baseline_individual} and \autoref{tab:age_f1_dist_500_baseline_individual}, the performance is on the upper end for the featuretypes such as CHAR with an $F1_{50}^{CHAR-2}$ up to 0.88/0.82 and on the lower end for featuretypes such as NUM with an $F1_{50}^{NUM}$ of 0.59/0.29 for the targets gender/age. -Consequently, the type of feature used and their combinations does not only have a great impact on the outcome but some features do encode little or next to no information for our classification task. Hence, we exclude those from our further analysis. +The baseline models trained on feature sets consisting of singular types have a high variance in performance. That is not surprising, when we look at individual models, each trained on one type of features. As can be seen in \autoref{tab:gender_f1_dist_500_baseline_individual} and \autoref{tab:age_f1_dist_500_baseline_individual}, the performance is on the upper end for the feature types such as CHAR with an $F1_{50}^{CHAR-2}$ up to 0.88/0.82 and on the lower end for feature types such as NUM with an $F1_{50}^{NUM}$ of 0.59/0.29 for the targets gender/age. +Consequently, the feature types used, as well as their combinations, not only have a great impact on the outcome, but some features do encode little or next to no information for our classification task. Hence, we exclude those from our further analysis. The same findings apply to the models trained on instances with a minimum length of 100 characters and 250 characters respectively (\autoref{fig:f1_100} and \autoref{fig:f1_250} in the Appendix). \begin{figure}[!htpb] \centering \begin{subfigure}[b]{0.49\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/f1_scores_500.pdf} - \caption{Results for Target Gender.} + \caption{Results for target \textit{gender}.} \end{subfigure} \hfill \begin{subfigure}[b]{0.49\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/f1_scores_500.pdf} - \caption{Results for Target Age.} + \caption{Results for target \textit{age}.} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows boxplots for the F1-score of all models estimated for a given combination of featuretypes used and way of input, i.e. baseline, cumulated, or stacked.} - \caption{F1-Score instance-length of 500 Characters.} + \caption*{\scriptsize \textit{Notes}: The figure shows boxplots for the F1-score of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{F1-score input instance length of 500 characters.} \label{fig:f1_500} \end{figure} Having comparable results in terms of accuracy and f1-score to what is found in the literature for this dataset serves as a basis for our following evaluation. A high performance lends credence to the assumption that our classifier is indeed working well and extracting the relevant information from the input data. In reverse, we may therefore assume that the features used are indeed those holding the relevant information for the respective task. Thus, our approach of extracting the feature importance via the associated weights is sensible.\\ \autoref{fig:ext_spearman_500} shows the results for the extended distortion calculated via Spearman's Rho. -The comparison is always done between two models varying in the amount of authors the respective model is trained on. -In the comparison, model 1 is trained on the lower number of authors (e.g. 50) whereas model 2 is trained on the next higher number of authors (e.g. 150). Overall we thus have 3 comparisons in the number of authors.\\ -For target \textit{gender}, on average and irrespective of the model we find only little correlation when increasing the number of authors from 50 to 150 ($0.05 < \rho < 0.20$). For the others, when increasing the number of authors correlation goes down to at maximum 0.05. At the same time, we show that the performance in terms of f1-score remains relatively stable. -That implies that the stability in performance comes at the expense of the stability in feature importance. When increasing the number of authors, different features are therefore predictive in terms of the target. It does not generally imply that the previous features lose their importance only that when ordering all features in terms of the associated importance, the ordering changes fundamentally.That fact is reflected in Spearman's Rho. -Irregardless by how much we increase the number of authors, the correlation is, on average between 5\% and 15\% for all models. -That is interesting, as the number of features additionally available when increasing the number of authors is never above 30\%. Thus, it cannot be that mainly those additional features are the ones being used for predictions as the correlation coefficient would then still be higher than what we find. -Rather it seems to be the case that the model weighs the previous and new features in such a way that the new ordering imposed differs completely from the previous one. +The comparison is always done between two models, varying in the amount of authors the respective model is trained on. +In the comparison, model 1 is trained on the lower number of authors (e.g., 50) whereas model 2 is trained on the next-highest number of authors (e.g., 150). Overall, we thus have 3 comparisons in the number of authors.\\ +For target \textit{gender}, on average, and irrespective of the model, we find only little correlation when increasing the number of authors from 50 to 150 ($0.05 < \rho < 0.20$). For the others, when increasing the number of authors, correlation goes down to a maximum of $0.05$. At the same time, we show that the performance in terms of f1-score remains relatively stable. +This implies that the stability in performance comes at the expense of the stability in feature importance. When increasing the number of authors, different features are therefore predictive in terms of the target. These findings do not generally imply that the previous features lose their importance. The do however mean that, when ordering all features in terms of the associated importance, the ordering changes fundamentally. That fact is reflected in Spearman's Rho. +Regardless by how much we increase the number of authors, on average the correlation lies between 5\% and 15\% for all models. +That is interesting, as the number of features additionally available when increasing the number of authors is never above 30\%. Thus, it cannot be that mainly those additional features are the ones being used for predictions, as the correlation coefficient would then still be higher than what we find. +Rather, it seems to be the case that the model weighs the previous and new features in such a way that the new ordering imposed differs completely from the previous one. \begin{figure}[!htpb] \centering \begin{subfigure}[b]{0.49\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/spearman_ext_500.pdf} - \caption{Results for Target Gender.} + \caption{Results for target \textit{gender}.} \end{subfigure} \hfill \begin{subfigure}[b]{0.49\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/spearman_ext_500.pdf} - \caption{Results for Target Age.} + \caption{Results for target \textit{age}.} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of featuretypes used and way of input, i.e. baseline, cumulated, or stacked.} - \caption{Extended Spearman Correlation instance-length of 500 Characters.} + \caption*{\scriptsize \textit{Notes}: The figure shows the boxplots for the extended $\rho$ of all models estimated for a given combination of feature types used and way of input, i.e., baseline, cumulated, or stacked.} + \caption{Extended Spearman correlation input instance length of 500 characters.} \label{fig:ext_spearman_500} \end{figure} Similar results are found for the target \textit{age}. However, here the decline in correlation is even more unidirectional when increasing the number of authors (increase in authors yields a decline in correlation).\\ -The only outlier to these results is the baseline model trained on individual featuretypes. While on average, the correlation is the same as for the models on combinations of featuretypes, the outliers show a very high positive correlation (up to $\rho_{150|50}^{NUM}: 0.42$, see \autoref{tab:age_f1_dist_500_baseline_individual}). -While that may look like it stands in opposition to the other results, their low predictive power helps to explain this phenomenon. \autoref{tab:age_f1_dist_500_baseline_individual} shows that the F1-score for the prediction of \textit{age} is only at $F1_{150}^{NUM}:0.25$ with the random guess benchmark being 0.2. Thus, while the feature importance remains stable for some features their predictive power is negligible. Thus the importance assigned to these features may simply be random noise without any signal. -As such, when looking at the average feature stability over all featuretype sets the conclusion is that the features are, on average, not stable and the distortion of importance when increasing the number of authors in a dataset is already high for a low number of authors (from 50 to 150). -These findings hold irregardless of the character length of the input text, as \autoref{fig:ext_spearman_100} and \autoref{fig:ext_spearman_250} in the appendix show. +The only outlier to these results is the baseline model trained on individual feature types. While on average the correlation is the same as for the models on combinations of feature types, the outliers show a very high positive correlation (up to $\rho_{150|50}^{NUM}: 0.42$, see \autoref{tab:age_f1_dist_500_baseline_individual}). +While that may look like it stands in opposition to the other results, their low predictive power helps to explain this phenomenon. \autoref{tab:age_f1_dist_500_baseline_individual} shows that the F1-score for the prediction of \textit{age} is only at $F1_{150}^{NUM}:0.25$ with the random guess benchmark being 0.2. Thus, while the feature importance remains stable for some features, their predictive power is negligible. Thus, the importance assigned to these features may simply be random noise without any signal. +As such, when looking at the average feature stability over all feature type sets, the conclusion is that the features are, on average, not stable and the distortion of importance when increasing the number of authors in a dataset is already high for a low number of authors (from 50 to 150). +These findings hold regardless of the character length of the input text, as \autoref{fig:ext_spearman_100} and \autoref{fig:ext_spearman_250} in the Appendix show. \subsection{Author-Level Analysis} -For the author-level analysis we look at the results gained by feeding the classifier the full set of featuretypes in a cumulated way. That choice assures that our results are predicted making use of the full information. Furthermore, cumulating the input yields the best results overall (see \autoref{sec:att_app_tables} in the Appendix). In that way, the analysis is done using the best possible set. However, the findings hold for any of the featuretype-approach combinations.\\ +For the author-level analysis, we look at the results gained by feeding the classifier the full set of feature types in a cumulated way. That choice assures that our results are predicted making use of the full information. Furthermore, cumulating the input yields the best results overall (compare \autoref{sec:att_app_tables}). In that way, the analysis is done using the best possible set. However, the findings hold for any of the feature-type approach combinations.\\ -\autoref{fig:acc_auth_500}a shows the error on the author-level when predicting gender. We see, that overall we have very few authors for which the accuracy is lower than the random-guess accuracy (0.5), i.e, for which our prediction error is higher than 0.5. By eyeballing one is able to see that the relative number of authors, when compared to the number of authors in the set, stays constant. Consequently, the relative performance on author-level for the classifier stays stable even when increasing the performance. However, there is a small but stable number of authors for which the classifier is \textit{systematically unable} to predict the target correctly. +\autoref{fig:acc_auth_500}a shows the error at the author level when predicting gender. We see, that overall we have very few authors for which the accuracy is lower than the random-guess accuracy (0.5), i.e, for which our prediction error is higher than 0.5. We see that the relative number of authors for which the classifier performs below the random-guess threshold stays stable, when compared to the number of authors in the set. Consequently, the relative overall-classification performance at the author level stays stable, even when increasing the the number of authors in the set. However, there is a small but stable proportion of authors for which the classifier is \textit{systematically unable} to predict the target correctly. \begin{figure}[!htpb] \centering \begin{subfigure}[b]{0.8\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_gender.pdf} - \caption{Author-Level Errors for target \textit{gender}.} + \caption{Author-level errors for target \textit{gender}.} \end{subfigure} \hfill \begin{subfigure}[b]{0.8\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/500/bars/proportions_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_color_centered_age.pdf} - \caption{Author-Level Errors for target \textit{age}.} + \caption{Author-level errors for target \textit{age}.} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows the results when using the full featureset as cumulated input. Each author is a unique instance on the x-axis. The proportion per author is then shown as the y-value. The authors are sorted by their appearance in the respective subsets (i.e., 50, 150, 500, 1000). The result per author shows the result over all subsets.} - \caption{Author-Level Results for the Full Featureset in an Instance-Length of 500 Characters.} + \caption*{\scriptsize \textit{Notes}: The figure shows the results when using the full feature set as cumulated input. Each author is a unique instance on the x-axis. The proportion per author is then shown as the y-value. The authors are sorted by their appearance in the respective subsets (i.e., 50, 150, 500, 1000) and according to the proportion of errors within those subsets. The result per author shows the result over all subsets.} + \caption{Author-level results for the full feature set with an input instance length of 500 characters.} \label{fig:acc_auth_500} \end{figure} -When looking at the distribution of the errors across genders, we find that a higher number of those authors for which our classifier makes systematic errors, seems to be female. -On the high-level, we find that the performance remains relatively stable when increasing the number of authors as depicted in \autoref{fig:gender_conf_auth_500}a. However, as soon as we reach the upper to brackets of authors, we see that while the result for male authors remains relatively stable, the outcome for female authors declines markedly from $acc_{150}^{Female}:0.82$ to $acc_{1000}^{Female}:0.69$. For the same sets the accuracy for males declines only from $acc_{150}^{Male}:0.83$ to $acc_{1000}^{Male}:0.80$. Looking closer, we can see that that drop for females happens when increasing the number of authors from 150 to 500. The implication is thus that we add female authors which are systematically difficult to classify. Bringing this together with our observations from before, we include only those authors in \autoref{fig:gender_conf_auth_500}b for which the classifier performs worse than the random-guess threshold. Here, we find some support for our previous assumption. When looking at the errors we make for female authors, we see that starting from 500 authors onward, the number of those below the random-guess threshold jumps up.\\ - -While that seems to point to the fact that apparently female authors are difficult to classify, the true reason may be slightly more nuanced. When looking at the male authors in \autoref{fig:gender_conf_auth_500}b, we see that, while obviously low in absolute numbers, the pattern is inverse for the datsets comprised of 50 and 150 authors. Consequently, while female may be indeed be more slightly more difficult to classify for unknown reasons, the main driver seems to be feature stability or the lack thereof. Due to the fact that we limited the amount of features for each featuretype to those appearing at least in 1\% of all training instances, the number of features for word-based featuretypes increases only \textit{sublinearly} relative to the number of authors. Thus, the amount of author-individual fitting the classifier is able to achieve into account declines. Indeed, that is the very essence of reducing overfitting. However, as shown in \autoref{fig:ext_spearman_500}a, the stability of feature-importance is low. Taken together, that simply means that systematic patterns within a limited number of features for authors of the same gender decline when the number of authors increases, i.e. the correlational patterns break down or become unstable and more complex. The underlying reason is that additional authors introduce new features while using the old features in a different way. As the classifier is only able to estimate one weight per feature and the number of additional features is limited, the ability to represent all the necessary information declines.\\ +When looking at the distribution of the errors across genders, we find that a higher number of those authors for whom our classifier makes systematic errors seems to be female. +On the high level, we find that the performance remains relatively stable when we increase the number of authors as depicted in \autoref{fig:gender_conf_auth_500}a. However, as soon as we reach the two upper-most brackets of authors, we see that the result for male authors remains relatively stable, while the outcome for female authors declines markedly from $acc_{150}^{Female}:0.82$ to $acc_{1000}^{Female}:0.69$. For the same sets, the mostly stable accuracy for males declines only from $acc_{150}^{Male}:0.83$ to $acc_{1000}^{Male}:0.80$. Looking closer, we can see that that drop for females happens when the number of authors increases from 150 to 500. The implication is thus that we add female authors who are systematically difficult to classify. Bringing this together with our observations from before, we include only those authors in \autoref{fig:gender_conf_auth_500}b for whom the classifier performs worse than the random-guess threshold. Here, we find some support for our previous assumption. When looking at the errors we make for female authors, we see that, starting from 500 authors onward, the number of those below the random-guess threshold jumps up.\\ +While that seems to point to the fact that apparently female authors are difficult to classify, the true reason may be slightly more nuanced. When looking at the male authors in \autoref{fig:gender_conf_auth_500}b, we see that, while obviously low in absolute numbers, the pattern is inverse for the datsets comprised of 50 and 150 authors. The underlying driver, however, does not seem to be the gender \textit{per se}, but rather the lack of stability in regards to feature importance. Per design, we limited the amount of features for each feature type to those appearing at least in 1\% of all training instances. Hence, the number of features for word-based feature types increases only \textit{sublinearly} relative to the number of authors. Thus, the amount of author-individual fitting the classifier is able to achieve declines. Indeed, that is the very essence of reducing overfitting. However, as shown in \autoref{fig:ext_spearman_500}a, the stability of feature importance is low. Taken together, that simply means that systematic patterns within a limited number of features for authors of the same gender decline when the number of authors increases, i.e., the patterns seem to be merely correlational -- they start to break down or become unstable and more complex. The underlying reason is that additional authors introduce new features, while using the old features in a different way. As the classifier is only able to estimate one weight per feature and the number of additional features is limited, the ability to represent all the necessary information declines.\\ \begin{figure}[!htpb] \centering - \begin{subfigure}[b]{\textwidth} + \begin{subfigure}[b]{0.8\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf} - \caption{All Authors (Row-Wise Normalization).} + \caption{All authors (row-wise normalization).} \end{subfigure} \hfill - \begin{subfigure}[b]{\textwidth} + \begin{subfigure}[b]{0.8\textwidth} \centering \includegraphics[width=\textwidth]{figures/gender/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf} - \caption{Below Random Guess Accuracy (Matrix-Wise Normalization).} + \caption{Below random guess accuracy (matrix-wise normalization).} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full featureset as cumulated input on an instance-length of 500 Characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} - \caption{Confusion Matrices for Target \textit{gender}.} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full feature set as cumulated input on an input instance length of 500 Characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{gender}.} \label{fig:gender_conf_auth_500} \end{figure} -For target \textit{age}, we also find only comparatively few authors with an average accuracy below the random-guess threshold of $0.2$ (see \autoref{fig:acc_auth_500}b). When comparing it to the results of the target \textit{gender}, it becomes clear that the number of those below the threshold jumps up significantly when the number of authors increases from 150 to 500. Moreover, it seems to be the case that authors of the intermediate age brackets (\textit{1975} and \textit{1985}) seem to be more difficult to classify. Overall, the patterns seem to be less pronounce when compared to the ones found for \textit{gender}. -Looking at the category-wise analysis presented in \autoref{fig:age_conf_auth_500}a, we find that overall there are only few pronounced patterns of confusion. As already suggested by \autoref{fig:acc_auth_500}b, only the intermediate age brackets have a systematic pattern. Especially for the datasets consisting of 500 and 100 authors, the confusion between the true age bracket \textit{1985} and the youngest age~bracket \textit{1995} is pronounced. Here only 38\% of the instances are classified correctly as \textit{1985} while 28\% are confused as \textit{1995}. While here the interpretation might be that the distinction between the youngest authors might be difficult, the results of \textit{1975}, the intermediate category, make it more difficult. We see that the confusion with the category \textit{1963} as well as \textit{1995} is of similar size. It might be, that instead of predicting only \textit{age}, the classifier picks up on a proxy in the way people express themselves. While certainly dependent on age in terms of punctuation for older authors \parencite{Flekova2016ExploringTwitter} as well as stability of language use in younger authors \parencite{DeJonge2012TextmessageStudents}, the way of expression also depends on the groups we are part of \parencite{Chan2018SocialTwitter}. Consequently, some of those authors confused might simply be part of peer-groups where the mode of expression is reflective of younger age brackets. As a consequence they get misclassified. + +For the target \textit{age}, we also find only comparatively few authors with an average accuracy below the random-guess threshold of $0.2$ (see \autoref{fig:acc_auth_500}b). When comparing it to the results of the target \textit{gender}, it becomes clear that the number of those below the threshold jumps up significantly when the number of authors increases from 150 to 500. Moreover, it seems to be the case that authors of the intermediate age brackets (\textit{1975} and \textit{1985}) seem to be more difficult to classify. Overall, the patterns seem to be less pronounced when compared to the ones found for \textit{gender}. +Looking at the category-wise analysis presented in \autoref{fig:age_conf_auth_500}a, we find that, overall there are only few pronounced patterns of confusion. As already suggested by \autoref{fig:acc_auth_500}b, only the intermediate age brackets have a systematic pattern. Especially for the datasets consisting of 500 and 100 authors, the confusion between the true age bracket \textit{1985} and the youngest age~bracket \textit{1995} is pronounced. Here, only 38\% of the instances are classified correctly as \textit{1985}, while 28\% are confused as \textit{1995}. While here the interpretation might be that the distinction between the youngest authors might be difficult, the results of \textit{1975}, the intermediate category, make it more difficult. We see that the confusion with the category \textit{1963} as well as \textit{1995} is of similar size. It might be that, instead of predicting only \textit{age}, the classifier picks up on a proxy in the way people express themselves. While certainly dependent on age in terms of punctuation for older authors \parencite{Flekova2016ExploringTwitter} as well as on stability of language use in younger authors \parencite{DeJonge2012TextmessageStudents}, the way of expression also depends on the groups to which we belong \parencite{Chan2018SocialTwitter}. Consequently, some of those authors confused might simply be part of peer groups where the mode of expression is reflective of younger age brackets. As a consequence, they get misclassified. These relatively distinctive patterns for the oldest and youngest authors are also most likely the reason why the prediction accuracy for those is markedly high, even for the set with the highest number of authors.\\ + +When looking only at those authors below the random-guess threshold, as depicted in \autoref{fig:age_conf_auth_500}b, we find that there are only two age brackets for which we have a systematic and pronounced confusion. For the set with 150 authors, this is the age bracket \textit{1947}, which is most often confused with the two adjacent age brackets \textit{1963} and \textit{1975}. For the set with 1000 authors, the age bracket \textit{1985} is mostly confused with belonging either to the youngest or the oldest age bracket. +As that bracket is also overall the most confused one, it stands to reason that the variance in expression is the highest. Consequently, there is no pronounced pattern in the features on which the classifier is able to pick up.\\ \begin{figure}[!htpb] \centering - \begin{subfigure}[b]{\textwidth} + \begin{subfigure}[b]{0.8\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_basic.pdf} - \caption{All Authors (Row-Wise Normalization).} + \caption{All authors (row-wise normalization).} \end{subfigure} \hfill - \begin{subfigure}[b]{\textwidth} + \begin{subfigure}[b]{0.8\textwidth} \centering \includegraphics[width=\textwidth]{figures/age/500/confusion/confusion_cumulated_dist_char_asis_pos_tag_dep_lemma_word_emoticon_c_polarity_num_1_500_mode_major_false.pdf} - \caption{Below Random Guess Accuracy (Matrix-Wise Normalization).} + \caption{Below random guess accuracy (matrix-wise normalization).} \end{subfigure} - \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full featureset as cumulated input on an instance-length of 500 Characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} - \caption{Confusion Matrices for Target \textit{age}.} + \caption*{\scriptsize \textit{Notes}: The figure shows confusion matrices for the results produced by using the full feature set as cumulated input on an input instance length of 500 Characters. The matrix for the respective set of authors is calculated by looking at the respective set in isolation.} + \caption{Confusion matrices for target \textit{age}.} \label{fig:age_conf_auth_500} \end{figure} -When looking only at those authors below the random-guess threshold, as depicted in \autoref{fig:age_conf_auth_500}b we find that there are only two age brackets for which we have a systematic an pronounced confusion. For the set with 150 authors, this is the age bracket \textit{1947} which gets mostly confused with the two adjacent age brackets \textit{1963} and \textit{1975}. For the set with 1000 authors, the age bracket \textit{1985} is mostly confused with belonging either to the youngest or the oldest age bracket.m -As that bracket is also overall the most confused one, it stands to reason that the variance in expression is the highest. Consequently, there is no pronounced pattern in the features the classifier is able to pick up on. \\ diff --git a/tex/robustness.tex b/tex/robustness.tex index 7fc89c5c9ff366856faa51b745d9b07ba1fc17fc..e083c8bd69e41a8cc1e642392d9acdbab8fd1355 100644 --- a/tex/robustness.tex +++ b/tex/robustness.tex @@ -1,43 +1,44 @@ \section{Robustness of Feature-Importance} -In order to assess how the aggregate results from the previous section hold, when looking at individual featuretypes as well as different classifier approaches, this section presents a more fine-grained insight. In this section, we focus on the input in terms of featuretypes and ngrams. We analyse these aspects with a special look on the stability of the feature-importance. +\label{att:sec:importance} +In order to assess how the aggregate results from the previous section hold, when looking at individual feature types as well as different classifier approaches, this section presents a more fine-grained insight. In this section, we focus on the input in terms of feature types and n-grams. We analyze these aspects with a special look on the stability of the feature importance. \subsection{Baseline} -First, we now have a look at the results on featureset 1, i.e. the results gained by using each featuretype individually to predict the target. \autoref{tab:gender_f1_dist_500_baseline_individual} and \autoref{tab:age_f1_dist_500_baseline_individual} show the experimental results for targets \textit{gender} and \textit{age} respectively. Each row shows the result for a featuretype and the corresponding ngrams. The featuretypes themselves are sorted in an ascending order such that featuretypes in lower rows capture more context, e.g. the type CHAR (characters) captures, in principle, less contextual information, such as topic or structural information, when compared to, for example, word-based ngrams \parencite{Rocha2017AuthorshipForensics}. -Naturally, when the ngram-window is increased, e.g. for character-based features from 2 to 4, the character-ngrams also start to capture contextual information. -Consequently, also the ngram-combinations within the individual featuretypes are sorted in an ascending fashion.\\ +First, we now take a look at the results in feature set 1, i.e., the results gained when using each feature type individually to predict the target. \autoref{tab:gender_f1_dist_500_baseline_individual} and \autoref{tab:age_f1_dist_500_baseline_individual} show the experimental results for targets \textit{gender} and \textit{age}, respectively. Each row shows the result for a feature type and the corresponding n-grams. The feature types themselves are sorted in an ascending order such that feature types in lower rows capture more context. The type CHAR (characters), for example, captures, in principle, less contextual information (such as topic or structural information) compared to, for example, word-based n-grams \parencite{Rocha2017AuthorshipForensics}. +Naturally, when the n-gram window is increased, e.g., for character-based features from 2 to 4, the character n-grams also start to capture contextual information. +Consequently, the n-gram combinations within the individual feature types are also sorted in an ascending fashion.\\ \input{tables/gender/latex/results_gender_individual_baseline_500_f1_dist.tex} -Looking at results for the target \textit{gender} we first find that the most predictive featuretypes are those most closely related to the words but not necessarily the structure of the text. That can be seen from the fact that the latter is captured by POS, TAG, and DEP which show low predictive power no matter the number of authors within the subset. -Moreover, already CHAR-2-grams perform well ($F1_{50}^{CHAR-2}: 0.80$) on the small dataset comprised of 50 authors. However, when we increase the number of authors, the performance declines markedly ($F1_{1000}^{CHAR-5}: 0.67$), especially when compared to CHAR-(2,5)-grams ($F1_{1000}^{CHAR-5}:0.741$) which are close to the top performance ($F1_{1000}^{ASIS-5}: 0.748$). The same pattern, although on a lower overall performance level, is visible for the text-distortion features DIST capturing punctuation and other stylistic markers. -For lower ngram-sizes, the performance is only negligibly above or below the random guess threshold while for higher ngrams the performance is higher ($F1_{50}^{DIST-5}: 0.67$) but then decreases again in the number of authors. Consequently, the results show that there seems little cause to think that there are patterns in the style of authors related to gender. -On the other side, CHAR-2-grams have a reliable performance ($0.67 < F1^{CHAR-2} <0.80$) and increasing the ngram window only by 1 increases performance markedly in turn. Consequently, it can be assumed that the there seems to be a discerable pattern related to gender within the character-combinations used. The underlying assumption would be that certain topics might be reflected by the use similar words or that certain synonyms are preferred by one group over the other. -We can compare this with the result for the WORD-grams. Here we see, that while we the performance is high, it is still worse when compared to CHAR-(2,5)-grams. The latter would also capture words up to five characters long. However, if that overlap would be the sole driver of performance, then WORD-grams should not be outperformed. As such, we can conclude that there is a discernible pattern related to gender in low-context CHAR-ngrams. -In terms of the stability of the feature importance, the results are sobering. As in the aggregate before, the correlation tends towards zero when increasing the number of authors. Besides that, in some cases the correlation even flips signs. That implies features which were useful for predicting group A before are now either irrelevant or relevant for predicting group B (see for example \autoref{tab:gender_f1_dist_500_baseline_individual}, $\rho_{500}^{POS-2}: -0.15$). While mostly small, all correlation coefficients are significant on the 1\%-level.\\ +Looking at results for the target \textit{gender}, we first find that the most predictive feature types are those most closely related to the words of the text, but not necessarily the structure. That can be seen from the fact that structure-capturing feature types, such as POS, TAG, and DEP, show low predictive power no matter what the number of authors within the subset is. +Moreover, CHAR-2-grams already perform well ($F1_{50}^{CHAR-2}: 0.80$) on the small dataset comprised of 50 authors. However, when we increase the number of authors, the performance declines markedly ($F1_{1000}^{CHAR-5}: 0.67$), especially when compared to CHAR-(2,5)-grams ($F1_{1000}^{CHAR-5}:0.741$), which are close to the top performance ($F1_{1000}^{ASIS-5}: 0.748$). The same pattern, although on a lower overall performance level, is visible for the text distortion features DIST capturing punctuation and other stylistic markers. +For lower n-gram sizes, the performance is only negligibly above or below the random guess threshold, while for higher n-grams the performance is higher ($F1_{50}^{DIST-5}: 0.67$), but then decreases again in the number of authors. Consequently, the results show that there seems little cause to think that there are patterns in the style of authors related to gender. +On the other side, CHAR-2-grams have a reliable performance ($0.67 < F1^{CHAR-2} <0.80$); increasing the n-gram window only by 1 increases performance even more. Consequently, it can be assumed that the there seems to be a discernible pattern related to gender within the character combinations used. The underlying assumption would be that certain topics might be reflected by the use of similar words or that certain synonyms are preferred by one group over the other. +We can compare this with the result for the WORD-grams. Here we see that, while we the performance is high, it is still worse when compared to CHAR-(2,5)-grams. The latter would also capture words up to five characters long. However, if that overlap is the sole driver of performance, then WORD-grams should not be outperformed. As such, we can conclude that there is a discernible pattern related to gender in low-context CHAR-n-grams. +In terms of the stability of the feature importance, the results are sobering. As in the aggregate before, the correlation tends towards zero when increasing the number of authors. Besides that, in some cases the correlation even flips signs. That implies features which were useful for predicting group A before are now either relevant for neither group or relevant for predicting group B (see, for example, \autoref{tab:gender_f1_dist_500_baseline_individual}, $\rho_{500}^{POS-2}: -0.15$). While mostly small, all correlation coefficients are significant at the 1\%-level.\\ When looking at age, the results shown in \autoref{tab:age_f1_dist_500_baseline_individual} reflect the overall findings for gender. -Text distortion alone such as punctuation reflected in the features of type DIST does hold some but not the majority of the information relevant to the prediction of age. That is evident from the stark decline towards random-guess accuracy, especially for low-level-ngrams. +Text distortion alone, such as punctuation reflected in the features of type DIST, does hold some, but not the majority of the information relevant to the prediction of age. That is evident from the stark decline towards random-guess accuracy, especially for low-level n-grams. \input{tables/age/latex/results_age_individual_baseline_500_f1_dist.tex} -When combined with CHAR, then especially higher-order ngrams (which is reflected in the featuretype ASIS) hold the most information about an authors age. That seems to be in line with findings linking age to a higher adherence to linguistic rules, even in an online environment \parencite{DeJonge2012TextmessageStudents, Hovy2015TaggingAge}. -However, also the content of the tweets seems to set the age categories apart, as illustrated by the fact that TAG alone has a relatively high predictive power even for the dataset comprised of 1000 authors (F1: 0.31). The same holds true for LEMMA implying that age groups are also set apart by the use of one set of words over another. +When combined with CHAR, then especially higher-order n-grams (which is reflected in the feature type ASIS) hold the most information about an author's age. That seems to be in line with findings linking age to a higher adherence to linguistic rules, even in an online environment \parencite{DeJonge2012TextmessageStudents, Hovy2015TaggingAge}. +However, the content of the tweets also seems to set the age categories apart, as illustrated by the fact that TAG alone has a relatively high predictive power even for the dataset comprised of 1000 authors (F1: 0.31). The same holds true for LEMMA, implying that age groups are also set apart by the use of one set of words over another. Here again, the feature stability is low, with a $ \rho \in [0, 0.05]$.\\ -Thus, we can conclude that for singular feature sets, the model is able to extract information from the features, especially those with higher context as evident from the increase in predictive performance when the n-gram range is increased. -However the relevant information is not stable in the number of authors which means that additional authors introduce a wider variation which needs to be separated differently than the smaller range. -As the number of characters is limited overall (and thus the number of features in the lower n-gram range), that automatically implies that the the content and therefore the relevant features change. That seems to lead to an overall change in the way individual features are predictive. Thus, the rank correlation is low. +Thus, we can conclude that, for singular feature sets, the model is able to extract information from the features, especially those with higher context, as evident from the increase in predictive performance when the n-gram range is increased. +However, the relevant information is not stable in the number of authors, which means that additional authors introduce a wider variation, that needs to be separated differently than the smaller range. +As the number of characters is limited overall (and thus the number of features in the lower n-gram range), that automatically implies that the content and therefore the relevant features change. That seems to lead to an overall change in the way individual features are predictive. Thus, the rank correlation is low. \input{tables/gender/latex/results_gender_dwald_direct_500_f1_dist.tex} \subsection{Cumulated} -The previous analysis has shown that some featuretypes, such as POS, TAG, DEP, and NUM do hold little relevant information. We therefore constructed a subset of featuretypes which excludes them. That subset includes the types ASIS, CHAR, LEMMA, and WORD. -Compared to the previous analysis, we now give the model the possibility to include additional information, i.e. information stemming from different featuretypes, in the model. +The previous analysis has shown that some feature types, such as POS, TAG, DEP, and NUM do hold little relevant information. We therefore constructed a subset of feature types which excludes them. That subset includes the types ASIS, CHAR, LEMMA, and WORD. +Compared to the previous analysis, we now give the model the possibility to include additional information, i.e., information stemming from different feature types, in the model. As shown by the results in \autoref{tab:gender_f1_dist_500_direct_dwald} and \autoref{tab:age_f1_dist_500_direct_dwald}, the additional information yields to overall increase in performance. How much additional information leads to an improvement differs by target. -For \textit{age}, we find that some additional contextual information increases the outcome. However, when the contextual information becomes larger, e.g. by including LEMMA and WORD, the result does not improve anymore. The result is consistent across a different number of authors. Consequently, the information for \textit{age} seems to be less reliant on contextual information and content. Already single-word content and context as captured by CHAR-(2,5) and ASIS-(2,5), is enough for a high prediction score. -When we compare the outcome for \textit{gender} with the the results in \autoref{tab:gender_f1_dist_500_baseline_individual}, we see that using a cumulated input improves the results overall. It is especially important to note that when faced with a high number of individual authors, increasing the context by using additional featuretypes such as LEMMA or WORD in addition to high-level ngrams increases performance. -When taken together, our findings show that context and underlying data structure is an important driver behind the predictions of a model as shown by the fact that the relevant features in terms of predictiveness change. +For \textit{age}, we find that some additional contextual information increases the outcome. However, when the contextual information becomes larger, e.g., by including LEMMA and WORD, the result does not improve anymore. The result is consistent across a different number of authors. Consequently, the information for \textit{age} seems to be less reliant on contextual information and content. Already single-word content and context as captured by CHAR-(2,5) and ASIS-(2,5), is enough for a high prediction score. +When we compare the outcome for \textit{gender} with the the results in \autoref{tab:gender_f1_dist_500_baseline_individual}, we see that using a cumulated input improves the results overall. It is especially important to note that, when faced with a high number of individual authors, increasing the context by using additional feature types such as LEMMA or WORD in addition to high-level n-grams increases performance. +When taken together, our findings show that context and underlying data structure is an important driver behind the predictions of a model, as shown by the fact that the relevant features in terms of predictiveness change. At the same time, we show that the weight placed on individual features (and thus individual inputs reflecting certain contexts) is not stable. \input{tables/age/latex/results_age_dwald_direct_500_f1_dist.tex} That is evident by the correlation scores across different author sets. The scores are $\rho_{150|50}^{NUM}: 0.42$ at the highest for target gender and $\rho_{150|50}^{DEP-2}: -0.1$ at their lowest. -Consequently, while the predictive accuracy is high, the model seems to rely on correlational patterns which are not only not invariant but also quite unstable when the dataset is changed only slightly.\footnote{All anaylsis -stacked as well as cumulated - was also done on the full number of featuretypes as well as the different numbers of authors and the different input lengths. The results may be found in the Appendix \autoref{sec:att_app_tables}}. \ No newline at end of file +Consequently, while the predictive accuracy is high, the model seems to rely on correlational patterns which are not only not invariant, but also quite unstable when the dataset is changed only slightly.\footnote{All analyses --stacked as well as cumulated-- were also done on the full number of feature types, as well as the different numbers of authors and the different input instance lengths. The results may be found in the \autoref{sec:att_app_tables}.} \ No newline at end of file diff --git a/tex/tables/age/html/results_age_dwald_direct_100_acc.html b/tex/tables/age/html/results_age_dwald_direct_100_acc.html index bd7d76ece05abfd1eadee4021a1ebc77c7c2a924..98070317c230eeabfcb999bcdc17234883666854 100644 --- a/tex/tables/age/html/results_age_dwald_direct_100_acc.html +++ b/tex/tables/age/html/results_age_dwald_direct_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_dwald_direct_100_dist.html b/tex/tables/age/html/results_age_dwald_direct_100_dist.html index 735353efadbee84a35668d3cf9042b73c66ac2a0..e33cd0ba68889bf6735a74fcdc82e839b324ea44 100644 --- a/tex/tables/age/html/results_age_dwald_direct_100_dist.html +++ b/tex/tables/age/html/results_age_dwald_direct_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_dwald_direct_250_acc.html b/tex/tables/age/html/results_age_dwald_direct_250_acc.html index f4b28f02bcbb334337eaffdd08a280fda1c6f2b8..15e5907fd475cc1da3592f4724415339a073db00 100644 --- a/tex/tables/age/html/results_age_dwald_direct_250_acc.html +++ b/tex/tables/age/html/results_age_dwald_direct_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_dwald_direct_250_dist.html b/tex/tables/age/html/results_age_dwald_direct_250_dist.html index 391e6b071ac68674fb97e682d8ca6f5b03b5f49e..584d4f2f1efa8d4444ac95cd7dacf930b291e142 100644 --- a/tex/tables/age/html/results_age_dwald_direct_250_dist.html +++ b/tex/tables/age/html/results_age_dwald_direct_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_dwald_direct_500_acc.html b/tex/tables/age/html/results_age_dwald_direct_500_acc.html index b6d100465249275196fd7212c7ec2a844fd80fa1..1bbd44133df9d378c5da21307fe5b13130740af9 100644 --- a/tex/tables/age/html/results_age_dwald_direct_500_acc.html +++ b/tex/tables/age/html/results_age_dwald_direct_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_dwald_direct_500_dist.html b/tex/tables/age/html/results_age_dwald_direct_500_dist.html index 2ed17e76ac773af055baf27fb8be785309847a1d..d6f625bdea0a8f8f74246e4c25036f85ea43dcbe 100644 --- a/tex/tables/age/html/results_age_dwald_direct_500_dist.html +++ b/tex/tables/age/html/results_age_dwald_direct_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_dwald_dynAA_100_acc.html b/tex/tables/age/html/results_age_dwald_dynAA_100_acc.html index bea55a80fdcd5f494ab1c5e5b573293c33768a47..a13d4c0fc7282901fc24b23521a8762edac44d49 100644 --- a/tex/tables/age/html/results_age_dwald_dynAA_100_acc.html +++ b/tex/tables/age/html/results_age_dwald_dynAA_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_dwald_dynAA_100_dist.html b/tex/tables/age/html/results_age_dwald_dynAA_100_dist.html index bad1207f0ee08b8f198dfc3c782caf881fd9a937..8c901c37f6b75af8c1bbd5cb88eb7d456e1e0e11 100644 --- a/tex/tables/age/html/results_age_dwald_dynAA_100_dist.html +++ b/tex/tables/age/html/results_age_dwald_dynAA_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_dwald_dynAA_250_acc.html b/tex/tables/age/html/results_age_dwald_dynAA_250_acc.html index 467daa2fbc75c1df85899e24022b9302b5959725..2dcac68e3a156ea5c30f1dfbe912d2906b33a092 100644 --- a/tex/tables/age/html/results_age_dwald_dynAA_250_acc.html +++ b/tex/tables/age/html/results_age_dwald_dynAA_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_dwald_dynAA_250_dist.html b/tex/tables/age/html/results_age_dwald_dynAA_250_dist.html index cc36f45dc2fbdd44c55a0a92834a8fd5e44ea9b6..15cd88aa2b8cb2a5f8870ce4273ea532b218514f 100644 --- a/tex/tables/age/html/results_age_dwald_dynAA_250_dist.html +++ b/tex/tables/age/html/results_age_dwald_dynAA_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_dwald_dynAA_500_acc.html b/tex/tables/age/html/results_age_dwald_dynAA_500_acc.html index 87cfbede5bc3d32b1f5d0d1ab1b94918d944a074..90260975ae957d72f69ee0394b6670b0051f2442 100644 --- a/tex/tables/age/html/results_age_dwald_dynAA_500_acc.html +++ b/tex/tables/age/html/results_age_dwald_dynAA_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_dwald_dynAA_500_dist.html b/tex/tables/age/html/results_age_dwald_dynAA_500_dist.html index d2bff63f58c86a236627500493431fcf646207e7..fae2ae4b8343914dc68498bd572793c5231ce004 100644 --- a/tex/tables/age/html/results_age_dwald_dynAA_500_dist.html +++ b/tex/tables/age/html/results_age_dwald_dynAA_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_full_direct_100_acc.html b/tex/tables/age/html/results_age_full_direct_100_acc.html index 4ca63e7a1a840ee541ca22f032de728885cc78c4..51e81e014450d94dac98dda8f5af56f1385aa838 100644 --- a/tex/tables/age/html/results_age_full_direct_100_acc.html +++ b/tex/tables/age/html/results_age_full_direct_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_direct_100_dist.html b/tex/tables/age/html/results_age_full_direct_100_dist.html index 30f12f880473a9f36ff7981a3ff069eac1703407..93a7ed1ba78436c62d10a7b81105195434818f7f 100644 --- a/tex/tables/age/html/results_age_full_direct_100_dist.html +++ b/tex/tables/age/html/results_age_full_direct_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_full_direct_100_f1_dist.html b/tex/tables/age/html/results_age_full_direct_100_f1_dist.html index 0818e36b2c63d6087f0491be408a359a109131ce..e0e5cc66e8d718dd36f903f335f4d3118f8b2496 100644 --- a/tex/tables/age/html/results_age_full_direct_100_f1_dist.html +++ b/tex/tables/age/html/results_age_full_direct_100_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_direct_250_acc.html b/tex/tables/age/html/results_age_full_direct_250_acc.html index 20b799b106c6ddbad2976c96cd047be9501504bc..542635dab01dac3c8666fd879d1fb2595a3799e9 100644 --- a/tex/tables/age/html/results_age_full_direct_250_acc.html +++ b/tex/tables/age/html/results_age_full_direct_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_direct_250_dist.html b/tex/tables/age/html/results_age_full_direct_250_dist.html index 0ca517f3d37992096a7ef9479fc56e9cbae9c297..d7a827fe589fbf26c2a8eabe747f9c621a3f86dd 100644 --- a/tex/tables/age/html/results_age_full_direct_250_dist.html +++ b/tex/tables/age/html/results_age_full_direct_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_full_direct_250_f1_dist.html b/tex/tables/age/html/results_age_full_direct_250_f1_dist.html index c744adb69aec39b6fa44c0c801be1da9bcb70940..5ec641bd63a96a4a0dbc08e8cae93e96f1edd881 100644 --- a/tex/tables/age/html/results_age_full_direct_250_f1_dist.html +++ b/tex/tables/age/html/results_age_full_direct_250_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_direct_500_acc.html b/tex/tables/age/html/results_age_full_direct_500_acc.html index 0da3809417de02b147e1067fd7b42a5bac0e7f37..bf2d1e907e9bda28fb20f411d98a17e4c38596c7 100644 --- a/tex/tables/age/html/results_age_full_direct_500_acc.html +++ b/tex/tables/age/html/results_age_full_direct_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_direct_500_dist.html b/tex/tables/age/html/results_age_full_direct_500_dist.html index aa628cf8b7fddd71f9f378db73d359288b87a88b..7770bc0c612c3f8d68c2fd2fea7a5279ae36090c 100644 --- a/tex/tables/age/html/results_age_full_direct_500_dist.html +++ b/tex/tables/age/html/results_age_full_direct_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_full_direct_500_f1_dist.html b/tex/tables/age/html/results_age_full_direct_500_f1_dist.html index cadce79f628022e2c27d7d96acd49dce7ccfbab5..db52dc73719e503c0b45796d6cca96b23bed65dc 100644 --- a/tex/tables/age/html/results_age_full_direct_500_f1_dist.html +++ b/tex/tables/age/html/results_age_full_direct_500_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_100_acc.html b/tex/tables/age/html/results_age_full_dynAA_100_acc.html index 39de89cf4ec5219fae8ea1d9cd4abaed9a2a9446..17f0fe2dcc025764eaad98f5b76a23523e5c7734 100644 --- a/tex/tables/age/html/results_age_full_dynAA_100_acc.html +++ b/tex/tables/age/html/results_age_full_dynAA_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_100_dist.html b/tex/tables/age/html/results_age_full_dynAA_100_dist.html index dc703d89d86bc77aa1078bf66363ff306a02d53b..9a7b65e5e4bd0c04e1b7ca86f48051aef27231b0 100644 --- a/tex/tables/age/html/results_age_full_dynAA_100_dist.html +++ b/tex/tables/age/html/results_age_full_dynAA_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_100_f1_dist.html b/tex/tables/age/html/results_age_full_dynAA_100_f1_dist.html index c04978e96689f0f771a24883e50bd481ba6c041e..2e0a70eaf509d42d7e0dbd661748db8b0c4f6fd9 100644 --- a/tex/tables/age/html/results_age_full_dynAA_100_f1_dist.html +++ b/tex/tables/age/html/results_age_full_dynAA_100_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_250_acc.html b/tex/tables/age/html/results_age_full_dynAA_250_acc.html index 8046b7bebcf57877f5731ee017278f294159c784..3f968110a68654feacc729970eeb6f82c226ca2e 100644 --- a/tex/tables/age/html/results_age_full_dynAA_250_acc.html +++ b/tex/tables/age/html/results_age_full_dynAA_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_250_dist.html b/tex/tables/age/html/results_age_full_dynAA_250_dist.html index f1c118a0106d6da998b3f5b50092a0e2ffaa04d1..c31aed6aed468cdab7dc08025e99768d5c4c28b1 100644 --- a/tex/tables/age/html/results_age_full_dynAA_250_dist.html +++ b/tex/tables/age/html/results_age_full_dynAA_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_250_f1_dist.html b/tex/tables/age/html/results_age_full_dynAA_250_f1_dist.html index 0e62012257e0f45cb46d624034b047749e0e4693..10db2860560d38f9bd81638b3c3471cd6f118f72 100644 --- a/tex/tables/age/html/results_age_full_dynAA_250_f1_dist.html +++ b/tex/tables/age/html/results_age_full_dynAA_250_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_500_acc.html b/tex/tables/age/html/results_age_full_dynAA_500_acc.html index d10a875a7a1ab89eb9f43e26d36723e2548f6f95..68face7a8638a0506144425f8fbe8481f59daede 100644 --- a/tex/tables/age/html/results_age_full_dynAA_500_acc.html +++ b/tex/tables/age/html/results_age_full_dynAA_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_500_dist.html b/tex/tables/age/html/results_age_full_dynAA_500_dist.html index 633417deeb43423aaa88cfffe9a3bc00fd974771..a0906c80d58cf44d3b1eca707adbb56e260c0739 100644 --- a/tex/tables/age/html/results_age_full_dynAA_500_dist.html +++ b/tex/tables/age/html/results_age_full_dynAA_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_full_dynAA_500_f1_dist.html b/tex/tables/age/html/results_age_full_dynAA_500_f1_dist.html index d07003549b0ccd62197a8433fc76cd62affae2b1..27e5d3514402012a23f30341dd549c6d57122581 100644 --- a/tex/tables/age/html/results_age_full_dynAA_500_f1_dist.html +++ b/tex/tables/age/html/results_age_full_dynAA_500_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_individual_baseline_100_acc.html b/tex/tables/age/html/results_age_individual_baseline_100_acc.html index 70b41b80d588a673fb3e9b75ecff90a57eb29ba0..1101433d1428f0f8b29acc8d167c38c84ca24455 100644 --- a/tex/tables/age/html/results_age_individual_baseline_100_acc.html +++ b/tex/tables/age/html/results_age_individual_baseline_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_individual_baseline_100_dist.html b/tex/tables/age/html/results_age_individual_baseline_100_dist.html index c9e5bb3cbafd4448d8cf495a174e1f4fa52d051a..bc59e5069c5504297192541b2faf29e02056711c 100644 --- a/tex/tables/age/html/results_age_individual_baseline_100_dist.html +++ b/tex/tables/age/html/results_age_individual_baseline_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_individual_baseline_250_acc.html b/tex/tables/age/html/results_age_individual_baseline_250_acc.html index de66eda0d5ca2abde62ec6b22d536b2ddf0c395a..6a98dafb299c52625c9a77d32be517b8fba79f97 100644 --- a/tex/tables/age/html/results_age_individual_baseline_250_acc.html +++ b/tex/tables/age/html/results_age_individual_baseline_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_individual_baseline_250_dist.html b/tex/tables/age/html/results_age_individual_baseline_250_dist.html index 854dde04d44e6e6305b264fa8fe12010e510ebfa..8f2114cf3b357b98dc6f3841990cf4d002c4432d 100644 --- a/tex/tables/age/html/results_age_individual_baseline_250_dist.html +++ b/tex/tables/age/html/results_age_individual_baseline_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/html/results_age_individual_baseline_500_acc.html b/tex/tables/age/html/results_age_individual_baseline_500_acc.html index 83be911693e7f5e8f3788f01ca7c0fd656d4bb3e..a2aa7168a736b3836754e493670e3c433e812647 100644 --- a/tex/tables/age/html/results_age_individual_baseline_500_acc.html +++ b/tex/tables/age/html/results_age_individual_baseline_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/age/html/results_age_individual_baseline_500_dist.html b/tex/tables/age/html/results_age_individual_baseline_500_dist.html index 40573960b126206edbb1b4c9f10b02b17fa02175..ff04b864f12ca765a5e0f5b8f5837de5b765781c 100644 --- a/tex/tables/age/html/results_age_individual_baseline_500_dist.html +++ b/tex/tables/age/html/results_age_individual_baseline_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/age/latex/results_age_dwald_direct_100_acc.tex b/tex/tables/age/latex/results_age_dwald_direct_100_acc.tex index cf80b2dfd739912dd9c7b609f3c1ff091c6127e4..38745649d2f50d1181a6eeb951388b55d04620f7 100644 --- a/tex/tables/age/latex/results_age_dwald_direct_100_acc.tex +++ b/tex/tables/age/latex/results_age_dwald_direct_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_acc_100_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.5983 & 0.5994 & 0.4887 & 0.4861 & 0.3739 & 0.3555 & 0.3088 & 0.2673 \\ & 2-3 & 0.6907 & 0.6908 & 0.5595 & 0.5583 & 0.4424 & 0.4382 & 0.3888 & 0.3706 \\ diff --git a/tex/tables/age/latex/results_age_dwald_direct_100_dist.tex b/tex/tables/age/latex/results_age_dwald_direct_100_dist.tex index 9631a1d864a8f99289dc984df2aacd0c0c0fc8c8..487187b616efeb3db29527722cbfbd82d99b2696 100644 --- a/tex/tables/age/latex/results_age_dwald_direct_100_dist.tex +++ b/tex/tables/age/latex/results_age_dwald_direct_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_dist_100_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0348 & -0.0149 & 0.0099 & 0.0315 & -0.0141 & 0.0174 \\ & 2-3 & -0.0051 & -0.0070 & -0.0063 & -0.0108 & 0.0126 & 0.0458 \\ diff --git a/tex/tables/age/latex/results_age_dwald_direct_250_acc.tex b/tex/tables/age/latex/results_age_dwald_direct_250_acc.tex index cef3e89cb25e1bd79ebc64eec327d7cd0a04d65a..07ab016488214614f87d49f2dde652ad19746d09 100644 --- a/tex/tables/age/latex/results_age_dwald_direct_250_acc.tex +++ b/tex/tables/age/latex/results_age_dwald_direct_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_acc_250_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.6772 & 0.6770 & 0.5772 & 0.5772 & 0.4543 & 0.4439 & 0.3928 & 0.3686 \\ & 2-3 & 0.7627 & 0.7629 & 0.6684 & 0.6689 & 0.5239 & 0.5115 & 0.4643 & 0.4581 \\ diff --git a/tex/tables/age/latex/results_age_dwald_direct_250_dist.tex b/tex/tables/age/latex/results_age_dwald_direct_250_dist.tex index 234e13533644653abf2eb54c052eee3b728f2307..3d92ba1a8de69953db6d2e670d193f1f015bcb87 100644 --- a/tex/tables/age/latex/results_age_dwald_direct_250_dist.tex +++ b/tex/tables/age/latex/results_age_dwald_direct_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_dist_250_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0416 & 0.1495 & 0.0072 & 0.0051 & 0.0153 & 0.0489 \\ & 2-3 & -0.0223 & 0.0252 & -0.0132 & 0.0114 & 0.0086 & -0.0058 \\ diff --git a/tex/tables/age/latex/results_age_dwald_direct_500_acc.tex b/tex/tables/age/latex/results_age_dwald_direct_500_acc.tex index d5dfb5b0646094db64daf011cf526b98d571fb42..47a167603d9211165822012c8ef9e381306ff905 100644 --- a/tex/tables/age/latex/results_age_dwald_direct_500_acc.tex +++ b/tex/tables/age/latex/results_age_dwald_direct_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_acc_500_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7262 & 0.7271 & 0.6350 & 0.6349 & 0.5133 & 0.5123 & 0.4465 & 0.4434 \\ & 2-3 & 0.8192 & 0.8214 & 0.7342 & 0.7331 & 0.5938 & 0.5898 & 0.5199 & 0.5177 \\ diff --git a/tex/tables/age/latex/results_age_dwald_direct_500_dist.tex b/tex/tables/age/latex/results_age_dwald_direct_500_dist.tex index d243a290432e26774f66040667c52a11b4851d3c..6662db7652b3c483b1a9558fd443d1d9135b1d62 100644 --- a/tex/tables/age/latex/results_age_dwald_direct_500_dist.tex +++ b/tex/tables/age/latex/results_age_dwald_direct_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_dist_500_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.1872 & 0.0727 & 0.0083 & 0.0109 & 0.0192 & 0.0501 \\ & 2-3 & 0.1142 & 0.0359 & 0.0275 & 0.0294 & 0.0478 & 0.0012 \\ diff --git a/tex/tables/age/latex/results_age_dwald_direct_500_f1_dist.tex b/tex/tables/age/latex/results_age_dwald_direct_500_f1_dist.tex index 30a2c8170f7fb2e425ee70593092a13b7153f1a7..6cdf8451dce2a5c6b448e2ba6496af13aeff8ab4 100644 --- a/tex/tables/age/latex/results_age_dwald_direct_500_f1_dist.tex +++ b/tex/tables/age/latex/results_age_dwald_direct_500_f1_dist.tex @@ -10,7 +10,7 @@ & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ +feature types & subgrams & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7271 & -- & 0.6349 & 0.1366 & 0.5123 & 0.0244 & 0.4434 & 0.0048 \\ & 2-3 & 0.8214 & -- & 0.7331 & 0.1364 & 0.5898 & 0.0286 & 0.5177 & 0.0117 \\ diff --git a/tex/tables/age/latex/results_age_dwald_dynAA_100_acc.tex b/tex/tables/age/latex/results_age_dwald_dynAA_100_acc.tex index be329f166becfdf91343b1e4057bce905560d8c3..b3c48da673704d0b5bc32103058a00031211a048 100644 --- a/tex/tables/age/latex/results_age_dwald_dynAA_100_acc.tex +++ b/tex/tables/age/latex/results_age_dwald_dynAA_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_acc_100_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.5814 & 0.5806 & 0.4549 & 0.4544 & 0.2092 & 0.0892 & 0.2029 & 0.0707 \\ & 2-3 & 0.6560 & 0.6565 & 0.5434 & 0.5426 & 0.4313 & 0.4281 & 0.2607 & 0.1626 \\ diff --git a/tex/tables/age/latex/results_age_dwald_dynAA_100_dist.tex b/tex/tables/age/latex/results_age_dwald_dynAA_100_dist.tex index 745621fe593337beeb4b85fe077fa5906e9ffdbd..0a03a59195bc641a5c7cdb145c2e8349c1568b3e 100644 --- a/tex/tables/age/latex/results_age_dwald_dynAA_100_dist.tex +++ b/tex/tables/age/latex/results_age_dwald_dynAA_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_dist_100_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & -0.0261 & -0.0180 & -0.0041 & 0.0083 & 0.0156 & 0.0209 \\ & 2-3 & -0.0058 & -0.0031 & -0.0170 & -0.0032 & 0.0285 & 0.0297 \\ diff --git a/tex/tables/age/latex/results_age_dwald_dynAA_250_acc.tex b/tex/tables/age/latex/results_age_dwald_dynAA_250_acc.tex index 7140d3320db6c4a372c0cc9646e141c5c29a5e76..c98035f28aedabe5ea10a7c998744636a6c54165 100644 --- a/tex/tables/age/latex/results_age_dwald_dynAA_250_acc.tex +++ b/tex/tables/age/latex/results_age_dwald_dynAA_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_acc_250_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.6667 & 0.6672 & 0.5623 & 0.5621 & 0.4216 & 0.4205 & 0.3466 & 0.3196 \\ & 2-3 & 0.7480 & 0.7484 & 0.6506 & 0.6498 & 0.5183 & 0.5180 & 0.4535 & 0.4513 \\ diff --git a/tex/tables/age/latex/results_age_dwald_dynAA_250_dist.tex b/tex/tables/age/latex/results_age_dwald_dynAA_250_dist.tex index ed99abf76a3f7204db7d70a807b82e0fbde8633d..35eba19105e7e66a8d62124037f3125c86038312 100644 --- a/tex/tables/age/latex/results_age_dwald_dynAA_250_dist.tex +++ b/tex/tables/age/latex/results_age_dwald_dynAA_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_dist_250_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.0132 & -0.0179 & -0.0008 & 0.0021 & 0.0057 & 0.0131 \\ & 2-3 & 0.0076 & -0.0155 & 0.0017 & 0.0131 & 0.0161 & 0.0122 \\ diff --git a/tex/tables/age/latex/results_age_dwald_dynAA_500_acc.tex b/tex/tables/age/latex/results_age_dwald_dynAA_500_acc.tex index 94252dd35f9937f66ab671394bc3dd5b40393c39..37959d56a1d0bd9d182710afa9129de83060de37 100644 --- a/tex/tables/age/latex/results_age_dwald_dynAA_500_acc.tex +++ b/tex/tables/age/latex/results_age_dwald_dynAA_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_acc_500_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7413 & 0.7422 & 0.6347 & 0.6350 & 0.4899 & 0.4848 & 0.4263 & 0.4239 \\ & 2-3 & 0.8250 & 0.8252 & 0.7357 & 0.7356 & 0.5868 & 0.5840 & 0.5140 & 0.5114 \\ diff --git a/tex/tables/age/latex/results_age_dwald_dynAA_500_dist.tex b/tex/tables/age/latex/results_age_dwald_dynAA_500_dist.tex index 3fb342b85cdb6bdb33e130ac8969ef13c901ba74..211f7b30327ce88b70b8bd5c614ae4548744b413 100644 --- a/tex/tables/age/latex/results_age_dwald_dynAA_500_dist.tex +++ b/tex/tables/age/latex/results_age_dwald_dynAA_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Age_dist_500_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.0733 & 0.0228 & 0.0064 & 0.0045 & -0.0029 & 0.0157 \\ & 2-3 & 0.0645 & -0.0005 & 0.0075 & 0.0223 & -0.0016 & 0.0015 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_100_acc.tex b/tex/tables/age/latex/results_age_full_direct_100_acc.tex index 2560b4b4e5d78442ff24dcaa88b79e4da0f537f1..fb1be0c5194e1b8fed3d7a46049d534af3463292 100644 --- a/tex/tables/age/latex/results_age_full_direct_100_acc.tex +++ b/tex/tables/age/latex/results_age_full_direct_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 100 characters using a cumulated model on the ordered, full feature set} \label{tab:Age_acc_100_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.5983 & 0.5994 & 0.4887 & 0.4861 & 0.3739 & 0.3555 & 0.3088 & 0.2673 \\ & 2-3 & 0.6907 & 0.6908 & 0.5595 & 0.5583 & 0.4424 & 0.4382 & 0.3888 & 0.3706 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_100_dist.tex b/tex/tables/age/latex/results_age_full_direct_100_dist.tex index a0c98a5f6e6c3dd5888ae788fd78f85f72fef9e9..272fccd7c05db0b23137fb7c3a02b2c046546d39 100644 --- a/tex/tables/age/latex/results_age_full_direct_100_dist.tex +++ b/tex/tables/age/latex/results_age_full_direct_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 100 characters using a cumulated model on the ordered, full feature set} \label{tab:Age_dist_100_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0348 & -0.0149 & 0.0099 & 0.0315 & -0.0141 & 0.0174 \\ & 2-3 & -0.0051 & -0.0070 & -0.0063 & -0.0108 & 0.0126 & 0.0458 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_100_f1_dist.tex b/tex/tables/age/latex/results_age_full_direct_100_f1_dist.tex index b87ad67f054cda71c06103fcee794dccf4232eef..f7f88c5d1093a7dab645b46e6af4ddf93959d6b4 100644 --- a/tex/tables/age/latex/results_age_full_direct_100_f1_dist.tex +++ b/tex/tables/age/latex/results_age_full_direct_100_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 100 characters using a cumulated - model on the ordered, full Featureset} -\label{tab:age_f1_dist_100_direct_full} +\caption{Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 100 characters using a cumulated model on the ordered, full feature set} +\label{tab:Age_f1_dist_100_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.5994 & -- & 0.4861 & 0.0013 & 0.3555 & 0.0077 & 0.2673 & 0.0047 \\ & 2-3 & 0.6908 & -- & 0.5583 & 0.0064 & 0.4382 & -0.0084 & 0.3706 & 0.0196 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_250_acc.tex b/tex/tables/age/latex/results_age_full_direct_250_acc.tex index 49ee6c960488c673e4d42c45bc8e50f8428bf316..4e712609ca2f447fd7e32a5dfe3233f5a1a4c8e7 100644 --- a/tex/tables/age/latex/results_age_full_direct_250_acc.tex +++ b/tex/tables/age/latex/results_age_full_direct_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 250 characters using a cumulated model on the ordered, full feature set} \label{tab:Age_acc_250_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.6772 & 0.6770 & 0.5772 & 0.5772 & 0.4543 & 0.4439 & 0.3928 & 0.3686 \\ & 2-3 & 0.7627 & 0.7629 & 0.6684 & 0.6689 & 0.5239 & 0.5115 & 0.4643 & 0.4581 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_250_dist.tex b/tex/tables/age/latex/results_age_full_direct_250_dist.tex index 99dd3f1a054887e82522d078bb6944b4720677b2..a9cf72be0330970603d15016f2d9db665a1b3a0c 100644 --- a/tex/tables/age/latex/results_age_full_direct_250_dist.tex +++ b/tex/tables/age/latex/results_age_full_direct_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 250 characters using a cumulated model on the ordered, full feature set} \label{tab:Age_dist_250_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0416 & 0.1495 & 0.0072 & 0.0051 & 0.0153 & 0.0489 \\ & 2-3 & -0.0223 & 0.0252 & -0.0132 & 0.0114 & 0.0086 & -0.0058 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_250_f1_dist.tex b/tex/tables/age/latex/results_age_full_direct_250_f1_dist.tex index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..51cfc2bbfbde5eaebfcf48ecc29b7e760eda9447 100644 --- a/tex/tables/age/latex/results_age_full_direct_250_f1_dist.tex +++ b/tex/tables/age/latex/results_age_full_direct_250_f1_dist.tex @@ -0,0 +1,45 @@ +\begin{table}[!ht] +\centering +\caption{Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 250 characters using a cumulated model on the ordered, full feature set} +\label{tab:Age_f1_dist_250_direct_full} +\begin{adjustbox}{max width=\textwidth} +\begin{tabular}{llcccccccc} +\toprule + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ +\midrule +\multirow{4}{*}{DIST\_CHAR} & 2 & 0.6770 & -- & 0.5772 & 0.0620 & 0.4439 & 0.0122 & 0.3686 & 0.0181 \\ + & 2-3 & 0.7629 & -- & 0.6689 & 0.0686 & 0.5115 & 0.0189 & 0.4581 & 0.0152 \\ + & 2-3-4 & 0.7555 & -- & 0.6732 & 0.0693 & 0.5440 & 0.0045 & 0.4795 & 0.0072 \\ + & 2-3-4-5 & 0.7413 & -- & 0.6848 & 0.0496 & 0.5361 & 0.0093 & 0.4875 & -0.0054 \\ +\cline{1-10} +\multirow{4}{*}{DIST\_CHAR\_ASIS} & 2 & 0.7751 & -- & 0.6996 & 0.0390 & 0.5567 & 0.0187 & 0.4712 & 0.0050 \\ + & 2-3 & 0.7920 & -- & 0.7067 & 0.0346 & 0.5705 & 0.0025 & 0.4942 & 0.0027 \\ + & 2-3-4 & 0.7996 & -- & 0.7131 & 0.0333 & 0.5736 & 0.0004 & 0.4902 & 0.0168 \\ + & 2-3-4-5 & 0.7941 & -- & 0.7071 & 0.0450 & 0.5845 & -0.0004 & 0.5020 & 0.0206 \\ +\cline{1-10} +\multirow{3}{*}{DIST\_CHAR\_ASIS\_POS} & 1 & 0.7611 & -- & 0.6963 & 0.0487 & 0.5785 & 0.0226 & 0.4899 & 0.0268 \\ + & 1-2 & 0.7846 & -- & 0.7104 & 0.0371 & 0.5838 & 0.0278 & 0.4921 & 0.0101 \\ + & 1-2-3 & 0.7854 & -- & 0.7056 & 0.0359 & 0.5842 & 0.0253 & 0.4968 & 0.0106 \\ +\cline{1-10} +\multirow{3}{*}{DIST\_CHAR\_ASIS\_POS\_TAG} & 1 & 0.7851 & -- & 0.7068 & 0.0467 & 0.5713 & 0.0249 & 0.4799 & 0.0238 \\ + & 1-2 & 0.7764 & -- & 0.7016 & 0.0567 & 0.5649 & 0.0192 & 0.4960 & 0.0132 \\ + & 1-2-3 & 0.7829 & -- & 0.7012 & 0.0444 & 0.5635 & 0.0295 & 0.4999 & 0.0359 \\ +\cline{1-10} +\multirow{3}{*}{DIST\_CHAR\_ASIS\_POS\_TAG\_DEP} & 1 & 0.7747 & -- & 0.6970 & 0.0169 & 0.5749 & 0.0155 & 0.4950 & 0.0337 \\ + & 1-2 & 0.7721 & -- & 0.6960 & 0.0212 & 0.5829 & 0.0235 & 0.4925 & 0.0254 \\ + & 1-2-3 & 0.7825 & -- & 0.6980 & 0.0463 & 0.5815 & 0.0254 & 0.5003 & 0.0086 \\ +\cline{1-10} +\multirow{2}{*}{DIST\_CHAR\_ASIS\_POS\_TAG\_DEP\_LEMMA} & 1 & 0.7668 & -- & 0.6956 & 0.0495 & 0.5709 & 0.0171 & 0.5031 & 0.0171 \\ + & 1-2 & 0.7647 & -- & 0.7019 & 0.0392 & 0.5673 & 0.0085 & 0.5060 & 0.0258 \\ +\cline{1-10} +\multirow{2}{*}{DIST\_CHAR\_ASIS\_POS\_TAG\_DEP\_LEMMA\_WORD} & 1 & 0.7674 & -- & 0.6883 & 0.0342 & 0.5821 & 0.0089 & 0.5042 & 0.0285 \\ + & 1-2 & 0.7692 & -- & 0.6875 & 0.0310 & 0.5842 & 0.0136 & 0.5019 & 0.0133 \\ +\bottomrule + +\end{tabular}\end{adjustbox} +\end{table} diff --git a/tex/tables/age/latex/results_age_full_direct_500_acc.tex b/tex/tables/age/latex/results_age_full_direct_500_acc.tex index d1053b035c5de51163d8f35592ae2080166a03d7..077d435d133c09d963b158d953023bef325be700 100644 --- a/tex/tables/age/latex/results_age_full_direct_500_acc.tex +++ b/tex/tables/age/latex/results_age_full_direct_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 500 characters using a cumulated model on the ordered, full feature set} \label{tab:Age_acc_500_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7262 & 0.7271 & 0.6350 & 0.6349 & 0.5133 & 0.5123 & 0.4465 & 0.4434 \\ & 2-3 & 0.8192 & 0.8214 & 0.7342 & 0.7331 & 0.5938 & 0.5898 & 0.5199 & 0.5177 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_500_dist.tex b/tex/tables/age/latex/results_age_full_direct_500_dist.tex index 7b4f220da1a6d3f845d8d3d2ef8ccf05fceb9ecf..55c94305bdc5e1f13147e849cc7e5ead9718a609 100644 --- a/tex/tables/age/latex/results_age_full_direct_500_dist.tex +++ b/tex/tables/age/latex/results_age_full_direct_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 500 characters using a cumulated model on the ordered, full feature set} \label{tab:Age_dist_500_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.1872 & 0.0727 & 0.0083 & 0.0109 & 0.0192 & 0.0501 \\ & 2-3 & 0.1142 & 0.0359 & 0.0275 & 0.0294 & 0.0478 & 0.0012 \\ diff --git a/tex/tables/age/latex/results_age_full_direct_500_f1_dist.tex b/tex/tables/age/latex/results_age_full_direct_500_f1_dist.tex index 3d5d44e1e9f8e748b9749019d210fd8890d1c822..f636811cfe63b4e38a3748abfbb674566e2f90c8 100644 --- a/tex/tables/age/latex/results_age_full_direct_500_f1_dist.tex +++ b/tex/tables/age/latex/results_age_full_direct_500_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a cumulated - model on the ordered, full Featureset} -\label{tab:age_f1_dist_500_direct_full} +\caption{Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 500 characters using a cumulated model on the ordered, full feature set} +\label{tab:Age_f1_dist_500_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7271 & -- & 0.6349 & 0.1366 & 0.5123 & 0.0244 & 0.4434 & 0.0048 \\ & 2-3 & 0.8214 & -- & 0.7331 & 0.1364 & 0.5898 & 0.0286 & 0.5177 & 0.0117 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_100_acc.tex b/tex/tables/age/latex/results_age_full_dynAA_100_acc.tex index b457857dc214093eb8e7d0f3e3a68c5f8e583056..3a1fc321c042d31d10b01a56c8e0645daef80ecb 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_100_acc.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 100 characters using a stacked model on the ordered, full feature set} \label{tab:Age_acc_100_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.5814 & 0.5806 & 0.4549 & 0.4544 & 0.2092 & 0.0892 & 0.2029 & 0.0707 \\ & 2-3 & 0.6560 & 0.6565 & 0.5434 & 0.5426 & 0.4313 & 0.4281 & 0.2607 & 0.1626 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_100_dist.tex b/tex/tables/age/latex/results_age_full_dynAA_100_dist.tex index 6d510b6a735aaed1d3d317932f82345524a88a28..5c5ef6143269fdf5e0ab71680448407c4fa11e38 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_100_dist.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 100 characters using a stacked model on the ordered, full feature set} \label{tab:Age_dist_100_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & -0.0261 & -0.0180 & -0.0041 & 0.0083 & 0.0156 & 0.0209 \\ & 2-3 & -0.0058 & -0.0031 & -0.0170 & -0.0032 & 0.0285 & 0.0297 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_100_f1_dist.tex b/tex/tables/age/latex/results_age_full_dynAA_100_f1_dist.tex index d9e9d63a21ccc7cf05201aece753cfde7cc88228..cb2101ef8806dcc929f9e96b77ea60d88efb0400 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_100_f1_dist.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_100_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 100 characters using a stacked - model on the ordered, full Featureset} -\label{tab:age_f1_dist_100_dynAA_full} +\caption{Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 100 characters using a stacked model on the ordered, full feature set} +\label{tab:Age_f1_dist_100_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.5806 & -- & 0.4544 & -0.0261 & 0.0892 & -0.0041 & 0.0707 & 0.0156 \\ & 2-3 & 0.6565 & -- & 0.5426 & -0.0058 & 0.4281 & -0.0170 & 0.1626 & 0.0285 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_250_acc.tex b/tex/tables/age/latex/results_age_full_dynAA_250_acc.tex index 40e0aab870767fa53129fffc23aa17296d8fe63b..04561712e7d6c81300be10900977fa7c1d47cb10 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_250_acc.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 250 characters using a stacked model on the ordered, full feature set} \label{tab:Age_acc_250_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.6667 & 0.6672 & 0.5623 & 0.5621 & 0.4216 & 0.4205 & 0.3466 & 0.3196 \\ & 2-3 & 0.7480 & 0.7484 & 0.6506 & 0.6498 & 0.5183 & 0.5180 & 0.4535 & 0.4513 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_250_dist.tex b/tex/tables/age/latex/results_age_full_dynAA_250_dist.tex index 327dd534b74a0abe2c3b9578bf08832daf721df1..13fc8c80ad654facd98cbf1bd1e6b4ebe595e2ed 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_250_dist.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 250 characters using a stacked model on the ordered, full feature set} \label{tab:Age_dist_250_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.0132 & -0.0179 & -0.0008 & 0.0021 & 0.0057 & 0.0131 \\ & 2-3 & 0.0076 & -0.0155 & 0.0017 & 0.0131 & 0.0161 & 0.0122 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_250_f1_dist.tex b/tex/tables/age/latex/results_age_full_dynAA_250_f1_dist.tex index 702864d488afaf561bcbe800e9fa2d13ea3587f0..08927844b31ddc010947414c1f384d6b85297ab9 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_250_f1_dist.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_250_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 250 characters using a stacked - model on the ordered, full Featureset} -\label{tab:age_f1_dist_250_dynAA_full} +\caption{Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 250 characters using a stacked model on the ordered, full feature set} +\label{tab:Age_f1_dist_250_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.6672 & -- & 0.5621 & 0.0132 & 0.4205 & -0.0008 & 0.3196 & 0.0057 \\ & 2-3 & 0.7484 & -- & 0.6498 & 0.0076 & 0.5180 & 0.0017 & 0.4513 & 0.0161 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_500_acc.tex b/tex/tables/age/latex/results_age_full_dynAA_500_acc.tex index c820f92f3417f527acac6ef37ee9b8ea7c3ac552..ed01d9fed17c6ab8a9502a3091a044530fd422a8 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_500_acc.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 500 characters using a stacked model on the ordered, full feature set} \label{tab:Age_acc_500_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7413 & 0.7422 & 0.6347 & 0.6350 & 0.4899 & 0.4848 & 0.4263 & 0.4239 \\ & 2-3 & 0.8250 & 0.8252 & 0.7357 & 0.7356 & 0.5868 & 0.5840 & 0.5140 & 0.5114 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_500_dist.tex b/tex/tables/age/latex/results_age_full_dynAA_500_dist.tex index 810f6c23c554e111baa93eaad0771cf7c609bf80..75c1445ed5ba9bda0c99a90dc49a30fde5ffece4 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_500_dist.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 500 characters using a stacked model on the ordered, full feature set} \label{tab:Age_dist_500_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.0733 & 0.0228 & 0.0064 & 0.0045 & -0.0029 & 0.0157 \\ & 2-3 & 0.0645 & -0.0005 & 0.0075 & 0.0223 & -0.0016 & 0.0015 \\ diff --git a/tex/tables/age/latex/results_age_full_dynAA_500_f1_dist.tex b/tex/tables/age/latex/results_age_full_dynAA_500_f1_dist.tex index 6b39e7c396c46bb6eda536d98f45799a14518a1e..c84c1efda7f39514395ad01a10dd9c915dee6a53 100644 --- a/tex/tables/age/latex/results_age_full_dynAA_500_f1_dist.tex +++ b/tex/tables/age/latex/results_age_full_dynAA_500_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a stacked - model on the ordered, full Featureset} -\label{tab:age_f1_dist_500_dynAA_full} +\caption{Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 500 characters using a stacked model on the ordered, full feature set} +\label{tab:Age_f1_dist_500_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7422 & -- & 0.6350 & 0.0733 & 0.4848 & 0.0064 & 0.4239 & -0.0029 \\ & 2-3 & 0.8252 & -- & 0.7356 & 0.0645 & 0.5840 & 0.0075 & 0.5114 & -0.0016 \\ diff --git a/tex/tables/age/latex/results_age_individual_baseline_100_acc.tex b/tex/tables/age/latex/results_age_individual_baseline_100_acc.tex index 454022be43767eb3cab62d8112caf6d55b0b85dd..3ccf2ca6204d811bf3419550daccb2da1c12687c 100644 --- a/tex/tables/age/latex/results_age_individual_baseline_100_acc.tex +++ b/tex/tables/age/latex/results_age_individual_baseline_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 100 characters using a feature-wise model on the individual feature types} \label{tab:Age_acc_100_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.3648 & 0.3249 & 0.2771 & 0.2136 & 0.2645 & 0.2207 & 0.2114 & 0.1008 \\ & 2-3 & 0.3689 & 0.3502 & 0.3350 & 0.3266 & 0.2162 & 0.1061 & 0.2082 & 0.0899 \\ diff --git a/tex/tables/age/latex/results_age_individual_baseline_100_dist.tex b/tex/tables/age/latex/results_age_individual_baseline_100_dist.tex index ac982bf27df63fdd749bc09e7d77aae250b2bdf5..2de8fe7d88d1ad61ac41341b996173bf10c1a2dc 100644 --- a/tex/tables/age/latex/results_age_individual_baseline_100_dist.tex +++ b/tex/tables/age/latex/results_age_individual_baseline_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 100 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 100 characters using a feature-wise model on the individual feature types} \label{tab:Age_dist_100_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0348 & -0.0149 & 0.0099 & 0.0315 & -0.0141 & 0.0174 \\ & 2-3 & -0.0051 & -0.0070 & -0.0063 & -0.0108 & 0.0126 & 0.0458 \\ diff --git a/tex/tables/age/latex/results_age_individual_baseline_250_acc.tex b/tex/tables/age/latex/results_age_individual_baseline_250_acc.tex index 3c951736737eac2717ae7c9f4d38b24e6e354e38..272317bd9590c2e63cd28cf54c959f6aee7d6c09 100644 --- a/tex/tables/age/latex/results_age_individual_baseline_250_acc.tex +++ b/tex/tables/age/latex/results_age_individual_baseline_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 250 characters using a feature-wise model on the individual feature types} \label{tab:Age_acc_250_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.3910 & 0.3670 & 0.2839 & 0.2198 & 0.2414 & 0.1601 & 0.2796 & 0.2179 \\ & 2-3 & 0.4489 & 0.4159 & 0.3855 & 0.3728 & 0.2272 & 0.1273 & 0.3201 & 0.3105 \\ diff --git a/tex/tables/age/latex/results_age_individual_baseline_250_dist.tex b/tex/tables/age/latex/results_age_individual_baseline_250_dist.tex index a3ebeb234fc089f923f5b50286cb68de607c44f0..784057d536b6d21a5998ac8466142d92b0cd56fa 100644 --- a/tex/tables/age/latex/results_age_individual_baseline_250_dist.tex +++ b/tex/tables/age/latex/results_age_individual_baseline_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 250 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 250 characters using a feature-wise model on the individual feature types} \label{tab:Age_dist_250_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0416 & 0.1495 & 0.0072 & 0.0051 & 0.0153 & 0.0489 \\ & 2-3 & -0.0223 & 0.0252 & -0.0132 & 0.0114 & 0.0086 & -0.0058 \\ diff --git a/tex/tables/age/latex/results_age_individual_baseline_500_acc.tex b/tex/tables/age/latex/results_age_individual_baseline_500_acc.tex index 7856fd2bcba757a58de9d6defb1c45a8b5d22746..960bfb9d5d1e0296ec57dcdc599ec9dfe0e3ed10 100644 --- a/tex/tables/age/latex/results_age_individual_baseline_500_acc.tex +++ b/tex/tables/age/latex/results_age_individual_baseline_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{'Accuracy and F1-scores for the prediction of age on a minimal input instance + length of 500 characters using a feature-wise model on the individual feature types} \label{tab:Age_acc_500_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.4831 & 0.4797 & 0.2924 & 0.2249 & 0.3224 & 0.2808 & 0.2819 & 0.2196 \\ & 2-3 & 0.4969 & 0.4809 & 0.3987 & 0.3711 & 0.3089 & 0.2633 & 0.3029 & 0.2736 \\ diff --git a/tex/tables/age/latex/results_age_individual_baseline_500_dist.tex b/tex/tables/age/latex/results_age_individual_baseline_500_dist.tex index 18fab38cebdbb0a83016619574bd9dc06c2fa248..407396d50bb1d96301ece3ffa9e9cbdd4026603c 100644 --- a/tex/tables/age/latex/results_age_individual_baseline_500_dist.tex +++ b/tex/tables/age/latex/results_age_individual_baseline_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of age on a Minimal Instance Length of 500 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{Stability of feature importance for the prediction of age on a minimal input instance + length of 500 characters using a feature-wise model on the individual feature types} \label{tab:Age_dist_500_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{age} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Age} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.1872 & 0.0727 & 0.0083 & 0.0109 & 0.0192 & 0.0501 \\ & 2-3 & 0.1142 & 0.0359 & 0.0275 & 0.0294 & 0.0478 & 0.0012 \\ diff --git a/tex/tables/age/latex/results_age_individual_baseline_500_f1_dist.tex b/tex/tables/age/latex/results_age_individual_baseline_500_f1_dist.tex index 2b0e627956f5e78b9c0568dee3bb93f8237b6c28..57cdd60e840f78ae3b5a503c4c6a3fddf9ab475a 100644 --- a/tex/tables/age/latex/results_age_individual_baseline_500_f1_dist.tex +++ b/tex/tables/age/latex/results_age_individual_baseline_500_f1_dist.tex @@ -1,7 +1,7 @@ \begin{table} \centering \caption{F1-Score and Average Distortion of Features for the Prediction of Age on a Minimal Tweet Length of 500 characters using a feature-wise - model on the individual Featuretypes} + model on the individual feature types} \label{tab:age_f1_dist_500_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} @@ -10,7 +10,7 @@ & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ +feature types & subgrams & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.4797 & -- & 0.2249 & 0.1872 & 0.2808 & 0.0083 & 0.2196 & 0.0192 \\ & 2-3 & 0.4809 & -- & 0.3711 & 0.1142 & 0.2633 & 0.0275 & 0.2736 & 0.0478 \\ diff --git a/tex/tables/dataset.tex b/tex/tables/dataset.tex index 2801499c4226b662eb027d6fff5b7d438ee8ab68..6e5b23157d4300b5ea656bc868a9110f3134403c 100644 --- a/tex/tables/dataset.tex +++ b/tex/tables/dataset.tex @@ -7,7 +7,7 @@ \toprule & {} & \multicolumn{2}{l}{avg\_instance} & \multicolumn{2}{l}{avg\_tweet} & \multicolumn{2}{l}{avg\_tweet\_per\_instance} \\ & Target & age & gender & age & gender & age & gender \\ -\# Chars in Input & \# Authors & & & & & & \\ +No. of Characters & No. of Authors & & & & & & \\ \midrule \multirow{4}{*}{100} & 50 & 160.30 & 162.94 & 109.58 & 111.92 & 1.46 & 1.46 \\ & 150 & 160.52 & 162.37 & 107.38 & 112.94 & 1.49 & 1.44 \\ diff --git a/tex/tables/gender/html/results_gender_dwald_direct_100_acc.html b/tex/tables/gender/html/results_gender_dwald_direct_100_acc.html index 6054e718a408eb1d5508e2dd31334b9cac2b94fa..94dc4c22e64af0adf9c173158b19900d4d5759ad 100644 --- a/tex/tables/gender/html/results_gender_dwald_direct_100_acc.html +++ b/tex/tables/gender/html/results_gender_dwald_direct_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_dwald_direct_100_dist.html b/tex/tables/gender/html/results_gender_dwald_direct_100_dist.html index 37beb8dbe5d54756c4947ee76fcdb21856050765..68f2524a43e26bdf1f0ae65b3179873b8a28116d 100644 --- a/tex/tables/gender/html/results_gender_dwald_direct_100_dist.html +++ b/tex/tables/gender/html/results_gender_dwald_direct_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_dwald_direct_250_acc.html b/tex/tables/gender/html/results_gender_dwald_direct_250_acc.html index de6dd7987ceb032c6c40e907f9c4e696ebaa0cd0..fdd0a40f11c5276b802b392ac657f2b50da30c50 100644 --- a/tex/tables/gender/html/results_gender_dwald_direct_250_acc.html +++ b/tex/tables/gender/html/results_gender_dwald_direct_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_dwald_direct_250_dist.html b/tex/tables/gender/html/results_gender_dwald_direct_250_dist.html index 9d2c11adc4043fa7136e6b18b35e64fa95a94b94..48ced1d3c48a8fa2a038034e62fd13474c0abfbe 100644 --- a/tex/tables/gender/html/results_gender_dwald_direct_250_dist.html +++ b/tex/tables/gender/html/results_gender_dwald_direct_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_dwald_direct_500_acc.html b/tex/tables/gender/html/results_gender_dwald_direct_500_acc.html index b9e20e848ee0efe83baa54d421e9514104277222..627762f1d74082bf9b9170b2cb79b0eafa7670b6 100644 --- a/tex/tables/gender/html/results_gender_dwald_direct_500_acc.html +++ b/tex/tables/gender/html/results_gender_dwald_direct_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_dwald_direct_500_dist.html b/tex/tables/gender/html/results_gender_dwald_direct_500_dist.html index 3ca6e29c052eaa0341f9174b12bc24d7fbc46562..68259c9e8bc1627c28149544aba91e8dd7e296c0 100644 --- a/tex/tables/gender/html/results_gender_dwald_direct_500_dist.html +++ b/tex/tables/gender/html/results_gender_dwald_direct_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_dwald_dynAA_100_acc.html b/tex/tables/gender/html/results_gender_dwald_dynAA_100_acc.html index 4f574cec3e0888d3ce358ea0a0312b8f21d05065..27a189b8d4b61fbbba7bebd3fb4bec602dfca5b1 100644 --- a/tex/tables/gender/html/results_gender_dwald_dynAA_100_acc.html +++ b/tex/tables/gender/html/results_gender_dwald_dynAA_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_dwald_dynAA_100_dist.html b/tex/tables/gender/html/results_gender_dwald_dynAA_100_dist.html index 037e7d9f03879c0c1666a68a0411b3cfa2bbdb59..f2b8373663861ac6173f96f9cf7559c1d08c45d9 100644 --- a/tex/tables/gender/html/results_gender_dwald_dynAA_100_dist.html +++ b/tex/tables/gender/html/results_gender_dwald_dynAA_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_dwald_dynAA_250_acc.html b/tex/tables/gender/html/results_gender_dwald_dynAA_250_acc.html index f0efcbafb063f9c3fbc0ccde3c83d83c85192b66..5ffd5f6ed4307c22b7940ba671bfcc206bcd8b7e 100644 --- a/tex/tables/gender/html/results_gender_dwald_dynAA_250_acc.html +++ b/tex/tables/gender/html/results_gender_dwald_dynAA_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_dwald_dynAA_250_dist.html b/tex/tables/gender/html/results_gender_dwald_dynAA_250_dist.html index 97d7178a4f5574512888704218103b3c52a2ebe3..f07b9628e2e5bc6e4194209b902934d9f71b7e2f 100644 --- a/tex/tables/gender/html/results_gender_dwald_dynAA_250_dist.html +++ b/tex/tables/gender/html/results_gender_dwald_dynAA_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_dwald_dynAA_500_acc.html b/tex/tables/gender/html/results_gender_dwald_dynAA_500_acc.html index d563dc104f5fcae38f0c8820824c2c4867b6c249..c6164ee17cd6e7c3c409a055bb706ad770ca4afe 100644 --- a/tex/tables/gender/html/results_gender_dwald_dynAA_500_acc.html +++ b/tex/tables/gender/html/results_gender_dwald_dynAA_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_dwald_dynAA_500_dist.html b/tex/tables/gender/html/results_gender_dwald_dynAA_500_dist.html index 72ee2773cb4645c8e1a9d740e9ddeb07326d6db3..b44bd53fcff4acaf0c6a0691775c4002258d4eb9 100644 --- a/tex/tables/gender/html/results_gender_dwald_dynAA_500_dist.html +++ b/tex/tables/gender/html/results_gender_dwald_dynAA_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_100_acc.html b/tex/tables/gender/html/results_gender_full_direct_100_acc.html index 0319427810c8f14bf2e4485b4b73a738107d31f4..0a0b60c7ce9cb7f5b697aa7ebdb0500e5fb140b9 100644 --- a/tex/tables/gender/html/results_gender_full_direct_100_acc.html +++ b/tex/tables/gender/html/results_gender_full_direct_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_100_dist.html b/tex/tables/gender/html/results_gender_full_direct_100_dist.html index 476808ff31465dbb4de42dc9fcbb2ff67abe4629..81e9515180c05f9675b18be0a61ea662eeb67110 100644 --- a/tex/tables/gender/html/results_gender_full_direct_100_dist.html +++ b/tex/tables/gender/html/results_gender_full_direct_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_100_f1_dist.html b/tex/tables/gender/html/results_gender_full_direct_100_f1_dist.html index 57b7e6cf51c60e44d6f6b20ed7b3693d87f6700c..4f67741791ab9e65252e26b68516c21eef20e638 100644 --- a/tex/tables/gender/html/results_gender_full_direct_100_f1_dist.html +++ b/tex/tables/gender/html/results_gender_full_direct_100_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_250_acc.html b/tex/tables/gender/html/results_gender_full_direct_250_acc.html index 4a4d88eea559db7572dbbc972b466816127da096..4c9fc5a39c41cc8f90b5df39ab464d057301893a 100644 --- a/tex/tables/gender/html/results_gender_full_direct_250_acc.html +++ b/tex/tables/gender/html/results_gender_full_direct_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_250_dist.html b/tex/tables/gender/html/results_gender_full_direct_250_dist.html index eb0eaf73210f8e34909792d2f25c8a396919b485..b7030ca9fb6d46def753685842b3c773b2dab401 100644 --- a/tex/tables/gender/html/results_gender_full_direct_250_dist.html +++ b/tex/tables/gender/html/results_gender_full_direct_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_250_f1_dist.html b/tex/tables/gender/html/results_gender_full_direct_250_f1_dist.html index e2eac376e43f18db2f3707eef855cd58175a1de3..ef8220be8378eedd2cec702d7e36f13b39f6cea5 100644 --- a/tex/tables/gender/html/results_gender_full_direct_250_f1_dist.html +++ b/tex/tables/gender/html/results_gender_full_direct_250_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_500_acc.html b/tex/tables/gender/html/results_gender_full_direct_500_acc.html index 0b88f6bfaea6a6df492f2c15ed65049fd36af569..83e93dbcbd1a8a4372ed70201ac526eb28619500 100644 --- a/tex/tables/gender/html/results_gender_full_direct_500_acc.html +++ b/tex/tables/gender/html/results_gender_full_direct_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_500_dist.html b/tex/tables/gender/html/results_gender_full_direct_500_dist.html index 3435489843081d719be68a3274fd4210ccc092b7..32a23068863f3fad5e9b3b77d13f50a420231ba1 100644 --- a/tex/tables/gender/html/results_gender_full_direct_500_dist.html +++ b/tex/tables/gender/html/results_gender_full_direct_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_full_direct_500_f1_dist.html b/tex/tables/gender/html/results_gender_full_direct_500_f1_dist.html index 5b7b9d745b67d81fb04bacb44b41cb254c90d133..889248dd58efb135b3ae35d96112ec469c6458c8 100644 --- a/tex/tables/gender/html/results_gender_full_direct_500_f1_dist.html +++ b/tex/tables/gender/html/results_gender_full_direct_500_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_100_acc.html b/tex/tables/gender/html/results_gender_full_dynAA_100_acc.html index c501e1d9a2591bd3fe4e421d4d38e99d0f7ea6cd..23c261f6a5bdcd3559ac5e95803ce60549290332 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_100_acc.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_100_dist.html b/tex/tables/gender/html/results_gender_full_dynAA_100_dist.html index 6f9fc6535284ff2c6eb741f95900eea515835c47..fe38efcd421a7b5101400a318d77bb0d89e493b4 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_100_dist.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_100_f1_dist.html b/tex/tables/gender/html/results_gender_full_dynAA_100_f1_dist.html index 49ccc9f02b5693d7447b09683e19bfc449cb6b69..589b34133c83bfa4aa6f97038de0f0c2fcd38e81 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_100_f1_dist.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_100_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_250_acc.html b/tex/tables/gender/html/results_gender_full_dynAA_250_acc.html index 82486cf1c158c7597951549d8317cc7f9a1caa90..51d3c89a4adbd7a92e38d082783091718126f5af 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_250_acc.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_250_dist.html b/tex/tables/gender/html/results_gender_full_dynAA_250_dist.html index 4fad31d88e56ef399f2627a28d7d605ba03f1441..6379bab6dffb1c625e3fc9f31d52ef3b9cd07747 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_250_dist.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_250_f1_dist.html b/tex/tables/gender/html/results_gender_full_dynAA_250_f1_dist.html index b29c14e1e1ecc33670fa9338b3af83b1725fd3cd..7419cdd4cc4d5aa2b363fe46ec53567d4d748525 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_250_f1_dist.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_250_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_500_acc.html b/tex/tables/gender/html/results_gender_full_dynAA_500_acc.html index 351d17d2e8d5beb8efffcc0cdde1f612c1ff0044..2df2eaa7118f4e543769379cd4a4c052e79b3ff2 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_500_acc.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_500_dist.html b/tex/tables/gender/html/results_gender_full_dynAA_500_dist.html index a2e9ff3970abe48f9209d7347b0899c454624d92..8d77deb50d672d65ff9de6d27d4771b8a44a3ce9 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_500_dist.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_full_dynAA_500_f1_dist.html b/tex/tables/gender/html/results_gender_full_dynAA_500_f1_dist.html index a8f62a68d7baf8ef9e6241ce4f7b0d8ee972b6d0..0eba9cc81b71035fc781d1aa69f94f6c9d41a8c1 100644 --- a/tex/tables/gender/html/results_gender_full_dynAA_500_f1_dist.html +++ b/tex/tables/gender/html/results_gender_full_dynAA_500_f1_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_individual_baseline_100_acc.html b/tex/tables/gender/html/results_gender_individual_baseline_100_acc.html index e473fe9d5d530abeac727cd7a7215baa7872d3a3..4edc2e7d445954981dd26222729334f6af593e88 100644 --- a/tex/tables/gender/html/results_gender_individual_baseline_100_acc.html +++ b/tex/tables/gender/html/results_gender_individual_baseline_100_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_individual_baseline_100_dist.html b/tex/tables/gender/html/results_gender_individual_baseline_100_dist.html index 978758da28e268a3d0db789907a93fd629763fd9..284da6e552103fb9e92fe969ac025c7372e66dca 100644 --- a/tex/tables/gender/html/results_gender_individual_baseline_100_dist.html +++ b/tex/tables/gender/html/results_gender_individual_baseline_100_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_individual_baseline_250_acc.html b/tex/tables/gender/html/results_gender_individual_baseline_250_acc.html index 81852aaa191b5538d0a4a7917d8c6a1ba3c16e1f..6ca7dffbfd6b572fc219f5cdbe8c4e8a83a26960 100644 --- a/tex/tables/gender/html/results_gender_individual_baseline_250_acc.html +++ b/tex/tables/gender/html/results_gender_individual_baseline_250_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_individual_baseline_250_dist.html b/tex/tables/gender/html/results_gender_individual_baseline_250_dist.html index 73714a7b609e43bab751ddbb10e261a9b1aa31ec..b7a66050a0fb975a834719a29ee17b5ff95c154c 100644 --- a/tex/tables/gender/html/results_gender_individual_baseline_250_dist.html +++ b/tex/tables/gender/html/results_gender_individual_baseline_250_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/html/results_gender_individual_baseline_500_acc.html b/tex/tables/gender/html/results_gender_individual_baseline_500_acc.html index 71e62ea48bd2ed2f44bb46547f720fe3c2f3ee91..6c0acfcd42779a3ee38ae92dbe6684dfbd83b13b 100644 --- a/tex/tables/gender/html/results_gender_individual_baseline_500_acc.html +++ b/tex/tables/gender/html/results_gender_individual_baseline_500_acc.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">50</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> diff --git a/tex/tables/gender/html/results_gender_individual_baseline_500_dist.html b/tex/tables/gender/html/results_gender_individual_baseline_500_dist.html index cc3c416602b5703ef1da7d2a04be0514c6465622..5d5c6fc57c03eefe4bd5b4aebb78b4116e15088a 100644 --- a/tex/tables/gender/html/results_gender_individual_baseline_500_dist.html +++ b/tex/tables/gender/html/results_gender_individual_baseline_500_dist.html @@ -12,7 +12,7 @@ </tr> <tr> <th></th> - <th># Authors</th> + <th>No. of Authors</th> <th colspan="2" halign="left">150</th> <th colspan="2" halign="left">500</th> <th colspan="2" halign="left">1000</th> diff --git a/tex/tables/gender/latex/results_gender_dwald_direct_100_acc.tex b/tex/tables/gender/latex/results_gender_dwald_direct_100_acc.tex index bb911d05577c41304bde78c73be03c72b43e74ac..4216da3aefc881c4f6a878f00d6fc42b91c5e0b7 100644 --- a/tex/tables/gender/latex/results_gender_dwald_direct_100_acc.tex +++ b/tex/tables/gender/latex/results_gender_dwald_direct_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_acc_100_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7343 & 0.7338 & 0.6967 & 0.6947 & 0.6284 & 0.6276 & 0.6089 & 0.5966 \\ & 2-3 & 0.7746 & 0.7738 & 0.7331 & 0.7330 & 0.6647 & 0.6645 & 0.6387 & 0.6301 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_direct_100_dist.tex b/tex/tables/gender/latex/results_gender_dwald_direct_100_dist.tex index c28caf1d7eddbdb5418b3a6067c2de2c01ae9a74..042f31408a7ce8bc4391871237a133b4b06d6a58 100644 --- a/tex/tables/gender/latex/results_gender_dwald_direct_100_dist.tex +++ b/tex/tables/gender/latex/results_gender_dwald_direct_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 100 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_dist_100_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.1683 & 0.2888 & -0.0348 & -0.0259 & -0.0312 & -0.0785 \\ & 2-3 & 0.0446 & 0.0485 & 0.0274 & 0.0075 & 0.1002 & 0.0619 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_direct_250_acc.tex b/tex/tables/gender/latex/results_gender_dwald_direct_250_acc.tex index 53696bbf60633723d14917d95403ad3f526cf97f..42e81941ebcc5d8adbb8ba698d250bfcfe58ab52 100644 --- a/tex/tables/gender/latex/results_gender_dwald_direct_250_acc.tex +++ b/tex/tables/gender/latex/results_gender_dwald_direct_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_acc_250_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7844 & 0.7841 & 0.7495 & 0.7493 & 0.6736 & 0.6736 & 0.6514 & 0.6511 \\ & 2-3 & 0.8249 & 0.8247 & 0.7771 & 0.7738 & 0.7219 & 0.7218 & 0.6916 & 0.6916 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_direct_250_dist.tex b/tex/tables/gender/latex/results_gender_dwald_direct_250_dist.tex index 8e2669ef3ecca68d0096e3ddce7d97e3d95e5246..eae1ca81a35bdd18d0bbdf48a527e749219f00bc 100644 --- a/tex/tables/gender/latex/results_gender_dwald_direct_250_dist.tex +++ b/tex/tables/gender/latex/results_gender_dwald_direct_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 250 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_dist_250_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0390 & 0.1945 & 0.0539 & 0.0938 & 0.2805 & 0.2587 \\ & 2-3 & 0.1318 & 0.1969 & 0.0012 & 0.1452 & 0.1234 & 0.1113 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_direct_500_acc.tex b/tex/tables/gender/latex/results_gender_dwald_direct_500_acc.tex index c9979a423ea7d7c7686880c5123da241d0583a04..63c51c2500a1b8caf891c55d33a2fadab14fe644 100644 --- a/tex/tables/gender/latex/results_gender_dwald_direct_500_acc.tex +++ b/tex/tables/gender/latex/results_gender_dwald_direct_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_acc_500_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.8231 & 0.8230 & 0.7868 & 0.7868 & 0.7062 & 0.7058 & 0.6795 & 0.6769 \\ & 2-3 & 0.8802 & 0.8802 & 0.8396 & 0.8392 & 0.7698 & 0.7696 & 0.7313 & 0.7311 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_direct_500_dist.tex b/tex/tables/gender/latex/results_gender_dwald_direct_500_dist.tex index 6f75c454b914b63fc2c9ad29b7c0efbcb663724a..dc0925f40c272077373c8aa7bf9f1632c8bb2b91 100644 --- a/tex/tables/gender/latex/results_gender_dwald_direct_500_dist.tex +++ b/tex/tables/gender/latex/results_gender_dwald_direct_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 500 characters using a cumulated model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_dist_500_direct_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0858 & 0.1370 & 0.1528 & 0.2654 & 0.2834 & 0.2834 \\ & 2-3 & 0.1535 & 0.1134 & 0.1350 & 0.1049 & 0.1451 & 0.1875 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_direct_500_f1_dist.tex b/tex/tables/gender/latex/results_gender_dwald_direct_500_f1_dist.tex index 0aa40f3deaa9799ee559841fea8f768038b19ad8..d5cd205642685bd8c5b71072c10f93df39941596 100644 --- a/tex/tables/gender/latex/results_gender_dwald_direct_500_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_dwald_direct_500_f1_dist.tex @@ -10,7 +10,7 @@ & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ +feature types & subgrams & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.8230 & -- & 0.7868 & 0.0911 & 0.7058 & 0.0598 & 0.6769 & 0.0998 \\ & 2-3 & 0.8802 & -- & 0.8392 & 0.0903 & 0.7696 & 0.0331 & 0.7311 & 0.0178 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_dynAA_100_acc.tex b/tex/tables/gender/latex/results_gender_dwald_dynAA_100_acc.tex index 0991a7587880f7f8257c46fdbd34ebd8bdb4c76c..51b27825fef2e87ecbe4c0339f59366dca55bd5b 100644 --- a/tex/tables/gender/latex/results_gender_dwald_dynAA_100_acc.tex +++ b/tex/tables/gender/latex/results_gender_dwald_dynAA_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_acc_100_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7223 & 0.7220 & 0.6879 & 0.6864 & 0.6232 & 0.6230 & 0.6142 & 0.6136 \\ & 2-3 & 0.7658 & 0.7658 & 0.7159 & 0.7139 & 0.6594 & 0.6594 & 0.6426 & 0.6424 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_dynAA_100_dist.tex b/tex/tables/gender/latex/results_gender_dwald_dynAA_100_dist.tex index 7aaab26885bd05c90e5dc187bba34801ee74ea5e..768e7a4c1047f731cf70e3835638c5e13fe5a556 100644 --- a/tex/tables/gender/latex/results_gender_dwald_dynAA_100_dist.tex +++ b/tex/tables/gender/latex/results_gender_dwald_dynAA_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 100 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_dist_100_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & -0.0387 & -0.0005 & 0.0055 & -0.0134 & 0.0438 & 0.0420 \\ & 2-3 & -0.0308 & -0.0107 & -0.0109 & -0.0139 & 0.0442 & 0.0409 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_dynAA_250_acc.tex b/tex/tables/gender/latex/results_gender_dwald_dynAA_250_acc.tex index b711ca1b60632bb2ae26bb22f2edf6a81f59df15..21c0f04be21e9230cd2aaf7806d2ee0b6af98cbd 100644 --- a/tex/tables/gender/latex/results_gender_dwald_dynAA_250_acc.tex +++ b/tex/tables/gender/latex/results_gender_dwald_dynAA_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_acc_250_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7737 & 0.7735 & 0.7414 & 0.7414 & 0.6647 & 0.6642 & 0.6455 & 0.6436 \\ & 2-3 & 0.8138 & 0.8130 & 0.7813 & 0.7813 & 0.7156 & 0.7156 & 0.6858 & 0.6849 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_dynAA_250_dist.tex b/tex/tables/gender/latex/results_gender_dwald_dynAA_250_dist.tex index b1eea436eaa34172e683ff463acc0464fded7124..b0c1c09be165f7c7dad40cbb7a496c8f0ef27573 100644 --- a/tex/tables/gender/latex/results_gender_dwald_dynAA_250_dist.tex +++ b/tex/tables/gender/latex/results_gender_dwald_dynAA_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 250 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_dist_250_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.0315 & 0.0538 & 0.0180 & 0.0214 & 0.0739 & 0.0638 \\ & 2-3 & 0.0250 & 0.0498 & 0.0184 & 0.0121 & 0.0694 & 0.0464 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_dynAA_500_acc.tex b/tex/tables/gender/latex/results_gender_dwald_dynAA_500_acc.tex index af005fb08ceddd2139bc3b8cfa3db052cbde016b..6ec9125ade85e43ed15889514e6287890bd0b857 100644 --- a/tex/tables/gender/latex/results_gender_dwald_dynAA_500_acc.tex +++ b/tex/tables/gender/latex/results_gender_dwald_dynAA_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_acc_500_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.8192 & 0.8179 & 0.7780 & 0.7778 & 0.6948 & 0.6935 & 0.6765 & 0.6764 \\ & 2-3 & 0.8743 & 0.8740 & 0.8369 & 0.8369 & 0.7639 & 0.7636 & 0.7286 & 0.7285 \\ diff --git a/tex/tables/gender/latex/results_gender_dwald_dynAA_500_dist.tex b/tex/tables/gender/latex/results_gender_dwald_dynAA_500_dist.tex index c381a11860b2e0061ddc17d62d25dcdde7cca73b..485ae0f39a9a4687a6b47532c9842c7be9d99fc1 100644 --- a/tex/tables/gender/latex/results_gender_dwald_dynAA_500_dist.tex +++ b/tex/tables/gender/latex/results_gender_dwald_dynAA_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Reduced Featureset (DIST, CHAR, LEMMA, WORD)} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 500 characters using a stacked model on the reduced feature set (DIST, CHAR, LEMMA, WORD)} \label{tab:Gender_dist_500_dynAA_dwald} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.1274 & 0.0535 & 0.0573 & 0.0718 & 0.0552 & 0.0749 \\ & 2-3 & 0.1182 & 0.0385 & 0.0420 & 0.0543 & 0.0388 & 0.0574 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_100_acc.tex b/tex/tables/gender/latex/results_gender_full_direct_100_acc.tex index ed6d2e4b915af1d7c0188809a0bd686477901e23..0269631560de09a079e8e4ad9b1cd78748e7ad55 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_100_acc.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 100 characters using a cumulated model on the ordered, full feature set} \label{tab:Gender_acc_100_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7343 & 0.7338 & 0.6967 & 0.6947 & 0.6284 & 0.6276 & 0.6089 & 0.5966 \\ & 2-3 & 0.7746 & 0.7738 & 0.7331 & 0.7330 & 0.6647 & 0.6645 & 0.6387 & 0.6301 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_100_dist.tex b/tex/tables/gender/latex/results_gender_full_direct_100_dist.tex index cd136f52b1f0067431be5396ad993d68a357c679..032d13bd813c1ca6b1c09feeb677c4e0c4f43689 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_100_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 100 characters using a cumulated model on the ordered, full feature set} \label{tab:Gender_dist_100_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.1683 & 0.2888 & -0.0348 & -0.0259 & -0.0312 & -0.0785 \\ & 2-3 & 0.0446 & 0.0485 & 0.0274 & 0.0075 & 0.1002 & 0.0619 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_100_f1_dist.tex b/tex/tables/gender/latex/results_gender_full_direct_100_f1_dist.tex index 7b23b1aaa2e594e8ae8cd014738ec9c0cc100f80..867462688ff9fdf6aca6f9a26ab5626dbf4d3663 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_100_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_100_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 100 characters using a cumulated - model on the ordered, full Featureset} -\label{tab:gender_f1_dist_100_direct_full} +\caption{Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 100 characters using a cumulated model on the ordered, full feature set} +\label{tab:Gender_f1_dist_100_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7338 & -- & 0.6947 & -0.0481 & 0.6276 & -0.0020 & 0.5966 & 0.0686 \\ & 2-3 & 0.7738 & -- & 0.7330 & -0.0355 & 0.6645 & 0.0120 & 0.6301 & 0.0665 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_250_acc.tex b/tex/tables/gender/latex/results_gender_full_direct_250_acc.tex index 88fe6c8cf46527d63c13b9752965ea0e93e892c7..6ee93e096b6e945b83a078441a8f14aaa2b498af 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_250_acc.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 250 characters using a cumulated model on the ordered, full feature set} \label{tab:Gender_acc_250_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7844 & 0.7841 & 0.7495 & 0.7493 & 0.6736 & 0.6736 & 0.6514 & 0.6511 \\ & 2-3 & 0.8249 & 0.8247 & 0.7771 & 0.7738 & 0.7219 & 0.7218 & 0.6916 & 0.6916 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_250_dist.tex b/tex/tables/gender/latex/results_gender_full_direct_250_dist.tex index afb7e61bdab5b6ea6fa8dfbeb4be297e8bc16654..c5a31ca82184a9ff54d01920df181ffd4914d662 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_250_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 250 characters using a cumulated model on the ordered, full feature set} \label{tab:Gender_dist_250_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0390 & 0.1945 & 0.0539 & 0.0938 & 0.2805 & 0.2587 \\ & 2-3 & 0.1318 & 0.1969 & 0.0012 & 0.1452 & 0.1234 & 0.1113 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_250_f1_dist.tex b/tex/tables/gender/latex/results_gender_full_direct_250_f1_dist.tex index 5315482016f1e4360cbec79b38bb90a1b145baa2..3f4822e0464a22327ea1eb806411a09f99e0e901 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_250_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_250_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 250 characters using a cumulated - model on the ordered, full Featureset} -\label{tab:gender_f1_dist_250_direct_full} +\caption{Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 250 characters using a cumulated model on the ordered, full feature set} +\label{tab:Gender_f1_dist_250_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7841 & -- & 0.7493 & 0.0017 & 0.6736 & 0.0348 & 0.6511 & 0.0363 \\ & 2-3 & 0.8247 & -- & 0.7738 & -0.0013 & 0.7218 & -0.0077 & 0.6916 & 0.0245 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_500_acc.tex b/tex/tables/gender/latex/results_gender_full_direct_500_acc.tex index 9d0fb1a8852003020e2a9a6b0784e8a307e3fdf0..d897af87588894859978902f3fe9ea544c8b4e95 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_500_acc.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 500 characters using a cumulated model on the ordered, full feature set} \label{tab:Gender_acc_500_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.8231 & 0.8230 & 0.7868 & 0.7868 & 0.7062 & 0.7058 & 0.6795 & 0.6769 \\ & 2-3 & 0.8802 & 0.8802 & 0.8396 & 0.8392 & 0.7698 & 0.7696 & 0.7313 & 0.7311 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_500_dist.tex b/tex/tables/gender/latex/results_gender_full_direct_500_dist.tex index a7539f78dd946ba24be76a488915cb2534c7742f..1fbb0724485993b71eec4080658dcaa04082eb3c 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_500_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Cumulated - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 500 characters using a cumulated model on the ordered, full feature set} \label{tab:Gender_dist_500_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0858 & 0.1370 & 0.1528 & 0.2654 & 0.2834 & 0.2834 \\ & 2-3 & 0.1535 & 0.1134 & 0.1350 & 0.1049 & 0.1451 & 0.1875 \\ diff --git a/tex/tables/gender/latex/results_gender_full_direct_500_f1_dist.tex b/tex/tables/gender/latex/results_gender_full_direct_500_f1_dist.tex index 92282ca5600c72eb71a85eae814ed6de4b8f60c8..5c3d2f6b6cb72ad00c2b3d8ba782782ba9a92e7e 100644 --- a/tex/tables/gender/latex/results_gender_full_direct_500_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_direct_500_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a cumulated - model on the ordered, full Featureset} -\label{tab:gender_f1_dist_500_direct_full} +\caption{Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 500 characters using a cumulated model on the ordered, full feature set} +\label{tab:Gender_f1_dist_500_direct_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.8230 & -- & 0.7868 & 0.0911 & 0.7058 & 0.0598 & 0.6769 & 0.0998 \\ & 2-3 & 0.8802 & -- & 0.8392 & 0.0903 & 0.7696 & 0.0331 & 0.7311 & 0.0178 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_100_acc.tex b/tex/tables/gender/latex/results_gender_full_dynAA_100_acc.tex index 71d359db400b9b52089f2fc3d6f1e2ffdab78552..2211efdb92055ab1f68fa3386313bd21f8cf09f3 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_100_acc.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 100 characters using a stacked model on the ordered, full feature set} \label{tab:Gender_acc_100_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7223 & 0.7220 & 0.6879 & 0.6864 & 0.6232 & 0.6230 & 0.6142 & 0.6136 \\ & 2-3 & 0.7658 & 0.7658 & 0.7159 & 0.7139 & 0.6594 & 0.6594 & 0.6426 & 0.6424 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_100_dist.tex b/tex/tables/gender/latex/results_gender_full_dynAA_100_dist.tex index f9b2be122f3954de5a0b93e00fb2c87f538324c0..25768893e01b18925743be9b7ce96d206f669fcc 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_100_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 100 characters using a stacked model on the ordered, full feature set} \label{tab:Gender_dist_100_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & -0.0387 & -0.0005 & 0.0055 & -0.0134 & 0.0438 & 0.0420 \\ & 2-3 & -0.0308 & -0.0107 & -0.0109 & -0.0139 & 0.0442 & 0.0409 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_100_f1_dist.tex b/tex/tables/gender/latex/results_gender_full_dynAA_100_f1_dist.tex index af95a8fa530ff8a6cb15747032dc5e380d226bbd..b05c107a3eb6328d56a6b3899b0c08854347005f 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_100_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_100_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 100 characters using a stacked - model on the ordered, full Featureset} -\label{tab:gender_f1_dist_100_dynAA_full} +\caption{Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 100 characters using a stacked model on the ordered, full feature set} +\label{tab:Gender_f1_dist_100_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7220 & -- & 0.6864 & -0.0387 & 0.6230 & 0.0055 & 0.6136 & 0.0438 \\ & 2-3 & 0.7658 & -- & 0.7139 & -0.0308 & 0.6594 & -0.0109 & 0.6424 & 0.0442 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_250_acc.tex b/tex/tables/gender/latex/results_gender_full_dynAA_250_acc.tex index c4461747b1661a82f00d362748dea8a9e492df78..a77fdd768d3e70416cb1586cf28a3378111b2f9f 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_250_acc.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 250 characters using a stacked model on the ordered, full feature set} \label{tab:Gender_acc_250_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7737 & 0.7735 & 0.7414 & 0.7414 & 0.6647 & 0.6642 & 0.6455 & 0.6436 \\ & 2-3 & 0.8138 & 0.8130 & 0.7813 & 0.7813 & 0.7156 & 0.7156 & 0.6858 & 0.6849 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_250_dist.tex b/tex/tables/gender/latex/results_gender_full_dynAA_250_dist.tex index c1cbaca7fea017644c50a26cf0460c5de579fa90..a34bf21771fcdbf232a42a731bde48a72db1ee0c 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_250_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 250 characters using a stacked model on the ordered, full feature set} \label{tab:Gender_dist_250_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.0315 & 0.0538 & 0.0180 & 0.0214 & 0.0739 & 0.0638 \\ & 2-3 & 0.0250 & 0.0498 & 0.0184 & 0.0121 & 0.0694 & 0.0464 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_250_f1_dist.tex b/tex/tables/gender/latex/results_gender_full_dynAA_250_f1_dist.tex index 00e25516905d97d34df27e4323ee55c34a9bea4f..160c773fa0bf488ea661f68235283b02d94a1cd7 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_250_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_250_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 250 characters using a stacked - model on the ordered, full Featureset} -\label{tab:gender_f1_dist_250_dynAA_full} +\caption{Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 250 characters using a stacked model on the ordered, full feature set} +\label{tab:Gender_f1_dist_250_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.7735 & -- & 0.7414 & 0.0315 & 0.6642 & 0.0180 & 0.6436 & 0.0739 \\ & 2-3 & 0.8130 & -- & 0.7813 & 0.0250 & 0.7156 & 0.0184 & 0.6849 & 0.0694 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_500_acc.tex b/tex/tables/gender/latex/results_gender_full_dynAA_500_acc.tex index 2db86e1ed427e4abe247f8062af6b3c608460008..d8565ec7a5d821bbd508b66a256e40608f617c23 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_500_acc.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 500 characters using a stacked model on the ordered, full feature set} \label{tab:Gender_acc_500_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.8192 & 0.8179 & 0.7780 & 0.7778 & 0.6948 & 0.6935 & 0.6765 & 0.6764 \\ & 2-3 & 0.8743 & 0.8740 & 0.8369 & 0.8369 & 0.7639 & 0.7636 & 0.7286 & 0.7285 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_500_dist.tex b/tex/tables/gender/latex/results_gender_full_dynAA_500_dist.tex index d659b7409a67a86969751c3d0fbb1d97fca8bfd6..3fa9035f27cbf25cf3bcda58899df88f0744df04 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_500_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Stacked - Model on the Ordered, Full Featureset} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 500 characters using a stacked model on the ordered, full feature set} \label{tab:Gender_dist_500_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.1274 & 0.0535 & 0.0573 & 0.0718 & 0.0552 & 0.0749 \\ & 2-3 & 0.1182 & 0.0385 & 0.0420 & 0.0543 & 0.0388 & 0.0574 \\ diff --git a/tex/tables/gender/latex/results_gender_full_dynAA_500_f1_dist.tex b/tex/tables/gender/latex/results_gender_full_dynAA_500_f1_dist.tex index 8e29dad4d35046c53eec1e8dc70d3b1356675154..801bb6675e68ebb7572efc4a3138494c7b2aaf11 100644 --- a/tex/tables/gender/latex/results_gender_full_dynAA_500_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_full_dynAA_500_f1_dist.tex @@ -1,16 +1,16 @@ -\begin{table} +\begin{table}[!ht] \centering -\caption{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a stacked - model on the ordered, full Featureset} -\label{tab:gender_f1_dist_500_dynAA_full} +\caption{Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 500 characters using a stacked model on the ordered, full feature set} +\label{tab:Gender_f1_dist_500_dynAA_full} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & F1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST\_CHAR} & 2 & 0.8179 & -- & 0.7778 & 0.1274 & 0.6935 & 0.0573 & 0.6764 & 0.0552 \\ & 2-3 & 0.8740 & -- & 0.8369 & 0.1182 & 0.7636 & 0.0420 & 0.7285 & 0.0388 \\ diff --git a/tex/tables/gender/latex/results_gender_individual_baseline_100_acc.tex b/tex/tables/gender/latex/results_gender_individual_baseline_100_acc.tex index 4694c1ce045c0f48d488022f1e824f7585605c3b..083f99bed616bc1da140075d1d2f02663082e870 100644 --- a/tex/tables/gender/latex/results_gender_individual_baseline_100_acc.tex +++ b/tex/tables/gender/latex/results_gender_individual_baseline_100_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 100 characters using a feature-wise model on the individual feature types} \label{tab:Gender_acc_100_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.5886 & 0.5711 & 0.5455 & 0.4567 & 0.5639 & 0.5594 & 0.5387 & 0.4881 \\ & 2-3 & 0.6071 & 0.5727 & 0.5992 & 0.5881 & 0.5358 & 0.4757 & 0.5549 & 0.5379 \\ diff --git a/tex/tables/gender/latex/results_gender_individual_baseline_100_dist.tex b/tex/tables/gender/latex/results_gender_individual_baseline_100_dist.tex index 1864e0c3a765c19e970c959c11c7f28111064d85..a4fb095d5370779720c007a6b0ca9c876910f9f5 100644 --- a/tex/tables/gender/latex/results_gender_individual_baseline_100_dist.tex +++ b/tex/tables/gender/latex/results_gender_individual_baseline_100_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 100 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 100 characters using a feature-wise model on the individual feature types} \label{tab:Gender_dist_100_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{100} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{100} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.1683 & 0.2888 & -0.0348 & -0.0259 & -0.0312 & -0.0785 \\ & 2-3 & 0.0446 & 0.0485 & 0.0274 & 0.0075 & 0.1002 & 0.0619 \\ diff --git a/tex/tables/gender/latex/results_gender_individual_baseline_250_acc.tex b/tex/tables/gender/latex/results_gender_individual_baseline_250_acc.tex index 982b1e8ce424aeb363aef37f0074cd34e7eb7716..8ecc99c510404cc46f7cbdcf4da47112d5a33b99 100644 --- a/tex/tables/gender/latex/results_gender_individual_baseline_250_acc.tex +++ b/tex/tables/gender/latex/results_gender_individual_baseline_250_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 250 characters using a feature-wise model on the individual feature types} \label{tab:Gender_acc_250_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.6002 & 0.5633 & 0.6026 & 0.6026 & 0.5649 & 0.5558 & 0.5543 & 0.5311 \\ & 2-3 & 0.6261 & 0.6071 & 0.5801 & 0.5326 & 0.5771 & 0.5764 & 0.5541 & 0.5267 \\ diff --git a/tex/tables/gender/latex/results_gender_individual_baseline_250_dist.tex b/tex/tables/gender/latex/results_gender_individual_baseline_250_dist.tex index aa4f7a79cca1a9db7a0e6d2143bfc3dd32bda657..84818584872148333e0545634c2cd024d399c8c4 100644 --- a/tex/tables/gender/latex/results_gender_individual_baseline_250_dist.tex +++ b/tex/tables/gender/latex/results_gender_individual_baseline_250_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 250 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 250 characters using a feature-wise model on the individual feature types} \label{tab:Gender_dist_250_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{250} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{250} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0390 & 0.1945 & 0.0539 & 0.0938 & 0.2805 & 0.2587 \\ & 2-3 & 0.1318 & 0.1969 & 0.0012 & 0.1452 & 0.1234 & 0.1113 \\ diff --git a/tex/tables/gender/latex/results_gender_individual_baseline_500_acc.tex b/tex/tables/gender/latex/results_gender_individual_baseline_500_acc.tex index 135f7cf0de24e6285747f6e769d5d1ee53967d64..be19d97f259aa856e8c4e8010c02e9e726e0f01a 100644 --- a/tex/tables/gender/latex/results_gender_individual_baseline_500_acc.tex +++ b/tex/tables/gender/latex/results_gender_individual_baseline_500_acc.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Accuracy and F1-Sscores for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{'Accuracy and F1-scores for the prediction of gender on a minimal input instance + length of 500 characters using a feature-wise model on the individual feature types} \label{tab:Gender_acc_500_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} \toprule - & Target & \multicolumn{8}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ - & Score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score & accuracy & f1-score \\ -featuretypes & subgrams & & & & & & & & \\ + & Target & \multicolumn{8}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{8}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score & Accuracy & F1-score \\ +Feature types & N-gram ranges & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.6367 & 0.6322 & 0.5043 & 0.3481 & 0.5095 & 0.3680 & 0.5582 & 0.5403 \\ & 2-3 & 0.6531 & 0.6477 & 0.5202 & 0.3788 & 0.5278 & 0.4365 & 0.5518 & 0.5173 \\ diff --git a/tex/tables/gender/latex/results_gender_individual_baseline_500_dist.tex b/tex/tables/gender/latex/results_gender_individual_baseline_500_dist.tex index 9b1c0fc1b23ef92cb9e523844daa1178c3050928..01fdc96e635510f0d8ea2c8355653df5bb999111 100644 --- a/tex/tables/gender/latex/results_gender_individual_baseline_500_dist.tex +++ b/tex/tables/gender/latex/results_gender_individual_baseline_500_dist.tex @@ -1,16 +1,16 @@ \begin{table}[!ht] \centering -\caption{Average Distortion of Features for the Prediction of gender on a Minimal Instance Length of 500 Chars Using a Feature-Wise - Model on the Individual Featuretypes} +\caption{Stability of feature importance for the prediction of gender on a minimal input instance + length of 500 characters using a feature-wise model on the individual feature types} \label{tab:Gender_dist_500_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccc} \toprule - & Target & \multicolumn{6}{l}{gender} \\ - & Min. \# Chars in Input & \multicolumn{6}{l}{500} \\ - & \# Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ + & Target & \multicolumn{6}{l}{Gender} \\ + & Min. No. of Characters & \multicolumn{6}{l}{500} \\ + & No. of Authors & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & \thead{Avg. \\ Spearman's $\rho$ (red.)} \\ -featuretypes & subgrams & & & & & & \\ +Feature types & N-gram ranges & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.0858 & 0.1370 & 0.1528 & 0.2654 & 0.2834 & 0.2834 \\ & 2-3 & 0.1535 & 0.1134 & 0.1350 & 0.1049 & 0.1451 & 0.1875 \\ diff --git a/tex/tables/gender/latex/results_gender_individual_baseline_500_f1_dist.tex b/tex/tables/gender/latex/results_gender_individual_baseline_500_f1_dist.tex index 400f05b6c1f9d96fb7440b64810e4f1fda7866bd..b3c8509a034d6a5af8a94d0d90766222671e6948 100644 --- a/tex/tables/gender/latex/results_gender_individual_baseline_500_f1_dist.tex +++ b/tex/tables/gender/latex/results_gender_individual_baseline_500_f1_dist.tex @@ -1,7 +1,7 @@ \begin{table} \centering \caption{F1-Score and Average Distortion of Features for the Prediction of Gender on a Minimal Tweet Length of 500 characters using a feature-wise - model on the individual Featuretypes} + model on the individual feature types} \label{tab:gender_f1_dist_500_baseline_individual} \begin{adjustbox}{max width=\textwidth} \begin{tabular}{llcccccccc} @@ -10,7 +10,7 @@ & Min. \# Chars in Input & \multicolumn{8}{l}{500} \\ & \# Authors & \multicolumn{2}{l}{50} & \multicolumn{2}{l}{150} & \multicolumn{2}{l}{500} & \multicolumn{2}{l}{1000} \\ & Score & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} & f1-score & \thead{Avg. \\ Spearman's $\rho$ (ext.)} \\ -featuretypes & subgrams & & & & & & & & \\ +feature types & subgrams & & & & & & & & \\ \midrule \multirow{4}{*}{DIST} & 2 & 0.6322 & -- & 0.3481 & 0.0858 & 0.3680 & 0.1528 & 0.5403 & 0.2834 \\ & 2-3 & 0.6477 & -- & 0.3788 & 0.1535 & 0.4365 & 0.1350 & 0.5173 & 0.1451 \\ diff --git a/tex/tables/test_dataset.tex b/tex/tables/test_dataset.tex new file mode 100644 index 0000000000000000000000000000000000000000..f317a2e75c78d9b0c1bcf8c9210a431474a1b81f --- /dev/null +++ b/tex/tables/test_dataset.tex @@ -0,0 +1,29 @@ +\begin{table}[!ht] +\centering +\caption{Statistics of the Dataset} +\label{tab:dataset_test} +\begin{adjustbox}{max width=\textwidth} +\begin{tabular}{llrrrrrr} +\toprule + & {} & \multicolumn{2}{l}{avg\_instance} & \multicolumn{2}{l}{avg\_tweet} & \multicolumn{2}{l}{avg\_tweet\_per\_instance} \\ + & Target & age & gender & age & gender & age & gender \\ +No. of Characters & No. of Authors & & & & & & \\ +\midrule +\multirow{4}{*}{100} & 50 & 159.93 & 162.32 & 109.42 & 111.75 & 1.46 & 1.45 \\ + & 150 & 161.05 & 162.54 & 107.75 & 112.95 & 1.49 & 1.44 \\ + & 500 & 160.74 & 161.81 & 109.27 & 111.92 & 1.47 & 1.45 \\ + & 1000 & 160.09 & 161.03 & 109.28 & 111.96 & 1.47 & 1.44 \\ +\cline{1-8} +\multirow{4}{*}{250} & 50 & 313.19 & 315.01 & 108.30 & 111.55 & 2.89 & 2.82 \\ + & 150 & 313.55 & 315.26 & 107.24 & 112.85 & 2.92 & 2.79 \\ + & 500 & 313.39 & 314.64 & 108.98 & 111.86 & 2.88 & 2.81 \\ + & 1000 & 313.23 & 314.55 & 109.23 & 111.85 & 2.87 & 2.81 \\ +\cline{1-8} +\multirow{4}{*}{500} & 50 & 566.58 & 569.37 & 109.40 & 112.97 & 5.18 & 5.04 \\ + & 150 & 566.12 & 568.69 & 107.69 & 112.78 & 5.26 & 5.04 \\ + & 500 & 566.17 & 567.78 & 109.24 & 111.45 & 5.18 & 5.09 \\ + & 1000 & 566.14 & 567.36 & 109.12 & 111.69 & 5.19 & 5.08 \\ +\bottomrule + +\end{tabular}\end{adjustbox} +\end{table} diff --git a/tex/tables/train_dataset.tex b/tex/tables/train_dataset.tex new file mode 100644 index 0000000000000000000000000000000000000000..2d2943734997629cc2b0693ee6ce1c437cb1839a --- /dev/null +++ b/tex/tables/train_dataset.tex @@ -0,0 +1,29 @@ +\begin{table}[!ht] +\centering +\caption{Statistics of the Dataset} +\label{tab:dataset_train} +\begin{adjustbox}{max width=\textwidth} +\begin{tabular}{llrrrrrr} +\toprule + & {} & \multicolumn{2}{l}{avg\_instance} & \multicolumn{2}{l}{avg\_tweet} & \multicolumn{2}{l}{avg\_tweet\_per\_instance} \\ + & Target & age & gender & age & gender & age & gender \\ +No. of Characters & No. of Authors & & & & & & \\ +\midrule +\multirow{4}{*}{100} & 50 & 159.94 & 162.93 & 109.21 & 111.71 & 1.46 & 1.46 \\ + & 150 & 160.56 & 162.01 & 107.39 & 112.88 & 1.50 & 1.44 \\ + & 500 & 160.83 & 161.64 & 109.30 & 111.84 & 1.47 & 1.45 \\ + & 1000 & 160.04 & 160.92 & 109.26 & 111.80 & 1.46 & 1.44 \\ +\cline{1-8} +\multirow{4}{*}{250} & 50 & 313.46 & 315.85 & 109.39 & 112.14 & 2.87 & 2.82 \\ + & 150 & 313.21 & 315.31 & 107.38 & 112.75 & 2.92 & 2.80 \\ + & 500 & 313.21 & 314.61 & 109.06 & 111.62 & 2.87 & 2.82 \\ + & 1000 & 313.33 & 314.29 & 109.23 & 111.81 & 2.87 & 2.81 \\ +\cline{1-8} +\multirow{4}{*}{500} & 50 & 565.52 & 568.76 & 108.88 & 112.09 & 5.19 & 5.07 \\ + & 150 & 565.67 & 568.60 & 107.37 & 112.89 & 5.27 & 5.04 \\ + & 500 & 566.35 & 567.42 & 109.17 & 111.80 & 5.19 & 5.08 \\ + & 1000 & 566.01 & 567.42 & 109.16 & 111.92 & 5.19 & 5.07 \\ +\bottomrule + +\end{tabular}\end{adjustbox} +\end{table} diff --git a/tex/tables/val_dataset.tex b/tex/tables/val_dataset.tex new file mode 100644 index 0000000000000000000000000000000000000000..1be0bdd15f6fcce7ed0b60e1d4bd840932cf38e2 --- /dev/null +++ b/tex/tables/val_dataset.tex @@ -0,0 +1,29 @@ +\begin{table}[!ht] +\centering +\caption{Statistics of the Dataset} +\label{tab:dataset_val} +\begin{adjustbox}{max width=\textwidth} +\begin{tabular}{llrrrrrr} +\toprule + & {} & \multicolumn{2}{l}{avg\_instance} & \multicolumn{2}{l}{avg\_tweet} & \multicolumn{2}{l}{avg\_tweet\_per\_instance} \\ + & Target & age & gender & age & gender & age & gender \\ +No. of Characters & No. of Authors & & & & & & \\ +\midrule +\multirow{4}{*}{100} & 50 & 161.16 & 163.39 & 110.30 & 112.38 & 1.46 & 1.45 \\ + & 150 & 160.11 & 162.66 & 107.11 & 112.99 & 1.49 & 1.44 \\ + & 500 & 160.73 & 161.51 & 109.04 & 111.86 & 1.47 & 1.44 \\ + & 1000 & 160.10 & 161.06 & 109.31 & 111.83 & 1.46 & 1.44 \\ +\cline{1-8} +\multirow{4}{*}{250} & 50 & 312.62 & 316.00 & 108.98 & 112.14 & 2.87 & 2.82 \\ + & 150 & 313.13 & 316.26 & 107.63 & 113.00 & 2.91 & 2.80 \\ + & 500 & 313.25 & 314.76 & 109.22 & 111.64 & 2.87 & 2.82 \\ + & 1000 & 313.29 & 314.28 & 109.07 & 111.87 & 2.87 & 2.81 \\ +\cline{1-8} +\multirow{4}{*}{500} & 50 & 565.07 & 568.36 & 109.31 & 110.78 & 5.17 & 5.13 \\ + & 150 & 566.11 & 568.92 & 107.51 & 112.82 & 5.27 & 5.04 \\ + & 500 & 565.73 & 567.60 & 109.05 & 111.69 & 5.19 & 5.08 \\ + & 1000 & 566.23 & 567.34 & 109.21 & 111.85 & 5.18 & 5.07 \\ +\bottomrule + +\end{tabular}\end{adjustbox} +\end{table}