From 6c319f1c4a6a62b9784400805b7a53c4ff750c44 Mon Sep 17 00:00:00 2001 From: PKULiuHui Date: Wed, 14 Nov 2018 10:00:40 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A1=AE=E5=AE=9A=E4=BD=BF=E7=94=A8SRL?= =?UTF-8?q?=E5=BE=97=E5=88=86=EF=BC=8C=E4=B8=8D=E4=BD=BF=E7=94=A8SRL=20con?= =?UTF-8?q?text=E6=9D=A5=E8=AE=A1=E7=AE=97=E5=8F=A5=E5=AD=90=E5=88=86?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baselines/baseline2/baseline.py | 79 +- baselines/baseline2/record.txt | 12621 ++++++++++++++++++++ baselines/baseline2/test.py | 60 + baselines/baseline_acl18/main.py | 20 +- baselines/baseline_featureSVR/evaluate.py | 53 +- baselines/baseline_featureSVR/features.py | 9 +- baselines/baseline_featureSVR/train.py | 6 +- baselines/baseline_gcn/main.py | 20 +- baselines/baseline_summarunner/main.py | 54 +- main.py | 228 +- model/Model1.py | 143 + model/Model2.py | 182 + model/Model3.py | 238 + model/__init__.py | 5 + model/myLoss1.py | 23 + model/myLoss2.py | 24 + test.py | 2 +- utils/Dataset.py | 50 - utils/Vocab.py | 133 +- utils/__init__.py | 1 - 20 files changed, 13527 insertions(+), 424 deletions(-) create mode 100644 baselines/baseline2/record.txt create mode 100644 baselines/baseline2/test.py create mode 100644 model/Model1.py create mode 100644 model/Model2.py create mode 100644 model/Model3.py create mode 100644 model/__init__.py create mode 100644 model/myLoss1.py create mode 100644 model/myLoss2.py delete mode 100644 utils/Dataset.py diff --git a/baselines/baseline2/baseline.py b/baselines/baseline2/baseline.py index c316351..1713915 100755 --- a/baselines/baseline2/baseline.py +++ b/baselines/baseline2/baseline.py @@ -1,29 +1,20 @@ +# coding=utf-8 +# coding: utf-8 import sys import os import argparse ''' -Standard ROUGE - -guardian(L) -UB1 Rouge-1: 0.498439 Rouge-2: 0.216667 Rouge-l: 0.324901 Rouge-SU*: 0.216997 -UB2 Rouge-1: 0.469815 Rouge-2: 0.278474 Rouge-l: 0.344528 Rouge-SU*: 0.208485 -LexRank Rouge-1: 0.210933 Rouge-2: 0.037603 Rouge-l: 0.131110 Rouge-SU*: 0.046715 -TextRank Rouge-1: 0.184086 Rouge-2: 0.029617 Rouge-l: 0.117287 Rouge-SU*: 0.037783 -ICSI Rouge-1: 0.257562 Rouge-2: 0.060022 Rouge-l: 0.157313 Rouge-SU*: 0.065799 -Luhn Rouge-1: 0.154681 Rouge-2: 0.022884 Rouge-l: 0.100451 Rouge-SU*: 0.027575 - -bbc(L) -UB1 Rouge-1: 0.464780 Rouge-2: 0.195108 Rouge-l: 0.272242 Rouge-SU4: 0.197798 -UB2 Rouge-1: 0.413318 Rouge-2: 0.227026 Rouge-l: 0.268316 Rouge-SU4: 0.193755 -LexRank Rouge-1: 0.160842 Rouge-2: 0.024327 Rouge-l: 0.097632 Rouge-SU4: 0.042892 -TextRank Rouge-1: 0.139200 Rouge-2: 0.021073 Rouge-l: 0.093124 Rouge-SU4: 0.037206 -Luhn Rouge-1: 0.141699 Rouge-2: 0.023175 Rouge-l: 0.091994 Rouge-SU4: 0.038216 -ICSI Rouge-1: 0.209584 Rouge-2: 0.046293 Rouge-l: 0.135454 Rouge-SU4: 0.063704 - +Standard ROUGE(整个bbc共1803篇blog) +UB1 Rouge-1: 0.480407 Rouge-2: 0.204490 Rouge-l: 0.280785 Rouge-SU4: 0.208131 +UB2 Rouge-1: 0.435176 Rouge-2: 0.243138 Rouge-l: 0.280135 Rouge-SU4: 0.209980 +LexRank Rouge-1: 0.171248 Rouge-2: 0.030491 Rouge-l: 0.106553 Rouge-SU4: 0.048841 +TextRank Rouge-1: 0.145161 Rouge-2: 0.024316 Rouge-l: 0.095294 Rouge-SU4: 0.040450 +Luhn Rouge-1: 0.151129 Rouge-2: 0.026597 Rouge-l: 0.097455 Rouge-SU4: 0.042836 +ICSI Rouge-1: 0.221558 Rouge-2: 0.055385 Rouge-l: 0.137137 Rouge-SU4: 0.071310 ''' -sys.path.append('../') +sys.path.append('../../') from utils.data_helpers import load_data from tqdm import tqdm @@ -45,12 +36,14 @@ reload(sys) sys.setdefaultencoding('utf-8') parser = argparse.ArgumentParser(description='LiveBlogSum Baseline') -parser.add_argument('-corpus', type=str, default='bbc') -parser.add_argument('-path', type=str, default='../data/') +parser.add_argument('-corpus', type=str, default='bbc_cont_1') +parser.add_argument('-path', type=str, default='../../data/') parser.add_argument('-sum_len', type=int, default=1) +parser.add_argument('-out', type=str, default='record.txt') args = parser.parse_args() -args.path = args.path + args.corpus + '/test/' +args.path = args.path + args.corpus +types = ['train', 'valid', 'test'] def get_summary_scores(algo, docs, refs, summary_size): @@ -91,28 +84,36 @@ def get_summary_scores(algo, docs, refs, summary_size): if __name__ == '__main__': - file_names = os.listdir(args.path) + out_file = open(args.out, 'w') algos = ['UB1', 'UB2', 'LexRank', 'TextRank', 'Luhn', 'ICSI'] R1 = {'UB1': .0, 'UB2': .0, 'ICSI': .0, 'LSA': .0, 'KL': .0, 'Luhn': .0, 'LexRank': .0, 'TextRank': .0} R2 = {'UB1': .0, 'UB2': .0, 'ICSI': .0, 'LSA': .0, 'KL': .0, 'Luhn': .0, 'LexRank': .0, 'TextRank': .0} Rl = {'UB1': .0, 'UB2': .0, 'ICSI': .0, 'LSA': .0, 'KL': .0, 'Luhn': .0, 'LexRank': .0, 'TextRank': .0} Rsu = {'UB1': .0, 'UB2': .0, 'ICSI': .0, 'LSA': .0, 'KL': .0, 'Luhn': .0, 'LexRank': .0, 'TextRank': .0} - for filename in tqdm(file_names): - data_file = os.path.join(args.path, filename) - docs, refs = load_data(data_file) - sum_len = len(' '.join(refs[0]).split(' ')) * args.sum_len - print('####', filename, '####') - for algo in algos: - r1, r2, rl, rsu = get_summary_scores(algo, docs, refs, sum_len) - print algo, r1, r2, rl, rsu - R1[algo] += r1 - R2[algo] += r2 - Rl[algo] += rl - Rsu[algo] += rsu + blog_sum = .0 + for t in types: + cur_path = args.path + '/' + t + '/' + file_names = os.listdir(cur_path) + blog_sum += len(file_names) + for filename in tqdm(file_names): + data_file = os.path.join(cur_path, filename) + docs, refs = load_data(data_file) + sum_len = len(' '.join(refs[0]).split(' ')) * args.sum_len + print('####', filename, '####') + out_file.write(filename + '\n') + for algo in algos: + r1, r2, rl, rsu = get_summary_scores(algo, docs, refs, sum_len) + print algo, r1, r2, rl, rsu + out_file.write(algo + ' ' + str(r1) + ' ' + str(r2) + ' ' + str(rl) + ' ' + str(rsu) + '\n') + R1[algo] += r1 + R2[algo] += r2 + Rl[algo] += rl + Rsu[algo] += rsu + out_file.close() print('Final Results') for algo in algos: - R1[algo] /= len(file_names) - R2[algo] /= len(file_names) - Rl[algo] /= len(file_names) - Rsu[algo] /= len(file_names) + R1[algo] /= blog_sum + R2[algo] /= blog_sum + Rl[algo] /= blog_sum + Rsu[algo] /= blog_sum print('%s Rouge-1: %f Rouge-2: %f Rouge-l: %f Rouge-SU4: %f' % (algo, R1[algo], R2[algo], Rl[algo], Rsu[algo])) diff --git a/baselines/baseline2/record.txt b/baselines/baseline2/record.txt new file mode 100644 index 0000000..dedeccf --- /dev/null +++ b/baselines/baseline2/record.txt @@ -0,0 +1,12621 @@ +7589850e36b9148befb2f104b3ee02b1b55a2048.json +UB1 0.55319 0.28261 0.29787 0.2594 +UB2 0.53191 0.28261 0.2766 0.2406 +LexRank 0.31915 0.06522 0.14894 0.08647 +TextRank 0.17021 0.02174 0.08511 0.03383 +Luhn 0.2766 0.0 0.14894 0.07143 +ICSI 0.21277 0.04348 0.10638 0.06391 +3ca583f1dff8025413ab39706098a8e0ee74bd54.json +UB1 0.38667 0.13514 0.24 0.12673 +UB2 0.33333 0.14865 0.21333 0.12212 +LexRank 0.33333 0.06757 0.18667 0.10599 +TextRank 0.33333 0.06757 0.18667 0.10599 +Luhn 0.25333 0.09459 0.13333 0.09447 +ICSI 0.24 0.01351 0.14667 0.06452 +51ddddc56fdcecf48b7ddb92438980be45b7496f.json +UB1 0.42254 0.07143 0.22535 0.13171 +UB2 0.42254 0.14286 0.21127 0.13415 +LexRank 0.29577 0.04286 0.15493 0.07561 +TextRank 0.1831 0.0 0.12676 0.04146 +Luhn 0.22535 0.01429 0.15493 0.05854 +ICSI 0.32394 0.04286 0.1831 0.09024 +6a8240de7908556106f4d71549a9e1ac697ee688.json +UB1 0.48529 0.14925 0.17647 0.17602 +UB2 0.52941 0.20896 0.23529 0.19388 +LexRank 0.26471 0.02985 0.17647 0.06888 +TextRank 0.20588 0.02985 0.11765 0.05102 +Luhn 0.22059 0.01493 0.10294 0.04592 +ICSI 0.32353 0.0597 0.16176 0.08163 +4d073fe23bc516c74b4a0596f7cac05e363decdf.json +UB1 0.4878 0.275 0.29268 0.19565 +UB2 0.4878 0.275 0.29268 0.19565 +LexRank 0.19512 0.0 0.07317 0.03478 +TextRank 0.14634 0.0 0.07317 0.02609 +Luhn 0.34146 0.075 0.19512 0.1 +ICSI 0.2439 0.0 0.12195 0.05652 +2ca47b879623e498b284e70e7e8346f4ea822b73.json +UB1 0.51724 0.10714 0.27586 0.15823 +UB2 0.41379 0.17857 0.34483 0.17089 +LexRank 0.17241 0.03571 0.13793 0.0443 +TextRank 0.06897 0.0 0.06897 0.01899 +Luhn 0.06897 0.0 0.06897 0.01899 +ICSI 0.2069 0.03571 0.13793 0.05063 +27334c4d2d11db4ce8e20c93dfc8a6971c58d533.json +UB1 0.4 0.14706 0.25714 0.15464 +UB2 0.4 0.23529 0.4 0.21134 +LexRank 0.02857 0.0 0.02857 0.00515 +TextRank 0.05714 0.0 0.05714 0.01031 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.14286 0.0 0.14286 0.03093 +7c6df7f6fca23f21f95a9452f76c2c2280f6dfdb.json +UB1 0.49474 0.15957 0.2 0.17509 +UB2 0.49474 0.30851 0.27368 0.23105 +LexRank 0.28421 0.10638 0.17895 0.10469 +TextRank 0.01053 0.0 0.01053 0.00181 +Luhn 0.30526 0.07447 0.17895 0.11191 +ICSI 0.47368 0.18085 0.22105 0.1769 +639cbc64454ed57ab0e929623fb79679d1e5e2a7.json +UB1 0.37838 0.11111 0.24324 0.12621 +UB2 0.27027 0.13889 0.18919 0.10194 +LexRank 0.13514 0.0 0.08108 0.02913 +TextRank 0.05405 0.0 0.05405 0.00485 +Luhn 0.05405 0.0 0.05405 0.00485 +ICSI 0.10811 0.02778 0.10811 0.02427 +38da65619e11f934b23f91393c78d72a58ca9f5c.json +UB1 0.45455 0.11628 0.18182 0.12097 +UB2 0.40909 0.2093 0.25 0.12903 +LexRank 0.20455 0.04651 0.13636 0.05645 +TextRank 0.18182 0.04651 0.11364 0.04839 +Luhn 0.25 0.04651 0.15909 0.06855 +ICSI 0.31818 0.09302 0.20455 0.09274 +0a652f7fbed2f3d42b532f17888212c2d206238b.json +UB1 0.65517 0.4386 0.32759 0.46988 +UB2 0.62069 0.4386 0.31034 0.45783 +LexRank 0.2069 0.0 0.13793 0.04819 +TextRank 0.36207 0.21053 0.24138 0.23795 +Luhn 0.08621 0.0 0.06897 0.01807 +ICSI 0.27586 0.01754 0.10345 0.06627 +205ce712e1a180fbaf8061bb665bf4813ccc7b62.json +UB1 0.44828 0.21429 0.24138 0.22152 +UB2 0.44828 0.21429 0.24138 0.18987 +LexRank 0.06897 0.0 0.06897 0.01266 +TextRank 0.06897 0.0 0.03448 0.01266 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.06897 0.0 0.06897 0.01266 +455e26f0d10b6e781eed4f375bf718063c1d24eb.json +UB1 0.62903 0.39344 0.32258 0.36798 +UB2 0.58065 0.39344 0.45161 0.33708 +LexRank 0.14516 0.0 0.1129 0.02809 +TextRank 0.16129 0.03279 0.08065 0.03933 +Luhn 0.12903 0.0 0.09677 0.02809 +ICSI 0.25806 0.04918 0.14516 0.08989 +63a9a7bb3f04621a92b09b2053fba00acd1a3316.json +UB1 0.44681 0.1087 0.19149 0.15414 +UB2 0.38298 0.19565 0.17021 0.15414 +LexRank 0.08511 0.0 0.04255 0.0188 +TextRank 0.04255 0.0 0.04255 0.00752 +Luhn 0.06383 0.0 0.06383 0.01128 +ICSI 0.12766 0.0 0.04255 0.02256 +3e0dc2f24cccb9601810f9aedae171fd456840d1.json +UB1 0.29412 0.06061 0.23529 0.09574 +UB2 0.26471 0.09091 0.23529 0.10106 +LexRank 0.20588 0.06061 0.20588 0.08511 +TextRank 0.08824 0.0 0.08824 0.02128 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.08824 0.0 0.05882 0.01596 +5dcf6842a9268c9c4d6675cfbbe7c2bf21b5693f.json +UB1 0.35294 0.09091 0.17647 0.1383 +UB2 0.26471 0.12121 0.23529 0.1117 +LexRank 0.11765 0.0 0.08824 0.01596 +TextRank 0.11765 0.0 0.08824 0.02128 +Luhn 0.11765 0.0 0.08824 0.02128 +ICSI 0.08824 0.0 0.08824 0.02128 +34a060c2b794eeb794d7b418ceb7f36df4656e7f.json +UB1 0.45455 0.14815 0.2 0.15287 +UB2 0.43636 0.2037 0.27273 0.21019 +LexRank 0.29091 0.07407 0.23636 0.08599 +TextRank 0.12727 0.03704 0.09091 0.03503 +Luhn 0.16364 0.01852 0.16364 0.06051 +ICSI 0.27273 0.03704 0.18182 0.07643 +29aed1735fb958e51f2d3193a11510914476f9ff.json +UB1 0.57143 0.25926 0.39286 0.26316 +UB2 0.57143 0.33333 0.46429 0.36842 +LexRank 0.10714 0.03704 0.10714 0.03947 +TextRank 0.10714 0.03704 0.10714 0.03947 +Luhn 0.10714 0.03704 0.10714 0.03947 +ICSI 0.17857 0.11111 0.14286 0.06579 +6c1de2c1a1e40c87a011c24f699ac5793be9a198.json +UB1 0.63441 0.31522 0.2043 0.28598 +UB2 0.62366 0.36957 0.22581 0.30627 +LexRank 0.33333 0.13043 0.2043 0.11808 +TextRank 0.05376 0.0 0.03226 0.00923 +Luhn 0.24731 0.05435 0.11828 0.08856 +ICSI 0.41935 0.15217 0.2043 0.16605 +5c8ddbf6e2629c45fa584ca92e8004ea5dc689c4.json +UB1 0.54545 0.34884 0.25 0.25806 +UB2 0.54545 0.34884 0.25 0.25806 +LexRank 0.22727 0.04651 0.11364 0.05645 +TextRank 0.13636 0.02326 0.11364 0.03629 +Luhn 0.13636 0.0 0.09091 0.02823 +ICSI 0.25 0.09302 0.13636 0.09274 +73ce098463a58f67fec5c57d2939d4af5c03bc5d.json +UB1 0.44444 0.14516 0.2381 0.15746 +UB2 0.47619 0.19355 0.22222 0.17403 +LexRank 0.22222 0.04839 0.09524 0.06077 +TextRank 0.14286 0.0 0.09524 0.03039 +Luhn 0.11111 0.0 0.09524 0.02486 +ICSI 0.30159 0.08065 0.20635 0.09116 +7ac74211273c65e810b35348a37f1dada5c472a4.json +UB1 0.40678 0.10345 0.20339 0.14201 +UB2 0.42373 0.13793 0.25424 0.16864 +LexRank 0.13559 0.0 0.08475 0.02959 +TextRank 0.18644 0.01724 0.10169 0.0355 +Luhn 0.20339 0.03448 0.10169 0.05917 +ICSI 0.18644 0.03448 0.13559 0.0503 +0fbc1ff4549fb2311ca405d2496c8d5419065525.json +UB1 0.48936 0.08696 0.2766 0.16917 +UB2 0.34043 0.15217 0.21277 0.1391 +LexRank 0.10638 0.02174 0.06383 0.0188 +TextRank 0.17021 0.0 0.14894 0.03759 +Luhn 0.31915 0.06522 0.14894 0.08271 +ICSI 0.2766 0.02174 0.14894 0.07895 +3c67d8a8f19699636248e242c8fdbe6f4f46aa7a.json +UB1 0.59701 0.39394 0.25373 0.31347 +UB2 0.58209 0.37879 0.41791 0.33938 +LexRank 0.31343 0.16667 0.23881 0.14767 +TextRank 0.16418 0.01515 0.04478 0.03886 +Luhn 0.31343 0.07576 0.19403 0.11917 +ICSI 0.40299 0.27273 0.23881 0.22798 +21ea7186993eed592ec6def23e30c70c2f0a7665.json +UB1 0.26786 0.0 0.125 0.0625 +UB2 0.33929 0.09091 0.23214 0.09688 +LexRank 0.05357 0.0 0.05357 0.00937 +TextRank 0.10714 0.0 0.07143 0.01875 +Luhn 0.25 0.01818 0.16071 0.05937 +ICSI 0.23214 0.03636 0.16071 0.05625 +6435c39a7c68a93319049414afcecb27c01b218c.json +UB1 0.51471 0.23881 0.41176 0.24235 +UB2 0.52941 0.29851 0.36765 0.25 +LexRank 0.10294 0.0 0.07353 0.02041 +TextRank 0.13235 0.01493 0.10294 0.02806 +Luhn 0.19118 0.04478 0.13235 0.05357 +ICSI 0.26471 0.07463 0.14706 0.09184 +816bdd43fda71138ec030251b08c489d76c9b9c3.json +UB1 0.3871 0.1 0.29032 0.12353 +UB2 0.35484 0.13333 0.19355 0.10588 +LexRank 0.22581 0.06667 0.12903 0.06471 +TextRank 0.19355 0.03333 0.12903 0.04118 +Luhn 0.12903 0.0 0.06452 0.02353 +ICSI 0.09677 0.0 0.09677 0.01765 +7d7e7bdd0ebecc5ae367565e2630b414bde81dd6.json +UB1 0.5 0.14286 0.27778 0.175 +UB2 0.44444 0.2 0.25 0.15 +LexRank 0.05556 0.0 0.05556 0.01 +TextRank 0.02778 0.0 0.02778 0.005 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.25 0.08571 0.19444 0.08 +39bd6911bbc326933064188b1f19f6ab1b21bdfc.json +UB1 0.53659 0.2 0.31707 0.23043 +UB2 0.41463 0.2 0.31707 0.2 +LexRank 0.12195 0.0 0.07317 0.02174 +TextRank 0.04878 0.0 0.02439 0.0087 +Luhn 0.04878 0.0 0.02439 0.0087 +ICSI 0.09756 0.0 0.07317 0.01739 +37def1ab0bab4c91c1bbb5b312a4d59c56df6702.json +UB1 0.45652 0.13333 0.28261 0.12692 +UB2 0.41304 0.17778 0.30435 0.17692 +LexRank 0.13043 0.0 0.1087 0.02692 +TextRank 0.1087 0.02222 0.06522 0.03077 +Luhn 0.19565 0.02222 0.1087 0.04231 +ICSI 0.19565 0.04444 0.13043 0.05 +10308bb9674021f7f47d2fed4c84fcecad2082f6.json +UB1 0.48571 0.11765 0.25714 0.14948 +UB2 0.42857 0.20588 0.22857 0.13918 +LexRank 0.05714 0.0 0.02857 0.01031 +TextRank 0.08571 0.02941 0.05714 0.02062 +Luhn 0.14286 0.02941 0.08571 0.04124 +ICSI 0.25714 0.08824 0.11429 0.06701 +71d0a9b558b026d23134ee3a5f7a94a9995b30dc.json +UB1 0.54 0.14286 0.2 0.15493 +UB2 0.48 0.20408 0.34 0.1831 +LexRank 0.16 0.0 0.06 0.02817 +TextRank 0.16 0.0 0.08 0.03169 +Luhn 0.16 0.0 0.08 0.03169 +ICSI 0.2 0.02041 0.1 0.04577 +1177fa76cd89751e0bb14b3f732790eb5330971d.json +UB1 0.40964 0.08537 0.14458 0.09959 +UB2 0.40964 0.19512 0.21687 0.14315 +LexRank 0.21687 0.0 0.10843 0.04357 +TextRank 0.20482 0.03659 0.08434 0.05187 +Luhn 0.18072 0.0122 0.09639 0.03734 +ICSI 0.26506 0.0122 0.10843 0.05602 +1fb67086a9c461be623bf461495b14a93797d62d.json +UB1 0.25 0.02857 0.13889 0.045 +UB2 0.19444 0.05714 0.11111 0.05 +LexRank 0.02778 0.0 0.02778 0.005 +TextRank 0.02778 0.0 0.02778 0.005 +Luhn 0.13889 0.0 0.11111 0.03 +ICSI 0.13889 0.0 0.05556 0.03 +02bd03fb47796445e4b0451ff7fbef113fb93b3b.json +UB1 0.6875 0.35484 0.5 0.39205 +UB2 0.6875 0.35484 0.5 0.39205 +LexRank 0.0625 0.03226 0.0625 0.01705 +TextRank 0.0625 0.0 0.0625 0.01136 +Luhn 0.03125 0.0 0.03125 0.00568 +ICSI 0.0625 0.0 0.0625 0.01136 +6ac75e77bc8f2d8f44acfad9af3ff6f0436badb6.json +UB1 0.58947 0.26596 0.22105 0.29061 +UB2 0.57895 0.30851 0.21053 0.27978 +LexRank 0.23158 0.02128 0.08421 0.05054 +TextRank 0.18947 0.0 0.10526 0.03971 +Luhn 0.10526 0.0 0.08421 0.01986 +ICSI 0.27368 0.02128 0.13684 0.05957 +3cbcfb02d5e9b9d96d0c89daf1e75de89cd953bf.json +UB1 0.60227 0.37931 0.28409 0.32617 +UB2 0.60227 0.4023 0.31818 0.34375 +LexRank 0.26136 0.09195 0.15909 0.08398 +TextRank 0.26136 0.03448 0.14773 0.07422 +Luhn 0.27273 0.08046 0.125 0.08594 +ICSI 0.36364 0.13793 0.23864 0.13672 +5b8f01c09801015c976e92798f3030a2982ec9f6.json +UB1 0.64444 0.21348 0.28889 0.26336 +UB2 0.6 0.35955 0.44444 0.33588 +LexRank 0.33333 0.06742 0.14444 0.10305 +TextRank 0.25556 0.04494 0.14444 0.07824 +Luhn 0.02222 0.0 0.02222 0.00382 +ICSI 0.35556 0.03371 0.18889 0.12405 +63f9d74fb88b0969ceb95f6adf2d83150d254ffc.json +UB1 0.45455 0.06154 0.18182 0.12105 +UB2 0.36364 0.13846 0.19697 0.11579 +LexRank 0.27273 0.03077 0.13636 0.07368 +TextRank 0.0303 0.0 0.0303 0.00526 +Luhn 0.28788 0.04615 0.13636 0.10263 +ICSI 0.34848 0.04615 0.18182 0.09737 +7d0690b5324e494485bc2a9380f72c7bd558963e.json +UB1 0.45161 0.06667 0.35484 0.18235 +UB2 0.45161 0.16667 0.35484 0.20588 +LexRank 0.29032 0.03333 0.19355 0.07059 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.29032 0.03333 0.19355 0.07059 +ICSI 0.29032 0.1 0.22581 0.10588 +656847df1137f2dd81c853dcb9d39e1177d649e3.json +UB1 0.48214 0.21818 0.39286 0.19375 +UB2 0.48214 0.21818 0.39286 0.19375 +LexRank 0.19643 0.05455 0.16071 0.06875 +TextRank 0.21429 0.05455 0.17857 0.06875 +Luhn 0.125 0.0 0.07143 0.025 +ICSI 0.25 0.07273 0.16071 0.07187 +0c1ae8a141e251d767565e562a247184e54812c5.json +UB1 0.30769 0.18421 0.17949 0.13303 +UB2 0.30769 0.18421 0.17949 0.13303 +LexRank 0.12821 0.0 0.07692 0.02752 +TextRank 0.25641 0.05263 0.15385 0.06422 +Luhn 0.15385 0.0 0.07692 0.02752 +ICSI 0.20513 0.02632 0.12821 0.05505 +3de757443068e6933198b4234d0f7a92c1ca98aa.json +UB1 0.19444 0.02857 0.11111 0.04 +UB2 0.22222 0.05714 0.13889 0.045 +LexRank 0.08333 0.0 0.05556 0.015 +TextRank 0.08333 0.0 0.08333 0.02 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.05556 0.0 0.02778 0.01 +0b5b3549e595b231651aaef5e804fb947e18d472.json +UB1 0.44681 0.04348 0.21277 0.14286 +UB2 0.40426 0.15217 0.21277 0.14286 +LexRank 0.12766 0.0 0.10638 0.02632 +TextRank 0.21277 0.02174 0.14894 0.06015 +Luhn 0.29787 0.02174 0.17021 0.09774 +ICSI 0.2766 0.02174 0.17021 0.09398 +8d3d71c30998716851ddb9553108a736c4b5b01b.json +UB1 0.45714 0.14706 0.25714 0.14948 +UB2 0.37143 0.14706 0.22857 0.11856 +LexRank 0.2 0.02941 0.17143 0.0567 +TextRank 0.02857 0.0 0.02857 0.00515 +Luhn 0.17143 0.02941 0.14286 0.04124 +ICSI 0.11429 0.02941 0.11429 0.03608 +63f49271426604e9d0763b7c3829d3234f364a30.json +UB1 0.51724 0.21429 0.31034 0.24051 +UB2 0.48276 0.28571 0.27586 0.21519 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.10345 0.0 0.10345 0.02532 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.10345 0.0 0.06897 0.01899 +43f952d81853a0a6c0939cf3c32530da3890905e.json +UB1 0.29412 0.06061 0.17647 0.07979 +UB2 0.32353 0.12121 0.14706 0.08511 +LexRank 0.05882 0.0 0.05882 0.01064 +TextRank 0.11765 0.0 0.05882 0.0266 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.0 0.0 0.0 0.0 +2250d1a170306d8644276599253bef47d9598ed7.json +UB1 0.41379 0.03571 0.2069 0.12025 +UB2 0.31034 0.17857 0.24138 0.16456 +LexRank 0.06897 0.0 0.06897 0.01266 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.13793 0.0 0.06897 0.02532 +0d31a659311cb1642f7ae4dbacd5e3e3d3e65924.json +UB1 0.42254 0.12857 0.21127 0.14146 +UB2 0.28169 0.14286 0.16901 0.10244 +LexRank 0.28169 0.11429 0.1831 0.09756 +TextRank 0.25352 0.07143 0.14085 0.08293 +Luhn 0.25352 0.07143 0.14085 0.08293 +ICSI 0.14085 0.04286 0.09859 0.04146 +31a8bbd1adecf73c36d9263689e571e582a60af8.json +UB1 0.40741 0.11538 0.2963 0.13014 +UB2 0.44444 0.19231 0.25926 0.18493 +LexRank 0.07407 0.0 0.07407 0.0137 +TextRank 0.07407 0.0 0.07407 0.0137 +Luhn 0.03704 0.0 0.03704 0.00685 +ICSI 0.14815 0.0 0.07407 0.0274 +3b372de2d35fbb4752c2642a094a3753ceff09e8.json +UB1 0.48571 0.17647 0.22857 0.15979 +UB2 0.45714 0.17647 0.2 0.15464 +LexRank 0.05714 0.0 0.05714 0.01031 +TextRank 0.05714 0.0 0.05714 0.01031 +Luhn 0.08571 0.0 0.08571 0.02062 +ICSI 0.05714 0.0 0.05714 0.01031 +50357d3325d44b1d6293ca5d72f618ade44f84ea.json +UB1 0.35484 0.03333 0.16129 0.09412 +UB2 0.19355 0.1 0.09677 0.05882 +LexRank 0.03226 0.0 0.03226 0.00588 +TextRank 0.09677 0.0 0.06452 0.01765 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.09677 0.0 0.06452 0.01765 +474102028987c27cba2f2205d8bc274499d3f183.json +UB1 0.39474 0.10811 0.21053 0.11321 +UB2 0.36842 0.27027 0.34211 0.22642 +LexRank 0.28947 0.08108 0.26316 0.12264 +TextRank 0.26316 0.02703 0.10526 0.0566 +Luhn 0.18421 0.0 0.10526 0.04245 +ICSI 0.28947 0.10811 0.18421 0.10377 +84a2d0892c61a9c7b85a6fee690e237631c4419c.json +UB1 0.55882 0.33333 0.29412 0.30319 +UB2 0.55882 0.33333 0.29412 0.30319 +LexRank 0.05882 0.0 0.02941 0.01064 +TextRank 0.05882 0.0 0.05882 0.01064 +Luhn 0.05882 0.0 0.02941 0.00532 +ICSI 0.26471 0.18182 0.26471 0.1383 +7c4d704f8889b6fb5af501ba785f04bacdb6ce4a.json +UB1 0.45238 0.12195 0.30952 0.16949 +UB2 0.47619 0.19512 0.2381 0.16949 +LexRank 0.14286 0.02439 0.09524 0.02966 +TextRank 0.16667 0.0 0.07143 0.02966 +Luhn 0.09524 0.0 0.07143 0.01695 +ICSI 0.2619 0.09756 0.21429 0.10593 +343f9f61e78d459fa38a445fd20b4687a03ae0f4.json +UB1 0.51724 0.21429 0.31034 0.20886 +UB2 0.44828 0.25 0.24138 0.1962 +LexRank 0.10345 0.03571 0.06897 0.02532 +TextRank 0.10345 0.0 0.06897 0.02532 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.2069 0.10714 0.2069 0.10759 +89ab6c63a9fc4143650cb6988188207cd9bd7664.json +UB1 0.3 0.06897 0.16667 0.06098 +UB2 0.23333 0.10345 0.23333 0.05488 +LexRank 0.06667 0.0 0.06667 0.0122 +TextRank 0.06667 0.0 0.06667 0.0122 +Luhn 0.23333 0.03448 0.23333 0.07317 +ICSI 0.06667 0.0 0.06667 0.0061 +7c21b31847493e971cf7e39252830a0149671c76.json +UB1 0.47826 0.14706 0.2029 0.15327 +UB2 0.42029 0.20588 0.23188 0.17085 +LexRank 0.08696 0.0 0.05797 0.01508 +TextRank 0.08696 0.0 0.07246 0.01508 +Luhn 0.08696 0.0 0.07246 0.01508 +ICSI 0.13043 0.0 0.10145 0.02764 +195c1e4be6c2f778bf4d7c7c1603724ca23bfa9b.json +UB1 0.39024 0.05 0.26829 0.12174 +UB2 0.43902 0.175 0.31707 0.17391 +LexRank 0.26829 0.025 0.19512 0.06957 +TextRank 0.31707 0.1 0.2439 0.13478 +Luhn 0.09756 0.025 0.09756 0.02174 +ICSI 0.34146 0.05 0.14634 0.1 +2c3ea4512e256e16704c3372036cbf5ec42d1f3f.json +UB1 0.34211 0.06667 0.18421 0.10909 +UB2 0.36842 0.13333 0.19737 0.12727 +LexRank 0.17105 0.0 0.07895 0.03182 +TextRank 0.21053 0.02667 0.10526 0.04773 +Luhn 0.15789 0.0 0.09211 0.03182 +ICSI 0.18421 0.0 0.07895 0.02955 +038a847ef5c4778dffb2cdc22860084edf99d42b.json +UB1 0.41667 0.10638 0.27083 0.15809 +UB2 0.3125 0.10638 0.25 0.12132 +LexRank 0.16667 0.0 0.08333 0.03309 +TextRank 0.14583 0.0 0.08333 0.02941 +Luhn 0.14583 0.02128 0.10417 0.03676 +ICSI 0.14583 0.0 0.0625 0.02574 +25b663793e8be4597fd18d20e65b2486e8ffbce3.json +UB1 0.59615 0.41176 0.55769 0.41892 +UB2 0.59615 0.5098 0.55769 0.46622 +LexRank 0.40385 0.13725 0.26923 0.16892 +TextRank 0.32692 0.13725 0.21154 0.14189 +Luhn 0.32692 0.01961 0.13462 0.08108 +ICSI 0.34615 0.07843 0.21154 0.12162 +4787385f85aa1c4cbb07a99f1b35dd5721a0d07a.json +UB1 0.67045 0.41379 0.26136 0.35547 +UB2 0.63636 0.41379 0.21591 0.3418 +LexRank 0.22727 0.02299 0.11364 0.05078 +TextRank 0.14773 0.01149 0.11364 0.04102 +Luhn 0.13636 0.02299 0.10227 0.0332 +ICSI 0.17045 0.0 0.07955 0.03711 +19f8842cff9267e03ebf41e31ae72decd003d00b.json +UB1 0.41176 0.12121 0.29412 0.14362 +UB2 0.32353 0.12121 0.23529 0.10638 +LexRank 0.02941 0.0 0.02941 0.00532 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.02941 0.0 0.02941 0.00532 +ICSI 0.08824 0.0 0.08824 0.01596 +31917956d80ab9eb359e48e4174a5f997678a8a0.json +UB1 0.51064 0.23913 0.34043 0.22556 +UB2 0.48936 0.26087 0.29787 0.21805 +LexRank 0.08511 0.02174 0.06383 0.0188 +TextRank 0.04255 0.0 0.04255 0.00752 +Luhn 0.10638 0.02174 0.08511 0.02256 +ICSI 0.08511 0.0 0.04255 0.01504 +0ab4f92d4a05dd5ba6d3e97e93f8409ac87fb352.json +UB1 0.37931 0.14286 0.24138 0.11392 +UB2 0.31034 0.10714 0.27586 0.10127 +LexRank 0.03448 0.0 0.03448 0.00633 +TextRank 0.03448 0.0 0.03448 0.00633 +Luhn 0.06897 0.0 0.06897 0.01266 +ICSI 0.13793 0.03571 0.10345 0.03165 +0c4ba90ef302a63aa498baff6664ced8e0f1fdb4.json +UB1 0.45455 0.12308 0.18182 0.17895 +UB2 0.42424 0.18462 0.22727 0.16316 +LexRank 0.18182 0.01538 0.07576 0.04211 +TextRank 0.28788 0.09231 0.16667 0.10263 +Luhn 0.12121 0.0 0.07576 0.02105 +ICSI 0.24242 0.01538 0.10606 0.06579 +6d4cb7b88d8c666603557ffa71a036ebe537847b.json +UB1 0.44444 0.13208 0.27778 0.15584 +UB2 0.35185 0.13208 0.25926 0.12338 +LexRank 0.22222 0.0 0.14815 0.0487 +TextRank 0.31481 0.0566 0.2037 0.08766 +Luhn 0.37037 0.11321 0.2037 0.11688 +ICSI 0.40741 0.09434 0.22222 0.12662 +813f7fa8ed701ea12375e2369ca70330c3b07635.json +UB1 0.31579 0.10811 0.21053 0.09906 +UB2 0.28947 0.13514 0.21053 0.09434 +LexRank 0.13158 0.0 0.07895 0.0283 +TextRank 0.13158 0.0 0.07895 0.0283 +Luhn 0.13158 0.0 0.07895 0.0283 +ICSI 0.18421 0.0 0.07895 0.04245 +861ab93357c95531fba29ca98eb6c432e728d27f.json +UB1 0.51515 0.28125 0.21212 0.24176 +UB2 0.45455 0.28125 0.21212 0.23077 +LexRank 0.09091 0.0 0.06061 0.01648 +TextRank 0.09091 0.0 0.06061 0.02198 +Luhn 0.09091 0.0 0.09091 0.02747 +ICSI 0.06061 0.0 0.06061 0.01099 +02e75e670329f8d23dbe324708996e76d9443026.json +UB1 0.47222 0.2 0.33333 0.205 +UB2 0.41667 0.22857 0.27778 0.195 +LexRank 0.19444 0.08571 0.16667 0.1 +TextRank 0.16667 0.08571 0.11111 0.06 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.36111 0.14286 0.30556 0.135 +7b0d3d29502826c37e81adf49c81ab7a13db6ced.json +UB1 0.32143 0.07407 0.21429 0.07895 +UB2 0.28571 0.14815 0.25 0.09868 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.07143 0.0 0.03571 0.01316 +Luhn 0.07143 0.0 0.07143 0.01316 +ICSI 0.03571 0.0 0.03571 0.00658 +547a1ef777457073466abe6791c7ca06ff93c85c.json +UB1 0.61842 0.25333 0.32895 0.26818 +UB2 0.63158 0.34667 0.32895 0.29545 +LexRank 0.40789 0.10667 0.17105 0.12273 +TextRank 0.06579 0.0 0.03947 0.01364 +Luhn 0.06579 0.01333 0.03947 0.01364 +ICSI 0.40789 0.08 0.21053 0.13182 +6b9d89d2a151b779d14bc1e76b06a069fa7484a3.json +UB1 0.41176 0.15152 0.20588 0.1383 +UB2 0.44118 0.27273 0.35294 0.20213 +LexRank 0.08824 0.0 0.08824 0.02128 +TextRank 0.26471 0.0303 0.20588 0.07979 +Luhn 0.29412 0.15152 0.20588 0.1117 +ICSI 0.08824 0.0303 0.08824 0.02128 +4c39371ff0faab23d49102ffc86adcb73c6c597e.json +UB1 0.55556 0.3 0.37037 0.28723 +UB2 0.48148 0.3125 0.32099 0.2617 +LexRank 0.2963 0.0125 0.14815 0.0766 +TextRank 0.1358 0.0125 0.07407 0.02553 +Luhn 0.1358 0.0125 0.07407 0.02553 +ICSI 0.34568 0.0625 0.19753 0.10638 +5e93ddf28cb8a10cb8db85127764fb8828383e81.json +UB1 0.325 0.0 0.125 0.07589 +UB2 0.15 0.05128 0.075 0.03125 +LexRank 0.05 0.0 0.025 0.00893 +TextRank 0.075 0.0 0.075 0.01339 +Luhn 0.075 0.0 0.05 0.01339 +ICSI 0.025 0.0 0.025 0.00446 +3168e0031d5d153e286a975727f29e8377a3cd4a.json +UB1 0.16667 0.0 0.125 0.03906 +UB2 0.08333 0.04348 0.08333 0.02344 +LexRank 0.04167 0.0 0.04167 0.00781 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +5f6a49416f371e1bd6af3b103a1a2875a0d130cb.json +UB1 0.27273 0.03125 0.15152 0.06044 +UB2 0.27273 0.09375 0.18182 0.07692 +LexRank 0.18182 0.0 0.12121 0.04396 +TextRank 0.21212 0.0 0.15152 0.04945 +Luhn 0.15152 0.03125 0.12121 0.04945 +ICSI 0.15152 0.0 0.12121 0.03297 +2280e2cbedb5290025d1f48d48d64817f0f7c001.json +UB1 0.76 0.54167 0.76 0.60448 +UB2 0.76 0.54167 0.76 0.60448 +LexRank 0.2 0.0 0.16 0.05224 +TextRank 0.12 0.04167 0.08 0.02985 +Luhn 0.24 0.125 0.2 0.09701 +ICSI 0.08 0.04167 0.08 0.02239 +168bc0943a69227a2de7b489c37869328b3f7932.json +UB1 0.26667 0.0 0.2 0.06707 +UB2 0.06667 0.03448 0.06667 0.01829 +LexRank 0.06667 0.0 0.06667 0.0122 +TextRank 0.06667 0.03448 0.06667 0.01829 +Luhn 0.1 0.0 0.06667 0.01829 +ICSI 0.16667 0.0 0.06667 0.03049 +276e21d6d70df11573f14371fa2010bd6ac803a2.json +UB1 0.33333 0.03448 0.13333 0.06707 +UB2 0.2 0.06897 0.16667 0.05488 +LexRank 0.06667 0.0 0.03333 0.0122 +TextRank 0.06667 0.0 0.06667 0.0122 +Luhn 0.06667 0.0 0.06667 0.0122 +ICSI 0.06667 0.0 0.03333 0.0061 +49e75cb8c204acfe80e4f3bdcc2bd438a23fd755.json +UB1 0.4 0.10526 0.25 0.13462 +UB2 0.4 0.21053 0.25 0.17308 +LexRank 0.05 0.0 0.05 0.00962 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05 0.0 0.05 0.00962 +ICSI 0.0 0.0 0.0 0.0 +3839bc1924e79fd872ed9e1527867ca496ce17ee.json +UB1 0.35135 0.11111 0.24324 0.1165 +UB2 0.32432 0.13889 0.24324 0.12136 +LexRank 0.08108 0.0 0.02703 0.00971 +TextRank 0.08108 0.0 0.02703 0.01456 +Luhn 0.08108 0.0 0.05405 0.00971 +ICSI 0.27027 0.11111 0.18919 0.09709 +80506720a79dbcbc0853ce781469a46f585e72d5.json +UB1 0.51852 0.34615 0.25926 0.28767 +UB2 0.37037 0.30769 0.22222 0.21233 +LexRank 0.11111 0.0 0.07407 0.02055 +TextRank 0.03704 0.0 0.03704 0.00685 +Luhn 0.33333 0.03846 0.22222 0.09589 +ICSI 0.33333 0.19231 0.2963 0.17808 +3898948b60ac0125d3896f984c5e38a3403588a3.json +UB1 0.38462 0.2 0.30769 0.12857 +UB2 0.38462 0.2 0.30769 0.12857 +LexRank 0.34615 0.12 0.15385 0.10714 +TextRank 0.03846 0.0 0.03846 0.00714 +Luhn 0.07692 0.0 0.03846 0.01429 +ICSI 0.03846 0.0 0.03846 0.00714 +5d09f6233f884572356f9323961a086a55b85cc1.json +UB1 0.3 0.10345 0.23333 0.09756 +UB2 0.36667 0.24138 0.3 0.21341 +LexRank 0.2 0.0 0.1 0.03049 +TextRank 0.1 0.0 0.03333 0.01829 +Luhn 0.06667 0.0 0.06667 0.0122 +ICSI 0.06667 0.0 0.06667 0.0122 +076399e7bd5b3175efe23badc096a50d7cc5ff8a.json +UB1 0.40541 0.08333 0.24324 0.12621 +UB2 0.37838 0.13889 0.27027 0.15534 +LexRank 0.16216 0.0 0.08108 0.04369 +TextRank 0.10811 0.0 0.08108 0.01942 +Luhn 0.05405 0.0 0.02703 0.00971 +ICSI 0.10811 0.0 0.05405 0.01942 +3f28f4951bb3562addb4b20c64c08912ca148301.json +UB1 0.48718 0.34211 0.33333 0.2844 +UB2 0.48718 0.36842 0.28205 0.28899 +LexRank 0.07692 0.0 0.05128 0.00917 +TextRank 0.07692 0.0 0.05128 0.01376 +Luhn 0.02564 0.0 0.02564 0.00459 +ICSI 0.15385 0.0 0.07692 0.02752 +571e03c79159db25ab3b7c5beababd091a043323.json +UB1 0.34483 0.10714 0.2069 0.10759 +UB2 0.31034 0.14286 0.2069 0.10759 +LexRank 0.31034 0.0 0.17241 0.07595 +TextRank 0.24138 0.03571 0.13793 0.06329 +Luhn 0.31034 0.07143 0.2069 0.07595 +ICSI 0.27586 0.07143 0.13793 0.08228 +3b2c44532f5c04da7b3e41d74b9c5a1e9b3307ce.json +UB1 0.31818 0.0 0.18182 0.06452 +UB2 0.20455 0.06977 0.13636 0.05645 +LexRank 0.11364 0.0 0.06818 0.02016 +TextRank 0.06818 0.0 0.06818 0.0121 +Luhn 0.06818 0.0 0.06818 0.0121 +ICSI 0.15909 0.0 0.11364 0.02823 +073a3f029783ac8c5f4b1b85e9eb8bd33b5fc80a.json +UB1 0.54839 0.13333 0.25806 0.18235 +UB2 0.35484 0.23333 0.35484 0.14706 +LexRank 0.09677 0.0 0.09677 0.01765 +TextRank 0.06452 0.0 0.03226 0.01176 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.03226 0.0 0.03226 0.00588 +7fac1ecbb49ff151ad892673ed59102d4af7404c.json +UB1 0.49057 0.17308 0.24528 0.21523 +UB2 0.50943 0.25 0.20755 0.19868 +LexRank 0.26415 0.05769 0.15094 0.08278 +TextRank 0.32075 0.01923 0.20755 0.09272 +Luhn 0.22642 0.01923 0.13208 0.05629 +ICSI 0.33962 0.09615 0.13208 0.10596 +83cf60da77e821b867ba6759ae4d3bf4c8b9a5fc.json +UB1 0.53571 0.2 0.375 0.21875 +UB2 0.44643 0.2 0.33929 0.2 +LexRank 0.125 0.0 0.07143 0.01875 +TextRank 0.16071 0.0 0.08929 0.03438 +Luhn 0.01786 0.0 0.01786 0.00313 +ICSI 0.17857 0.0 0.125 0.03438 +7ac910414c1ccf7c5c7a9913b25f8c7673f5ec69.json +UB1 0.4375 0.16129 0.375 0.17045 +UB2 0.375 0.16129 0.3125 0.14205 +LexRank 0.09375 0.0 0.09375 0.02273 +TextRank 0.0625 0.0 0.0625 0.01136 +Luhn 0.15625 0.0 0.09375 0.03977 +ICSI 0.0625 0.0 0.0625 0.01705 +85ab5a384934caf52e7a16e40cc993b943643e04.json +UB1 0.39623 0.15385 0.30189 0.15894 +UB2 0.41509 0.21154 0.32075 0.17881 +LexRank 0.15094 0.0 0.11321 0.0298 +TextRank 0.09434 0.0 0.07547 0.02318 +Luhn 0.15094 0.01923 0.09434 0.03642 +ICSI 0.13208 0.01923 0.11321 0.03642 +4d6cd4ad6e76321628c2509a8c0370d1cff8044e.json +UB1 0.44737 0.13514 0.26316 0.15566 +UB2 0.5 0.27027 0.28947 0.23113 +LexRank 0.34211 0.13514 0.21053 0.11321 +TextRank 0.10526 0.0 0.10526 0.02358 +Luhn 0.23684 0.08108 0.15789 0.0566 +ICSI 0.28947 0.08108 0.13158 0.09434 +31e9886faca96d0a9ff024585092f6b89b4d73bf.json +UB1 0.35821 0.15152 0.23881 0.12953 +UB2 0.35821 0.18182 0.22388 0.15285 +LexRank 0.25373 0.07576 0.08955 0.06995 +TextRank 0.1791 0.0303 0.1194 0.04663 +Luhn 0.08955 0.01515 0.04478 0.02332 +ICSI 0.32836 0.09091 0.19403 0.10622 +1b1da40ea5bc682791c499315225468e0f975bc4.json +UB1 0.70833 0.46809 0.5625 0.43015 +UB2 0.6875 0.46809 0.5625 0.42647 +LexRank 0.22917 0.0 0.125 0.05515 +TextRank 0.20833 0.0 0.10417 0.04779 +Luhn 0.20833 0.0 0.10417 0.04044 +ICSI 0.20833 0.0 0.10417 0.04779 +6ecb9799d58149745f3b3cd7ab690f0e4841dd51.json +UB1 0.33333 0.09434 0.16667 0.08766 +UB2 0.35185 0.15094 0.18519 0.11688 +LexRank 0.12963 0.0 0.09259 0.02597 +TextRank 0.14815 0.0 0.11111 0.03247 +Luhn 0.12963 0.0 0.07407 0.02922 +ICSI 0.16667 0.01887 0.12963 0.04545 +8108089df9fc76b29551f73a4b508f2b468779c2.json +UB1 0.48718 0.05263 0.23077 0.16972 +UB2 0.41026 0.18421 0.23077 0.1422 +LexRank 0.17949 0.0 0.12821 0.04128 +TextRank 0.25641 0.02632 0.15385 0.06422 +Luhn 0.05128 0.0 0.02564 0.00917 +ICSI 0.30769 0.05263 0.15385 0.10092 +48771e94f981ca3ffc9699c4974d2d6d25445c2c.json +UB1 0.44643 0.21818 0.21429 0.16875 +UB2 0.28571 0.18182 0.16071 0.1125 +LexRank 0.14286 0.01818 0.07143 0.03125 +TextRank 0.10714 0.0 0.07143 0.01875 +Luhn 0.10714 0.0 0.07143 0.01875 +ICSI 0.16071 0.01818 0.08929 0.03438 +671509f322d66941ccf522ba683b47ca43510dad.json +UB1 0.48889 0.29545 0.35556 0.22835 +UB2 0.48889 0.31818 0.42222 0.22835 +LexRank 0.13333 0.0 0.08889 0.02362 +TextRank 0.15556 0.0 0.04444 0.02362 +Luhn 0.13333 0.02273 0.08889 0.03937 +ICSI 0.13333 0.0 0.06667 0.02756 +5d2e21aab028eb3301b447f6fa7807cfb4a57e6c.json +UB1 0.32432 0.08333 0.27027 0.07282 +UB2 0.27027 0.11111 0.24324 0.05825 +LexRank 0.10811 0.02778 0.08108 0.03398 +TextRank 0.10811 0.02778 0.08108 0.03398 +Luhn 0.05405 0.0 0.02703 0.00485 +ICSI 0.18919 0.05556 0.16216 0.04854 +11491d6f7b04657d9822a880d7fc70a52eaa6b94.json +UB1 0.66667 0.31707 0.28571 0.30932 +UB2 0.5 0.29268 0.28571 0.24576 +LexRank 0.42857 0.21951 0.2381 0.19068 +TextRank 0.47619 0.17073 0.35714 0.18644 +Luhn 0.21429 0.02439 0.14286 0.07627 +ICSI 0.38095 0.12195 0.30952 0.17373 +4a41e86fcf868e75eb7524392b3d3110d8ac48a4.json +UB1 0.64865 0.25 0.27027 0.25243 +UB2 0.45946 0.30556 0.24324 0.26214 +LexRank 0.02703 0.0 0.02703 0.00485 +TextRank 0.10811 0.0 0.08108 0.01942 +Luhn 0.16216 0.02778 0.13514 0.04369 +ICSI 0.10811 0.02778 0.08108 0.02427 +7d3359c4b0b90ae7acf037dcb61704d5a9bcba36.json +UB1 0.41026 0.18421 0.23077 0.16514 +UB2 0.33333 0.21053 0.23077 0.12385 +LexRank 0.10256 0.0 0.07692 0.02294 +TextRank 0.25641 0.05263 0.15385 0.07798 +Luhn 0.30769 0.13158 0.20513 0.11009 +ICSI 0.15385 0.05263 0.15385 0.04587 +8e0169d847098f592a84331aff218793530cf3a9.json +UB1 0.47222 0.2 0.30556 0.2 +UB2 0.47222 0.2 0.30556 0.2 +LexRank 0.19444 0.05714 0.11111 0.05 +TextRank 0.22222 0.02857 0.16667 0.05 +Luhn 0.05556 0.0 0.05556 0.01 +ICSI 0.19444 0.02857 0.13889 0.05 +111af531838b98fffd8a9a490de1303e13a0dcaa.json +UB1 0.55789 0.26596 0.36842 0.28159 +UB2 0.52632 0.32979 0.35789 0.32671 +LexRank 0.31579 0.06383 0.15789 0.10469 +TextRank 0.13684 0.01064 0.07368 0.02888 +Luhn 0.30526 0.06383 0.18947 0.11011 +ICSI 0.26316 0.07447 0.16842 0.11191 +35df655792770bdff742944b916c3171bf920392.json +UB1 0.45455 0.16279 0.25 0.16129 +UB2 0.29545 0.11628 0.20455 0.10484 +LexRank 0.15909 0.06977 0.13636 0.06048 +TextRank 0.06818 0.0 0.04545 0.0121 +Luhn 0.04545 0.0 0.02273 0.00806 +ICSI 0.11364 0.0 0.09091 0.02016 +3e5e90c63aec9fd8983476c198b2d94b31def0fd.json +UB1 0.37736 0.11538 0.22642 0.11258 +UB2 0.33962 0.13462 0.26415 0.11921 +LexRank 0.09434 0.0 0.0566 0.01656 +TextRank 0.09434 0.0 0.0566 0.01656 +Luhn 0.07547 0.0 0.0566 0.01325 +ICSI 0.0566 0.0 0.0566 0.00993 +826734b863e9a72c826b24bbddea8268d4be3c9f.json +UB1 0.45714 0.11765 0.4 0.19588 +UB2 0.37143 0.14706 0.22857 0.17526 +LexRank 0.05714 0.0 0.02857 0.01031 +TextRank 0.05714 0.0 0.02857 0.01031 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.05714 0.0 0.02857 0.01031 +43f1851314f10ee293f0d71a1addb1d3f246069c.json +UB1 0.41304 0.13333 0.30435 0.16154 +UB2 0.36957 0.2 0.28261 0.14615 +LexRank 0.13043 0.0 0.08696 0.02692 +TextRank 0.04348 0.0 0.04348 0.00769 +Luhn 0.06522 0.0 0.06522 0.01154 +ICSI 0.28261 0.0 0.17391 0.08462 +3a8f1f852d25097e611bc58d89e251f0550b89c3.json +UB1 0.52083 0.25532 0.33333 0.25 +UB2 0.41667 0.29787 0.3125 0.27574 +LexRank 0.3125 0.0 0.14583 0.08456 +TextRank 0.02083 0.0 0.02083 0.00368 +Luhn 0.16667 0.0 0.125 0.03676 +ICSI 0.375 0.23404 0.29167 0.19853 +6c0c09988fa9d174e148e818f953b3238d182c83.json +UB1 0.08333 0.0 0.08333 0.01786 +UB2 0.0 0.0 0.0 0.0 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.08333 0.0 0.08333 0.01786 +2f02f2f73fe9b8d16e91609b8c76f46c9e477191.json +UB1 0.53125 0.19355 0.3125 0.19886 +UB2 0.46875 0.35484 0.375 0.30114 +LexRank 0.0625 0.0 0.0625 0.01136 +TextRank 0.28125 0.09677 0.1875 0.10227 +Luhn 0.125 0.0 0.09375 0.02273 +ICSI 0.15625 0.03226 0.09375 0.03977 +5febe9d58fe04a509d00181c5405c711ab9f8da9.json +UB1 0.46575 0.19444 0.17808 0.15877 +UB2 0.47945 0.23611 0.24658 0.1872 +LexRank 0.15068 0.02778 0.08219 0.04265 +TextRank 0.08219 0.0 0.05479 0.01659 +Luhn 0.12329 0.01389 0.05479 0.03081 +ICSI 0.23288 0.02778 0.08219 0.04502 +8103d35d3e7f49a4c0d5c0654faec398d739d0a8.json +UB1 0.4918 0.16667 0.22951 0.17143 +UB2 0.45902 0.21667 0.2459 0.18 +LexRank 0.18033 0.06667 0.13115 0.05714 +TextRank 0.08197 0.01667 0.06557 0.02286 +Luhn 0.08197 0.01667 0.06557 0.02286 +ICSI 0.36066 0.08333 0.16393 0.10857 +3e9ed24e226a74d0dd1326784fba0cc2748b968e.json +UB1 0.46 0.14286 0.2 0.16197 +UB2 0.38 0.20408 0.24 0.16901 +LexRank 0.16 0.04082 0.1 0.03873 +TextRank 0.26 0.06122 0.16 0.07042 +Luhn 0.22 0.06122 0.16 0.06338 +ICSI 0.28 0.08163 0.18 0.07746 +0715f8629cc4a93de8e2001597bf6ecff5ac1553.json +UB1 0.30769 0.08 0.30769 0.12857 +UB2 0.23077 0.08 0.15385 0.05714 +LexRank 0.11538 0.0 0.07692 0.02143 +TextRank 0.19231 0.0 0.19231 0.05714 +Luhn 0.07692 0.0 0.03846 0.01429 +ICSI 0.03846 0.0 0.03846 0.00714 +283e9a19fc40d10211c8ec5f3530c7c97988187b.json +UB1 0.5 0.13115 0.20968 0.19101 +UB2 0.53226 0.21311 0.29032 0.24157 +LexRank 0.1129 0.0 0.09677 0.02528 +TextRank 0.08065 0.01639 0.06452 0.01685 +Luhn 0.19355 0.01639 0.09677 0.04494 +ICSI 0.35484 0.11475 0.25806 0.1573 +849359ecb361bfac91427b9ee6f42365c7537df3.json +UB1 0.35088 0.03571 0.15789 0.10429 +UB2 0.35088 0.08929 0.12281 0.09816 +LexRank 0.14035 0.0 0.05263 0.03067 +TextRank 0.07018 0.0 0.05263 0.01227 +Luhn 0.19298 0.01786 0.10526 0.03988 +ICSI 0.12281 0.0 0.07018 0.02147 +69c1038bad4ab70cb92267aefd680de01147fb12.json +UB1 0.61905 0.3 0.47619 0.32727 +UB2 0.47619 0.35 0.47619 0.3 +LexRank 0.14286 0.0 0.14286 0.01818 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.19048 0.0 0.14286 0.06364 +55f7b5436d1a53c4f7d582c4b9d8cbbb8c41e57a.json +UB1 0.2381 0.0 0.11905 0.05508 +UB2 0.0 0.0 0.0 0.0 +LexRank 0.11905 0.0 0.09524 0.02119 +TextRank 0.07143 0.0 0.07143 0.01271 +Luhn 0.07143 0.0 0.07143 0.01695 +ICSI 0.07143 0.0 0.04762 0.01271 +3f80c0f3c2b831692869e6d5471ce51406f7fe0f.json +UB1 0.30769 0.08 0.11538 0.07857 +UB2 0.30769 0.12 0.15385 0.07857 +LexRank 0.15385 0.0 0.11538 0.03571 +TextRank 0.07692 0.0 0.07692 0.01429 +Luhn 0.34615 0.16 0.26923 0.15 +ICSI 0.11538 0.0 0.07692 0.02143 +2398ea0ea2e4c1481378ecb21214f868d8146606.json +UB1 0.5 0.28571 0.27273 0.25 +UB2 0.5 0.28571 0.27273 0.25 +LexRank 0.13636 0.0 0.04545 0.02586 +TextRank 0.09091 0.0 0.09091 0.01724 +Luhn 0.04545 0.0 0.04545 0.00862 +ICSI 0.04545 0.0 0.04545 0.00862 +71c57ea583ac03f423e4634d129de607ede9fbd2.json +UB1 0.41379 0.12281 0.22414 0.12651 +UB2 0.48276 0.21053 0.32759 0.18976 +LexRank 0.18966 0.01754 0.13793 0.0512 +TextRank 0.2069 0.01754 0.13793 0.06325 +Luhn 0.2069 0.01754 0.13793 0.06325 +ICSI 0.34483 0.03509 0.17241 0.09639 +58aeea89b5be81beb46322932b0a8ed172b5fdaf.json +UB1 0.51899 0.23077 0.20253 0.21179 +UB2 0.49367 0.23077 0.21519 0.21179 +LexRank 0.13924 0.0 0.03797 0.02402 +TextRank 0.13924 0.0 0.07595 0.02402 +Luhn 0.11392 0.01282 0.07595 0.02838 +ICSI 0.3038 0.0641 0.16456 0.08297 +371276d18c482ed8c7e63ec95cffd526da45386b.json +UB1 0.60194 0.27451 0.35922 0.28904 +UB2 0.60194 0.33333 0.29126 0.2907 +LexRank 0.25243 0.03922 0.13592 0.06811 +TextRank 0.31068 0.07843 0.17476 0.11628 +Luhn 0.26214 0.04902 0.09709 0.0814 +ICSI 0.36893 0.13725 0.2233 0.15116 +3667e8ff092d8cc258fc82ead284855301a48329.json +UB1 0.375 0.06452 0.1875 0.11364 +UB2 0.21875 0.06452 0.125 0.07955 +LexRank 0.0625 0.0 0.0625 0.00568 +TextRank 0.03125 0.0 0.03125 0.00568 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.09375 0.0 0.09375 0.01705 +36d86705d1560ec7a770abb1967e94dca064320d.json +UB1 0.49153 0.27586 0.28814 0.30473 +UB2 0.49153 0.31034 0.35593 0.28107 +LexRank 0.23729 0.0 0.10169 0.04438 +TextRank 0.37288 0.24138 0.25424 0.22485 +Luhn 0.27119 0.01724 0.16949 0.06509 +ICSI 0.44068 0.22414 0.30508 0.19822 +3948a07d144f008ae4d3ca88146ae6309744683b.json +UB1 0.27273 0.09524 0.22727 0.07759 +UB2 0.27273 0.14286 0.27273 0.13793 +LexRank 0.09091 0.0 0.09091 0.01724 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.13636 0.09524 0.13636 0.05172 +2514620d984e24cbe0e83e5ad2a1aed4bea1e577.json +UB1 0.34146 0.05 0.14634 0.0913 +UB2 0.29268 0.075 0.14634 0.08261 +LexRank 0.17073 0.025 0.07317 0.03478 +TextRank 0.07317 0.0 0.07317 0.01304 +Luhn 0.09756 0.0 0.07317 0.01739 +ICSI 0.12195 0.0 0.09756 0.02174 +44c40f62efcb32123f4878e1b23c3dd91e9d6173.json +UB1 0.35556 0.0 0.11111 0.07874 +UB2 0.26667 0.09091 0.15556 0.08268 +LexRank 0.2 0.02273 0.11111 0.04724 +TextRank 0.13333 0.0 0.08889 0.02362 +Luhn 0.06667 0.0 0.04444 0.01575 +ICSI 0.15556 0.0 0.08889 0.03543 +3bf77cfc50892899abce229ee7895af04c06b8d3.json +UB1 0.42424 0.1875 0.18182 0.19231 +UB2 0.33333 0.21875 0.27273 0.15385 +LexRank 0.09091 0.0 0.06061 0.01648 +TextRank 0.12121 0.0 0.09091 0.02747 +Luhn 0.06061 0.0 0.0303 0.01099 +ICSI 0.15152 0.0 0.09091 0.03297 +19b504be82ce4d676babe7a89002a44be5040ec0.json +UB1 0.28571 0.14815 0.25 0.14474 +UB2 0.28571 0.18519 0.17857 0.11184 +LexRank 0.14286 0.0 0.07143 0.02632 +TextRank 0.28571 0.14815 0.10714 0.09868 +Luhn 0.28571 0.14815 0.10714 0.09868 +ICSI 0.25 0.11111 0.17857 0.09868 +0fb7325ec5597d84c1c24122004792bae785c52c.json +UB1 0.49296 0.07143 0.21127 0.14146 +UB2 0.46479 0.17143 0.22535 0.17317 +LexRank 0.16901 0.05714 0.12676 0.04878 +TextRank 0.21127 0.04286 0.19718 0.06829 +Luhn 0.14085 0.0 0.09859 0.03415 +ICSI 0.32394 0.05714 0.1831 0.09756 +759d7da6bff5c86100209ad36e56f6e256f1617d.json +UB1 0.3125 0.09677 0.21875 0.10795 +UB2 0.28125 0.09677 0.21875 0.10795 +LexRank 0.15625 0.0 0.125 0.02841 +TextRank 0.09375 0.0 0.0625 0.02273 +Luhn 0.09375 0.0 0.0625 0.01705 +ICSI 0.125 0.0 0.0625 0.02841 +861e4475bcf2b0dd5c5ede374caf677a53f5d5ee.json +UB1 0.43902 0.15 0.2439 0.15652 +UB2 0.41463 0.25 0.2439 0.17826 +LexRank 0.14634 0.0 0.09756 0.03478 +TextRank 0.2439 0.025 0.17073 0.07391 +Luhn 0.09756 0.0 0.04878 0.01739 +ICSI 0.19512 0.025 0.17073 0.06957 +2e4d499947e2bfadd1a215c4227f02a509e6c877.json +UB1 0.49091 0.18519 0.23636 0.20701 +UB2 0.43636 0.24074 0.21818 0.21019 +LexRank 0.29091 0.01852 0.14545 0.07006 +TextRank 0.09091 0.0 0.07273 0.01592 +Luhn 0.12727 0.01852 0.10909 0.03822 +ICSI 0.38182 0.11111 0.25455 0.13376 +8b79a4b3b3e0eb7c5faf97e6bf363e1331519c0a.json +UB1 0.30769 0.08 0.19231 0.08571 +UB2 0.30769 0.12 0.23077 0.09286 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.11538 0.0 0.07692 0.02143 +Luhn 0.11538 0.0 0.07692 0.02143 +ICSI 0.11538 0.0 0.11538 0.02143 +7365f70523a4e35b53509164d0ccdd820980b5a4.json +UB1 0.675 0.51282 0.425 0.47768 +UB2 0.65 0.58974 0.4 0.49107 +LexRank 0.225 0.02564 0.1 0.04464 +TextRank 0.225 0.02564 0.1 0.04464 +Luhn 0.225 0.02564 0.1 0.04464 +ICSI 0.4 0.15385 0.3 0.14286 +1cb19841ff0ad55416d195e572a579efd946a708.json +UB1 0.53763 0.23913 0.21505 0.24539 +UB2 0.52688 0.28261 0.24731 0.25092 +LexRank 0.27957 0.08696 0.1828 0.09779 +TextRank 0.24731 0.02174 0.13978 0.07196 +Luhn 0.29032 0.09783 0.16129 0.1107 +ICSI 0.31183 0.07609 0.19355 0.10886 +117594ea86acde9620ec073e40e230cc772a917a.json +UB1 0.41463 0.05 0.17073 0.1 +UB2 0.17073 0.05 0.17073 0.04783 +LexRank 0.14634 0.0 0.07317 0.02609 +TextRank 0.04878 0.0 0.04878 0.01304 +Luhn 0.04878 0.0 0.04878 0.01304 +ICSI 0.14634 0.0 0.09756 0.03043 +4106bdc651a29d4dc53a5f78237c57184c4061e1.json +UB1 0.4 0.18367 0.32 0.14789 +UB2 0.32 0.18367 0.22 0.11972 +LexRank 0.16 0.0 0.12 0.03169 +TextRank 0.1 0.0 0.06 0.01761 +Luhn 0.1 0.0 0.06 0.01761 +ICSI 0.2 0.04082 0.12 0.0493 +7971468a7ac2128ab493fffac9cd2e924321a8c8.json +UB1 0.37931 0.14286 0.17241 0.10759 +UB2 0.34483 0.25 0.34483 0.20886 +LexRank 0.03448 0.0 0.03448 0.00633 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.17241 0.0 0.06897 0.03165 +4d472d48ce42634583e92f1c68180c19f366a176.json +UB1 0.41667 0.08511 0.27083 0.16176 +UB2 0.375 0.17021 0.22917 0.16912 +LexRank 0.20833 0.0 0.08333 0.03676 +TextRank 0.10417 0.0 0.0625 0.01838 +Luhn 0.10417 0.0 0.0625 0.01838 +ICSI 0.3125 0.04255 0.125 0.08456 +1e13eea791b0eab14d3e61cb60c7144ef9002c2e.json +UB1 0.47727 0.13953 0.20455 0.13306 +UB2 0.5 0.2093 0.31818 0.18145 +LexRank 0.15909 0.0 0.09091 0.03226 +TextRank 0.04545 0.0 0.02273 0.00806 +Luhn 0.09091 0.0 0.06818 0.01613 +ICSI 0.29545 0.06977 0.20455 0.08468 +397f8a6cddadd2aa985869cda55a92db91dbf2db.json +UB1 0.4 0.29167 0.32 0.25373 +UB2 0.4 0.29167 0.32 0.25373 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.16 0.04167 0.16 0.05224 +7762eecd11035a072ac2f7d4935d7299eb510be0.json +UB1 0.36842 0.33333 0.36842 0.26531 +UB2 0.36842 0.33333 0.36842 0.26531 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.10526 0.0 0.10526 0.0102 +Luhn 0.05263 0.0 0.05263 0.0102 +ICSI 0.0 0.0 0.0 0.0 +2118a173ca20c9ce4819cdbb2ca4d47dfef26ccf.json +UB1 0.60526 0.43243 0.39474 0.42925 +UB2 0.52632 0.45946 0.42105 0.40566 +LexRank 0.02632 0.0 0.02632 0.00472 +TextRank 0.13158 0.0 0.10526 0.0283 +Luhn 0.02632 0.0 0.02632 0.00472 +ICSI 0.13158 0.0 0.10526 0.02358 +75c4de9e4813300f07c79af20e215c77f92d4951.json +UB1 0.43396 0.15385 0.24528 0.15894 +UB2 0.39623 0.25 0.20755 0.19205 +LexRank 0.16981 0.03846 0.11321 0.04305 +TextRank 0.13208 0.0 0.09434 0.02318 +Luhn 0.20755 0.03846 0.13208 0.05298 +ICSI 0.16981 0.0 0.09434 0.03311 +379a912baa5999581cc5d5fd5bcd1e7fd73d57dd.json +UB1 0.375 0.05128 0.275 0.16518 +UB2 0.275 0.07692 0.175 0.12054 +LexRank 0.15 0.02564 0.075 0.03571 +TextRank 0.1 0.0 0.075 0.01786 +Luhn 0.225 0.02564 0.125 0.05357 +ICSI 0.075 0.0 0.05 0.01339 +0d90492d028e1bcae3ce716128f7a29bc23cb9cd.json +UB1 0.7 0.53846 0.475 0.41964 +UB2 0.675 0.53846 0.525 0.41518 +LexRank 0.175 0.02564 0.075 0.04464 +TextRank 0.3 0.12821 0.2 0.12054 +Luhn 0.3 0.12821 0.2 0.12054 +ICSI 0.1 0.0 0.075 0.01786 +2c6b9381bbc359d6f4e7cf1ece09e72aaa432d10.json +UB1 0.39535 0.16667 0.23256 0.13636 +UB2 0.37209 0.16667 0.23256 0.13223 +LexRank 0.13953 0.0 0.06977 0.02479 +TextRank 0.23256 0.04762 0.16279 0.05372 +Luhn 0.23256 0.04762 0.13953 0.05372 +ICSI 0.11628 0.0 0.04651 0.02066 +21b8808d233d4954cbd5c1ceed27634000a4efd3.json +UB1 0.36 0.16667 0.32 0.14925 +UB2 0.28 0.16667 0.28 0.14179 +LexRank 0.08 0.0 0.08 0.01493 +TextRank 0.04 0.0 0.04 0.00746 +Luhn 0.08 0.0 0.04 0.01493 +ICSI 0.2 0.125 0.2 0.11194 +3390b1878357130e0276a8fdfabdf9ca9c1fc4ea.json +UB1 0.55072 0.23529 0.36232 0.23116 +UB2 0.55072 0.23529 0.36232 0.23116 +LexRank 0.17391 0.02941 0.08696 0.03518 +TextRank 0.18841 0.01471 0.11594 0.04271 +Luhn 0.10145 0.0 0.05797 0.01759 +ICSI 0.18841 0.01471 0.13043 0.04271 +553cb537eef6f1d23ec4bab6e02e07d501521c01.json +UB1 0.25 0.11429 0.22222 0.095 +UB2 0.30556 0.17143 0.19444 0.1 +LexRank 0.11111 0.0 0.08333 0.02 +TextRank 0.19444 0.02857 0.08333 0.04 +Luhn 0.22222 0.05714 0.08333 0.055 +ICSI 0.25 0.11429 0.11111 0.075 +596525a6ab1cf0d871fe0c38fdccc12e78e2de95.json +UB1 0.58824 0.32836 0.26471 0.2602 +UB2 0.54412 0.34328 0.30882 0.26276 +LexRank 0.17647 0.02985 0.08824 0.03827 +TextRank 0.08824 0.0 0.05882 0.02041 +Luhn 0.19118 0.0597 0.16176 0.05357 +ICSI 0.25 0.01493 0.08824 0.05867 +846a3e4cb07fc0e257697a2a5d1d81106a1881c9.json +UB1 0.62319 0.26471 0.27536 0.28643 +UB2 0.5942 0.33824 0.26087 0.28894 +LexRank 0.23188 0.05882 0.15942 0.08794 +TextRank 0.10145 0.0 0.05797 0.0201 +Luhn 0.10145 0.0 0.05797 0.0201 +ICSI 0.31884 0.10294 0.18841 0.10553 +864f145e29421fd466809e780203a9243b524882.json +UB1 0.4 0.11765 0.2 0.15464 +UB2 0.34286 0.17647 0.28571 0.15464 +LexRank 0.22857 0.0 0.14286 0.04639 +TextRank 0.14286 0.0 0.11429 0.03093 +Luhn 0.14286 0.02941 0.14286 0.04124 +ICSI 0.17143 0.0 0.11429 0.04639 +4c846fac07723f629aa4f7aa96f5fa8dfe2eb4cc.json +UB1 0.5 0.23529 0.28846 0.22297 +UB2 0.48077 0.35294 0.32692 0.30405 +LexRank 0.23077 0.0 0.09615 0.0473 +TextRank 0.23077 0.01961 0.11538 0.06081 +Luhn 0.11538 0.0 0.07692 0.02365 +ICSI 0.17308 0.0 0.07692 0.03041 +0ffd6d20d0c409e8d3bd81b59d816666d51f3c32.json +UB1 0.63043 0.31111 0.23913 0.32692 +UB2 0.54348 0.31111 0.26087 0.27692 +LexRank 0.17391 0.0 0.1087 0.04615 +TextRank 0.17391 0.0 0.13043 0.03846 +Luhn 0.13043 0.0 0.08696 0.02692 +ICSI 0.30435 0.02222 0.13043 0.07692 +7e84fd529f496a325a5267230df1b0e749b33f1f.json +UB1 0.54717 0.17308 0.22642 0.19205 +UB2 0.45283 0.17308 0.28302 0.17881 +LexRank 0.20755 0.01923 0.11321 0.04967 +TextRank 0.22642 0.0 0.13208 0.04967 +Luhn 0.22642 0.0 0.13208 0.04967 +ICSI 0.22642 0.01923 0.11321 0.04636 +8c046c196d158ea162b0bc61949296db6a94e725.json +UB1 0.41667 0.28571 0.22222 0.17 +UB2 0.41667 0.28571 0.22222 0.17 +LexRank 0.11111 0.0 0.08333 0.02 +TextRank 0.11111 0.0 0.08333 0.02 +Luhn 0.11111 0.0 0.08333 0.02 +ICSI 0.13889 0.0 0.08333 0.025 +23de126eacbf02279c3d9b41234ec55a7d4859fa.json +UB1 0.44737 0.16216 0.34211 0.17925 +UB2 0.36842 0.24324 0.31579 0.17925 +LexRank 0.15789 0.02703 0.07895 0.04717 +TextRank 0.10526 0.0 0.07895 0.01887 +Luhn 0.10526 0.0 0.07895 0.01887 +ICSI 0.23684 0.05405 0.18421 0.0566 +3374c30140aad067445e66c9eac88e73adbdec72.json +UB1 0.52239 0.25758 0.34328 0.26425 +UB2 0.46269 0.24242 0.35821 0.23057 +LexRank 0.13433 0.01515 0.1194 0.03627 +TextRank 0.1791 0.01515 0.10448 0.03886 +Luhn 0.1791 0.0 0.1194 0.04145 +ICSI 0.19403 0.01515 0.10448 0.03886 +08b83ebc138e38853202ce7bd265b3503fc134c7.json +UB1 0.40426 0.1087 0.19149 0.12782 +UB2 0.29787 0.13043 0.14894 0.10526 +LexRank 0.17021 0.0 0.10638 0.04135 +TextRank 0.08511 0.0 0.06383 0.01504 +Luhn 0.02128 0.0 0.02128 0.00376 +ICSI 0.10638 0.0 0.04255 0.02256 +85a23fc02f7914ff5c2d398f9f34ca035c4596f2.json +UB1 0.50704 0.2 0.19718 0.20732 +UB2 0.4507 0.24286 0.22535 0.19756 +LexRank 0.23944 0.01429 0.11268 0.05854 +TextRank 0.11268 0.01429 0.08451 0.02195 +Luhn 0.11268 0.01429 0.08451 0.02195 +ICSI 0.25352 0.04286 0.11268 0.06098 +2f52cf9122ee10491a3e60baedf47666a6b1db40.json +UB1 0.16667 0.04348 0.16667 0.03125 +UB2 0.08333 0.04348 0.08333 0.02344 +LexRank 0.08333 0.0 0.08333 0.00781 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.04167 0.0 0.04167 0.0 +ICSI 0.04167 0.0 0.04167 0.00781 +6e0cdd6b784d084f112a9a2ee81c4e904b834a39.json +UB1 0.30769 0.10526 0.20513 0.10092 +UB2 0.33333 0.21053 0.20513 0.14679 +LexRank 0.02564 0.0 0.02564 0.00459 +TextRank 0.10256 0.0 0.07692 0.01835 +Luhn 0.10256 0.0 0.07692 0.01835 +ICSI 0.17949 0.10526 0.17949 0.07798 +6763e6b8e696162b5ad1dd195a494877ffa2007b.json +UB1 0.40678 0.22414 0.37288 0.2071 +UB2 0.40678 0.22414 0.37288 0.2071 +LexRank 0.08475 0.0 0.0339 0.01479 +TextRank 0.05085 0.0 0.05085 0.00888 +Luhn 0.08475 0.0 0.05085 0.01479 +ICSI 0.08475 0.0 0.0678 0.01479 +05dde8bfec38a7ed840efdd2ca4dff368c89623d.json +UB1 0.34043 0.08696 0.25532 0.11654 +UB2 0.31915 0.08696 0.23404 0.11278 +LexRank 0.23404 0.02174 0.10638 0.05639 +TextRank 0.17021 0.0 0.08511 0.03008 +Luhn 0.08511 0.0 0.06383 0.01504 +ICSI 0.12766 0.02174 0.12766 0.03008 +13fcbda51127c0077e4f89c90c5c983b4be3f3e9.json +UB1 0.45833 0.21739 0.29167 0.21094 +UB2 0.45833 0.21739 0.29167 0.21875 +LexRank 0.125 0.04348 0.08333 0.03125 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.04167 0.0 0.04167 0.00781 +ICSI 0.25 0.04348 0.16667 0.07812 +3d396ea7c4c51b3652c995fff47ae9eaffe7ae7b.json +UB1 0.34545 0.09259 0.18182 0.09873 +UB2 0.30909 0.11111 0.21818 0.10191 +LexRank 0.07273 0.0 0.05455 0.00955 +TextRank 0.21818 0.03704 0.14545 0.04777 +Luhn 0.21818 0.03704 0.14545 0.04777 +ICSI 0.16364 0.01852 0.10909 0.04777 +6179550c7bc3319bf45be871616ab0b373115b40.json +UB1 0.63415 0.425 0.39024 0.42609 +UB2 0.60976 0.425 0.46341 0.42609 +LexRank 0.31707 0.075 0.2439 0.12609 +TextRank 0.12195 0.0 0.07317 0.02174 +Luhn 0.17073 0.05 0.09756 0.05217 +ICSI 0.26829 0.05 0.19512 0.07391 +3fe14eda8824130912247a369fe988d3b7d85337.json +UB1 0.40426 0.06522 0.12766 0.1015 +UB2 0.34043 0.08696 0.17021 0.11278 +LexRank 0.12766 0.02174 0.08511 0.03383 +TextRank 0.08511 0.0 0.04255 0.01504 +Luhn 0.10638 0.02174 0.04255 0.02256 +ICSI 0.12766 0.0 0.06383 0.02256 +71b777f73a5f6f05cc80b5e244927079f3284c49.json +UB1 0.46341 0.225 0.17073 0.20435 +UB2 0.36585 0.2 0.21951 0.16957 +LexRank 0.12195 0.0 0.07317 0.02174 +TextRank 0.17073 0.05 0.12195 0.04348 +Luhn 0.09756 0.0 0.07317 0.01304 +ICSI 0.2439 0.125 0.19512 0.11304 +52e8a1a52a80af8819df1c4db16c8772fa68bc5a.json +UB1 0.33333 0.14634 0.14286 0.13136 +UB2 0.33333 0.17073 0.16667 0.12712 +LexRank 0.11905 0.0 0.07143 0.02542 +TextRank 0.07143 0.0 0.07143 0.01695 +Luhn 0.16667 0.0 0.11905 0.04237 +ICSI 0.2381 0.0 0.11905 0.04661 +21a61c7e2b63f9b408497c98c2712160d73951ee.json +UB1 0.34615 0.07843 0.11538 0.08108 +UB2 0.30769 0.09804 0.15385 0.08784 +LexRank 0.09615 0.0 0.05769 0.01689 +TextRank 0.11538 0.0 0.07692 0.02027 +Luhn 0.11538 0.0 0.05769 0.02027 +ICSI 0.19231 0.01961 0.09615 0.03716 +2dcb78a20ca2ca48e0407d86c4b0bfb97ff08a17.json +UB1 0.65574 0.36667 0.47541 0.39143 +UB2 0.65574 0.51667 0.57377 0.48286 +LexRank 0.13115 0.01667 0.09836 0.04 +TextRank 0.19672 0.0 0.09836 0.04857 +Luhn 0.18033 0.0 0.09836 0.04571 +ICSI 0.16393 0.01667 0.13115 0.04286 +1dfd89d2dc5f9acba80c604049bc07d8e519a2f4.json +UB1 0.27273 0.0625 0.24242 0.09341 +UB2 0.12121 0.0625 0.12121 0.03297 +LexRank 0.09091 0.0 0.06061 0.01648 +TextRank 0.06061 0.0 0.06061 0.01099 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.09091 0.0 0.06061 0.01099 +61264f24b0c5c627491a4e33c09eb29dd5202d37.json +UB1 0.36 0.04167 0.28 0.13433 +UB2 0.36 0.16667 0.2 0.10448 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.08 0.0 0.04 0.01493 +ICSI 0.28 0.08333 0.16 0.07463 +3b4cb6e6559bccfb943789a0910b479f9f9b3da2.json +UB1 0.49057 0.19231 0.35849 0.20861 +UB2 0.43396 0.17308 0.32075 0.18874 +LexRank 0.15094 0.0 0.07547 0.0298 +TextRank 0.13208 0.0 0.09434 0.0298 +Luhn 0.18868 0.03846 0.11321 0.04967 +ICSI 0.13208 0.0 0.09434 0.02649 +868e5c80af236a56864ed1b29637713025d315d6.json +UB1 0.52041 0.19588 0.2449 0.19406 +UB2 0.46939 0.20619 0.26531 0.17308 +LexRank 0.16327 0.0 0.10204 0.04021 +TextRank 0.14286 0.01031 0.08163 0.02622 +Luhn 0.13265 0.01031 0.08163 0.02797 +ICSI 0.28571 0.03093 0.10204 0.06643 +1a0c962830918085758b5da5472fe8fe97afe0bb.json +UB1 0.51923 0.2549 0.26923 0.25 +UB2 0.48077 0.31373 0.19231 0.23649 +LexRank 0.15385 0.0 0.09615 0.02703 +TextRank 0.13462 0.0 0.07692 0.03041 +Luhn 0.11538 0.01961 0.07692 0.02703 +ICSI 0.15385 0.0 0.09615 0.02703 +6ad5c2aa116b00a9c132d325252a7de1d5d6001c.json +UB1 0.36364 0.06977 0.27273 0.10484 +UB2 0.20455 0.06977 0.13636 0.05645 +LexRank 0.06818 0.0 0.06818 0.0121 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09091 0.0 0.04545 0.01613 +ICSI 0.09091 0.0 0.06818 0.01613 +1cf2ca2407d2055b179243f086083d729549f8b5.json +UB1 0.42105 0.25 0.36842 0.20552 +UB2 0.42105 0.25 0.36842 0.20552 +LexRank 0.26316 0.03571 0.12281 0.05521 +TextRank 0.14035 0.01786 0.08772 0.03681 +Luhn 0.17544 0.01786 0.10526 0.04294 +ICSI 0.24561 0.01786 0.12281 0.05215 +5bb1f944e0488b7a41dc007392f9f9954460a263.json +UB1 0.48387 0.1413 0.15054 0.16052 +UB2 0.41935 0.21739 0.23656 0.15867 +LexRank 0.12903 0.01087 0.06452 0.02399 +TextRank 0.11828 0.0 0.08602 0.02399 +Luhn 0.21505 0.03261 0.11828 0.04982 +ICSI 0.25806 0.04348 0.10753 0.06458 +818acd38f8f1460623e64e56f64c30717a6b2318.json +UB1 0.53488 0.40476 0.27907 0.39256 +UB2 0.53488 0.40476 0.27907 0.39256 +LexRank 0.2093 0.0 0.13953 0.03719 +TextRank 0.13953 0.0 0.09302 0.03306 +Luhn 0.18605 0.0 0.09302 0.03306 +ICSI 0.18605 0.0 0.13953 0.03306 +4515049d7af69342a8f67e7481a0f6b27b2ac094.json +UB1 0.60526 0.35135 0.31579 0.28774 +UB2 0.60526 0.37838 0.31579 0.28302 +LexRank 0.07895 0.0 0.05263 0.01415 +TextRank 0.07895 0.0 0.05263 0.01415 +Luhn 0.07895 0.0 0.05263 0.01415 +ICSI 0.10526 0.0 0.05263 0.01887 +5dc14ee75279413858047b8e04fab1bc90ba2464.json +UB1 0.41176 0.18182 0.26471 0.14362 +UB2 0.35294 0.18182 0.26471 0.11702 +LexRank 0.11765 0.0303 0.05882 0.0266 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05882 0.0 0.05882 0.01596 +ICSI 0.05882 0.0 0.05882 0.01064 +39a358851ae25c0203137641af3ac1e4f3c286f3.json +UB1 0.46809 0.13043 0.29787 0.16165 +UB2 0.38298 0.19565 0.34043 0.15414 +LexRank 0.14894 0.0 0.12766 0.03008 +TextRank 0.14894 0.02174 0.08511 0.03008 +Luhn 0.08511 0.0 0.04255 0.0188 +ICSI 0.10638 0.0 0.06383 0.0188 +2ea379e3d8ae8f7cb7dfd9b7303980faff6600c5.json +UB1 0.4 0.12963 0.23636 0.15924 +UB2 0.32727 0.14815 0.2 0.13057 +LexRank 0.21818 0.03704 0.10909 0.06051 +TextRank 0.2 0.03704 0.10909 0.05732 +Luhn 0.21818 0.03704 0.10909 0.06051 +ICSI 0.23636 0.01852 0.16364 0.05414 +2fae21ba799ad6a555aa138008555f706830bbf8.json +UB1 0.37838 0.13889 0.2973 0.19417 +UB2 0.18919 0.11111 0.16216 0.08738 +LexRank 0.02703 0.0 0.02703 0.00485 +TextRank 0.02703 0.0 0.02703 0.00485 +Luhn 0.05405 0.0 0.05405 0.00971 +ICSI 0.16216 0.0 0.10811 0.03398 +7665bbc08577ad3b2ef82ca609ce22fe0d7aad36.json +UB1 0.48387 0.16667 0.25806 0.17647 +UB2 0.22581 0.13333 0.19355 0.08824 +LexRank 0.16129 0.0 0.09677 0.02941 +TextRank 0.16129 0.0 0.12903 0.02941 +Luhn 0.19355 0.0 0.12903 0.04118 +ICSI 0.22581 0.0 0.16129 0.06471 +64181647e6ebafab9a869c5e2aa54b409cd67ba7.json +UB1 0.31818 0.19048 0.31818 0.12069 +UB2 0.31818 0.19048 0.31818 0.12069 +LexRank 0.09091 0.0 0.09091 0.02586 +TextRank 0.13636 0.0 0.04545 0.02586 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.31818 0.19048 0.31818 0.12069 +8a6ebe6669d33c3257eeee5a8a26e030ce6fb410.json +UB1 0.4 0.13793 0.3 0.11585 +UB2 0.43333 0.2069 0.26667 0.14024 +LexRank 0.13333 0.0 0.1 0.02439 +TextRank 0.1 0.0 0.03333 0.01829 +Luhn 0.1 0.0 0.03333 0.01829 +ICSI 0.16667 0.0 0.1 0.02439 +6edba1d72ae095ad15a3b824bc784925881536a0.json +UB1 0.23333 0.03448 0.1 0.04878 +UB2 0.13333 0.03448 0.06667 0.02439 +LexRank 0.16667 0.0 0.06667 0.03659 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.13333 0.0 0.06667 0.03049 +ICSI 0.06667 0.0 0.06667 0.01829 +5a54e45cdc7f91d2eee80b5ed8c55d7562084a33.json +UB1 0.56098 0.25 0.34146 0.25652 +UB2 0.4878 0.3 0.31707 0.25652 +LexRank 0.43902 0.225 0.21951 0.2 +TextRank 0.31707 0.2 0.2439 0.17391 +Luhn 0.34146 0.225 0.29268 0.1913 +ICSI 0.39024 0.2 0.31707 0.2 +89ca5f912514331ead508c77aace1fb81fe94e72.json +UB1 0.39286 0.10909 0.19643 0.125 +UB2 0.42857 0.16364 0.17857 0.15313 +LexRank 0.14286 0.0 0.08929 0.02813 +TextRank 0.14286 0.0 0.08929 0.02813 +Luhn 0.07143 0.0 0.03571 0.0125 +ICSI 0.10714 0.0 0.07143 0.02187 +8dc5eb9297e768774bb14a7cd11ef8f53f93cdda.json +UB1 0.4898 0.08333 0.2449 0.16906 +UB2 0.34694 0.14583 0.2449 0.16187 +LexRank 0.06122 0.0 0.06122 0.01079 +TextRank 0.16327 0.02083 0.12245 0.03237 +Luhn 0.16327 0.02083 0.12245 0.03237 +ICSI 0.18367 0.02083 0.12245 0.05036 +4864a3ba4f8d506b0059e40cf47080d6c7d20b9a.json +UB1 0.375 0.12766 0.22917 0.09926 +UB2 0.33333 0.17021 0.22917 0.11397 +LexRank 0.25 0.04255 0.1875 0.08824 +TextRank 0.16667 0.02128 0.08333 0.03309 +Luhn 0.22917 0.04255 0.14583 0.07353 +ICSI 0.22917 0.04255 0.16667 0.06985 +3cd2dd03c6677e5db2bc5cdcec504cf34d3756a6.json +UB1 0.59016 0.33333 0.27869 0.21143 +UB2 0.52459 0.33333 0.34426 0.28 +LexRank 0.32787 0.16667 0.21311 0.15714 +TextRank 0.22951 0.06667 0.14754 0.05429 +Luhn 0.27869 0.11667 0.14754 0.07714 +ICSI 0.40984 0.2 0.2459 0.20857 +311b5274d9de8a9c6c46f42edf5e9b1d2da974b3.json +UB1 0.54237 0.25862 0.32203 0.22485 +UB2 0.54237 0.27586 0.33898 0.22485 +LexRank 0.18644 0.01724 0.0678 0.04142 +TextRank 0.16949 0.0 0.0678 0.03254 +Luhn 0.16949 0.0 0.0678 0.03254 +ICSI 0.15254 0.03448 0.10169 0.0355 +885fb4d27f47a042653c99af66e3d5a2d51eb588.json +UB1 0.27586 0.10714 0.2069 0.09494 +UB2 0.27586 0.10714 0.2069 0.09494 +LexRank 0.17241 0.03571 0.10345 0.03797 +TextRank 0.13793 0.0 0.10345 0.02532 +Luhn 0.06897 0.0 0.06897 0.01266 +ICSI 0.10345 0.0 0.10345 0.01899 +45e4ce885077033faca243311f9a7e7d855b9171.json +UB1 0.55102 0.16667 0.30612 0.20144 +UB2 0.44898 0.16667 0.30612 0.20504 +LexRank 0.20408 0.02083 0.14286 0.05036 +TextRank 0.2449 0.04167 0.18367 0.06475 +Luhn 0.02041 0.0 0.02041 0.0036 +ICSI 0.18367 0.0 0.10204 0.03597 +0c0ecd9b2625f98b3acab6b0959dc5753aa515a9.json +UB1 0.43478 0.09091 0.30435 0.17213 +UB2 0.43478 0.22727 0.3913 0.19672 +LexRank 0.13043 0.0 0.08696 0.02459 +TextRank 0.08696 0.0 0.08696 0.02459 +Luhn 0.04348 0.0 0.04348 0.0082 +ICSI 0.08696 0.04545 0.08696 0.01639 +7aa02c4a72bd0152e4e5483c8f6540c25790a89e.json +UB1 0.53191 0.30435 0.31915 0.27068 +UB2 0.53191 0.32609 0.34043 0.27068 +LexRank 0.31915 0.08696 0.12766 0.09398 +TextRank 0.12766 0.0 0.08511 0.02632 +Luhn 0.06383 0.0 0.04255 0.01128 +ICSI 0.23404 0.04348 0.14894 0.05639 +601ad753f044fa45f1c0faa0684693a9553ad93b.json +UB1 0.58537 0.225 0.39024 0.25652 +UB2 0.58537 0.275 0.31707 0.26087 +LexRank 0.19512 0.0 0.07317 0.03478 +TextRank 0.19512 0.025 0.09756 0.03478 +Luhn 0.12195 0.0 0.07317 0.02174 +ICSI 0.31707 0.0 0.12195 0.07826 +0602a3ce0385199768df4a9a64136d67df6674e9.json +UB1 0.50746 0.19697 0.34328 0.20207 +UB2 0.50746 0.27273 0.38806 0.23834 +LexRank 0.22388 0.0 0.10448 0.03886 +TextRank 0.1791 0.0303 0.1194 0.04145 +Luhn 0.19403 0.0 0.1194 0.04404 +ICSI 0.29851 0.15152 0.20896 0.14249 +705847cc7421e7b74407906a4f49356b6b18a458.json +UB1 0.34286 0.14706 0.17143 0.10825 +UB2 0.31429 0.14706 0.17143 0.10825 +LexRank 0.11429 0.0 0.08571 0.02577 +TextRank 0.02857 0.0 0.02857 0.00515 +Luhn 0.02857 0.0 0.02857 0.00515 +ICSI 0.05714 0.0 0.05714 0.01546 +3565679c534a6f0fd4b818eb93afcf051d91916b.json +UB1 0.61538 0.28571 0.30769 0.30973 +UB2 0.58974 0.33766 0.26923 0.30531 +LexRank 0.23077 0.02597 0.11538 0.05531 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.24359 0.03896 0.14103 0.0708 +ICSI 0.30769 0.03896 0.14103 0.07965 +243cff8bcd670489c858aeaefecde47b3981b03b.json +UB1 0.8125 0.68085 0.54167 0.59191 +UB2 0.79167 0.68085 0.54167 0.59191 +LexRank 0.60417 0.48936 0.3125 0.45956 +TextRank 0.3125 0.14894 0.22917 0.09559 +Luhn 0.60417 0.48936 0.3125 0.45956 +ICSI 0.66667 0.48936 0.33333 0.42647 +73a661ffb4258f8e588b452207c2fdfaa6cf7933.json +UB1 0.36364 0.19048 0.22727 0.10345 +UB2 0.36364 0.19048 0.22727 0.10345 +LexRank 0.04545 0.0 0.04545 0.00862 +TextRank 0.18182 0.0 0.13636 0.0431 +Luhn 0.22727 0.09524 0.13636 0.09483 +ICSI 0.0 0.0 0.0 0.0 +74f26e3bdd2454f25b052964f91d75d95f1a71a2.json +UB1 0.4 0.10256 0.175 0.125 +UB2 0.325 0.15385 0.2 0.08482 +LexRank 0.15 0.02564 0.125 0.04018 +TextRank 0.2 0.07692 0.175 0.0625 +Luhn 0.125 0.02564 0.125 0.03571 +ICSI 0.3 0.07692 0.175 0.07143 +821bad671f01088eb6e9a867f24e47c38e098c03.json +UB1 0.48571 0.11765 0.17143 0.19588 +UB2 0.4 0.17647 0.17143 0.18041 +LexRank 0.28571 0.08824 0.2 0.08763 +TextRank 0.11429 0.0 0.11429 0.02577 +Luhn 0.11429 0.0 0.11429 0.02577 +ICSI 0.17143 0.08824 0.14286 0.05155 +0def0e8b3bec3146f6d4c749442495735bed8d13.json +UB1 0.68041 0.45833 0.3299 0.46466 +UB2 0.68041 0.47917 0.3299 0.47173 +LexRank 0.26804 0.07292 0.14433 0.08657 +TextRank 0.31959 0.14583 0.2268 0.15548 +Luhn 0.13402 0.0 0.07216 0.02827 +ICSI 0.46392 0.27083 0.30928 0.27385 +3c27efe2b0765231786de9adb3bd8583231860e0.json +UB1 0.35556 0.04545 0.2 0.07087 +UB2 0.31111 0.13636 0.2 0.09843 +LexRank 0.2 0.0 0.11111 0.03937 +TextRank 0.15556 0.0 0.11111 0.02756 +Luhn 0.15556 0.0 0.11111 0.02756 +ICSI 0.13333 0.0 0.11111 0.02756 +09b62e61f43f8df79bd3267543a315057d8138c0.json +UB1 0.51351 0.27778 0.18919 0.24757 +UB2 0.45946 0.30556 0.16216 0.23301 +LexRank 0.16216 0.08333 0.10811 0.06311 +TextRank 0.08108 0.0 0.08108 0.02427 +Luhn 0.08108 0.0 0.08108 0.02427 +ICSI 0.08108 0.0 0.08108 0.01942 +193c4bc4a2c3a6ff2e7ad0784a1a14422458fe0c.json +UB1 0.51351 0.22222 0.45946 0.25243 +UB2 0.43243 0.25 0.40541 0.26699 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.02703 0.0 0.02703 0.00485 +Luhn 0.02703 0.0 0.02703 0.00485 +ICSI 0.02703 0.0 0.02703 0.00485 +65ba34dbb62cc361fc163f732496ca01ebbf3166.json +UB1 0.52174 0.2 0.30435 0.19231 +UB2 0.52174 0.35556 0.3913 0.25 +LexRank 0.17391 0.0 0.1087 0.03077 +TextRank 0.30435 0.04444 0.13043 0.08077 +Luhn 0.34783 0.08889 0.21739 0.1 +ICSI 0.36957 0.08889 0.15217 0.1 +4bb3f73185a33367c556c8de0ed7e03752d7074b.json +UB1 0.55738 0.31667 0.27869 0.25429 +UB2 0.4918 0.31667 0.2623 0.23714 +LexRank 0.22951 0.06667 0.13115 0.06 +TextRank 0.16393 0.05 0.14754 0.04571 +Luhn 0.16393 0.05 0.14754 0.04571 +ICSI 0.27869 0.08333 0.21311 0.08 +88d87b98189bb3e843373e41f3f810850994064d.json +UB1 0.50769 0.15625 0.2 0.1631 +UB2 0.47692 0.21875 0.30769 0.16845 +LexRank 0.29231 0.07812 0.15385 0.07219 +TextRank 0.15385 0.03125 0.07692 0.03476 +Luhn 0.23077 0.03125 0.15385 0.0615 +ICSI 0.38462 0.14062 0.15385 0.1123 +8daefe19ae15be51ebbf063663596ea0a573bd7c.json +UB1 0.77778 0.60377 0.72222 0.57468 +UB2 0.75926 0.60377 0.72222 0.59091 +LexRank 0.2037 0.01887 0.14815 0.05844 +TextRank 0.12963 0.0 0.09259 0.02597 +Luhn 0.07407 0.0 0.07407 0.01948 +ICSI 0.25926 0.0566 0.18519 0.07468 +638c6d34a9193f648ab977ee3191f0ff6eb0739b.json +UB1 0.27778 0.11765 0.16667 0.08696 +UB2 0.27778 0.11765 0.16667 0.08696 +LexRank 0.05556 0.0 0.05556 0.01087 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.11111 0.0 0.11111 0.01087 +ICSI 0.16667 0.05882 0.11111 0.04348 +60f6fecbfe0e788e130faee16896024b5d11a272.json +UB1 0.28 0.04167 0.2 0.06716 +UB2 0.12 0.04167 0.12 0.04478 +LexRank 0.08 0.0 0.08 0.01493 +TextRank 0.04 0.0 0.04 0.00746 +Luhn 0.12 0.0 0.08 0.02239 +ICSI 0.08 0.0 0.08 0.02239 +5d8bf71db68d2b633d260827500bbb57cda176ac.json +UB1 0.4 0.14706 0.25714 0.13918 +UB2 0.4 0.23529 0.2 0.12887 +LexRank 0.05714 0.0 0.05714 0.01031 +TextRank 0.08571 0.0 0.05714 0.01546 +Luhn 0.08571 0.0 0.05714 0.01546 +ICSI 0.11429 0.0 0.08571 0.02062 +8d74d32ab0c81b2346551974e07bb4a76d465e1d.json +UB1 0.36 0.16667 0.32 0.15672 +UB2 0.32 0.16667 0.32 0.14925 +LexRank 0.04 0.0 0.04 0.00746 +TextRank 0.12 0.0 0.08 0.02239 +Luhn 0.04 0.0 0.04 0.00746 +ICSI 0.12 0.0 0.12 0.02985 +0ae09680e2268670495ffd35f1cf8fc7b8badde5.json +UB1 0.47619 0.16867 0.2381 0.14549 +UB2 0.42857 0.19277 0.2619 0.13525 +LexRank 0.11905 0.0 0.05952 0.02254 +TextRank 0.25 0.06024 0.14286 0.07582 +Luhn 0.2619 0.08434 0.16667 0.07992 +ICSI 0.25 0.03614 0.09524 0.06557 +3ae64c0b6faa3b8a0525d8c23b323ce7840a5d61.json +UB1 0.71795 0.52632 0.53846 0.44037 +UB2 0.69231 0.52632 0.51282 0.43119 +LexRank 0.15385 0.02632 0.12821 0.03211 +TextRank 0.10256 0.0 0.05128 0.01835 +Luhn 0.07692 0.0 0.02564 0.01376 +ICSI 0.10256 0.0 0.10256 0.01835 +24f55dcc8ad50e4b16bb2b35c2fe8c669e17b11c.json +UB1 0.48936 0.32609 0.29787 0.25188 +UB2 0.42553 0.30435 0.29787 0.22932 +LexRank 0.12766 0.0 0.06383 0.02256 +TextRank 0.19149 0.04348 0.14894 0.07143 +Luhn 0.12766 0.0 0.10638 0.02632 +ICSI 0.23404 0.1087 0.19149 0.11278 +7e7d79405b8de82d9dfbdde3b64f100c8ca5dcfb.json +UB1 0.525 0.23077 0.325 0.20089 +UB2 0.475 0.23077 0.325 0.19196 +LexRank 0.3 0.07692 0.2 0.10714 +TextRank 0.05 0.0 0.05 0.00893 +Luhn 0.1 0.02564 0.075 0.03125 +ICSI 0.15 0.0 0.075 0.02679 +392606ed9b12ee1c9c6693666850bd08d939f845.json +UB1 0.5 0.24242 0.41176 0.17553 +UB2 0.44118 0.27273 0.35294 0.18085 +LexRank 0.11765 0.0 0.08824 0.02128 +TextRank 0.05882 0.0 0.05882 0.01064 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.05882 0.0 0.05882 0.01064 +60f2b9ae2fbc1b305fcbad46ba3c792297eb8674.json +UB1 0.38462 0.05263 0.17949 0.11468 +UB2 0.25641 0.07895 0.23077 0.09174 +LexRank 0.25641 0.02632 0.12821 0.06422 +TextRank 0.17949 0.02632 0.12821 0.04128 +Luhn 0.15385 0.0 0.05128 0.03211 +ICSI 0.20513 0.0 0.10256 0.04587 +81ed0f6d521bd9fc2a11395391cecc7874986ef2.json +UB1 0.74359 0.52632 0.58974 0.5 +UB2 0.69231 0.52632 0.5641 0.46789 +LexRank 0.5641 0.42105 0.48718 0.40826 +TextRank 0.28205 0.10526 0.20513 0.07798 +Luhn 0.28205 0.10526 0.20513 0.07798 +ICSI 0.35897 0.10526 0.17949 0.09633 +7105f80947f9f4545bc1a00db7c8957c0c270c96.json +UB1 0.7931 0.71429 0.7931 0.6519 +UB2 0.7931 0.71429 0.7931 0.62025 +LexRank 0.17241 0.0 0.06897 0.03165 +TextRank 0.10345 0.0 0.10345 0.02532 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.06897 0.0 0.03448 0.01266 +406bce90384f785d1981a77d0a4d39850df3fbf5.json +UB1 0.45946 0.13889 0.37838 0.23786 +UB2 0.35135 0.16667 0.27027 0.17961 +LexRank 0.2973 0.05556 0.16216 0.09709 +TextRank 0.2973 0.05556 0.16216 0.09709 +Luhn 0.24324 0.08333 0.13514 0.07282 +ICSI 0.37838 0.16667 0.2973 0.18932 +4f985348844a20a445070b03d028a5cf93aeea43.json +UB1 0.51111 0.15909 0.22222 0.16929 +UB2 0.44444 0.34091 0.44444 0.26772 +LexRank 0.08889 0.0 0.04444 0.01969 +TextRank 0.11111 0.0 0.06667 0.02756 +Luhn 0.28889 0.04545 0.22222 0.09843 +ICSI 0.2 0.0 0.11111 0.03937 +5ea7c00312d4f636d3fcc441a976ff5ad159840b.json +UB1 0.5 0.19608 0.25 0.20946 +UB2 0.46154 0.27451 0.26923 0.21622 +LexRank 0.26923 0.07843 0.17308 0.07095 +TextRank 0.26923 0.03922 0.15385 0.06419 +Luhn 0.26923 0.03922 0.15385 0.06419 +ICSI 0.34615 0.13725 0.25 0.16554 +0690125ac88cb4df01c78881950b821e8482421b.json +UB1 0.42553 0.1087 0.21277 0.11654 +UB2 0.3617 0.15217 0.23404 0.11278 +LexRank 0.10638 0.0 0.08511 0.0188 +TextRank 0.21277 0.04348 0.08511 0.05263 +Luhn 0.25532 0.06522 0.14894 0.07143 +ICSI 0.21277 0.04348 0.10638 0.05639 +5cdf24d01c774e13b084b861811e153f4033d869.json +UB1 0.47727 0.2093 0.31818 0.19758 +UB2 0.38636 0.23256 0.25 0.16935 +LexRank 0.18182 0.02326 0.09091 0.04435 +TextRank 0.13636 0.0 0.09091 0.02419 +Luhn 0.06818 0.0 0.02273 0.0121 +ICSI 0.11364 0.02326 0.09091 0.02016 +875ea1ba2e3383c87e98c516de48472927b95bc9.json +UB1 0.45455 0.24074 0.30909 0.1879 +UB2 0.52727 0.33333 0.38182 0.27707 +LexRank 0.27273 0.09259 0.18182 0.10191 +TextRank 0.43636 0.22222 0.23636 0.19745 +Luhn 0.2 0.09259 0.12727 0.08599 +ICSI 0.29091 0.14815 0.18182 0.09873 +48942936407fb89ef117631f8774c5cda6e05938.json +UB1 0.63736 0.37778 0.24176 0.33962 +UB2 0.61538 0.43333 0.24176 0.35472 +LexRank 0.27473 0.05556 0.13187 0.07358 +TextRank 0.08791 0.0 0.04396 0.01698 +Luhn 0.45055 0.13333 0.1978 0.15094 +ICSI 0.46154 0.17778 0.24176 0.20377 +41505552febe5274ae3d42ab6f9d0bd62f81e0f6.json +UB1 0.35897 0.10526 0.12821 0.11927 +UB2 0.33333 0.15789 0.17949 0.13303 +LexRank 0.17949 0.0 0.12821 0.0367 +TextRank 0.07692 0.0 0.07692 0.01835 +Luhn 0.10256 0.0 0.07692 0.02294 +ICSI 0.12821 0.0 0.05128 0.02294 +2ba38106c176f4a3a4eab921f0be28300a704346.json +UB1 0.35 0.05128 0.175 0.08482 +UB2 0.225 0.10256 0.175 0.06696 +LexRank 0.1 0.02564 0.075 0.02232 +TextRank 0.025 0.0 0.025 0.00446 +Luhn 0.075 0.0 0.075 0.01786 +ICSI 0.15 0.0 0.075 0.02679 +1c38829fd63238176b927e3fac9fb66b70bb2323.json +UB1 0.26316 0.05556 0.15789 0.08163 +UB2 0.10526 0.05556 0.10526 0.03061 +LexRank 0.05263 0.0 0.05263 0.0102 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +2a620a16b3d1f551b64bebca08c21809f70aa57d.json +UB1 0.34211 0.08108 0.23684 0.11321 +UB2 0.36842 0.16216 0.21053 0.11792 +LexRank 0.05263 0.0 0.05263 0.00943 +TextRank 0.02632 0.0 0.02632 0.00472 +Luhn 0.02632 0.0 0.02632 0.00472 +ICSI 0.05263 0.0 0.05263 0.00943 +80b58c6644d17845979b05e3e640335cbdcd5e09.json +UB1 0.4127 0.08065 0.2381 0.12707 +UB2 0.30159 0.12903 0.12698 0.08011 +LexRank 0.2381 0.0 0.14286 0.0663 +TextRank 0.1746 0.01613 0.09524 0.04696 +Luhn 0.1746 0.01613 0.09524 0.04696 +ICSI 0.28571 0.03226 0.14286 0.08011 +4bfb33e5dee8a3df471610bb6383724896cc4105.json +UB1 0.4918 0.2 0.31148 0.22571 +UB2 0.44262 0.21667 0.29508 0.20857 +LexRank 0.11475 0.0 0.09836 0.02 +TextRank 0.11475 0.01667 0.06557 0.02286 +Luhn 0.13115 0.01667 0.13115 0.03143 +ICSI 0.18033 0.0 0.08197 0.03143 +5cdfdf342812d8561c6b9bc31aa8ab73b6e7672e.json +UB1 0.34694 0.0625 0.20408 0.10432 +UB2 0.32653 0.10417 0.18367 0.09712 +LexRank 0.14286 0.0 0.06122 0.02158 +TextRank 0.04082 0.0 0.04082 0.00719 +Luhn 0.14286 0.04167 0.10204 0.04676 +ICSI 0.18367 0.04167 0.08163 0.04317 +4abda351deaf8c2b24ebcbb42f23dab862c5c329.json +UB1 0.40625 0.16129 0.21875 0.15909 +UB2 0.3125 0.22581 0.25 0.14205 +LexRank 0.125 0.0 0.09375 0.02273 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.125 0.0 0.09375 0.02841 +ICSI 0.0625 0.0 0.03125 0.01136 +81e479c983cc69d9d90a39bbd465b67701146c84.json +UB1 0.42553 0.19565 0.14894 0.14286 +UB2 0.42553 0.21739 0.21277 0.15789 +LexRank 0.12766 0.02174 0.08511 0.02632 +TextRank 0.08511 0.02174 0.06383 0.0188 +Luhn 0.12766 0.02174 0.12766 0.03759 +ICSI 0.17021 0.04348 0.14894 0.04887 +1c2989db16559070cfc338788b346c8a29e22afb.json +UB1 0.47619 0.20968 0.22222 0.18785 +UB2 0.52381 0.30645 0.38095 0.30939 +LexRank 0.26984 0.03226 0.14286 0.07459 +TextRank 0.12698 0.0 0.09524 0.02762 +Luhn 0.12698 0.0 0.09524 0.02762 +ICSI 0.33333 0.08065 0.1746 0.08564 +8d2db4893e7d5f00b968dd4cd45ac24d013424b9.json +UB1 0.35294 0.09091 0.23529 0.10638 +UB2 0.29412 0.09091 0.20588 0.09043 +LexRank 0.08824 0.0 0.02941 0.01596 +TextRank 0.11765 0.0 0.08824 0.02128 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.17647 0.0 0.08824 0.03191 +4e3084fa4351dd1b09cec518aa6072118589d3c7.json +UB1 0.4717 0.15385 0.30189 0.16887 +UB2 0.39623 0.19231 0.30189 0.1457 +LexRank 0.13208 0.0 0.09434 0.03642 +TextRank 0.03774 0.0 0.03774 0.00662 +Luhn 0.16981 0.0 0.11321 0.03974 +ICSI 0.13208 0.0 0.11321 0.02649 +4ea68c775527334954109d6c682250b77a42a544.json +UB1 0.54762 0.29268 0.19048 0.25424 +UB2 0.42857 0.29268 0.16667 0.25424 +LexRank 0.33333 0.09756 0.14286 0.11017 +TextRank 0.19048 0.02439 0.09524 0.05508 +Luhn 0.33333 0.02439 0.14286 0.07203 +ICSI 0.30952 0.04878 0.16667 0.10169 +7698f722224cb94c38c3d28eb25ea34da4edd38e.json +UB1 0.48214 0.21818 0.35714 0.20625 +UB2 0.42857 0.2 0.32143 0.19375 +LexRank 0.30357 0.12727 0.23214 0.14062 +TextRank 0.17857 0.01818 0.08929 0.0375 +Luhn 0.16071 0.01818 0.07143 0.03125 +ICSI 0.28571 0.12727 0.25 0.15313 +1c9a85c00cc136c1645010aea1a3439fe0bfec64.json +UB1 0.39344 0.08333 0.22951 0.10571 +UB2 0.36066 0.2 0.19672 0.14 +LexRank 0.18033 0.05 0.14754 0.05143 +TextRank 0.08197 0.0 0.06557 0.01429 +Luhn 0.08197 0.0 0.04918 0.01429 +ICSI 0.19672 0.05 0.11475 0.05143 +529c6950f3afa8ca8951d962357437d1e55e0447.json +UB1 0.45161 0.26667 0.3871 0.22941 +UB2 0.45161 0.26667 0.3871 0.22941 +LexRank 0.16129 0.03333 0.16129 0.04706 +TextRank 0.16129 0.0 0.06452 0.02941 +Luhn 0.19355 0.03333 0.16129 0.04118 +ICSI 0.25806 0.06667 0.16129 0.07059 +5654115cafdee05060e8cd5db96b753835ed91c9.json +UB1 0.32653 0.10417 0.16327 0.11151 +UB2 0.30612 0.10417 0.12245 0.09353 +LexRank 0.18367 0.04167 0.08163 0.04676 +TextRank 0.12245 0.0 0.08163 0.02518 +Luhn 0.12245 0.0 0.08163 0.02518 +ICSI 0.20408 0.02083 0.14286 0.04317 +18f9370eafcbf60bb97799e90856b3583e70f28c.json +UB1 0.34483 0.07143 0.2069 0.13291 +UB2 0.34483 0.10714 0.2069 0.13924 +LexRank 0.31034 0.07143 0.2069 0.12658 +TextRank 0.24138 0.03571 0.13793 0.06329 +Luhn 0.10345 0.0 0.10345 0.02532 +ICSI 0.34483 0.03571 0.27586 0.11392 +1bd4aad765605583a73d35a2825f2cad6f89d7b9.json +UB1 0.46774 0.22951 0.22581 0.2191 +UB2 0.3871 0.21311 0.16129 0.17697 +LexRank 0.09677 0.01639 0.04839 0.01966 +TextRank 0.25806 0.08197 0.20968 0.10112 +Luhn 0.16129 0.03279 0.12903 0.04494 +ICSI 0.30645 0.06557 0.19355 0.10393 +44b6aa2b54881f64cfc4d1aa56985821360a3846.json +UB1 0.47727 0.13953 0.29545 0.18145 +UB2 0.38636 0.2093 0.20455 0.19355 +LexRank 0.13636 0.0 0.06818 0.02419 +TextRank 0.15909 0.0 0.09091 0.03629 +Luhn 0.11364 0.04651 0.11364 0.04435 +ICSI 0.27273 0.11628 0.20455 0.125 +144a8abce34caac4248f1918821e072f1cd66229.json +UB1 0.50602 0.19512 0.31325 0.1888 +UB2 0.45783 0.2439 0.27711 0.22822 +LexRank 0.26506 0.06098 0.15663 0.07884 +TextRank 0.15663 0.0122 0.07229 0.03734 +Luhn 0.16867 0.0 0.10843 0.03942 +ICSI 0.3494 0.10976 0.16867 0.11618 +10f53b5a118216689d7c3e6a5d7d2c568220b7fb.json +UB1 0.33333 0.0 0.19048 0.09091 +UB2 0.14286 0.05 0.09524 0.03636 +LexRank 0.2381 0.0 0.14286 0.05455 +TextRank 0.14286 0.0 0.09524 0.02727 +Luhn 0.04762 0.0 0.04762 0.00909 +ICSI 0.09524 0.0 0.04762 0.01818 +393e5b1e76b7e7e147905040f43b683c3455c0df.json +UB1 0.42105 0.13514 0.26316 0.13679 +UB2 0.34211 0.21622 0.34211 0.15566 +LexRank 0.13158 0.0 0.07895 0.0283 +TextRank 0.13158 0.02703 0.10526 0.03302 +Luhn 0.23684 0.05405 0.13158 0.06132 +ICSI 0.34211 0.10811 0.18421 0.11792 +12f187ed4842a8b6d872f3c0c02e1494b80a6e42.json +UB1 0.39024 0.05 0.17073 0.12174 +UB2 0.39024 0.125 0.21951 0.13913 +LexRank 0.29268 0.0 0.12195 0.06957 +TextRank 0.21951 0.0 0.09756 0.04783 +Luhn 0.2439 0.0 0.09756 0.04783 +ICSI 0.21951 0.0 0.14634 0.05652 +614fb543ed1d7251af9fb6f624479256e5b44f38.json +UB1 0.18182 0.04762 0.18182 0.05172 +UB2 0.22727 0.09524 0.22727 0.06897 +LexRank 0.22727 0.04762 0.13636 0.05172 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09091 0.0 0.04545 0.01724 +ICSI 0.04545 0.0 0.04545 0.00862 +1c58a99abfffba839060800b920be69b99e7974f.json +UB1 0.71429 0.5122 0.5 0.46186 +UB2 0.71429 0.5122 0.5 0.46186 +LexRank 0.14286 0.0 0.11905 0.03814 +TextRank 0.2381 0.07317 0.16667 0.07627 +Luhn 0.2381 0.07317 0.16667 0.07627 +ICSI 0.19048 0.02439 0.14286 0.04237 +8bfcf4e54584a862aa90da4d3f69c20a0370e29d.json +UB1 0.33333 0.10345 0.23333 0.07927 +UB2 0.3 0.10345 0.2 0.07317 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.06667 0.0 0.03333 0.0122 +00f1467b97ed8ecc835d89e25563e36eb1b010af.json +UB1 0.41379 0.07143 0.17241 0.12025 +UB2 0.2069 0.10714 0.13793 0.07595 +LexRank 0.03448 0.0 0.03448 0.00633 +TextRank 0.06897 0.0 0.06897 0.01266 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.17241 0.0 0.13793 0.03797 +24d9ea9d43ec0df61abb4f6d142d738380557092.json +UB1 0.5 0.14493 0.25714 0.16832 +UB2 0.47143 0.2029 0.21429 0.20545 +LexRank 0.24286 0.04348 0.11429 0.05941 +TextRank 0.24286 0.02899 0.14286 0.06436 +Luhn 0.07143 0.0 0.05714 0.0099 +ICSI 0.32857 0.07246 0.12857 0.08911 +1ec9aab0dc062151c4e32bebf7d6ddbc5ad6883b.json +UB1 0.51515 0.23077 0.37879 0.24474 +UB2 0.56061 0.32308 0.43939 0.28421 +LexRank 0.16667 0.01538 0.07576 0.03947 +TextRank 0.15152 0.0 0.09091 0.03158 +Luhn 0.15152 0.0 0.09091 0.03158 +ICSI 0.21212 0.04615 0.12121 0.06053 +3d8c49d002cee1c06464be3e82139e433bc0a3db.json +UB1 0.31707 0.025 0.21951 0.07391 +UB2 0.17073 0.075 0.12195 0.06522 +LexRank 0.09756 0.0 0.04878 0.01739 +TextRank 0.07317 0.0 0.04878 0.01304 +Luhn 0.04878 0.0 0.04878 0.0087 +ICSI 0.14634 0.025 0.09756 0.03043 +700feee3317290e71761daa2dbe427dd2f2bb896.json +UB1 0.67347 0.41667 0.57143 0.3777 +UB2 0.65306 0.47917 0.63265 0.43885 +LexRank 0.14286 0.0 0.08163 0.03597 +TextRank 0.10204 0.0 0.10204 0.02158 +Luhn 0.14286 0.0 0.10204 0.03237 +ICSI 0.12245 0.0 0.10204 0.02878 +0ba1665dc9bf10aaece233d5531f41f6299818f9.json +UB1 0.38889 0.08571 0.30556 0.135 +UB2 0.27778 0.11429 0.16667 0.075 +LexRank 0.13889 0.0 0.13889 0.025 +TextRank 0.22222 0.02857 0.11111 0.04 +Luhn 0.13889 0.0 0.05556 0.025 +ICSI 0.11111 0.0 0.08333 0.02 +1fd95dbbcb1be2bbf6ccf024f3908ba7240fca38.json +UB1 0.37838 0.11111 0.2973 0.10194 +UB2 0.40541 0.16667 0.2973 0.1068 +LexRank 0.13514 0.0 0.05405 0.02427 +TextRank 0.10811 0.0 0.08108 0.02427 +Luhn 0.05405 0.0 0.02703 0.00971 +ICSI 0.08108 0.0 0.05405 0.01456 +17ce5b05ca0403a7b866b1d90207201d9ee68c26.json +UB1 0.4 0.125 0.24 0.1194 +UB2 0.28 0.125 0.16 0.08209 +LexRank 0.04 0.0 0.04 0.00746 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +3d06f9d58bb762c5958e6cc2836eafcdcc925616.json +UB1 0.68421 0.45946 0.55263 0.42453 +UB2 0.71053 0.48649 0.60526 0.46226 +LexRank 0.13158 0.02703 0.07895 0.03302 +TextRank 0.05263 0.0 0.05263 0.01415 +Luhn 0.05263 0.0 0.05263 0.01415 +ICSI 0.18421 0.02703 0.13158 0.04245 +629a0a699884b952d5ebdebbeb18ff70dc43d210.json +UB1 0.57143 0.26471 0.34286 0.23711 +UB2 0.57143 0.26471 0.34286 0.23711 +LexRank 0.17143 0.0 0.05714 0.03608 +TextRank 0.02857 0.0 0.02857 0.00515 +Luhn 0.28571 0.11765 0.22857 0.10825 +ICSI 0.25714 0.08824 0.11429 0.09278 +0a173230e30c823d8b22decf54644ecde23a9588.json +UB1 0.47826 0.22059 0.2029 0.17085 +UB2 0.46377 0.25 0.2029 0.17588 +LexRank 0.30435 0.10294 0.13043 0.1005 +TextRank 0.2029 0.0 0.10145 0.03518 +Luhn 0.2029 0.0 0.11594 0.0402 +ICSI 0.23188 0.01471 0.11594 0.05025 +2b303611d4290cc9fa480382a5e4e4fafe7e359d.json +UB1 0.4 0.14815 0.14545 0.14968 +UB2 0.4 0.12963 0.18182 0.13376 +LexRank 0.2 0.05556 0.10909 0.04777 +TextRank 0.2 0.0 0.12727 0.04459 +Luhn 0.16364 0.01852 0.09091 0.03822 +ICSI 0.2 0.0 0.10909 0.0414 +274dfeec4faa94435ab6ae931dd58bbfca11c848.json +UB1 0.38235 0.09091 0.29412 0.1117 +UB2 0.47059 0.27273 0.44118 0.23404 +LexRank 0.05882 0.0 0.05882 0.01064 +TextRank 0.02941 0.0 0.02941 0.00532 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.11765 0.0 0.08824 0.0266 +4091e2740f27fd090ebe1de9466e7a9f275e154e.json +UB1 0.35 0.21053 0.3 0.125 +UB2 0.35 0.21053 0.3 0.125 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.05 0.0 0.05 0.00962 +6bdd64b7ea850072b158f5c2817cb40aa594e0e5.json +UB1 0.4359 0.13158 0.30769 0.13303 +UB2 0.4359 0.13158 0.30769 0.13303 +LexRank 0.12821 0.0 0.07692 0.02294 +TextRank 0.10256 0.0 0.10256 0.03211 +Luhn 0.10256 0.0 0.10256 0.03211 +ICSI 0.20513 0.07895 0.12821 0.07339 +5bbd9c4855f164b57bf42d481dbedb8268a0a125.json +UB1 0.32955 0.08046 0.19318 0.09766 +UB2 0.28409 0.11494 0.17045 0.09375 +LexRank 0.10227 0.02299 0.05682 0.02344 +TextRank 0.21591 0.02299 0.11364 0.05273 +Luhn 0.125 0.01149 0.07955 0.03125 +ICSI 0.21591 0.02299 0.125 0.05664 +6713bfd599744ca7a00c4f8a84a6711bac13062a.json +UB1 0.5283 0.23077 0.30189 0.26159 +UB2 0.45283 0.26923 0.32075 0.21854 +LexRank 0.18868 0.0 0.11321 0.03642 +TextRank 0.20755 0.01923 0.15094 0.05298 +Luhn 0.22642 0.01923 0.13208 0.05629 +ICSI 0.16981 0.01923 0.09434 0.03974 +0712d270b6e6af3571ea767a9c0bd89063facc28.json +UB1 0.43182 0.11628 0.18182 0.15323 +UB2 0.38636 0.18605 0.29545 0.16129 +LexRank 0.20455 0.02326 0.09091 0.04435 +TextRank 0.20455 0.04651 0.13636 0.05645 +Luhn 0.13636 0.02326 0.11364 0.02823 +ICSI 0.27273 0.11628 0.18182 0.10081 +4f995e204bf7a3067b5de3a87905857f4a9b8025.json +UB1 0.3871 0.13333 0.19355 0.11765 +UB2 0.32258 0.13333 0.25806 0.13529 +LexRank 0.09677 0.0 0.06452 0.01176 +TextRank 0.06452 0.0 0.06452 0.01176 +Luhn 0.03226 0.0 0.03226 0.00588 +ICSI 0.19355 0.03333 0.09677 0.05294 +80c591f6e182ab062605a10380fab9687d7d906e.json +UB1 0.41463 0.225 0.19512 0.13913 +UB2 0.41463 0.225 0.19512 0.13913 +LexRank 0.12195 0.0 0.04878 0.02174 +TextRank 0.2439 0.05 0.14634 0.07391 +Luhn 0.21951 0.05 0.14634 0.06087 +ICSI 0.12195 0.025 0.09756 0.04348 +8e40e4f0b4333088b7c8d829e404e5b6d8df499d.json +UB1 0.38462 0.04 0.11538 0.1 +UB2 0.23077 0.08 0.11538 0.05714 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.15385 0.04 0.11538 0.05714 +Luhn 0.15385 0.04 0.11538 0.05714 +ICSI 0.03846 0.0 0.03846 0.00714 +5053b3395094086f7156fce65562a66c0105c790.json +UB1 0.66667 0.39437 0.43056 0.38942 +UB2 0.59722 0.4507 0.44444 0.40865 +LexRank 0.48611 0.25352 0.19444 0.25 +TextRank 0.31944 0.16901 0.19444 0.18269 +Luhn 0.44444 0.32394 0.33333 0.30048 +ICSI 0.5 0.33803 0.41667 0.33413 +3443855020dff3e361d15156eabfeb1da874a68d.json +UB1 0.61538 0.31579 0.25641 0.23853 +UB2 0.5641 0.36842 0.25641 0.26606 +LexRank 0.25641 0.07895 0.15385 0.07798 +TextRank 0.17949 0.0 0.10256 0.04128 +Luhn 0.17949 0.0 0.10256 0.04128 +ICSI 0.17949 0.07895 0.12821 0.05963 +654103e5bfb980014fb0c7d6ec2b4e6b604ba2dd.json +UB1 0.41935 0.23333 0.35484 0.18824 +UB2 0.3871 0.23333 0.35484 0.18235 +LexRank 0.03226 0.0 0.03226 0.00588 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +46b552f98a727628ec2e95b012fffad687124f4c.json +UB1 0.4 0.11765 0.2 0.14433 +UB2 0.31429 0.17647 0.14286 0.1134 +LexRank 0.14286 0.02941 0.14286 0.0567 +TextRank 0.05714 0.0 0.05714 0.01031 +Luhn 0.11429 0.0 0.08571 0.02577 +ICSI 0.22857 0.08824 0.17143 0.08763 +7f4033acf2b91b6a0ee4633e1836d6aacc63f436.json +UB1 0.7 0.51724 0.4 0.4939 +UB2 0.7 0.51724 0.4 0.4939 +LexRank 0.1 0.0 0.1 0.01829 +TextRank 0.13333 0.0 0.1 0.04268 +Luhn 0.13333 0.0 0.1 0.03659 +ICSI 0.1 0.0 0.1 0.03659 +1a2ef96677e9c39b9c2db32fe4a71f10c0b4e31a.json +UB1 0.46667 0.13636 0.24444 0.17323 +UB2 0.4 0.15909 0.15556 0.14961 +LexRank 0.17778 0.0 0.08889 0.0315 +TextRank 0.15556 0.0 0.08889 0.0315 +Luhn 0.17778 0.0 0.06667 0.0315 +ICSI 0.22222 0.0 0.11111 0.05512 +7ffa54f890777079b125797088fecf96884c7278.json +UB1 0.51667 0.23729 0.26667 0.24709 +UB2 0.51667 0.25424 0.28333 0.23256 +LexRank 0.2 0.0 0.08333 0.0407 +TextRank 0.3 0.0678 0.13333 0.09884 +Luhn 0.23333 0.0339 0.1 0.05814 +ICSI 0.26667 0.0339 0.15 0.07267 +667b57ceab932189cf5c1d5f80389f6029712670.json +UB1 0.28846 0.07843 0.17308 0.08108 +UB2 0.25 0.09804 0.17308 0.08108 +LexRank 0.01923 0.0 0.01923 0.00338 +TextRank 0.09615 0.0 0.03846 0.01689 +Luhn 0.09615 0.0 0.03846 0.01351 +ICSI 0.13462 0.01961 0.05769 0.03716 +4dab3eaa4f26a70db96dab6eab005091cd2a58b9.json +UB1 0.45 0.15385 0.325 0.1875 +UB2 0.4 0.23077 0.275 0.18304 +LexRank 0.075 0.0 0.05 0.01786 +TextRank 0.125 0.0 0.075 0.02679 +Luhn 0.1 0.0 0.05 0.01786 +ICSI 0.15 0.0 0.1 0.02679 +84d86ad80af2787ab5c2b0601c464b3102d8d72d.json +UB1 0.375 0.06667 0.1875 0.1125 +UB2 0.0 0.0 0.0 0.0 +LexRank 0.0625 0.0 0.0625 0.0125 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0625 0.0 0.0625 0.0125 +ICSI 0.125 0.0 0.125 0.0375 +4893fe649b43e67d4d7368b5d3c5373c3c85f214.json +UB1 0.64394 0.31298 0.23485 0.3067 +UB2 0.57576 0.42748 0.32576 0.35954 +LexRank 0.37879 0.12214 0.17424 0.15593 +TextRank 0.38636 0.16031 0.24242 0.17526 +Luhn 0.28788 0.1145 0.16667 0.11985 +ICSI 0.5303 0.23664 0.22727 0.23711 +4f63633966c368aea275a0e7bdff1d6a0f63f697.json +UB1 0.56818 0.2093 0.36364 0.21774 +UB2 0.52273 0.25581 0.40909 0.25806 +LexRank 0.13636 0.0 0.09091 0.02823 +TextRank 0.15909 0.0 0.06818 0.02823 +Luhn 0.18182 0.04651 0.15909 0.06048 +ICSI 0.40909 0.06977 0.20455 0.09677 +302d52d30f4025588682273c2430c281aea3b75e.json +UB1 0.63115 0.17355 0.20492 0.24162 +UB2 0.51639 0.27273 0.2377 0.23603 +LexRank 0.14754 0.04132 0.09016 0.04888 +TextRank 0.09836 0.0 0.05738 0.02095 +Luhn 0.33607 0.06612 0.15574 0.09637 +ICSI 0.46721 0.15702 0.19672 0.18017 +856d02559cebfe9da3c4543f75164baa569ec8aa.json +UB1 0.40426 0.19565 0.31915 0.16917 +UB2 0.3617 0.19565 0.31915 0.16917 +LexRank 0.04255 0.0 0.02128 0.00752 +TextRank 0.06383 0.0 0.06383 0.01128 +Luhn 0.06383 0.0 0.06383 0.01128 +ICSI 0.06383 0.0 0.04255 0.01128 +3cfec3d297ef751665f3c67127f0d3f89056e383.json +UB1 0.55769 0.21569 0.25 0.25676 +UB2 0.51923 0.23529 0.26923 0.25 +LexRank 0.11538 0.01961 0.09615 0.02365 +TextRank 0.07692 0.0 0.05769 0.01351 +Luhn 0.09615 0.0 0.05769 0.01689 +ICSI 0.17308 0.03922 0.11538 0.03716 +7e57a6c49640d51c628d4b14e5601e3633ac68f0.json +UB1 0.25926 0.0 0.11111 0.04795 +UB2 0.14815 0.03846 0.14815 0.03425 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.07407 0.0 0.07407 0.02055 +Luhn 0.07407 0.0 0.03704 0.0137 +ICSI 0.07407 0.0 0.03704 0.0137 +60337199bfb12805d005cb6933ea00752bff664e.json +UB1 0.46154 0.16 0.30769 0.17857 +UB2 0.34615 0.16 0.26923 0.15 +LexRank 0.03846 0.0 0.03846 0.00714 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +5324d638cb29d6f53dd317ccd01ae2ff34f59463.json +UB1 0.83333 0.74648 0.52778 0.69712 +UB2 0.83333 0.74648 0.52778 0.69712 +LexRank 0.13889 0.0 0.09722 0.03365 +TextRank 0.18056 0.0 0.11111 0.04567 +Luhn 0.19444 0.0 0.09722 0.04808 +ICSI 0.20833 0.01408 0.11111 0.04808 +88abeffe9f56606d042177ddc55eab23650a2f80.json +UB1 0.62222 0.34831 0.22222 0.33779 +UB2 0.62222 0.37079 0.23333 0.33969 +LexRank 0.25556 0.01124 0.13333 0.05344 +TextRank 0.21111 0.01124 0.1 0.04198 +Luhn 0.17778 0.0 0.1 0.04198 +ICSI 0.36667 0.13483 0.18889 0.16412 +26a293798bece0847ad473668c2eaca0bdf9af2c.json +UB1 0.55172 0.21053 0.27586 0.21386 +UB2 0.48276 0.22807 0.2931 0.19578 +LexRank 0.13793 0.0 0.08621 0.0241 +TextRank 0.12069 0.0 0.08621 0.02108 +Luhn 0.10345 0.0 0.06897 0.01807 +ICSI 0.13793 0.01754 0.06897 0.02711 +1f7c7ec8fc1f2b493bb3676944722061772035fc.json +UB1 0.50588 0.17857 0.35294 0.2085 +UB2 0.49412 0.25 0.30588 0.22065 +LexRank 0.24706 0.05952 0.14118 0.08097 +TextRank 0.12941 0.0 0.08235 0.03036 +Luhn 0.14118 0.0 0.08235 0.02632 +ICSI 0.2 0.04762 0.14118 0.05466 +738b5bccc2c54a0420d7b4385ae9c84b433aef0c.json +UB1 0.68421 0.22222 0.31579 0.2449 +UB2 0.63158 0.22222 0.42105 0.20408 +LexRank 0.26316 0.11111 0.21053 0.06122 +TextRank 0.31579 0.11111 0.26316 0.12245 +Luhn 0.21053 0.05556 0.10526 0.05102 +ICSI 0.57895 0.16667 0.42105 0.23469 +544b5ab5cd11dd617d38d6780334c2e4ee6af5a1.json +UB1 0.35714 0.11111 0.25 0.13158 +UB2 0.28571 0.11111 0.25 0.11184 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.10714 0.0 0.10714 0.01974 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.17857 0.0 0.10714 0.03289 +7a795d4c02243e4d0d998dc810a0795ffb8b6ae6.json +UB1 0.54545 0.19388 0.26263 0.2128 +UB2 0.53535 0.2449 0.29293 0.22318 +LexRank 0.25253 0.05102 0.14141 0.07612 +TextRank 0.13131 0.0 0.08081 0.03114 +Luhn 0.23232 0.02041 0.12121 0.05709 +ICSI 0.34343 0.05102 0.16162 0.10381 +6af05c0cbdd0d5700d4c92ce7bb09907d3e546fc.json +UB1 0.36538 0.07843 0.21154 0.11824 +UB2 0.32692 0.17647 0.25 0.15203 +LexRank 0.21154 0.01961 0.11538 0.05743 +TextRank 0.03846 0.0 0.03846 0.00676 +Luhn 0.17308 0.01961 0.11538 0.05068 +ICSI 0.26923 0.05882 0.19231 0.10811 +5ac913d64910dc416f42a642f39b28427ad5d6bd.json +UB1 0.43902 0.15 0.19512 0.16957 +UB2 0.31707 0.2 0.26829 0.14348 +LexRank 0.2439 0.1 0.17073 0.07391 +TextRank 0.17073 0.0 0.07317 0.04348 +Luhn 0.17073 0.025 0.07317 0.04348 +ICSI 0.09756 0.0 0.07317 0.02174 +8785713efa015f6708fb97a1e6d5277bca6f0504.json +UB1 0.5 0.34146 0.33333 0.2839 +UB2 0.47619 0.34146 0.33333 0.27542 +LexRank 0.09524 0.0 0.04762 0.01695 +TextRank 0.2619 0.14634 0.14286 0.12288 +Luhn 0.04762 0.0 0.04762 0.00847 +ICSI 0.07143 0.0 0.04762 0.00847 +3f34f6ea2984376a08af2342b65a0d0ee9e3ce5d.json +UB1 0.4 0.14815 0.16364 0.15605 +UB2 0.34545 0.18519 0.16364 0.16242 +LexRank 0.25455 0.07407 0.14545 0.10191 +TextRank 0.25455 0.01852 0.10909 0.05414 +Luhn 0.14545 0.0 0.09091 0.03185 +ICSI 0.14545 0.01852 0.07273 0.02866 +4445fb622b8b9aa91f87dedd441b6f20bbfd21f3.json +UB1 0.41667 0.13043 0.29167 0.16406 +UB2 0.25 0.13043 0.25 0.13281 +LexRank 0.08333 0.0 0.08333 0.01562 +TextRank 0.04167 0.0 0.04167 0.00781 +Luhn 0.04167 0.0 0.04167 0.00781 +ICSI 0.0 0.0 0.0 0.0 +75b39b15ff3206ee4e585fc426812694fcc82ac8.json +UB1 0.38235 0.21212 0.11765 0.14362 +UB2 0.38235 0.21212 0.11765 0.14362 +LexRank 0.11765 0.0 0.08824 0.0266 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.02941 0.0 0.02941 0.00532 +ICSI 0.23529 0.09091 0.14706 0.09043 +56c1719c4ec66e34b078016305cd72ad90328e10.json +UB1 0.30303 0.0 0.12121 0.06593 +UB2 0.18182 0.03125 0.12121 0.05495 +LexRank 0.09091 0.0 0.0303 0.01648 +TextRank 0.18182 0.0 0.15152 0.03846 +Luhn 0.06061 0.0 0.06061 0.01099 +ICSI 0.0303 0.0 0.0303 0.00549 +347e6fe1128e2ec962c40c55fe1f2f24f5cce077.json +UB1 0.60976 0.35 0.36585 0.31739 +UB2 0.60976 0.35 0.36585 0.31739 +LexRank 0.09756 0.0 0.07317 0.02174 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.04878 0.0 0.04878 0.0087 +ICSI 0.12195 0.0 0.07317 0.02609 +7c1a955e62c18e85502652b9cd90d3d5a210c778.json +UB1 0.38462 0.10526 0.33333 0.13761 +UB2 0.4359 0.18421 0.35897 0.16514 +LexRank 0.28205 0.10526 0.25641 0.10092 +TextRank 0.12821 0.02632 0.10256 0.02752 +Luhn 0.07692 0.0 0.07692 0.01376 +ICSI 0.15385 0.02632 0.15385 0.03211 +6c4f0932db96e17273859d29ac9a06d4344e99b0.json +UB1 0.45946 0.22222 0.40541 0.23301 +UB2 0.43243 0.22222 0.40541 0.23301 +LexRank 0.13514 0.0 0.13514 0.02913 +TextRank 0.08108 0.0 0.05405 0.01456 +Luhn 0.21622 0.02778 0.13514 0.0534 +ICSI 0.10811 0.0 0.05405 0.01942 +2e3060fef08456aeb4af2c6a1b12cfafc74209fc.json +UB1 0.44231 0.15686 0.17308 0.13851 +UB2 0.46154 0.21569 0.25 0.18581 +LexRank 0.21154 0.03922 0.09615 0.05743 +TextRank 0.11538 0.01961 0.07692 0.02027 +Luhn 0.11538 0.03922 0.09615 0.02703 +ICSI 0.15385 0.01961 0.11538 0.02703 +184c7370bd37350a94ca6fa6cfd85fcded7f88d0.json +UB1 0.51515 0.21875 0.39394 0.19231 +UB2 0.45455 0.21875 0.27273 0.15934 +LexRank 0.0303 0.0 0.0303 0.00549 +TextRank 0.06061 0.0 0.06061 0.01099 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.15152 0.0 0.12121 0.02747 +47f356393c2adbf9fb620223abff65f1ec926dbe.json +UB1 0.34783 0.09091 0.17391 0.11475 +UB2 0.30435 0.09091 0.26087 0.13115 +LexRank 0.04348 0.0 0.04348 0.0 +TextRank 0.08696 0.0 0.04348 0.01639 +Luhn 0.08696 0.0 0.04348 0.01639 +ICSI 0.08696 0.0 0.04348 0.01639 +18ce84b3d2c8722448b396decf615b92e99a5185.json +UB1 0.47059 0.23881 0.32353 0.17092 +UB2 0.48529 0.25373 0.32353 0.20408 +LexRank 0.16176 0.0 0.08824 0.03316 +TextRank 0.10294 0.02985 0.08824 0.02551 +Luhn 0.10294 0.02985 0.08824 0.02551 +ICSI 0.26471 0.04478 0.13235 0.06122 +498601378b7a0380d8fb3ad174f25345508f878c.json +UB1 0.68571 0.38235 0.2 0.30412 +UB2 0.68571 0.41176 0.22857 0.29897 +LexRank 0.37143 0.26471 0.22857 0.18041 +TextRank 0.4 0.29412 0.25714 0.20103 +Luhn 0.4 0.29412 0.25714 0.20103 +ICSI 0.42857 0.08824 0.14286 0.11856 +15ccf071aec83a31ccc11b4c4499f113a2dc31c6.json +UB1 0.47826 0.24444 0.26087 0.21538 +UB2 0.47826 0.28889 0.32609 0.21538 +LexRank 0.23913 0.04444 0.15217 0.06538 +TextRank 0.02174 0.0 0.02174 0.00385 +Luhn 0.17391 0.0 0.1087 0.03462 +ICSI 0.15217 0.0 0.08696 0.03077 +6a31e8e9b7206051280e3dbbf9a6c6ee992acc63.json +UB1 0.49438 0.14773 0.17978 0.15058 +UB2 0.5618 0.26136 0.24719 0.22201 +LexRank 0.19101 0.01136 0.10112 0.04826 +TextRank 0.1573 0.01136 0.10112 0.0444 +Luhn 0.13483 0.01136 0.07865 0.02703 +ICSI 0.32584 0.125 0.1573 0.09846 +76ef15f318c43ab71977473e51e4d9fddc601844.json +UB1 0.50909 0.2963 0.25455 0.28025 +UB2 0.43636 0.2963 0.4 0.23885 +LexRank 0.32727 0.12963 0.23636 0.14968 +TextRank 0.27273 0.03704 0.12727 0.06051 +Luhn 0.29091 0.03704 0.14545 0.07006 +ICSI 0.30909 0.05556 0.18182 0.08917 +237af0c0b80f4307d409f2c415b0af262bb6f9ff.json +UB1 0.64151 0.32692 0.22642 0.24503 +UB2 0.64151 0.32692 0.22642 0.24503 +LexRank 0.16981 0.03846 0.11321 0.03974 +TextRank 0.09434 0.0 0.0566 0.02318 +Luhn 0.07547 0.0 0.03774 0.01325 +ICSI 0.26415 0.01923 0.13208 0.0596 +0a56f8aa845ca3b215c69631c2568f67ff161aa7.json +UB1 0.78049 0.69136 0.40244 0.63655 +UB2 0.76829 0.69136 0.40244 0.62605 +LexRank 0.21951 0.02469 0.10976 0.04832 +TextRank 0.26829 0.06173 0.10976 0.08403 +Luhn 0.35366 0.12346 0.15854 0.13235 +ICSI 0.28049 0.09877 0.15854 0.11765 +45be0abdeb3517ad2814ce7dba4cb4cfc29d3ab6.json +UB1 0.45833 0.11268 0.25 0.14663 +UB2 0.51389 0.22535 0.20833 0.19712 +LexRank 0.15278 0.0 0.05556 0.03365 +TextRank 0.18056 0.02817 0.11111 0.05529 +Luhn 0.27778 0.02817 0.15278 0.0649 +ICSI 0.33333 0.05634 0.13889 0.10817 +1a918644d1984dd147d4fd8df318f091177254c4.json +UB1 0.30303 0.09375 0.15152 0.07143 +UB2 0.27273 0.125 0.12121 0.07692 +LexRank 0.06061 0.0 0.06061 0.01099 +TextRank 0.0303 0.0 0.0303 0.00549 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.06061 0.0 0.0303 0.01099 +16d738490a9a2292eff7c1980a5401f9ef16a74a.json +UB1 0.48387 0.23333 0.29032 0.18235 +UB2 0.45161 0.26667 0.32258 0.24118 +LexRank 0.06452 0.0 0.06452 0.01765 +TextRank 0.06452 0.0 0.03226 0.01176 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.35484 0.2 0.32258 0.19412 +3dbfcd32d285ca1786d09863cd28b57bc45344f6.json +UB1 0.275 0.05128 0.225 0.08036 +UB2 0.275 0.15385 0.25 0.10714 +LexRank 0.15 0.02564 0.075 0.03571 +TextRank 0.075 0.0 0.075 0.01339 +Luhn 0.15 0.0 0.1 0.03125 +ICSI 0.15 0.02564 0.125 0.03125 +82ff8994692f9406e250ab39dffa8d12cdd5db68.json +UB1 0.36207 0.05263 0.18966 0.07831 +UB2 0.36207 0.19298 0.31034 0.1506 +LexRank 0.2069 0.01754 0.10345 0.03614 +TextRank 0.2069 0.03509 0.08621 0.05723 +Luhn 0.2069 0.03509 0.10345 0.05723 +ICSI 0.24138 0.08772 0.18966 0.09639 +441756ad7cb805d0163903b86710e4a3f14435cc.json +UB1 0.36111 0.05634 0.25 0.11779 +UB2 0.31944 0.14085 0.22222 0.13462 +LexRank 0.18056 0.02817 0.09722 0.05529 +TextRank 0.05556 0.0 0.02778 0.00962 +Luhn 0.05556 0.0 0.02778 0.00962 +ICSI 0.11111 0.01408 0.11111 0.02404 +5a9eab69f04ba13117e937c6d3e4a34e41e29d2e.json +UB1 0.68493 0.34722 0.27397 0.27251 +UB2 0.64384 0.38889 0.20548 0.27962 +LexRank 0.35616 0.05556 0.17808 0.1019 +TextRank 0.30137 0.09722 0.17808 0.1019 +Luhn 0.43836 0.13889 0.21918 0.15877 +ICSI 0.38356 0.15278 0.15068 0.14692 +5b6baac07c25f86893f683ef5251e9450ad05cc2.json +UB1 0.51579 0.10638 0.22105 0.15704 +UB2 0.46316 0.1383 0.16842 0.15884 +LexRank 0.14737 0.01064 0.08421 0.0343 +TextRank 0.17895 0.0 0.09474 0.03249 +Luhn 0.15789 0.0 0.08421 0.03069 +ICSI 0.27368 0.0 0.12632 0.06137 +76db1f0be235b472246ad223c1ac227c6b1e7775.json +UB1 0.39062 0.07937 0.1875 0.10598 +UB2 0.34375 0.11111 0.14062 0.09511 +LexRank 0.17188 0.03175 0.09375 0.04076 +TextRank 0.14062 0.03175 0.07812 0.03533 +Luhn 0.25 0.06349 0.14062 0.07337 +ICSI 0.28125 0.07937 0.125 0.07609 +490704f9e8da78d6259097159ec5ef0552fa8bdb.json +UB1 0.46341 0.09877 0.23171 0.13866 +UB2 0.37805 0.17284 0.23171 0.13445 +LexRank 0.14634 0.01235 0.07317 0.03571 +TextRank 0.19512 0.03704 0.10976 0.04622 +Luhn 0.15854 0.03704 0.08537 0.03782 +ICSI 0.19512 0.03704 0.09756 0.05252 +36d7ee4c0ce66fbcfff383edce93ea695c3fe4be.json +UB1 0.49254 0.18182 0.28358 0.20984 +UB2 0.47761 0.22727 0.26866 0.22798 +LexRank 0.28358 0.09091 0.20896 0.13212 +TextRank 0.23881 0.06061 0.1791 0.0829 +Luhn 0.20896 0.04545 0.16418 0.07513 +ICSI 0.44776 0.18182 0.25373 0.21762 +0e068d20ac28f5e99264f25c9d403afdef2e224c.json +UB1 0.55556 0.18182 0.4 0.25591 +UB2 0.51111 0.31818 0.46667 0.29528 +LexRank 0.13333 0.0 0.06667 0.02362 +TextRank 0.17778 0.02273 0.13333 0.04331 +Luhn 0.08889 0.0 0.08889 0.01575 +ICSI 0.31111 0.04545 0.15556 0.1063 +4ca6f97bd0211a53a720d01251164d7e7793ee9f.json +UB1 0.42 0.12245 0.28 0.16901 +UB2 0.4 0.22449 0.28 0.1831 +LexRank 0.18 0.02041 0.12 0.0493 +TextRank 0.16 0.0 0.1 0.03521 +Luhn 0.12 0.0 0.08 0.02817 +ICSI 0.18 0.0 0.1 0.04225 +753163668065419d44cc5007e11035aae403d891.json +UB1 0.48889 0.25 0.2 0.20079 +UB2 0.55556 0.29545 0.22222 0.26772 +LexRank 0.26667 0.02273 0.13333 0.06693 +TextRank 0.26667 0.04545 0.17778 0.09055 +Luhn 0.26667 0.04545 0.17778 0.09055 +ICSI 0.35556 0.11364 0.15556 0.11417 +5cdccc2774291bea2af84f4324d9a36ce600ed17.json +UB1 0.58491 0.21154 0.28302 0.25497 +UB2 0.4717 0.30769 0.41509 0.26821 +LexRank 0.33962 0.09615 0.18868 0.12583 +TextRank 0.39623 0.15385 0.16981 0.11589 +Luhn 0.35849 0.11538 0.15094 0.09603 +ICSI 0.5283 0.28846 0.43396 0.27483 +3bb2206734d0f598843ade0fff817c92ff73e80b.json +UB1 0.49057 0.21154 0.39623 0.23179 +UB2 0.58491 0.28846 0.39623 0.27815 +LexRank 0.20755 0.0 0.09434 0.03642 +TextRank 0.0566 0.0 0.01887 0.00993 +Luhn 0.09434 0.0 0.03774 0.01656 +ICSI 0.18868 0.0 0.13208 0.04305 +2bc49265745a450eee6dcb4da745e70cdaa0dcd0.json +UB1 0.78082 0.52778 0.52055 0.49526 +UB2 0.78082 0.55556 0.50685 0.51185 +LexRank 0.36986 0.15278 0.21918 0.14929 +TextRank 0.34247 0.09722 0.20548 0.13033 +Luhn 0.35616 0.11111 0.21918 0.13744 +ICSI 0.76712 0.52778 0.53425 0.48341 +26982260c4ee5b20b210d75408ebafef1ad95da7.json +UB1 0.425 0.17949 0.175 0.17857 +UB2 0.325 0.17949 0.2 0.125 +LexRank 0.125 0.0 0.075 0.02679 +TextRank 0.15 0.0 0.05 0.02679 +Luhn 0.125 0.05128 0.1 0.03125 +ICSI 0.15 0.02564 0.1 0.03125 +86cf8d0270316ebca1bf35655b9301b057c67ac6.json +UB1 0.40541 0.11111 0.32432 0.14078 +UB2 0.40541 0.16667 0.35135 0.21359 +LexRank 0.10811 0.0 0.05405 0.01942 +TextRank 0.10811 0.0 0.08108 0.02427 +Luhn 0.10811 0.0 0.08108 0.02427 +ICSI 0.10811 0.0 0.08108 0.01942 +6dea13dc103d905504ae977206a4e9e1aabf0af4.json +UB1 0.65714 0.56522 0.61429 0.53465 +UB2 0.7 0.57971 0.52857 0.5495 +LexRank 0.15714 0.01449 0.08571 0.03465 +TextRank 0.2 0.01449 0.08571 0.04208 +Luhn 0.21429 0.04348 0.11429 0.05693 +ICSI 0.48571 0.26087 0.34286 0.26238 +5fe5f8502763cb3fbd6c97fd88d22c1a6cdde2bb.json +UB1 0.45763 0.17241 0.20339 0.17456 +UB2 0.38983 0.2069 0.23729 0.16864 +LexRank 0.13559 0.0 0.10169 0.02663 +TextRank 0.23729 0.01724 0.11864 0.06805 +Luhn 0.25424 0.01724 0.15254 0.07988 +ICSI 0.20339 0.03448 0.11864 0.05621 +8935702246d63baece89bcbb263fbc6e8f867f88.json +UB1 0.42857 0.14706 0.22857 0.13402 +UB2 0.34286 0.11765 0.22857 0.09278 +LexRank 0.22857 0.08824 0.22857 0.07732 +TextRank 0.28571 0.08824 0.2 0.07732 +Luhn 0.14286 0.0 0.08571 0.03093 +ICSI 0.31429 0.08824 0.14286 0.09278 +0d988a8c7e18e3cb39ca5cd092989a0696ca8d7e.json +UB1 0.4359 0.15789 0.20513 0.11468 +UB2 0.38462 0.21053 0.28205 0.15596 +LexRank 0.05128 0.0 0.05128 0.00917 +TextRank 0.17949 0.0 0.12821 0.0367 +Luhn 0.23077 0.07895 0.10256 0.05963 +ICSI 0.17949 0.02632 0.12821 0.04128 +0e4a903f71a8d8068f9349643b3633c44b363d92.json +UB1 0.52308 0.23438 0.24615 0.22995 +UB2 0.46154 0.26562 0.26154 0.24064 +LexRank 0.32308 0.15625 0.21538 0.17647 +TextRank 0.23077 0.0625 0.16923 0.08556 +Luhn 0.26154 0.03125 0.13846 0.06684 +ICSI 0.35385 0.125 0.23077 0.15775 +48456676123d02fe73c01bcb94b949583b33bfc1.json +UB1 0.47222 0.17143 0.22222 0.155 +UB2 0.38889 0.14286 0.19444 0.125 +LexRank 0.19444 0.02857 0.13889 0.06 +TextRank 0.11111 0.0 0.05556 0.03 +Luhn 0.11111 0.0 0.05556 0.03 +ICSI 0.08333 0.0 0.05556 0.025 +8dd8acd4bd3ac0c9a4ccf46dc99ac8b4fb684bfb.json +UB1 0.37143 0.14706 0.22857 0.13402 +UB2 0.34286 0.20588 0.2 0.13402 +LexRank 0.05714 0.0 0.02857 0.01031 +TextRank 0.05714 0.0 0.02857 0.01031 +Luhn 0.25714 0.0 0.11429 0.05155 +ICSI 0.17143 0.02941 0.08571 0.04124 +6ab6a734881b53e052b39649b36b960511e113e1.json +UB1 0.5 0.20755 0.16667 0.17532 +UB2 0.48148 0.26415 0.31481 0.22727 +LexRank 0.35185 0.0566 0.24074 0.12987 +TextRank 0.31481 0.0566 0.2037 0.10714 +Luhn 0.35185 0.0566 0.24074 0.12987 +ICSI 0.2963 0.0566 0.2037 0.1039 +555eea77fc9a1ea847b998e199337e66e9e82b42.json +UB1 0.84848 0.78125 0.63636 0.67033 +UB2 0.84848 0.78125 0.63636 0.67033 +LexRank 0.09091 0.0 0.06061 0.01648 +TextRank 0.0303 0.0 0.0303 0.00549 +Luhn 0.24242 0.0 0.12121 0.04396 +ICSI 0.09091 0.0 0.09091 0.02198 +70b8fe08ad466800b90ac19c9ccd86650041ee1e.json +UB1 0.25806 0.03333 0.19355 0.07059 +UB2 0.19355 0.06667 0.12903 0.04706 +LexRank 0.12903 0.0 0.09677 0.02941 +TextRank 0.03226 0.0 0.03226 0.00588 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +23d7e7f7d09bf8b88a5ee9d481e38ce71d60b88b.json +UB1 0.59524 0.36585 0.47619 0.40254 +UB2 0.69048 0.46341 0.45238 0.45763 +LexRank 0.16667 0.02439 0.09524 0.03814 +TextRank 0.14286 0.0 0.11905 0.04237 +Luhn 0.14286 0.0 0.11905 0.04237 +ICSI 0.07143 0.0 0.04762 0.01271 +4e0db8815d2c62edc3895505404148e395c47281.json +UB1 0.46667 0.18644 0.2 0.15698 +UB2 0.45 0.22034 0.23333 0.1686 +LexRank 0.21667 0.05085 0.13333 0.06395 +TextRank 0.05 0.0 0.05 0.00872 +Luhn 0.18333 0.01695 0.08333 0.0436 +ICSI 0.3 0.0678 0.18333 0.08721 +78ff5a34190f810e56ead2caf3f21c1ecdc50012.json +UB1 0.52381 0.09756 0.2381 0.15678 +UB2 0.5 0.21951 0.28571 0.23305 +LexRank 0.11905 0.0 0.02381 0.02119 +TextRank 0.21429 0.02439 0.14286 0.05508 +Luhn 0.21429 0.02439 0.14286 0.05508 +ICSI 0.11905 0.0 0.07143 0.02119 +47c86e4c411e2f1b285db3d0807277a12d0d8777.json +UB1 0.43137 0.14 0.31373 0.14138 +UB2 0.37255 0.14 0.15686 0.11724 +LexRank 0.11765 0.02 0.07843 0.02069 +TextRank 0.07843 0.02 0.05882 0.01724 +Luhn 0.07843 0.02 0.05882 0.01724 +ICSI 0.13725 0.02 0.07843 0.02414 +5bca1f8b660f989af016e522c2bfbab257e76491.json +UB1 0.39344 0.1 0.2459 0.12286 +UB2 0.36066 0.16667 0.2459 0.12286 +LexRank 0.11475 0.0 0.08197 0.02571 +TextRank 0.14754 0.0 0.06557 0.02571 +Luhn 0.14754 0.0 0.06557 0.02571 +ICSI 0.14754 0.0 0.08197 0.03143 +4f53ab668f43f11119a8a3e7e4762c1b908f8b79.json +UB1 0.44231 0.21569 0.11538 0.15878 +UB2 0.57692 0.37255 0.44231 0.3277 +LexRank 0.30769 0.15686 0.21154 0.12162 +TextRank 0.09615 0.0 0.05769 0.01689 +Luhn 0.23077 0.11765 0.07692 0.07095 +ICSI 0.34615 0.11765 0.21154 0.125 +38dbcab79757cfa6a42d3f67f707f162a090d54b.json +UB1 0.47761 0.19697 0.31343 0.17876 +UB2 0.44776 0.24242 0.29851 0.19171 +LexRank 0.16418 0.01515 0.0597 0.03368 +TextRank 0.0597 0.01515 0.0597 0.01295 +Luhn 0.08955 0.0 0.0597 0.01554 +ICSI 0.26866 0.04545 0.14925 0.06477 +1dd0de88f5e9db11dad56a1513879263cf75ec56.json +UB1 0.30952 0.02439 0.19048 0.08051 +UB2 0.21429 0.07317 0.07143 0.05085 +LexRank 0.16667 0.02439 0.07143 0.03814 +TextRank 0.11905 0.02439 0.09524 0.02542 +Luhn 0.11905 0.02439 0.09524 0.02542 +ICSI 0.11905 0.02439 0.09524 0.02542 +3d2ef0baeae97625b2f249ae1cfba90f77451053.json +UB1 0.33333 0.10526 0.17949 0.1055 +UB2 0.38462 0.13158 0.28205 0.19725 +LexRank 0.12821 0.0 0.10256 0.02294 +TextRank 0.10256 0.0 0.07692 0.01835 +Luhn 0.15385 0.0 0.07692 0.03211 +ICSI 0.12821 0.0 0.10256 0.02294 +665108f96b2652fe05a88b290fcac1120e3febbc.json +UB1 0.3913 0.09091 0.21739 0.09016 +UB2 0.3913 0.27273 0.3913 0.2623 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.26087 0.13636 0.21739 0.13115 +6dd7a728336dc72bc71c6a20dc45053de2096995.json +UB1 0.58621 0.21429 0.24138 0.1962 +UB2 0.41379 0.21429 0.24138 0.16456 +LexRank 0.06897 0.0 0.06897 0.01899 +TextRank 0.03448 0.0 0.03448 0.00633 +Luhn 0.13793 0.0 0.10345 0.02532 +ICSI 0.24138 0.10714 0.2069 0.10127 +067325b7daf1e1c5ffd3a3ddab50ffc71e2b1e6f.json +UB1 0.29167 0.0 0.125 0.05469 +UB2 0.29167 0.13043 0.16667 0.07031 +LexRank 0.125 0.0 0.08333 0.03125 +TextRank 0.04167 0.0 0.04167 0.00781 +Luhn 0.04167 0.0 0.04167 0.00781 +ICSI 0.08333 0.0 0.04167 0.01562 +5d2da61dc77de54e66844ce0b499d0dfbd8ab400.json +UB1 0.21622 0.0 0.10811 0.03883 +UB2 0.13514 0.02778 0.10811 0.04369 +LexRank 0.10811 0.0 0.08108 0.01942 +TextRank 0.08108 0.0 0.05405 0.01942 +Luhn 0.08108 0.0 0.05405 0.01942 +ICSI 0.13514 0.0 0.08108 0.02427 +375570b3aa2131fa6ada4f2f135507f30be24b86.json +UB1 0.67021 0.35484 0.30851 0.32847 +UB2 0.62766 0.37634 0.3617 0.33759 +LexRank 0.45745 0.2043 0.2766 0.23905 +TextRank 0.38298 0.13978 0.24468 0.17153 +Luhn 0.2766 0.08602 0.14894 0.10036 +ICSI 0.48936 0.24731 0.23404 0.23723 +284d90df4997ffc16579e441ea8c174e9566575a.json +UB1 0.375 0.07937 0.28125 0.12772 +UB2 0.35938 0.12698 0.26562 0.125 +LexRank 0.17188 0.04762 0.10938 0.04891 +TextRank 0.10938 0.0 0.0625 0.02717 +Luhn 0.10938 0.0 0.0625 0.02174 +ICSI 0.15625 0.04762 0.09375 0.0462 +718982d8f61cd3205f4dbd9ee3012ff57066bbde.json +UB1 0.61111 0.34286 0.52778 0.385 +UB2 0.55556 0.4 0.5 0.375 +LexRank 0.27778 0.02857 0.11111 0.075 +TextRank 0.05556 0.0 0.05556 0.01 +Luhn 0.05556 0.0 0.05556 0.01 +ICSI 0.25 0.02857 0.19444 0.07 +1675127d8efab05b01387b9d1613289193fbf0e0.json +UB1 0.55696 0.21795 0.29114 0.22489 +UB2 0.4557 0.30769 0.3038 0.25546 +LexRank 0.3038 0.10256 0.16456 0.11135 +TextRank 0.16456 0.01282 0.08861 0.03712 +Luhn 0.16456 0.01282 0.08861 0.03712 +ICSI 0.32911 0.11538 0.17722 0.1179 +1b81b7ef038b9f8c44fcf5a784ccf0fc45a312b8.json +UB1 0.42105 0.18919 0.26316 0.16038 +UB2 0.5 0.24324 0.42105 0.28302 +LexRank 0.05263 0.0 0.02632 0.00943 +TextRank 0.05263 0.0 0.05263 0.00943 +Luhn 0.18421 0.0 0.10526 0.04245 +ICSI 0.18421 0.08108 0.18421 0.06132 +069ab88f2af82a6f4e3b243d38f2b8ac6c312a59.json +UB1 0.28333 0.0678 0.1 0.07558 +UB2 0.3 0.08475 0.11667 0.09012 +LexRank 0.15 0.0 0.1 0.03198 +TextRank 0.21667 0.05085 0.15 0.06105 +Luhn 0.16667 0.01695 0.08333 0.0436 +ICSI 0.11667 0.0 0.08333 0.02326 +4353d55873460cef74b7d12185772113e217ab26.json +UB1 0.56842 0.17021 0.24211 0.22202 +UB2 0.49474 0.21277 0.24211 0.18773 +LexRank 0.4 0.1383 0.15789 0.1426 +TextRank 0.2 0.03191 0.11579 0.05776 +Luhn 0.42105 0.11702 0.16842 0.14079 +ICSI 0.4 0.09574 0.2 0.12996 +1a8653690432da3e5ec80faac972bf8541168808.json +UB1 0.32692 0.03922 0.13462 0.08446 +UB2 0.23077 0.09804 0.13462 0.07432 +LexRank 0.13462 0.0 0.11538 0.03041 +TextRank 0.17308 0.01961 0.11538 0.0473 +Luhn 0.11538 0.01961 0.09615 0.03041 +ICSI 0.17308 0.0 0.09615 0.0473 +599ee841b377d611f38d8819fb33a82dcdcb5f5b.json +UB1 0.54545 0.18605 0.34091 0.21774 +UB2 0.56818 0.30233 0.43182 0.29435 +LexRank 0.29545 0.09302 0.15909 0.10887 +TextRank 0.27273 0.11628 0.18182 0.12097 +Luhn 0.04545 0.0 0.04545 0.00806 +ICSI 0.43182 0.18605 0.29545 0.18952 +0cf30e8746010ee2fcfee7e4f71602dcc304efd9.json +UB1 0.55102 0.35417 0.34694 0.27338 +UB2 0.5102 0.35417 0.34694 0.26259 +LexRank 0.26531 0.0 0.16327 0.07914 +TextRank 0.10204 0.0 0.06122 0.02518 +Luhn 0.30612 0.10417 0.20408 0.13309 +ICSI 0.34694 0.0625 0.22449 0.1223 +4349dda0705000355381106bf4f38b57235f8ef2.json +UB1 0.24 0.04167 0.12 0.0597 +UB2 0.32 0.125 0.24 0.10448 +LexRank 0.08 0.0 0.08 0.01493 +TextRank 0.32 0.125 0.24 0.10448 +Luhn 0.04 0.0 0.04 0.00746 +ICSI 0.16 0.0 0.08 0.02985 +268d32df5a2588779696897f2797895bba863c76.json +UB1 0.19149 0.04348 0.12766 0.04887 +UB2 0.23404 0.06522 0.12766 0.05263 +LexRank 0.10638 0.02174 0.08511 0.02256 +TextRank 0.04255 0.0 0.04255 0.00752 +Luhn 0.04255 0.0 0.04255 0.00752 +ICSI 0.06383 0.0 0.04255 0.01128 +0a862c9f45e9581ee604565564e9a0c1f3f9b4ab.json +UB1 0.4 0.10345 0.26667 0.12805 +UB2 0.36667 0.17241 0.3 0.16463 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.06667 0.0 0.03333 0.0122 +682b0e814e0091c235927280b4c2b19e00a411db.json +UB1 0.75 0.59259 0.53571 0.56579 +UB2 0.75 0.59259 0.53571 0.56579 +LexRank 0.10714 0.0 0.03571 0.01974 +TextRank 0.07143 0.0 0.07143 0.01316 +Luhn 0.10714 0.0 0.07143 0.02632 +ICSI 0.03571 0.0 0.03571 0.00658 +6104b01723b15da62c3ffd1645445d25644c72b0.json +UB1 0.43836 0.13889 0.21918 0.13744 +UB2 0.42466 0.16667 0.23288 0.14692 +LexRank 0.21918 0.0 0.09589 0.04739 +TextRank 0.19178 0.0 0.10959 0.04028 +Luhn 0.23288 0.01389 0.13699 0.06161 +ICSI 0.21918 0.0 0.13699 0.04739 +3ecd4afcda3835e7069ddf6c5369d23ff5b99bb5.json +UB1 0.51111 0.36364 0.28889 0.33071 +UB2 0.51111 0.36364 0.28889 0.33071 +LexRank 0.17778 0.02273 0.13333 0.04724 +TextRank 0.2 0.04545 0.13333 0.05906 +Luhn 0.13333 0.0 0.06667 0.02756 +ICSI 0.24444 0.11364 0.24444 0.12598 +10b37faa751fe33f930c2d55013566b845a4a159.json +UB1 0.50685 0.22222 0.19178 0.23223 +UB2 0.42466 0.20833 0.17808 0.2109 +LexRank 0.31507 0.04167 0.13699 0.09716 +TextRank 0.08219 0.0 0.05479 0.01422 +Luhn 0.19178 0.0 0.12329 0.04028 +ICSI 0.34247 0.09722 0.15068 0.12559 +6a525e584cf6196e31ab828391d55f696528d68f.json +UB1 0.38889 0.02857 0.13889 0.1 +UB2 0.25 0.05714 0.13889 0.065 +LexRank 0.11111 0.02857 0.05556 0.025 +TextRank 0.13889 0.0 0.05556 0.025 +Luhn 0.22222 0.02857 0.11111 0.045 +ICSI 0.13889 0.0 0.11111 0.025 +5552c4655eb4128764173732a67fa5f0b54443d7.json +UB1 0.54286 0.17647 0.2 0.15464 +UB2 0.25714 0.14706 0.17143 0.10309 +LexRank 0.05714 0.0 0.02857 0.01031 +TextRank 0.11429 0.0 0.11429 0.02577 +Luhn 0.05714 0.0 0.05714 0.01031 +ICSI 0.25714 0.05882 0.2 0.06186 +094accf22a9654b109a57a66b67b1d513ea41fde.json +UB1 0.375 0.12903 0.28125 0.11364 +UB2 0.25 0.16129 0.25 0.10795 +LexRank 0.0625 0.0 0.0625 0.01136 +TextRank 0.09375 0.0 0.0625 0.01136 +Luhn 0.09375 0.0 0.0625 0.01705 +ICSI 0.0625 0.0 0.0625 0.01136 +1a2a34772920c9b0f2b390347a89a2009830011d.json +UB1 0.38182 0.09259 0.14545 0.09873 +UB2 0.36364 0.14815 0.16364 0.12739 +LexRank 0.16364 0.03704 0.10909 0.03822 +TextRank 0.09091 0.0 0.09091 0.01911 +Luhn 0.18182 0.0 0.10909 0.04459 +ICSI 0.21818 0.03704 0.10909 0.04777 +104b029f47a944909fcf9bb32e5d3497953a403b.json +UB1 0.4 0.06897 0.13333 0.12195 +UB2 0.36667 0.17241 0.3 0.12805 +LexRank 0.06667 0.0 0.03333 0.0122 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.16667 0.10345 0.13333 0.06707 +ICSI 0.1 0.03448 0.1 0.02439 +022a609b1345666c622ba43a8ca36d6be575dfb3.json +UB1 0.33333 0.03846 0.18519 0.08219 +UB2 0.22222 0.07692 0.14815 0.06164 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.03704 0.0 0.03704 0.00685 +01e91dc6d7c0f3f27d144776858931536a49c5ae.json +UB1 0.4 0.21053 0.4 0.21154 +UB2 0.4 0.21053 0.4 0.21154 +LexRank 0.1 0.0 0.1 0.02885 +TextRank 0.1 0.0 0.1 0.01923 +Luhn 0.1 0.0 0.05 0.01923 +ICSI 0.1 0.0 0.05 0.01923 +3c03ac5436fa57dd9730bea2197dcb3723e6048f.json +UB1 0.66667 0.58824 0.66667 0.48913 +UB2 0.66667 0.58824 0.66667 0.48913 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.22222 0.05882 0.22222 0.07609 +ICSI 0.27778 0.17647 0.22222 0.11957 +4197fddf3f2d82b8282bfaf6a7a76a14be98a378.json +UB1 0.30769 0.08 0.19231 0.08571 +UB2 0.23077 0.12 0.23077 0.07143 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.15385 0.0 0.11538 0.02143 +Luhn 0.03846 0.0 0.03846 0.00714 +ICSI 0.07692 0.0 0.07692 0.01429 +179844d5defa624793946513326692a70b1c0f2b.json +UB1 0.74194 0.53333 0.48387 0.49412 +UB2 0.80645 0.7 0.64516 0.60588 +LexRank 0.06452 0.0 0.06452 0.00588 +TextRank 0.12903 0.0 0.03226 0.02353 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.09677 0.0 0.06452 0.01765 +1733a05a8c9bc39d46f6d71671b650cece672dd3.json +UB1 0.63158 0.45946 0.44737 0.41981 +UB2 0.63158 0.45946 0.44737 0.41981 +LexRank 0.21053 0.02703 0.13158 0.07547 +TextRank 0.39474 0.13514 0.23684 0.11321 +Luhn 0.39474 0.13514 0.23684 0.11321 +ICSI 0.55263 0.40541 0.39474 0.39151 +27fe098df256548cfb88a9ccef13c9ec5191bbb5.json +UB1 0.44048 0.16867 0.19048 0.17008 +UB2 0.42857 0.20482 0.19048 0.17418 +LexRank 0.19048 0.01205 0.11905 0.04713 +TextRank 0.25 0.04819 0.17857 0.08811 +Luhn 0.14286 0.0 0.09524 0.02869 +ICSI 0.30952 0.06024 0.17857 0.09426 +3c2e9cb988e22e333214edb9ab489eb19f8adbc0.json +UB1 0.625 0.29787 0.41667 0.28676 +UB2 0.45833 0.29787 0.41667 0.23529 +LexRank 0.35417 0.06383 0.22917 0.11029 +TextRank 0.39583 0.08511 0.20833 0.11765 +Luhn 0.4375 0.21277 0.3125 0.22426 +ICSI 0.33333 0.12766 0.16667 0.12868 +81d74d463ad469029724667b9e26106a46b30b90.json +UB1 0.88889 0.7875 0.66667 0.77021 +UB2 0.90123 0.825 0.7037 0.77021 +LexRank 0.5679 0.4625 0.49383 0.45106 +TextRank 0.55556 0.4625 0.50617 0.44894 +Luhn 0.33333 0.125 0.18519 0.13617 +ICSI 0.45679 0.3125 0.37037 0.28936 +1b6788aab74c2993b02d11aa09de9ce4e1f6220e.json +UB1 0.39583 0.08511 0.3125 0.14706 +UB2 0.25 0.10638 0.1875 0.07721 +LexRank 0.0625 0.0 0.02083 0.01103 +TextRank 0.04167 0.0 0.02083 0.00735 +Luhn 0.08333 0.0 0.0625 0.01471 +ICSI 0.0625 0.0 0.04167 0.01471 +61d9fd1aee885f2771a8a555fe66c9d0f84bc48b.json +UB1 0.60976 0.375 0.26829 0.31304 +UB2 0.5122 0.375 0.2439 0.28696 +LexRank 0.07317 0.0 0.04878 0.01304 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.04878 0.0 0.04878 0.0087 +ICSI 0.14634 0.0 0.04878 0.02609 +25be021732915a1f9965641e01198f1f35a2e2f0.json +UB1 0.63333 0.37931 0.56667 0.32927 +UB2 0.6 0.48276 0.4 0.32317 +LexRank 0.2 0.03448 0.06667 0.04878 +TextRank 0.2 0.0 0.13333 0.03659 +Luhn 0.2 0.03448 0.06667 0.04878 +ICSI 0.2 0.0 0.13333 0.04878 +24169515737b4eab78e7b53c5c4d20204c56a046.json +UB1 0.61702 0.41304 0.53191 0.3985 +UB2 0.68085 0.45652 0.57447 0.42857 +LexRank 0.23404 0.08696 0.17021 0.09023 +TextRank 0.3617 0.13043 0.25532 0.12406 +Luhn 0.3617 0.13043 0.2766 0.12406 +ICSI 0.31915 0.1087 0.19149 0.09774 +2d108e82d3752fc9b41fe4512f77b1c3e14b0d9c.json +UB1 0.48148 0.26923 0.2963 0.26712 +UB2 0.40741 0.30769 0.2963 0.23973 +LexRank 0.11111 0.0 0.07407 0.0137 +TextRank 0.11111 0.0 0.07407 0.0274 +Luhn 0.11111 0.0 0.07407 0.0274 +ICSI 0.14815 0.0 0.11111 0.0274 +516ba398f11a100f691b6b2a89759b65ad927ad7.json +UB1 0.49153 0.2069 0.32203 0.21006 +UB2 0.45763 0.27586 0.20339 0.25444 +LexRank 0.23729 0.10345 0.13559 0.11243 +TextRank 0.05085 0.0 0.05085 0.00888 +Luhn 0.05085 0.0 0.05085 0.00888 +ICSI 0.23729 0.10345 0.16949 0.10651 +4756fb9ade1909f69d4ede5fd07f602a3c0d416a.json +UB1 0.42857 0.18519 0.21429 0.15789 +UB2 0.25 0.14815 0.25 0.09211 +LexRank 0.17857 0.07407 0.14286 0.05921 +TextRank 0.03571 0.0 0.03571 0.00658 +Luhn 0.07143 0.0 0.07143 0.01316 +ICSI 0.17857 0.07407 0.10714 0.05263 +7a4d26b393a66593b917bcc30531d72df965e2f6.json +UB1 0.42424 0.15625 0.39394 0.16484 +UB2 0.33333 0.15625 0.33333 0.12637 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.06061 0.0 0.06061 0.01099 +ICSI 0.06061 0.0 0.0303 0.01099 +368939e3bee16d3e59df7f2ed6a5fe3f815e3256.json +UB1 0.41304 0.08889 0.13043 0.11923 +UB2 0.34783 0.17778 0.1087 0.13077 +LexRank 0.08696 0.0 0.04348 0.01923 +TextRank 0.1087 0.0 0.06522 0.01923 +Luhn 0.02174 0.0 0.02174 0.00385 +ICSI 0.08696 0.0 0.06522 0.01538 +011a5dd53923505112dedd96aafae8389d34b5c7.json +UB1 0.72857 0.3913 0.54286 0.41089 +UB2 0.67143 0.49275 0.45714 0.42822 +LexRank 0.12857 0.0 0.08571 0.03218 +TextRank 0.17143 0.0 0.08571 0.03713 +Luhn 0.2 0.0 0.08571 0.0396 +ICSI 0.28571 0.07246 0.2 0.09901 +85c76d6f89913dd4f696c43d7921dc12c1f23a56.json +UB1 0.56522 0.2 0.23913 0.18462 +UB2 0.5 0.22222 0.21739 0.18462 +LexRank 0.15217 0.02222 0.1087 0.03846 +TextRank 0.06522 0.02222 0.06522 0.01538 +Luhn 0.13043 0.0 0.1087 0.02692 +ICSI 0.17391 0.04444 0.13043 0.05 +261080eb1e4a72527c97db9f1ff9d0b9f43341fe.json +UB1 0.53333 0.28378 0.26667 0.26037 +UB2 0.52 0.32432 0.30667 0.27419 +LexRank 0.09333 0.0 0.04 0.01613 +TextRank 0.10667 0.0 0.06667 0.01843 +Luhn 0.05333 0.0 0.05333 0.00922 +ICSI 0.2 0.0 0.09333 0.04147 +30004d45526035cfbcc429f8198b82370236322f.json +UB1 0.31579 0.05556 0.26316 0.11224 +UB2 0.15789 0.05556 0.10526 0.03061 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.10526 0.0 0.05263 0.02041 +Luhn 0.05263 0.0 0.05263 0.0102 +ICSI 0.21053 0.0 0.21053 0.07143 +8c21bed45f03e0c40fa196ed59e2fa8b370f39c7.json +UB1 0.67164 0.43939 0.44776 0.40674 +UB2 0.59701 0.39394 0.44776 0.36528 +LexRank 0.26866 0.06061 0.19403 0.10622 +TextRank 0.22388 0.04545 0.14925 0.07513 +Luhn 0.31343 0.01515 0.13433 0.09845 +ICSI 0.43284 0.15152 0.22388 0.1658 +5893e142d0134483208027d595cc7173651d8602.json +UB1 0.475 0.20513 0.175 0.17411 +UB2 0.475 0.20513 0.175 0.17411 +LexRank 0.075 0.0 0.075 0.01339 +TextRank 0.05 0.0 0.05 0.00893 +Luhn 0.075 0.0 0.075 0.01786 +ICSI 0.25 0.15385 0.175 0.10714 +0fc172ee65d0e015429f38f15d0ec15b08e7ca92.json +UB1 0.52 0.17568 0.24 0.19355 +UB2 0.49333 0.21622 0.22667 0.19124 +LexRank 0.17333 0.01351 0.13333 0.053 +TextRank 0.08 0.0 0.05333 0.01843 +Luhn 0.22667 0.01351 0.14667 0.06221 +ICSI 0.22667 0.05405 0.14667 0.06912 +6fbda018dbb31598731f2b261752f421465825b9.json +UB1 0.62791 0.38824 0.44186 0.358 +UB2 0.61628 0.42353 0.44186 0.372 +LexRank 0.39535 0.15294 0.24419 0.148 +TextRank 0.31395 0.14118 0.24419 0.13 +Luhn 0.38372 0.15294 0.27907 0.146 +ICSI 0.47674 0.27059 0.26744 0.278 +2702102941d4bfda9d859d961dfed5e400c1cf74.json +UB1 0.52542 0.36207 0.32203 0.30178 +UB2 0.54237 0.37931 0.35593 0.31065 +LexRank 0.23729 0.03448 0.11864 0.06805 +TextRank 0.10169 0.0 0.08475 0.01775 +Luhn 0.23729 0.03448 0.13559 0.06509 +ICSI 0.20339 0.05172 0.13559 0.05325 +693601144cf315e75a7fba841191c127296a29c8.json +UB1 0.32258 0.16667 0.29032 0.11765 +UB2 0.29032 0.16667 0.29032 0.11176 +LexRank 0.09677 0.03333 0.06452 0.01765 +TextRank 0.03226 0.0 0.03226 0.00588 +Luhn 0.03226 0.0 0.03226 0.00588 +ICSI 0.06452 0.0 0.03226 0.01176 +0c834916a54b5d2d4fffceefd51cb2341acd0740.json +UB1 0.48193 0.19512 0.31325 0.20954 +UB2 0.45783 0.23171 0.25301 0.21992 +LexRank 0.22892 0.03659 0.12048 0.06017 +TextRank 0.19277 0.03659 0.12048 0.05394 +Luhn 0.13253 0.03659 0.08434 0.04357 +ICSI 0.27711 0.04878 0.13253 0.07884 +073fecc95abd79ae4a6ffe245d85ae28cc318266.json +UB1 0.45455 0.23077 0.39394 0.22105 +UB2 0.4697 0.26154 0.40909 0.23684 +LexRank 0.19697 0.01538 0.10606 0.05 +TextRank 0.04545 0.0 0.04545 0.00789 +Luhn 0.13636 0.0 0.07576 0.02368 +ICSI 0.21212 0.01538 0.10606 0.04737 +03b11b9db078523519dd572ffc98e17c261f48ac.json +UB1 0.22222 0.05882 0.11111 0.03261 +UB2 0.22222 0.17647 0.22222 0.1087 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.16667 0.0 0.11111 0.02174 +Luhn 0.05556 0.0 0.05556 0.01087 +ICSI 0.05556 0.0 0.05556 0.01087 +8268fbf9b51080b4911c36d15e1708bb179b85d6.json +UB1 0.46296 0.13208 0.24074 0.15584 +UB2 0.40741 0.20755 0.31481 0.16558 +LexRank 0.22222 0.03774 0.12963 0.05195 +TextRank 0.16667 0.03774 0.11111 0.0487 +Luhn 0.16667 0.0 0.09259 0.03247 +ICSI 0.24074 0.07547 0.12963 0.06818 +6bfd97fb07d434beefd6b5460ea4ea874b5b3efc.json +UB1 0.42857 0.16364 0.26786 0.14688 +UB2 0.33929 0.21818 0.28571 0.1375 +LexRank 0.23214 0.01818 0.14286 0.05937 +TextRank 0.26786 0.01818 0.16071 0.05937 +Luhn 0.125 0.0 0.10714 0.02187 +ICSI 0.125 0.0 0.08929 0.02187 +06a4f675ac6e5493858733bc19944472357373b6.json +UB1 0.46667 0.27586 0.43333 0.22561 +UB2 0.4 0.27586 0.4 0.21341 +LexRank 0.1 0.0 0.03333 0.0122 +TextRank 0.13333 0.0 0.06667 0.02439 +Luhn 0.13333 0.03448 0.1 0.03659 +ICSI 0.13333 0.0 0.06667 0.02439 +39f970f82fb95ecb004e98c92b3c7c3c7e6b7578.json +UB1 0.46 0.18367 0.28 0.17254 +UB2 0.56 0.28571 0.36 0.26761 +LexRank 0.28 0.08163 0.12 0.07394 +TextRank 0.22 0.02041 0.14 0.05986 +Luhn 0.22 0.02041 0.14 0.05986 +ICSI 0.32 0.12245 0.14 0.10211 +0c57a1f2f854cd7a86e50169f584826e0b1a9104.json +UB1 0.52239 0.24242 0.19403 0.25907 +UB2 0.49254 0.27273 0.22388 0.24611 +LexRank 0.35821 0.09091 0.22388 0.14508 +TextRank 0.25373 0.09091 0.1194 0.07513 +Luhn 0.28358 0.07576 0.1194 0.09067 +ICSI 0.35821 0.10606 0.19403 0.09845 +0d48d6c7a85ef319ff60920cb66f444582956cda.json +UB1 0.57576 0.21875 0.33333 0.24725 +UB2 0.51515 0.28125 0.30303 0.23077 +LexRank 0.12121 0.0 0.12121 0.02747 +TextRank 0.09091 0.0 0.09091 0.02198 +Luhn 0.06061 0.0 0.06061 0.01648 +ICSI 0.12121 0.0 0.09091 0.02198 +291d05ae2932a4c39ea0360af25bd62b2b25f1b9.json +UB1 0.525 0.17949 0.425 0.20536 +UB2 0.375 0.17949 0.35 0.16071 +LexRank 0.175 0.02564 0.125 0.04464 +TextRank 0.125 0.0 0.075 0.02679 +Luhn 0.175 0.05128 0.1 0.04464 +ICSI 0.275 0.07692 0.175 0.08036 +3dcd252776c791dc9e2a84aadf3e8a507923b4cf.json +UB1 0.625 0.35484 0.5 0.29545 +UB2 0.53125 0.35484 0.5 0.26705 +LexRank 0.125 0.0 0.0625 0.02841 +TextRank 0.09375 0.0 0.0625 0.01705 +Luhn 0.03125 0.0 0.03125 0.00568 +ICSI 0.09375 0.0 0.09375 0.02273 +7715dbe229af7e78524dda469e182ad4e9f8dc76.json +UB1 0.38462 0.04 0.19231 0.12143 +UB2 0.38462 0.12 0.19231 0.11429 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03846 0.0 0.03846 0.00714 +Luhn 0.07692 0.0 0.07692 0.01429 +ICSI 0.07692 0.0 0.03846 0.01429 +6ed2ef5f06ecd7eb77b95b6da02fe8bdab1c7215.json +UB1 0.28947 0.05405 0.10526 0.06604 +UB2 0.26316 0.10811 0.15789 0.07547 +LexRank 0.07895 0.0 0.05263 0.01887 +TextRank 0.02632 0.0 0.02632 0.0 +Luhn 0.02632 0.0 0.02632 0.00472 +ICSI 0.07895 0.0 0.07895 0.00943 +8947b60fb0f5a7a742bdd5788ed8b76f074842a9.json +UB1 0.25 0.03704 0.17857 0.07237 +UB2 0.17857 0.07407 0.10714 0.05921 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03571 0.0 0.03571 0.00658 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.07143 0.0 0.03571 0.01316 +5def68db3faa3b389b1d38abfe30f2fb514e2163.json +UB1 0.52632 0.13514 0.39474 0.20755 +UB2 0.36842 0.18919 0.21053 0.16509 +LexRank 0.15789 0.02703 0.10526 0.05189 +TextRank 0.13158 0.02703 0.10526 0.03774 +Luhn 0.13158 0.02703 0.10526 0.03774 +ICSI 0.23684 0.08108 0.18421 0.08962 +06a4f49c7e7d6b546f30c406770b5ede9cad65fd.json +UB1 0.4375 0.17021 0.22917 0.20956 +UB2 0.4375 0.19149 0.22917 0.21691 +LexRank 0.1875 0.0 0.08333 0.03676 +TextRank 0.125 0.0 0.08333 0.03676 +Luhn 0.02083 0.0 0.02083 0.00368 +ICSI 0.14583 0.0 0.0625 0.02941 +4d7722a3d29f71a956dd00a616b747f00026e8da.json +UB1 0.51163 0.19048 0.30233 0.19835 +UB2 0.46512 0.2381 0.2093 0.20661 +LexRank 0.27907 0.0 0.18605 0.08264 +TextRank 0.2093 0.07143 0.16279 0.07438 +Luhn 0.27907 0.04762 0.16279 0.07025 +ICSI 0.39535 0.11905 0.27907 0.17769 +2a00f7fc9ad0041f1d6d5d3454e7316b681efa5a.json +UB1 0.32353 0.06061 0.17647 0.11702 +UB2 0.32353 0.09091 0.14706 0.10106 +LexRank 0.02941 0.0 0.02941 0.00532 +TextRank 0.20588 0.0303 0.11765 0.05851 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.02941 0.0 0.02941 0.00532 +41f7ca20eb9791ad7b1e23d161190bcdc074c834.json +UB1 0.51163 0.21429 0.32558 0.2562 +UB2 0.44186 0.21429 0.27907 0.19835 +LexRank 0.27907 0.11905 0.18605 0.1157 +TextRank 0.09302 0.0 0.09302 0.02066 +Luhn 0.04651 0.0 0.04651 0.00826 +ICSI 0.23256 0.04762 0.13953 0.07851 +5a7ed6050a2a2229fa92dbac2df60d40601f561f.json +UB1 0.80769 0.72549 0.40385 0.66554 +UB2 0.78846 0.72549 0.38462 0.65878 +LexRank 0.26923 0.05882 0.17308 0.07095 +TextRank 0.19231 0.01961 0.11538 0.0473 +Luhn 0.17308 0.0 0.13462 0.04054 +ICSI 0.51923 0.35294 0.42308 0.3277 +0454f95a0facfdd041748efa76fc2c3471144d18.json +UB1 0.47619 0.3 0.38095 0.28182 +UB2 0.42857 0.35 0.33333 0.26364 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.14286 0.0 0.14286 0.02727 +Luhn 0.09524 0.0 0.09524 0.01818 +ICSI 0.2381 0.0 0.19048 0.06364 +5b86f227bbdc6eea51378260e3da2e08d0dd5512.json +UB1 0.57627 0.17241 0.23729 0.22781 +UB2 0.55932 0.27586 0.25424 0.27515 +LexRank 0.40678 0.08621 0.18644 0.13018 +TextRank 0.22034 0.05172 0.13559 0.06213 +Luhn 0.28814 0.05172 0.10169 0.06509 +ICSI 0.35593 0.10345 0.20339 0.11538 +6d8d1f28e8387ec8c5b51691d21f752376c4df59.json +UB1 0.41667 0.10638 0.29167 0.21691 +UB2 0.33333 0.12766 0.27083 0.15809 +LexRank 0.25 0.02128 0.16667 0.0625 +TextRank 0.16667 0.02128 0.125 0.05515 +Luhn 0.10417 0.0 0.0625 0.01838 +ICSI 0.3125 0.04255 0.1875 0.14338 +606a689b69a4c9b8a92ecce95b6478406ab0658e.json +UB1 0.56 0.2449 0.28 0.26761 +UB2 0.48 0.2449 0.34 0.23239 +LexRank 0.38 0.18367 0.28 0.20775 +TextRank 0.36 0.18367 0.3 0.2007 +Luhn 0.32 0.10204 0.2 0.08803 +ICSI 0.3 0.12245 0.2 0.10563 +8b58b3aeacb7e5e56e3eca92dddba688dcb15e65.json +UB1 0.4717 0.21154 0.20755 0.23179 +UB2 0.43396 0.23077 0.24528 0.20199 +LexRank 0.03774 0.0 0.01887 0.00662 +TextRank 0.01887 0.0 0.01887 0.00331 +Luhn 0.11321 0.0 0.07547 0.01987 +ICSI 0.13208 0.01923 0.0566 0.02649 +7fe671ca175c7c0e6faddd62452b4a1dce98566e.json +UB1 0.46667 0.2069 0.3 0.18293 +UB2 0.3 0.2069 0.26667 0.12805 +LexRank 0.06667 0.0 0.06667 0.0122 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.13333 0.0 0.1 0.03049 +43cf01ebc3de16eb66a905d79ba8191e2b93f225.json +UB1 0.31034 0.07143 0.2069 0.09494 +UB2 0.17241 0.10714 0.17241 0.05696 +LexRank 0.06897 0.0 0.03448 0.01266 +TextRank 0.10345 0.0 0.06897 0.01899 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.10345 0.0 0.06897 0.01899 +2137bd9579fcffb372f7c17b662a99c19f1285bf.json +UB1 0.70588 0.46 0.47059 0.43793 +UB2 0.68627 0.46 0.47059 0.43448 +LexRank 0.15686 0.0 0.09804 0.02759 +TextRank 0.15686 0.0 0.07843 0.03103 +Luhn 0.17647 0.0 0.09804 0.03793 +ICSI 0.21569 0.0 0.09804 0.04138 +8400e84c9cdcb5b57363c6bd98de0125e172321d.json +UB1 0.46512 0.11905 0.25581 0.15702 +UB2 0.39535 0.16667 0.16279 0.13636 +LexRank 0.11628 0.02381 0.06977 0.02479 +TextRank 0.16279 0.0 0.09302 0.02893 +Luhn 0.2093 0.09524 0.2093 0.08264 +ICSI 0.27907 0.02381 0.16279 0.07025 +2a4c54b688c885a1f5cc4a255c35317e16b7b51a.json +UB1 0.40385 0.09804 0.26923 0.125 +UB2 0.34615 0.13725 0.17308 0.125 +LexRank 0.15385 0.0 0.09615 0.02703 +TextRank 0.23077 0.05882 0.09615 0.05743 +Luhn 0.25 0.05882 0.11538 0.06081 +ICSI 0.13462 0.01961 0.07692 0.02703 +33a31217a7dfa91cfea6d785619478fd2d862391.json +UB1 0.475 0.15385 0.35 0.22321 +UB2 0.525 0.20513 0.275 0.24107 +LexRank 0.05 0.0 0.05 0.00893 +TextRank 0.125 0.0 0.075 0.02679 +Luhn 0.175 0.0 0.1 0.02679 +ICSI 0.125 0.0 0.075 0.02232 +0ac7117e12513b3aa58e9215619c351207f7161a.json +UB1 0.55714 0.24638 0.3 0.24505 +UB2 0.58571 0.30435 0.38571 0.28713 +LexRank 0.17143 0.0 0.07143 0.03713 +TextRank 0.2 0.01449 0.14286 0.05198 +Luhn 0.1 0.0 0.07143 0.0198 +ICSI 0.2 0.01449 0.11429 0.0495 +30d706fc87beac105693f432ba63c338dc1d9530.json +UB1 0.45098 0.1 0.27451 0.15172 +UB2 0.35294 0.16 0.27451 0.13448 +LexRank 0.13725 0.0 0.09804 0.02759 +TextRank 0.13725 0.0 0.09804 0.02759 +Luhn 0.03922 0.0 0.03922 0.0069 +ICSI 0.27451 0.06 0.17647 0.0931 +436fa13e29833a95785c472c29a19a14ef3b507a.json +UB1 0.38235 0.18182 0.32353 0.13298 +UB2 0.29412 0.18182 0.26471 0.11702 +LexRank 0.17647 0.0 0.11765 0.03191 +TextRank 0.08824 0.0303 0.05882 0.02128 +Luhn 0.20588 0.0 0.11765 0.03723 +ICSI 0.20588 0.0 0.11765 0.03191 +42991441fea7323ca92680ead828ba05ce98ccec.json +UB1 0.38889 0.05714 0.27778 0.13 +UB2 0.30556 0.11429 0.16667 0.12 +LexRank 0.05556 0.0 0.02778 0.01 +TextRank 0.02778 0.0 0.02778 0.005 +Luhn 0.08333 0.0 0.05556 0.015 +ICSI 0.05556 0.0 0.02778 0.01 +2353ab584f97538b971ef009d8e7e8e7c1973b7d.json +UB1 0.575 0.33333 0.4 0.30357 +UB2 0.475 0.28205 0.275 0.23214 +LexRank 0.275 0.05128 0.15 0.08036 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.2 0.02564 0.125 0.07143 +22b99e71e8ddb148c1c9a524753e831a64b71f45.json +UB1 0.59459 0.25 0.2973 0.29612 +UB2 0.62162 0.38889 0.37838 0.31553 +LexRank 0.2973 0.08333 0.18919 0.09223 +TextRank 0.37838 0.19444 0.27027 0.17476 +Luhn 0.16216 0.0 0.08108 0.02913 +ICSI 0.35135 0.08333 0.24324 0.1165 +16a177e321d5459dcd96f4840cb0acf5e1e594ab.json +UB1 0.35294 0.1875 0.29412 0.19767 +UB2 0.35294 0.1875 0.29412 0.19767 +LexRank 0.05882 0.0 0.05882 0.01163 +TextRank 0.05882 0.0 0.05882 0.01163 +Luhn 0.05882 0.0 0.05882 0.01163 +ICSI 0.11765 0.0 0.05882 0.02326 +56167f174f69e2a6f0027c6867d953f9bb81e9bc.json +UB1 0.43284 0.06061 0.16418 0.1114 +UB2 0.35821 0.24242 0.19403 0.14767 +LexRank 0.14925 0.0303 0.0597 0.03109 +TextRank 0.16418 0.0 0.08955 0.0285 +Luhn 0.16418 0.0 0.08955 0.0285 +ICSI 0.34328 0.07576 0.16418 0.08549 +6fddb6aa3cadda1e4df903d1ecc719e0f21e5974.json +UB1 0.69231 0.34211 0.25641 0.22936 +UB2 0.69231 0.39474 0.28205 0.23853 +LexRank 0.23077 0.07895 0.10256 0.07798 +TextRank 0.33333 0.10526 0.17949 0.11009 +Luhn 0.41026 0.18421 0.20513 0.12385 +ICSI 0.20513 0.07895 0.10256 0.07339 +8d629723131b19752cf0598025e79ee1a9660f8b.json +UB1 0.552 0.25 0.216 0.23161 +UB2 0.6 0.33871 0.272 0.29837 +LexRank 0.304 0.12097 0.136 0.1267 +TextRank 0.224 0.01613 0.16 0.07357 +Luhn 0.208 0.03226 0.144 0.06267 +ICSI 0.424 0.17742 0.224 0.17302 +8458eb478140922ab5bbb2ec610b9b4417caf5fc.json +UB1 0.5 0.18605 0.18182 0.15726 +UB2 0.40909 0.25581 0.31818 0.16935 +LexRank 0.04545 0.0 0.04545 0.00806 +TextRank 0.18182 0.04651 0.13636 0.04435 +Luhn 0.15909 0.0 0.11364 0.03629 +ICSI 0.22727 0.04651 0.09091 0.05645 +3bbf39d836ef860cf0dd8659660fd0de6f2e9346.json +UB1 0.45 0.20513 0.325 0.16518 +UB2 0.45 0.20513 0.325 0.16518 +LexRank 0.35 0.07692 0.225 0.11607 +TextRank 0.35 0.07692 0.225 0.11607 +Luhn 0.35 0.05128 0.2 0.11161 +ICSI 0.25 0.02564 0.175 0.08036 +4c47778115addbad9e6f0a2efa2fad1f7d0eae0b.json +UB1 0.39286 0.03704 0.17857 0.07895 +UB2 0.25 0.11111 0.14286 0.06579 +LexRank 0.17857 0.0 0.10714 0.03289 +TextRank 0.10714 0.0 0.10714 0.01974 +Luhn 0.17857 0.03704 0.14286 0.04605 +ICSI 0.21429 0.0 0.14286 0.04605 +3b8db23eac7e824cca484da559ec633c83d61418.json +UB1 0.68217 0.34375 0.31783 0.33641 +UB2 0.68992 0.44531 0.35659 0.38259 +LexRank 0.35659 0.11719 0.16279 0.13061 +TextRank 0.34884 0.14844 0.17054 0.15303 +Luhn 0.34884 0.125 0.1938 0.14248 +ICSI 0.51938 0.23438 0.22481 0.20712 +03874bc15c8bca9624547fb83147920fc5ed0949.json +UB1 0.41304 0.11111 0.15217 0.13077 +UB2 0.30435 0.13333 0.19565 0.10769 +LexRank 0.23913 0.08889 0.13043 0.07692 +TextRank 0.17391 0.0 0.08696 0.04231 +Luhn 0.08696 0.0 0.04348 0.01923 +ICSI 0.23913 0.08889 0.17391 0.06923 +1bb63476c810e0f8616b3f761a40dfd19f7dc681.json +UB1 0.24138 0.0 0.13793 0.05063 +UB2 0.2069 0.10714 0.13793 0.07595 +LexRank 0.06897 0.0 0.06897 0.01266 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.13793 0.0 0.10345 0.02532 +71eef64c03b0f86c779f6fa8222c369e20677fcb.json +UB1 0.60465 0.2619 0.34884 0.30165 +UB2 0.5814 0.2619 0.32558 0.28512 +LexRank 0.32558 0.07143 0.18605 0.08264 +TextRank 0.27907 0.04762 0.16279 0.09917 +Luhn 0.27907 0.04762 0.16279 0.09917 +ICSI 0.30233 0.02381 0.2093 0.09917 +6000e0c4982b279aaca82a13346abc2f3ff412d1.json +UB1 0.54839 0.19672 0.3871 0.20506 +UB2 0.43548 0.2459 0.29032 0.17135 +LexRank 0.19355 0.04918 0.12903 0.03933 +TextRank 0.09677 0.0 0.06452 0.01685 +Luhn 0.25806 0.08197 0.19355 0.08427 +ICSI 0.3871 0.14754 0.25806 0.13483 +18aff6cd60792e301eb8e80cfbf9835cdcc51f68.json +UB1 0.34286 0.11765 0.2 0.11856 +UB2 0.25714 0.08824 0.17143 0.09794 +LexRank 0.11429 0.0 0.08571 0.02062 +TextRank 0.02857 0.0 0.02857 0.00515 +Luhn 0.22857 0.08824 0.2 0.07216 +ICSI 0.11429 0.0 0.08571 0.02062 +6446e106b73318c6237334c15ec0b9756183e003.json +UB1 0.19048 0.0 0.14286 0.04545 +UB2 0.14286 0.05 0.14286 0.03636 +LexRank 0.09524 0.0 0.09524 0.01818 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +1f4d9306b6184f4b5cff7f7b97f25a662550dc7b.json +UB1 0.43902 0.2 0.2439 0.21739 +UB2 0.46341 0.225 0.29268 0.21739 +LexRank 0.17073 0.025 0.12195 0.03478 +TextRank 0.12195 0.0 0.07317 0.02174 +Luhn 0.09756 0.0 0.04878 0.01739 +ICSI 0.09756 0.025 0.07317 0.02174 +5d26d8c609281dfc187ee7ff2b6f74d716a13791.json +UB1 0.38095 0.12195 0.28571 0.12712 +UB2 0.2619 0.12195 0.14286 0.0678 +LexRank 0.19048 0.02439 0.14286 0.05932 +TextRank 0.07143 0.0 0.07143 0.01695 +Luhn 0.07143 0.0 0.07143 0.01695 +ICSI 0.21429 0.07317 0.09524 0.05508 +48abfd79d303e19a79674e99c9df0252dbe97d99.json +UB1 0.41667 0.17391 0.20833 0.15625 +UB2 0.33333 0.17391 0.20833 0.14062 +LexRank 0.08333 0.0 0.08333 0.01562 +TextRank 0.08333 0.0 0.04167 0.01562 +Luhn 0.08333 0.0 0.04167 0.01562 +ICSI 0.125 0.0 0.08333 0.02344 +7757452c1fd7d6ff64a0b942ba8ae82d19df13c1.json +UB1 0.23333 0.0 0.06667 0.03659 +UB2 0.3 0.10345 0.26667 0.10366 +LexRank 0.06667 0.0 0.03333 0.0122 +TextRank 0.03333 0.0 0.03333 0.0 +Luhn 0.06667 0.0 0.06667 0.0122 +ICSI 0.16667 0.0 0.13333 0.03659 +64acfec626e44c71198c18865eb6ab7f67b00e2e.json +UB1 0.55696 0.35897 0.25316 0.29039 +UB2 0.56962 0.39744 0.31646 0.35153 +LexRank 0.34177 0.16667 0.24051 0.17467 +TextRank 0.25316 0.11538 0.21519 0.12882 +Luhn 0.25316 0.11538 0.21519 0.12882 +ICSI 0.49367 0.33333 0.37975 0.29039 +77ab0d9ac95fabc565081abf25f65916384c156f.json +UB1 0.52727 0.24074 0.29091 0.20382 +UB2 0.43636 0.27778 0.30909 0.20382 +LexRank 0.18182 0.01852 0.09091 0.0414 +TextRank 0.03636 0.0 0.03636 0.00637 +Luhn 0.09091 0.0 0.05455 0.01592 +ICSI 0.36364 0.18519 0.14545 0.13057 +77ff35d7be94c2ced67ef622130162faa70eb0da.json +UB1 0.60976 0.35 0.41463 0.39565 +UB2 0.56098 0.375 0.41463 0.3913 +LexRank 0.09756 0.0 0.09756 0.03043 +TextRank 0.12195 0.0 0.07317 0.03913 +Luhn 0.07317 0.0 0.07317 0.02609 +ICSI 0.4878 0.325 0.43902 0.35217 +614b3ad6d87342b53bb0d94dbb54b7294c5a05f3.json +UB1 0.5 0.18519 0.17857 0.20395 +UB2 0.5 0.33333 0.35714 0.27632 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.07143 0.0 0.07143 0.01974 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.10714 0.0 0.07143 0.02632 +35b8b598073008a9d38cb09a3675e02ce1e8c193.json +UB1 0.43137 0.2 0.33333 0.1931 +UB2 0.43137 0.2 0.33333 0.1931 +LexRank 0.15686 0.0 0.07843 0.03448 +TextRank 0.03922 0.0 0.03922 0.0069 +Luhn 0.09804 0.0 0.05882 0.01724 +ICSI 0.17647 0.04 0.09804 0.04138 +414934d9c168a7cbdedb5406c5acfea728667568.json +UB1 0.5122 0.15 0.34146 0.17826 +UB2 0.34146 0.2 0.14634 0.13478 +LexRank 0.12195 0.0 0.07317 0.02174 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.14634 0.0 0.09756 0.03043 +2835b851c81c3c3f41ad2b4db04cd017fb6f7c02.json +UB1 0.45455 0.09375 0.15152 0.11538 +UB2 0.33333 0.125 0.12121 0.09341 +LexRank 0.06061 0.0 0.06061 0.01099 +TextRank 0.0303 0.0 0.0303 0.00549 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.12121 0.0 0.09091 0.02747 +359fc82750a5c2d99a2115c566cd4ea0d3e3ab2d.json +UB1 0.31818 0.09302 0.20455 0.08871 +UB2 0.29545 0.11628 0.15909 0.09677 +LexRank 0.06818 0.0 0.04545 0.0121 +TextRank 0.18182 0.0 0.11364 0.02823 +Luhn 0.15909 0.04651 0.11364 0.04435 +ICSI 0.20455 0.0 0.09091 0.04032 +7c1d9a52b09b510ddd6f10d55be56dd02b3aeacc.json +UB1 0.48077 0.29412 0.28846 0.23986 +UB2 0.48077 0.29412 0.28846 0.23986 +LexRank 0.26923 0.05882 0.15385 0.07095 +TextRank 0.21154 0.05882 0.09615 0.0473 +Luhn 0.13462 0.0 0.07692 0.02703 +ICSI 0.26923 0.05882 0.13462 0.07095 +888640f59d9dad884bc4e0d9620847f35b5573f3.json +UB1 0.52632 0.22667 0.34211 0.26364 +UB2 0.52632 0.34667 0.30263 0.30455 +LexRank 0.18421 0.04 0.10526 0.04773 +TextRank 0.11842 0.0 0.07895 0.02955 +Luhn 0.11842 0.0 0.07895 0.02955 +ICSI 0.35526 0.09333 0.21053 0.12955 +877aff78a6d7774234cc20f888775219fa1bf13e.json +UB1 0.5493 0.14286 0.28169 0.17317 +UB2 0.46479 0.22857 0.30986 0.21463 +LexRank 0.1831 0.0 0.09859 0.03659 +TextRank 0.21127 0.01429 0.12676 0.04634 +Luhn 0.19718 0.04286 0.07042 0.04146 +ICSI 0.22535 0.0 0.08451 0.0439 +54bf78421975faa247d49a196841958e30d94cb5.json +UB1 0.5 0.13793 0.16667 0.17073 +UB2 0.4 0.2069 0.13333 0.16463 +LexRank 0.16667 0.03448 0.13333 0.04268 +TextRank 0.1 0.0 0.06667 0.01829 +Luhn 0.13333 0.03448 0.1 0.03049 +ICSI 0.23333 0.10345 0.13333 0.08537 +7388536920f0aa3ffab6a0ee190d270a4de46927.json +UB1 0.62195 0.33333 0.41463 0.31092 +UB2 0.64634 0.35802 0.46341 0.32773 +LexRank 0.35366 0.11111 0.23171 0.10924 +TextRank 0.36585 0.14815 0.28049 0.13866 +Luhn 0.36585 0.06173 0.19512 0.09244 +ICSI 0.31707 0.08642 0.17073 0.09874 +28a6c427fd5fe01ae6c4e4aa2b86f85f0522b48c.json +UB1 0.61972 0.37143 0.30986 0.36098 +UB2 0.56338 0.34286 0.32394 0.34146 +LexRank 0.26761 0.07143 0.1831 0.10244 +TextRank 0.22535 0.04286 0.12676 0.08293 +Luhn 0.04225 0.0 0.04225 0.00732 +ICSI 0.25352 0.07143 0.12676 0.07805 +244dcb6c19827825565d8a17e56182012bb052b7.json +UB1 0.44118 0.09091 0.23529 0.17021 +UB2 0.35294 0.24242 0.20588 0.14362 +LexRank 0.08824 0.0 0.05882 0.01596 +TextRank 0.11765 0.0 0.08824 0.0266 +Luhn 0.14706 0.0303 0.11765 0.03723 +ICSI 0.05882 0.0 0.05882 0.01064 +7626f5096b67f6b95d58da696282fb3f3ce9d717.json +UB1 0.52941 0.14 0.2549 0.17241 +UB2 0.4902 0.2 0.29412 0.1931 +LexRank 0.35294 0.1 0.21569 0.12759 +TextRank 0.03922 0.0 0.03922 0.00345 +Luhn 0.09804 0.0 0.07843 0.01379 +ICSI 0.29412 0.1 0.21569 0.11724 +4bb065fb3b548cc2cba40d52a1dc142a14348bba.json +UB1 0.67391 0.44444 0.54348 0.44231 +UB2 0.63043 0.48889 0.41304 0.43077 +LexRank 0.5 0.31111 0.3913 0.27308 +TextRank 0.32609 0.15556 0.21739 0.15 +Luhn 0.5 0.31111 0.3913 0.27308 +ICSI 0.28261 0.15556 0.17391 0.13846 +2fdd23da5b386ea0c02aa53517da3b87de2416cd.json +UB1 0.60204 0.31959 0.2449 0.32168 +UB2 0.60204 0.37113 0.29592 0.37063 +LexRank 0.19388 0.05155 0.10204 0.05245 +TextRank 0.11224 0.01031 0.07143 0.02972 +Luhn 0.20408 0.01031 0.08163 0.04021 +ICSI 0.39796 0.16495 0.20408 0.16958 +4a0876be809754fa8ac12eba4179fe1a039c0fce.json +UB1 0.42373 0.13793 0.23729 0.13905 +UB2 0.40678 0.13793 0.23729 0.13018 +LexRank 0.18644 0.01724 0.13559 0.04438 +TextRank 0.05085 0.0 0.05085 0.01183 +Luhn 0.0678 0.01724 0.05085 0.01479 +ICSI 0.16949 0.03448 0.13559 0.04734 +42fe5f9f91dd7c7a03eefb4648e0f6d199783e5d.json +UB1 0.44 0.22449 0.2 0.20775 +UB2 0.36 0.2449 0.3 0.19718 +LexRank 0.28 0.10204 0.16 0.12324 +TextRank 0.2 0.10204 0.18 0.10915 +Luhn 0.2 0.10204 0.18 0.10915 +ICSI 0.24 0.10204 0.22 0.11972 +78b6901b405ba9f73bac14af0d3f7990b52f5e62.json +UB1 0.41818 0.07407 0.2 0.12739 +UB2 0.32727 0.09259 0.16364 0.11146 +LexRank 0.12727 0.01852 0.09091 0.02548 +TextRank 0.12727 0.0 0.05455 0.02229 +Luhn 0.12727 0.0 0.05455 0.02229 +ICSI 0.14545 0.01852 0.09091 0.02548 +30cdf83b7b0d603d0d684e17c87372281357207d.json +UB1 0.39474 0.10811 0.28947 0.15566 +UB2 0.34211 0.16216 0.34211 0.16038 +LexRank 0.10526 0.0 0.05263 0.0283 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.13158 0.0 0.10526 0.04245 +ICSI 0.07895 0.0 0.05263 0.01415 +58d8001aefc10ff5786b08bb664ab55998dedd6c.json +UB1 0.275 0.05128 0.2 0.08929 +UB2 0.225 0.07692 0.125 0.05357 +LexRank 0.05 0.0 0.05 0.00893 +TextRank 0.125 0.0 0.075 0.02232 +Luhn 0.025 0.0 0.025 0.00446 +ICSI 0.075 0.0 0.025 0.01339 +1aac1dd586d6df1c03723de467b6e9b39687805e.json +UB1 0.66667 0.5122 0.59524 0.48729 +UB2 0.64286 0.5122 0.59524 0.48305 +LexRank 0.19048 0.02439 0.09524 0.04237 +TextRank 0.2381 0.0 0.09524 0.06356 +Luhn 0.09524 0.0 0.04762 0.02119 +ICSI 0.19048 0.0 0.09524 0.0339 +584f1689bff38fa04da76b2f39de9f0da669ae22.json +UB1 0.76471 0.59701 0.30882 0.56633 +UB2 0.76471 0.59701 0.30882 0.56633 +LexRank 0.29412 0.04478 0.17647 0.08673 +TextRank 0.27941 0.07463 0.10294 0.07908 +Luhn 0.22059 0.02985 0.13235 0.07398 +ICSI 0.36765 0.1791 0.27941 0.15306 +78aa6721d46d3beecfd49a84c96b2954f9cad388.json +UB1 0.57692 0.39216 0.48077 0.3277 +UB2 0.53846 0.37255 0.48077 0.31757 +LexRank 0.19231 0.0 0.09615 0.05068 +TextRank 0.13462 0.01961 0.07692 0.03378 +Luhn 0.13462 0.01961 0.07692 0.03378 +ICSI 0.17308 0.0 0.13462 0.04054 +773f0b96f656203e4124be59067009ecc00fdce1.json +UB1 0.47458 0.24138 0.40678 0.22485 +UB2 0.45763 0.24138 0.40678 0.22189 +LexRank 0.10169 0.0 0.0678 0.02071 +TextRank 0.20339 0.03448 0.11864 0.04734 +Luhn 0.08475 0.0 0.05085 0.01479 +ICSI 0.16949 0.03448 0.11864 0.04438 +0f772cfbc8e6b51cb4bcd5d95697f559906943b0.json +UB1 0.55556 0.26923 0.25926 0.20548 +UB2 0.40741 0.15385 0.25926 0.14384 +LexRank 0.14815 0.0 0.11111 0.03425 +TextRank 0.11111 0.0 0.07407 0.0137 +Luhn 0.14815 0.0 0.07407 0.0274 +ICSI 0.11111 0.0 0.11111 0.02055 +02136a6f6004c5c39ba9520383399b6b745e2537.json +UB1 0.5102 0.14583 0.32653 0.19065 +UB2 0.38776 0.1875 0.2449 0.20144 +LexRank 0.20408 0.0625 0.12245 0.05396 +TextRank 0.08163 0.0 0.06122 0.01439 +Luhn 0.02041 0.0 0.02041 0.0036 +ICSI 0.22449 0.02083 0.10204 0.05036 +50153f1de52bb8d51f2d68e869ca455db177c789.json +UB1 0.5 0.19149 0.25 0.16912 +UB2 0.45833 0.23404 0.20833 0.16176 +LexRank 0.33333 0.12766 0.22917 0.09926 +TextRank 0.29167 0.08511 0.125 0.09191 +Luhn 0.29167 0.08511 0.125 0.09191 +ICSI 0.29167 0.12766 0.1875 0.11029 +22a91aad98007171d08821132e20538ba44f4bf9.json +UB1 0.57333 0.24324 0.4 0.26498 +UB2 0.52 0.25676 0.36 0.24194 +LexRank 0.33333 0.10811 0.24 0.13134 +TextRank 0.2 0.05405 0.13333 0.06221 +Luhn 0.16 0.01351 0.10667 0.03917 +ICSI 0.34667 0.13514 0.22667 0.13134 +4e0187aa9445e5465a626344849a461bf95def3f.json +UB1 0.52308 0.20312 0.27692 0.18984 +UB2 0.43077 0.21875 0.26154 0.17914 +LexRank 0.16923 0.03125 0.12308 0.04278 +TextRank 0.2 0.03125 0.12308 0.05615 +Luhn 0.23077 0.03125 0.13846 0.0508 +ICSI 0.43077 0.125 0.23077 0.14439 +3a8ef8e96c312bec97328b8ee187b92940b44fcf.json +UB1 0.71053 0.57333 0.64474 0.54773 +UB2 0.71053 0.57333 0.64474 0.54773 +LexRank 0.42105 0.24 0.30263 0.23182 +TextRank 0.22368 0.04 0.11842 0.05455 +Luhn 0.30263 0.09333 0.11842 0.10682 +ICSI 0.27632 0.04 0.14474 0.08409 +7de7eb0cba6ffb81289e1a219808dcebf3a46099.json +UB1 0.60606 0.15625 0.24242 0.23626 +UB2 0.54545 0.21875 0.24242 0.22527 +LexRank 0.15152 0.03125 0.09091 0.04396 +TextRank 0.18182 0.03125 0.18182 0.05495 +Luhn 0.12121 0.0 0.09091 0.03297 +ICSI 0.24242 0.03125 0.15152 0.05495 +82435a1b26f04dfc7cbfb26816269f84da65d056.json +UB1 0.64706 0.3125 0.35294 0.34884 +UB2 0.58824 0.3125 0.35294 0.32558 +LexRank 0.17647 0.0 0.11765 0.03488 +TextRank 0.11765 0.0 0.05882 0.01163 +Luhn 0.11765 0.0 0.11765 0.02326 +ICSI 0.17647 0.0625 0.17647 0.05814 +5235878e6e7b1834d0a6b0543b8cf49ac410e610.json +UB1 0.60606 0.375 0.45455 0.37363 +UB2 0.60606 0.4375 0.48485 0.39011 +LexRank 0.12121 0.0 0.09091 0.02198 +TextRank 0.0303 0.0 0.0303 0.00549 +Luhn 0.18182 0.0 0.06061 0.04396 +ICSI 0.12121 0.03125 0.09091 0.02747 +404282e108dde59643c7b98546649b20ee373371.json +UB1 0.46875 0.16129 0.3125 0.15909 +UB2 0.40625 0.22581 0.1875 0.13636 +LexRank 0.125 0.0 0.09375 0.02273 +TextRank 0.15625 0.0 0.09375 0.03409 +Luhn 0.09375 0.0 0.09375 0.02273 +ICSI 0.15625 0.03226 0.125 0.03409 +6b89623975f047a048ce6fdd23fb512532609010.json +UB1 0.575 0.15385 0.3 0.25446 +UB2 0.5 0.20513 0.45 0.27679 +LexRank 0.175 0.02564 0.125 0.04018 +TextRank 0.15 0.0 0.075 0.03571 +Luhn 0.2 0.0 0.1 0.04464 +ICSI 0.35 0.10256 0.25 0.12946 +7f01a5bf23f0683134013f1cf469c8a036430cf6.json +UB1 0.45283 0.19231 0.22642 0.16225 +UB2 0.33962 0.17308 0.15094 0.1457 +LexRank 0.15094 0.0 0.07547 0.0298 +TextRank 0.11321 0.0 0.09434 0.01987 +Luhn 0.24528 0.03846 0.15094 0.05298 +ICSI 0.24528 0.0 0.15094 0.0596 +86d4ce5dfe51046907df290aaf271c00355c811f.json +UB1 0.31707 0.15 0.19512 0.1087 +UB2 0.26829 0.125 0.12195 0.09565 +LexRank 0.17073 0.0 0.07317 0.03043 +TextRank 0.12195 0.0 0.07317 0.01739 +Luhn 0.17073 0.025 0.09756 0.03913 +ICSI 0.14634 0.0 0.04878 0.02609 +8b10d56b074d80d6f22edca9998a86d7a22a174c.json +UB1 0.53521 0.28571 0.35211 0.26829 +UB2 0.50704 0.31429 0.35211 0.2439 +LexRank 0.33803 0.1 0.15493 0.11951 +TextRank 0.08451 0.0 0.05634 0.01707 +Luhn 0.08451 0.0 0.05634 0.01707 +ICSI 0.32394 0.1 0.16901 0.10488 +4d678ce19d8cf1474fb93d73bf144590d3da74fc.json +UB1 0.54255 0.24731 0.17021 0.25 +UB2 0.48936 0.29032 0.28723 0.25365 +LexRank 0.17021 0.0 0.10638 0.03832 +TextRank 0.19149 0.05376 0.10638 0.05839 +Luhn 0.19149 0.01075 0.08511 0.04015 +ICSI 0.29787 0.07527 0.15957 0.10036 +7dd31a3dc49c040b1371386534c2eefbba826d22.json +UB1 0.3 0.10345 0.2 0.10976 +UB2 0.36667 0.17241 0.2 0.12805 +LexRank 0.1 0.0 0.06667 0.01829 +TextRank 0.06667 0.0 0.06667 0.0122 +Luhn 0.1 0.03448 0.06667 0.02439 +ICSI 0.06667 0.0 0.06667 0.0122 +5ce75725fbdfeaa898feec0fd9a12a45088f9872.json +UB1 0.51515 0.1875 0.30303 0.20879 +UB2 0.45455 0.28125 0.27273 0.24725 +LexRank 0.18182 0.0 0.12121 0.03297 +TextRank 0.24242 0.0625 0.15152 0.07692 +Luhn 0.24242 0.03125 0.15152 0.07143 +ICSI 0.27273 0.0625 0.18182 0.07692 +10bce4151e758e33448b026792985c7c3d33d4de.json +UB1 0.45455 0.2381 0.40909 0.14655 +UB2 0.09091 0.04762 0.09091 0.01724 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +41b3f046ca640f39c6851a4c18142022692de644.json +UB1 0.54167 0.26087 0.33333 0.17188 +UB2 0.45833 0.30435 0.33333 0.20312 +LexRank 0.04167 0.0 0.04167 0.00781 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.25 0.08696 0.125 0.08594 +70f9f63d725f2d8b8833c348b28c6374514d26ba.json +UB1 0.48485 0.15625 0.21212 0.15934 +UB2 0.36364 0.15625 0.24242 0.09341 +LexRank 0.09091 0.03125 0.06061 0.02198 +TextRank 0.12121 0.0 0.12121 0.02747 +Luhn 0.12121 0.0 0.12121 0.02747 +ICSI 0.27273 0.0625 0.12121 0.05495 +5544ab42ef128b54c7d81e6d3a59f22324b43962.json +UB1 0.57576 0.375 0.30303 0.28022 +UB2 0.57576 0.40625 0.36364 0.29121 +LexRank 0.12121 0.03125 0.09091 0.02747 +TextRank 0.09091 0.0 0.09091 0.02198 +Luhn 0.09091 0.0 0.09091 0.02198 +ICSI 0.12121 0.03125 0.06061 0.02747 +34edf2ab7173f2a5236af56b6033e0066a41bef8.json +UB1 0.55556 0.15909 0.28889 0.22835 +UB2 0.44444 0.25 0.26667 0.24016 +LexRank 0.33333 0.04545 0.15556 0.09843 +TextRank 0.35556 0.09091 0.22222 0.12205 +Luhn 0.26667 0.02273 0.13333 0.0748 +ICSI 0.31111 0.02273 0.15556 0.07087 +331164d61a433329ebbe5e8418bd75029330b67b.json +UB1 0.8 0.64407 0.58333 0.60756 +UB2 0.8 0.64407 0.58333 0.60756 +LexRank 0.45 0.35593 0.4 0.36047 +TextRank 0.26667 0.0678 0.18333 0.07849 +Luhn 0.21667 0.0 0.1 0.04651 +ICSI 0.3 0.05085 0.23333 0.10465 +5b7ff6252067fb4a7a54698244d8f1b64ce6fd43.json +UB1 0.6 0.42105 0.55 0.34615 +UB2 0.5 0.42105 0.5 0.28846 +LexRank 0.05 0.0 0.05 0.00962 +TextRank 0.15 0.0 0.1 0.02885 +Luhn 0.05 0.0 0.05 0.00962 +ICSI 0.3 0.26316 0.3 0.20192 +3dfc11538579aad8214a90bae5be06e2d5b09641.json +UB1 0.46429 0.11111 0.21429 0.15132 +UB2 0.39286 0.22222 0.35714 0.15789 +LexRank 0.25 0.03704 0.21429 0.09868 +TextRank 0.07143 0.0 0.07143 0.01316 +Luhn 0.03571 0.0 0.03571 0.00658 +ICSI 0.21429 0.0 0.10714 0.03289 +7a24016cd48f4b95064c0bb219361ff680316057.json +UB1 0.56098 0.35 0.4878 0.32174 +UB2 0.63415 0.4 0.43902 0.36522 +LexRank 0.12195 0.0 0.07317 0.01739 +TextRank 0.07317 0.0 0.07317 0.01304 +Luhn 0.09756 0.0 0.09756 0.01739 +ICSI 0.14634 0.0 0.09756 0.03478 +44a1e9f89ae64db49b4505087cf3534de8ee36a7.json +UB1 0.5 0.28 0.42308 0.25714 +UB2 0.34615 0.2 0.34615 0.17857 +LexRank 0.15385 0.08 0.15385 0.05714 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.03846 0.0 0.03846 0.00714 +ICSI 0.03846 0.0 0.03846 0.00714 +6f4365ff2d8f263d76c36a40e2b13d69baadbdce.json +UB1 0.46667 0.20339 0.36667 0.20349 +UB2 0.53333 0.23729 0.38333 0.23256 +LexRank 0.11667 0.0 0.06667 0.02326 +TextRank 0.13333 0.0 0.05 0.02616 +Luhn 0.23333 0.08475 0.13333 0.10465 +ICSI 0.15 0.0 0.06667 0.03198 +35080ebc20f64835c2edd16d54b3c2e5ac445ab7.json +UB1 0.55224 0.19697 0.31343 0.20725 +UB2 0.55224 0.24242 0.29851 0.22798 +LexRank 0.13433 0.01515 0.07463 0.02591 +TextRank 0.10448 0.0 0.07463 0.01813 +Luhn 0.0597 0.0 0.0597 0.01036 +ICSI 0.37313 0.10606 0.23881 0.13472 +4c0297c0d47a281fda9b1f08ab0e90b8e96e74a0.json +UB1 0.5625 0.19355 0.40625 0.25568 +UB2 0.4375 0.22581 0.25 0.1875 +LexRank 0.0625 0.0 0.0625 0.01136 +TextRank 0.03125 0.0 0.03125 0.00568 +Luhn 0.03125 0.0 0.03125 0.00568 +ICSI 0.375 0.12903 0.28125 0.14205 +245a55d97d9c0ba6e397a599d6888206eb5f308a.json +UB1 0.41379 0.14286 0.31034 0.18354 +UB2 0.37931 0.14286 0.31034 0.17722 +LexRank 0.06897 0.0 0.03448 0.01266 +TextRank 0.06897 0.0 0.03448 0.01266 +Luhn 0.10345 0.0 0.06897 0.02532 +ICSI 0.13793 0.0 0.06897 0.02532 +0130f24c0aca0b76109baec782b1e9baf2dea177.json +UB1 0.76 0.5102 0.42 0.44014 +UB2 0.76 0.53061 0.4 0.42958 +LexRank 0.24 0.04082 0.16 0.06338 +TextRank 0.2 0.0 0.14 0.04225 +Luhn 0.18 0.02041 0.1 0.04577 +ICSI 0.26 0.02041 0.12 0.05282 +8e6536c11ae6653aa78ce7c0fcc5e538bd233191.json +UB1 0.45833 0.17391 0.33333 0.22656 +UB2 0.45833 0.21739 0.33333 0.20312 +LexRank 0.125 0.0 0.08333 0.02344 +TextRank 0.04167 0.0 0.04167 0.00781 +Luhn 0.04167 0.0 0.04167 0.00781 +ICSI 0.33333 0.08696 0.33333 0.17969 +5630c08c3ae289c35200c623ba27bd882e9db989.json +UB1 0.5102 0.16667 0.26531 0.21223 +UB2 0.40816 0.22917 0.2449 0.18705 +LexRank 0.14286 0.0 0.10204 0.02878 +TextRank 0.02041 0.0 0.02041 0.0036 +Luhn 0.12245 0.0 0.10204 0.02878 +ICSI 0.10204 0.0 0.06122 0.01799 +444231ec0216b82e57a4e7fcedb38c10c3070801.json +UB1 0.45614 0.19643 0.24561 0.20859 +UB2 0.4386 0.28571 0.19298 0.20245 +LexRank 0.08772 0.0 0.07018 0.02147 +TextRank 0.03509 0.0 0.03509 0.00613 +Luhn 0.07018 0.0 0.03509 0.01227 +ICSI 0.15789 0.01786 0.08772 0.03988 +64f7dc163a3d8435430b0861adb127275a11c508.json +UB1 0.27027 0.0 0.10811 0.04854 +UB2 0.27027 0.13889 0.24324 0.09223 +LexRank 0.16216 0.0 0.08108 0.02913 +TextRank 0.08108 0.0 0.05405 0.01456 +Luhn 0.08108 0.0 0.08108 0.01456 +ICSI 0.08108 0.0 0.05405 0.01456 +2966034b51bc19a7d65c8ee1dd685b0b9cf9e5b0.json +UB1 0.44444 0.11429 0.16667 0.13 +UB2 0.33333 0.11429 0.13889 0.095 +LexRank 0.25 0.05714 0.13889 0.065 +TextRank 0.22222 0.02857 0.19444 0.08 +Luhn 0.16667 0.0 0.08333 0.035 +ICSI 0.11111 0.0 0.05556 0.02 +02ed6c463403dc28f135287894402c0a56009000.json +UB1 0.6 0.32911 0.25 0.27802 +UB2 0.625 0.41772 0.2125 0.33405 +LexRank 0.25 0.02532 0.1125 0.05819 +TextRank 0.2125 0.02532 0.1125 0.04741 +Luhn 0.2125 0.02532 0.1125 0.04741 +ICSI 0.3125 0.08861 0.1875 0.10776 +56509f142deceadc014a2db7926856bb06cd0b98.json +UB1 0.34884 0.14286 0.16279 0.13636 +UB2 0.37209 0.2381 0.16279 0.14876 +LexRank 0.09302 0.04762 0.09302 0.02893 +TextRank 0.2093 0.07143 0.16279 0.06612 +Luhn 0.2093 0.07143 0.16279 0.06612 +ICSI 0.2093 0.04762 0.13953 0.04545 +0fc8251d10deaf4365e61f97e00612b5c9662333.json +UB1 0.44872 0.22078 0.23077 0.19912 +UB2 0.41026 0.23377 0.21795 0.19469 +LexRank 0.16667 0.05195 0.08974 0.0531 +TextRank 0.11538 0.03896 0.05128 0.0354 +Luhn 0.11538 0.03896 0.05128 0.0354 +ICSI 0.26923 0.06494 0.12821 0.07743 +317d9e3dc49542786c3b68d00b8b048d64ffe12d.json +UB1 0.31579 0.05556 0.21053 0.07143 +UB2 0.26316 0.05556 0.21053 0.08163 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.05263 0.0 0.05263 0.0102 +07a38ea6d0f98cebf1717c0c0c814837471d3522.json +UB1 0.5625 0.16129 0.375 0.19318 +UB2 0.34375 0.16129 0.15625 0.11364 +LexRank 0.375 0.09677 0.25 0.14205 +TextRank 0.34375 0.09677 0.21875 0.11932 +Luhn 0.34375 0.09677 0.21875 0.11932 +ICSI 0.28125 0.06452 0.15625 0.09091 +7380c5313c317d4a6745808eb414dc8a0536d282.json +UB1 0.6875 0.34043 0.5 0.35662 +UB2 0.60417 0.3617 0.5 0.36029 +LexRank 0.08333 0.0 0.0625 0.01471 +TextRank 0.25 0.04255 0.10417 0.05882 +Luhn 0.125 0.02128 0.08333 0.02941 +ICSI 0.20833 0.08511 0.10417 0.07353 +0d21940cd2ef56d28535a5e40f9028b2603a4dc5.json +UB1 0.28571 0.04878 0.11905 0.06356 +UB2 0.07143 0.04878 0.07143 0.02119 +LexRank 0.07143 0.0 0.04762 0.01271 +TextRank 0.14286 0.0 0.09524 0.02119 +Luhn 0.14286 0.04878 0.11905 0.03814 +ICSI 0.14286 0.0 0.07143 0.02542 +3df0842fa8db7f549cee34dfc068163339301895.json +UB1 0.70588 0.53571 0.36471 0.52834 +UB2 0.70588 0.54762 0.29412 0.5081 +LexRank 0.27059 0.04762 0.11765 0.07692 +TextRank 0.29412 0.08333 0.17647 0.08704 +Luhn 0.29412 0.07143 0.14118 0.08502 +ICSI 0.27059 0.05952 0.09412 0.0749 +4b771d95cbee28ef2b72aa492d9469b9ed862146.json +UB1 0.4 0.13793 0.36667 0.11585 +UB2 0.3 0.2069 0.1 0.10366 +LexRank 0.16667 0.0 0.16667 0.03049 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.06667 0.0 0.03333 0.0122 +ICSI 0.1 0.0 0.1 0.01829 +8b36b6ea08a507b9e28cd00346ff8013c120cf40.json +UB1 0.22857 0.08824 0.11429 0.06186 +UB2 0.22857 0.11765 0.2 0.07216 +LexRank 0.02857 0.0 0.02857 0.00515 +TextRank 0.05714 0.0 0.05714 0.01031 +Luhn 0.08571 0.0 0.05714 0.01546 +ICSI 0.11429 0.02941 0.11429 0.02577 +5df36bba480c297ad3c8d17df32b92122cbf0a87.json +UB1 0.4625 0.1519 0.25 0.17026 +UB2 0.4625 0.1519 0.25 0.17026 +LexRank 0.225 0.03797 0.15 0.06897 +TextRank 0.2375 0.03797 0.1 0.05819 +Luhn 0.025 0.0 0.025 0.00431 +ICSI 0.225 0.03797 0.125 0.05603 +075cf7447d7634ba7e5be8f97a284da2667948f6.json +UB1 0.65116 0.47619 0.30233 0.39669 +UB2 0.62791 0.47619 0.30233 0.39669 +LexRank 0.16279 0.07143 0.16279 0.07025 +TextRank 0.02326 0.0 0.02326 0.00413 +Luhn 0.39535 0.07143 0.18605 0.11983 +ICSI 0.37209 0.14286 0.2093 0.14463 +5d037653cf162b35ab8d488c23a6cec1b47062c7.json +UB1 0.46429 0.18519 0.28571 0.19737 +UB2 0.42857 0.22222 0.32143 0.19079 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.10714 0.0 0.10714 0.01974 +Luhn 0.46429 0.18519 0.28571 0.19737 +ICSI 0.03571 0.0 0.03571 0.00658 +39815b6a915111b447becca54d54e927bd37904d.json +UB1 0.4359 0.13158 0.28205 0.13761 +UB2 0.41026 0.18421 0.25641 0.15138 +LexRank 0.12821 0.0 0.10256 0.03211 +TextRank 0.02564 0.0 0.02564 0.00459 +Luhn 0.02564 0.0 0.02564 0.00459 +ICSI 0.28205 0.05263 0.20513 0.08257 +88688061435071dc0481df41c76074f0a18a9a87.json +UB1 0.3913 0.08889 0.23913 0.13462 +UB2 0.28261 0.11111 0.21739 0.11154 +LexRank 0.06522 0.0 0.04348 0.01154 +TextRank 0.21739 0.0 0.1087 0.05 +Luhn 0.21739 0.0 0.1087 0.05 +ICSI 0.06522 0.0 0.06522 0.01154 +05c98061fb7f86eab709518dffa4e24def1b3437.json +UB1 0.5102 0.1875 0.22449 0.20144 +UB2 0.4898 0.20833 0.20408 0.18345 +LexRank 0.18367 0.02083 0.12245 0.04317 +TextRank 0.06122 0.0 0.04082 0.01079 +Luhn 0.06122 0.0 0.04082 0.01079 +ICSI 0.38776 0.04167 0.18367 0.10791 +8761f20834a9d8c0fc1f449f4004962a106ce7eb.json +UB1 0.50847 0.13793 0.23729 0.21893 +UB2 0.38983 0.2069 0.20339 0.16272 +LexRank 0.11864 0.0 0.05085 0.02367 +TextRank 0.11864 0.0 0.08475 0.02663 +Luhn 0.0678 0.0 0.0339 0.01183 +ICSI 0.10169 0.0 0.0678 0.01775 +260cbadf3d99c5f77be593a60f5cd4173cee5a62.json +UB1 0.48529 0.26866 0.27941 0.21684 +UB2 0.47059 0.26866 0.27941 0.21173 +LexRank 0.13235 0.0 0.08824 0.02806 +TextRank 0.16176 0.0 0.10294 0.03316 +Luhn 0.22059 0.04478 0.11765 0.05867 +ICSI 0.25 0.07463 0.14706 0.08163 +1331ff5bc64d8b1ae69b2c5b4fee9ca6b8c87aa1.json +UB1 0.43333 0.15254 0.23333 0.13663 +UB2 0.41667 0.18644 0.26667 0.16279 +LexRank 0.13333 0.0 0.1 0.02907 +TextRank 0.18333 0.0678 0.13333 0.05233 +Luhn 0.2 0.01695 0.13333 0.04942 +ICSI 0.3 0.0678 0.13333 0.10465 +8096789024a0f6413db2a65993e830e9cac25746.json +UB1 0.37736 0.05769 0.16981 0.09934 +UB2 0.30189 0.11538 0.15094 0.10265 +LexRank 0.20755 0.0 0.11321 0.04305 +TextRank 0.11321 0.0 0.09434 0.02318 +Luhn 0.11321 0.01923 0.07547 0.02318 +ICSI 0.20755 0.0 0.09434 0.03974 +044682c5c0ee244ca93e9e1645f2f82bfce07b8e.json +UB1 0.31579 0.07143 0.17544 0.09509 +UB2 0.33333 0.14286 0.21053 0.1227 +LexRank 0.10526 0.0 0.05263 0.02147 +TextRank 0.12281 0.01786 0.10526 0.03067 +Luhn 0.12281 0.01786 0.10526 0.02761 +ICSI 0.15789 0.01786 0.07018 0.03374 +382b2431b0579a5663be66613c27df0452bbf3c5.json +UB1 0.4 0.10345 0.16667 0.12805 +UB2 0.33333 0.17241 0.2 0.17073 +LexRank 0.16667 0.0 0.1 0.03049 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.1 0.0 0.03333 0.01829 +ICSI 0.1 0.0 0.03333 0.01829 +090300b3e2b9289f23cd004e8097d9e5fb796855.json +UB1 0.45 0.23077 0.275 0.23214 +UB2 0.45 0.25641 0.275 0.22321 +LexRank 0.125 0.0 0.075 0.03125 +TextRank 0.075 0.0 0.05 0.01339 +Luhn 0.15 0.0 0.075 0.02679 +ICSI 0.1 0.0 0.05 0.01786 +2acd2c11e33e0c9d91075a69c445c981086f0a87.json +UB1 0.34483 0.07143 0.17241 0.08228 +UB2 0.13793 0.03571 0.13793 0.0443 +LexRank 0.03448 0.0 0.03448 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.10345 0.0 0.06897 0.01899 +ICSI 0.2069 0.07143 0.17241 0.07595 +426273a2e14dd8fb7613d1fda4463665cb884072.json +UB1 0.42857 0.11111 0.32143 0.13158 +UB2 0.32143 0.14815 0.28571 0.09868 +LexRank 0.10714 0.03704 0.10714 0.03289 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.14286 0.03704 0.10714 0.03289 +3026c8cd20786d76179cea758dadfac6c0d941ac.json +UB1 0.72632 0.57447 0.67368 0.58664 +UB2 0.66316 0.54255 0.6 0.53069 +LexRank 0.31579 0.06383 0.14737 0.09206 +TextRank 0.2 0.0 0.10526 0.04693 +Luhn 0.30526 0.08511 0.18947 0.12635 +ICSI 0.38947 0.08511 0.18947 0.12816 +2111ea989f10641118f732a19bbd4a17a4051ae6.json +UB1 0.28205 0.10526 0.17949 0.08716 +UB2 0.25641 0.13158 0.15385 0.08257 +LexRank 0.07692 0.0 0.05128 0.01376 +TextRank 0.20513 0.0 0.10256 0.04587 +Luhn 0.15385 0.0 0.10256 0.03211 +ICSI 0.28205 0.05263 0.15385 0.06881 +5402f9438a9c163c7fb4526191eafa1da1b7c30e.json +UB1 0.44444 0.19231 0.2963 0.16438 +UB2 0.40741 0.19231 0.25926 0.15753 +LexRank 0.11111 0.0 0.11111 0.0274 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.14815 0.0 0.11111 0.03425 +ICSI 0.14815 0.0 0.14815 0.03425 +585aaa4238a91dcbdb39345baef4c472e2045979.json +UB1 0.56716 0.25758 0.29851 0.25389 +UB2 0.43284 0.25758 0.29851 0.20725 +LexRank 0.19403 0.04545 0.14925 0.05959 +TextRank 0.10448 0.0 0.0597 0.01554 +Luhn 0.34328 0.06061 0.19403 0.09585 +ICSI 0.37313 0.10606 0.25373 0.13212 +4a07a8eb43c547591d25cb3b91e643f698f45738.json +UB1 0.64865 0.5 0.51351 0.42233 +UB2 0.64865 0.5 0.51351 0.42233 +LexRank 0.18919 0.0 0.08108 0.04854 +TextRank 0.13514 0.08333 0.13514 0.0534 +Luhn 0.13514 0.08333 0.13514 0.0534 +ICSI 0.27027 0.19444 0.16216 0.14078 +562142ff50c699e238e0fa3527b195c88a1c8212.json +UB1 0.53947 0.17333 0.28947 0.20682 +UB2 0.46053 0.22667 0.23684 0.2 +LexRank 0.26316 0.05333 0.14474 0.07955 +TextRank 0.15789 0.01333 0.09211 0.04545 +Luhn 0.27632 0.04 0.15789 0.08636 +ICSI 0.26316 0.10667 0.14474 0.08636 +0b8e8cecb0a48cbc3e83505e4a1ee224209ee889.json +UB1 0.68269 0.31068 0.29808 0.29441 +UB2 0.76923 0.56311 0.52885 0.50658 +LexRank 0.64423 0.35922 0.32692 0.34375 +TextRank 0.14423 0.00971 0.06731 0.03783 +Luhn 0.36538 0.15534 0.17308 0.12993 +ICSI 0.55769 0.2233 0.26923 0.2352 +47fee30eea9fc391aed5fd1f9ee46124e9a81390.json +UB1 0.53333 0.31818 0.28889 0.25197 +UB2 0.53333 0.36364 0.28889 0.26378 +LexRank 0.17778 0.0 0.11111 0.03937 +TextRank 0.08889 0.0 0.08889 0.01575 +Luhn 0.2 0.04545 0.08889 0.05118 +ICSI 0.13333 0.0 0.08889 0.02362 +2299d679fcad09b7243ee56acba89f59d0ce0d7d.json +UB1 0.5 0.16 0.30769 0.17143 +UB2 0.46154 0.28 0.30769 0.28571 +LexRank 0.15385 0.04 0.11538 0.03571 +TextRank 0.19231 0.04 0.11538 0.04286 +Luhn 0.23077 0.12 0.15385 0.06429 +ICSI 0.23077 0.08 0.07692 0.05714 +15f1db3334674c06562509a50e1629e279d504e6.json +UB1 0.57692 0.32 0.46154 0.35714 +UB2 0.46154 0.32 0.42308 0.33571 +LexRank 0.07692 0.0 0.03846 0.01429 +TextRank 0.11538 0.0 0.11538 0.02143 +Luhn 0.11538 0.0 0.11538 0.02143 +ICSI 0.26923 0.0 0.19231 0.05 +19f6b95344e0fd978057baf8548d7800c4b575f5.json +UB1 0.8 0.5 0.48571 0.54639 +UB2 0.68571 0.52941 0.4 0.5 +LexRank 0.08571 0.0 0.08571 0.01546 +TextRank 0.05714 0.0 0.05714 0.01031 +Luhn 0.11429 0.0 0.11429 0.02577 +ICSI 0.11429 0.02941 0.08571 0.03608 +1cebc77f7b9388bef43dc486acf3d856a6adcd9b.json +UB1 0.37931 0.10526 0.22414 0.13554 +UB2 0.2931 0.17544 0.22414 0.14759 +LexRank 0.18966 0.0 0.10345 0.04819 +TextRank 0.18966 0.01754 0.13793 0.06024 +Luhn 0.22414 0.07018 0.12069 0.06928 +ICSI 0.31034 0.05263 0.15517 0.09639 +53771294688c8248920b29ba53f9f80530664532.json +UB1 0.73333 0.27586 0.5 0.36585 +UB2 0.66667 0.48276 0.56667 0.46341 +LexRank 0.2 0.03448 0.06667 0.04268 +TextRank 0.1 0.03448 0.1 0.02439 +Luhn 0.1 0.03448 0.1 0.02439 +ICSI 0.33333 0.10345 0.2 0.10976 +7b62a3116cd09dea1f79c978ffbc7fab588cf88f.json +UB1 0.62069 0.32143 0.31034 0.3038 +UB2 0.58621 0.35714 0.31034 0.3038 +LexRank 0.31034 0.10714 0.13793 0.10127 +TextRank 0.31034 0.10714 0.13793 0.10127 +Luhn 0.31034 0.10714 0.13793 0.10127 +ICSI 0.2069 0.07143 0.2069 0.10127 +81ec553ab10fa775174384c86c5b46d3e655ce7c.json +UB1 0.58974 0.23684 0.30769 0.25229 +UB2 0.5641 0.23684 0.30769 0.24771 +LexRank 0.15385 0.0 0.07692 0.02294 +TextRank 0.12821 0.0 0.07692 0.02752 +Luhn 0.25641 0.02632 0.17949 0.06422 +ICSI 0.35897 0.18421 0.23077 0.12385 +49885c4231721d551e0b71ea7aef3bf5b86069bf.json +UB1 0.4 0.17647 0.22857 0.13402 +UB2 0.34286 0.23529 0.31429 0.14948 +LexRank 0.2 0.0 0.11429 0.04124 +TextRank 0.14286 0.02941 0.11429 0.03608 +Luhn 0.31429 0.08824 0.11429 0.07732 +ICSI 0.22857 0.11765 0.17143 0.09794 +0c8aa0ae30f770ff4a6e7ceee9b48596b2d3da08.json +UB1 0.31579 0.16667 0.31579 0.11224 +UB2 0.26316 0.16667 0.26316 0.14286 +LexRank 0.10526 0.0 0.05263 0.02041 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.10526 0.0 0.10526 0.02041 +ICSI 0.0 0.0 0.0 0.0 +06a9ae5e4487f826dddb9ab89bee31ede8ddc19a.json +UB1 0.52727 0.16667 0.34545 0.19745 +UB2 0.4 0.22222 0.25455 0.16879 +LexRank 0.18182 0.0 0.10909 0.04777 +TextRank 0.14545 0.0 0.10909 0.03185 +Luhn 0.25455 0.05556 0.16364 0.08917 +ICSI 0.29091 0.09259 0.16364 0.09873 +06aa52191d94838e29ab19fb8ea9c27d505e8d4a.json +UB1 0.48387 0.17391 0.29032 0.1845 +UB2 0.45161 0.20652 0.30108 0.1845 +LexRank 0.21505 0.02174 0.11828 0.0572 +TextRank 0.1828 0.01087 0.08602 0.03506 +Luhn 0.15054 0.0 0.07527 0.02583 +ICSI 0.22581 0.02174 0.09677 0.04982 +79a6c2be76d27d5a6c29e296af95409656be790f.json +UB1 0.36364 0.09524 0.27273 0.11207 +UB2 0.31818 0.09524 0.27273 0.10345 +LexRank 0.04545 0.0 0.04545 0.00862 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09091 0.0 0.09091 0.02586 +ICSI 0.04545 0.0 0.04545 0.00862 +7afefb96d8d2683d3479d92bd8f290cff49a3c1b.json +UB1 0.64286 0.36585 0.45238 0.37288 +UB2 0.71429 0.43902 0.59524 0.40254 +LexRank 0.30952 0.04878 0.19048 0.07203 +TextRank 0.33333 0.04878 0.21429 0.08051 +Luhn 0.35714 0.04878 0.2619 0.08898 +ICSI 0.38095 0.02439 0.21429 0.08475 +55833f6c0157269d5cd1fdca240844a70937597f.json +UB1 0.63636 0.48148 0.47273 0.37898 +UB2 0.63636 0.48148 0.47273 0.37898 +LexRank 0.32727 0.18519 0.27273 0.14013 +TextRank 0.38182 0.2037 0.29091 0.17516 +Luhn 0.25455 0.11111 0.18182 0.09554 +ICSI 0.43636 0.24074 0.34545 0.23885 +32043e2a28475c7b52f38757f3a9c65babef3365.json +UB1 0.48148 0.15094 0.18519 0.17857 +UB2 0.40741 0.20755 0.22222 0.16558 +LexRank 0.12963 0.0 0.05556 0.02273 +TextRank 0.11111 0.0 0.07407 0.02273 +Luhn 0.12963 0.01887 0.07407 0.02273 +ICSI 0.22222 0.01887 0.12963 0.05519 +5d4525382c1a923a0bc501ab437bdc4a66c3c1de.json +UB1 0.42424 0.125 0.27273 0.14286 +UB2 0.30303 0.15625 0.27273 0.13736 +LexRank 0.09091 0.0 0.09091 0.01648 +TextRank 0.06061 0.0 0.06061 0.01648 +Luhn 0.09091 0.0 0.06061 0.01648 +ICSI 0.09091 0.0 0.06061 0.01648 +8ecad63bcf4e1fcb1479aaf821a3a8f3bb72069f.json +UB1 0.33333 0.07692 0.25926 0.10274 +UB2 0.22222 0.11538 0.18519 0.08219 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03704 0.0 0.03704 0.00685 +Luhn 0.11111 0.03846 0.11111 0.0274 +ICSI 0.0 0.0 0.0 0.0 +8353a91c5dcc218f8ec8b66f62ec955a328ba9df.json +UB1 0.49367 0.16667 0.17722 0.16157 +UB2 0.40506 0.19231 0.18987 0.16157 +LexRank 0.10127 0.0 0.05063 0.01965 +TextRank 0.16456 0.0641 0.13924 0.0655 +Luhn 0.16456 0.01282 0.10127 0.03712 +ICSI 0.35443 0.14103 0.17722 0.14192 +45440824c00c2a243c2e51507f2a96c8a22a8b52.json +UB1 0.62921 0.30682 0.26966 0.33205 +UB2 0.57303 0.35227 0.30337 0.33591 +LexRank 0.17978 0.01136 0.10112 0.03475 +TextRank 0.26966 0.03409 0.13483 0.06757 +Luhn 0.21348 0.01136 0.1236 0.04633 +ICSI 0.33708 0.07955 0.14607 0.08687 +13662ef677f2d1a0b9076b8018652377a27c7e50.json +UB1 0.56322 0.30233 0.24138 0.26087 +UB2 0.55172 0.2907 0.25287 0.24704 +LexRank 0.16092 0.02326 0.08046 0.03953 +TextRank 0.21839 0.01163 0.12644 0.04348 +Luhn 0.25287 0.03488 0.12644 0.06917 +ICSI 0.44828 0.17442 0.17241 0.19368 +2adb4c48df86c92108e58caebe9c3f9d38b4b28e.json +UB1 0.41463 0.175 0.2439 0.15217 +UB2 0.31707 0.175 0.26829 0.13913 +LexRank 0.19512 0.075 0.14634 0.07391 +TextRank 0.21951 0.025 0.09756 0.05652 +Luhn 0.14634 0.0 0.12195 0.03478 +ICSI 0.21951 0.075 0.19512 0.07391 +0825993c1acee3178d8cd1cdd61b0052439788fa.json +UB1 0.6 0.34177 0.475 0.30819 +UB2 0.5875 0.34177 0.475 0.30603 +LexRank 0.175 0.0 0.1125 0.03879 +TextRank 0.0875 0.0 0.075 0.01724 +Luhn 0.2 0.0 0.1 0.04095 +ICSI 0.25 0.03797 0.1375 0.06681 +2c867e3c58230db849a16792d42786cff8efacb1.json +UB1 0.39474 0.18919 0.21053 0.18868 +UB2 0.39474 0.27027 0.31579 0.21698 +LexRank 0.31579 0.05405 0.18421 0.08962 +TextRank 0.26316 0.08108 0.15789 0.07075 +Luhn 0.23684 0.05405 0.13158 0.07075 +ICSI 0.39474 0.13514 0.23684 0.16981 +4193e82cd110f4a4eca5408af5743bc28ea00ca2.json +UB1 0.48148 0.19231 0.2963 0.20548 +UB2 0.37037 0.26923 0.2963 0.18493 +LexRank 0.14815 0.0 0.03704 0.0274 +TextRank 0.18519 0.0 0.11111 0.03425 +Luhn 0.07407 0.0 0.07407 0.0137 +ICSI 0.07407 0.0 0.07407 0.0137 +0db9b2532832ff536da5abd75b37b2d88888b46d.json +UB1 0.48387 0.18033 0.33871 0.20225 +UB2 0.48387 0.31148 0.25806 0.25 +LexRank 0.25806 0.01639 0.1129 0.07022 +TextRank 0.12903 0.0 0.04839 0.02809 +Luhn 0.20968 0.06557 0.16129 0.08427 +ICSI 0.3871 0.16393 0.27419 0.15449 +24ce6f1ad7c1b28bb6bad05106701495a8e39282.json +UB1 0.57895 0.32432 0.34211 0.29717 +UB2 0.55263 0.32432 0.31579 0.2783 +LexRank 0.23684 0.02703 0.10526 0.04245 +TextRank 0.18421 0.0 0.07895 0.03302 +Luhn 0.18421 0.0 0.07895 0.03302 +ICSI 0.44737 0.27027 0.31579 0.21698 +55d179681732ebb4bcb3f9b0796ff143a2cdd96f.json +UB1 0.73913 0.47368 0.30435 0.41395 +UB2 0.72174 0.50877 0.36522 0.44659 +LexRank 0.26087 0.03509 0.09565 0.06083 +TextRank 0.27826 0.07895 0.14783 0.08309 +Luhn 0.34783 0.12281 0.16522 0.1365 +ICSI 0.51304 0.26316 0.22609 0.21958 +1ce396a18017b8ca6285be5463d0e215c5c39335.json +UB1 0.44898 0.22917 0.26531 0.22302 +UB2 0.44898 0.22917 0.26531 0.22302 +LexRank 0.14286 0.0 0.10204 0.02878 +TextRank 0.06122 0.0 0.04082 0.01079 +Luhn 0.08163 0.0 0.08163 0.01439 +ICSI 0.20408 0.0625 0.14286 0.05755 +70d302828b1217d6cca8bf6812d0da3096e66368.json +UB1 0.55357 0.25455 0.23214 0.225 +UB2 0.51786 0.25455 0.23214 0.21563 +LexRank 0.05357 0.0 0.05357 0.0125 +TextRank 0.10714 0.0 0.07143 0.02187 +Luhn 0.10714 0.0 0.07143 0.01875 +ICSI 0.14286 0.0 0.08929 0.025 +575efec9a6f934e278e0fa3865436d6338d90e9f.json +UB1 0.36 0.04082 0.2 0.10915 +UB2 0.12 0.02041 0.06 0.03873 +LexRank 0.14 0.0 0.08 0.02465 +TextRank 0.08 0.0 0.04 0.01408 +Luhn 0.1 0.0 0.06 0.02113 +ICSI 0.2 0.0 0.1 0.04225 +07b0ea0c0e467939a263e803a2bdb0a1356425d7.json +UB1 0.55814 0.30952 0.37209 0.26033 +UB2 0.4186 0.28571 0.39535 0.23554 +LexRank 0.2093 0.09524 0.13953 0.06612 +TextRank 0.30233 0.11905 0.2093 0.11157 +Luhn 0.30233 0.11905 0.23256 0.11983 +ICSI 0.18605 0.0 0.09302 0.03306 +22cc200a7f38a937e1bbfb69c87bb372fd740963.json +UB1 0.5 0.22581 0.40625 0.19886 +UB2 0.5 0.22581 0.40625 0.19886 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0625 0.0 0.03125 0.01136 +Luhn 0.15625 0.03226 0.125 0.03409 +ICSI 0.15625 0.03226 0.09375 0.02841 +1421335eb2d1c69cd492984ef3d44235b0c366c6.json +UB1 0.49123 0.17857 0.21053 0.19018 +UB2 0.50877 0.26786 0.26316 0.23006 +LexRank 0.14035 0.03571 0.10526 0.03988 +TextRank 0.33333 0.10714 0.17544 0.10429 +Luhn 0.15789 0.0 0.10526 0.03067 +ICSI 0.2807 0.03571 0.15789 0.07362 +8ae98980253d6ffcd5610be5156df3e2bced7aae.json +UB1 0.375 0.12766 0.27083 0.13971 +UB2 0.33333 0.12766 0.22917 0.12132 +LexRank 0.29167 0.06383 0.22917 0.10662 +TextRank 0.125 0.0 0.08333 0.02206 +Luhn 0.16667 0.0 0.10417 0.04044 +ICSI 0.1875 0.02128 0.10417 0.04044 +0fc7ed1b73eecfd833cb0453e51002c71539bef2.json +UB1 0.52 0.33784 0.4 0.32258 +UB2 0.53333 0.37838 0.4 0.33641 +LexRank 0.14667 0.0 0.08 0.02535 +TextRank 0.18667 0.02703 0.13333 0.04608 +Luhn 0.16 0.0 0.06667 0.02995 +ICSI 0.22667 0.01351 0.09333 0.05069 +17124d71cec31abb8c29ab0cf5f924142e8a945e.json +UB1 0.2 0.04167 0.16 0.05224 +UB2 0.12 0.04167 0.12 0.02985 +LexRank 0.04 0.0 0.04 0.00746 +TextRank 0.08 0.0 0.08 0.01493 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.16 0.0 0.08 0.02985 +8cb8a202fe49187d00f7b16bd305db135401a2b9.json +UB1 0.55556 0.25714 0.38889 0.26 +UB2 0.47222 0.31429 0.27778 0.24 +LexRank 0.19444 0.02857 0.13889 0.065 +TextRank 0.02778 0.0 0.02778 0.005 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.13889 0.0 0.11111 0.03 +073a1b58a14c1d2e01a1509dde4e5f45539e0b9e.json +UB1 0.37931 0.05263 0.2069 0.12048 +UB2 0.36207 0.17544 0.2069 0.14759 +LexRank 0.15517 0.0 0.10345 0.03313 +TextRank 0.24138 0.03509 0.13793 0.05422 +Luhn 0.06897 0.0 0.05172 0.01205 +ICSI 0.22414 0.0 0.12069 0.0512 +0d26780e7015348387e1a7b67164c632ca6625d0.json +UB1 0.27586 0.03571 0.17241 0.08228 +UB2 0.27586 0.07143 0.17241 0.10127 +LexRank 0.06897 0.03571 0.06897 0.01899 +TextRank 0.13793 0.03571 0.13793 0.03165 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.13793 0.03571 0.06897 0.03797 +37851740deeb972ab57e99f35a96903c87392558.json +UB1 0.47222 0.2 0.38889 0.22 +UB2 0.52778 0.25714 0.5 0.28 +LexRank 0.22222 0.02857 0.13889 0.045 +TextRank 0.05556 0.0 0.02778 0.01 +Luhn 0.13889 0.0 0.08333 0.025 +ICSI 0.30556 0.11429 0.22222 0.14 +38a2088d41cdce54b707c11280ba0a4569db0291.json +UB1 0.34211 0.10811 0.23684 0.13208 +UB2 0.34211 0.13514 0.34211 0.15566 +LexRank 0.31579 0.08108 0.26316 0.12264 +TextRank 0.05263 0.0 0.02632 0.00472 +Luhn 0.05263 0.0 0.02632 0.00472 +ICSI 0.26316 0.02703 0.15789 0.05189 +501b3ce5f6cbc0bc14f12e199344ec669ad71ee6.json +UB1 0.51786 0.10909 0.23214 0.1625 +UB2 0.44643 0.25455 0.23214 0.1625 +LexRank 0.28571 0.01818 0.19643 0.07812 +TextRank 0.07143 0.0 0.05357 0.0125 +Luhn 0.14286 0.0 0.08929 0.025 +ICSI 0.32143 0.03636 0.16071 0.10312 +60b208e7a3a685ff74d4f3f98aa7f93efe9606cb.json +UB1 0.69412 0.55952 0.35294 0.49595 +UB2 0.70588 0.57143 0.36471 0.50405 +LexRank 0.23529 0.0 0.10588 0.04453 +TextRank 0.15294 0.0 0.09412 0.02834 +Luhn 0.24706 0.03571 0.08235 0.0587 +ICSI 0.24706 0.03571 0.12941 0.06275 +24fc19edb6f49af2747784bacbaf9fa20165fa6e.json +UB1 0.5 0.14754 0.32258 0.18539 +UB2 0.45161 0.16393 0.29032 0.17978 +LexRank 0.24194 0.03279 0.14516 0.0618 +TextRank 0.22581 0.0 0.09677 0.05337 +Luhn 0.27419 0.01639 0.14516 0.06742 +ICSI 0.17742 0.01639 0.12903 0.04494 +2b0c91feb004f1f0f09ac5fd0f01cbc4532b55d0.json +UB1 0.51515 0.3125 0.30303 0.24176 +UB2 0.48485 0.3125 0.30303 0.25275 +LexRank 0.15152 0.03125 0.12121 0.03846 +TextRank 0.06061 0.0 0.0303 0.01099 +Luhn 0.06061 0.0 0.06061 0.01099 +ICSI 0.18182 0.0 0.12121 0.03846 +2c4bb1c65c55e669929b696971ccc8f52c7bcedc.json +UB1 0.55172 0.32143 0.31034 0.23418 +UB2 0.55172 0.32143 0.31034 0.23418 +LexRank 0.10345 0.0 0.03448 0.01899 +TextRank 0.13793 0.0 0.06897 0.02532 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.06897 0.0 0.06897 0.01266 +87bdcb5831781cbf9146b61deeb0178cb4ebb559.json +UB1 0.58108 0.23288 0.21622 0.24299 +UB2 0.52703 0.27397 0.17568 0.25701 +LexRank 0.2973 0.08219 0.16216 0.11449 +TextRank 0.16216 0.0 0.08108 0.02804 +Luhn 0.17568 0.0137 0.08108 0.03972 +ICSI 0.2027 0.0274 0.10811 0.0514 +8df4f3bc076a356aa00142bb3b07240ef6bab2c1.json +UB1 0.51818 0.13761 0.19091 0.17702 +UB2 0.47273 0.22936 0.22727 0.1941 +LexRank 0.17273 0.00917 0.08182 0.03882 +TextRank 0.14545 0.00917 0.1 0.0295 +Luhn 0.09091 0.0 0.05455 0.01398 +ICSI 0.3 0.07339 0.11818 0.09006 +49cbd0d5b8710b3e3e7337a5b3927df024e97f3a.json +UB1 0.40741 0.15385 0.22222 0.13014 +UB2 0.33333 0.15385 0.14815 0.08904 +LexRank 0.14815 0.0 0.11111 0.03425 +TextRank 0.07407 0.0 0.03704 0.0137 +Luhn 0.25926 0.07692 0.18519 0.08904 +ICSI 0.2963 0.03846 0.2963 0.09589 +646017c0daa5025c15796df21daeece6a14ca544.json +UB1 0.80556 0.65714 0.61111 0.635 +UB2 0.80556 0.68571 0.61111 0.595 +LexRank 0.58333 0.4 0.55556 0.375 +TextRank 0.61111 0.57143 0.61111 0.56 +Luhn 0.58333 0.4 0.55556 0.375 +ICSI 0.5 0.34286 0.25 0.295 +7584a4598ea69f0518349d11235a8a1ef0f1ec30.json +UB1 0.34783 0.11111 0.15217 0.11154 +UB2 0.34783 0.13333 0.19565 0.12308 +LexRank 0.06522 0.0 0.04348 0.01154 +TextRank 0.08696 0.0 0.06522 0.01538 +Luhn 0.08696 0.0 0.06522 0.01538 +ICSI 0.13043 0.0 0.06522 0.02308 +0f19b2c95c6fb20a6fd0c9d575ec5116ffdba9dd.json +UB1 0.47059 0.14 0.2549 0.14828 +UB2 0.4902 0.2 0.21569 0.18621 +LexRank 0.21569 0.06 0.09804 0.05517 +TextRank 0.07843 0.0 0.05882 0.01724 +Luhn 0.07843 0.0 0.05882 0.01724 +ICSI 0.15686 0.02 0.11765 0.04483 +5fc2aeb797602471e33522d38308b9009348941b.json +UB1 0.41791 0.16667 0.16418 0.14767 +UB2 0.44776 0.22727 0.26866 0.18135 +LexRank 0.23881 0.07576 0.13433 0.06995 +TextRank 0.0597 0.0 0.04478 0.01036 +Luhn 0.0597 0.0 0.04478 0.01036 +ICSI 0.28358 0.06061 0.16418 0.07513 +62c47b01691bab0a4df41cdd2efa7288c8b484e2.json +UB1 0.55556 0.25 0.24444 0.22835 +UB2 0.51111 0.27273 0.17778 0.25197 +LexRank 0.33333 0.11364 0.15556 0.12598 +TextRank 0.15556 0.0 0.08889 0.0315 +Luhn 0.15556 0.0 0.08889 0.0315 +ICSI 0.22222 0.04545 0.15556 0.05512 +2ca7590cbdd760e000069f99d878b74f10b558e0.json +UB1 0.45238 0.17073 0.33333 0.19915 +UB2 0.45238 0.17073 0.33333 0.19915 +LexRank 0.30952 0.04878 0.2381 0.09322 +TextRank 0.30952 0.04878 0.2381 0.09322 +Luhn 0.30952 0.04878 0.2381 0.09322 +ICSI 0.28571 0.04878 0.21429 0.09322 +51706324564bba8b5ee7b014b499442793234abc.json +UB1 0.38235 0.09091 0.17647 0.12766 +UB2 0.38235 0.18182 0.17647 0.14894 +LexRank 0.17647 0.0303 0.11765 0.05851 +TextRank 0.02941 0.0 0.02941 0.00532 +Luhn 0.29412 0.09091 0.17647 0.12766 +ICSI 0.26471 0.06061 0.17647 0.06383 +27954287156dd0a8c104282b750171b6e0ddb223.json +UB1 0.53571 0.22222 0.25 0.20395 +UB2 0.39286 0.22222 0.21429 0.17105 +LexRank 0.17857 0.07407 0.14286 0.06579 +TextRank 0.14286 0.07407 0.10714 0.04605 +Luhn 0.14286 0.03704 0.10714 0.05263 +ICSI 0.25 0.11111 0.25 0.09868 +0dd2c7f3b94e5992c5797da67a6edcec9cf84059.json +UB1 0.33929 0.07273 0.21429 0.10312 +UB2 0.21429 0.10909 0.17857 0.07812 +LexRank 0.17857 0.05455 0.16071 0.05937 +TextRank 0.17857 0.05455 0.14286 0.0625 +Luhn 0.16071 0.05455 0.14286 0.05625 +ICSI 0.03571 0.0 0.03571 0.00625 +8867344ae0af057e407f119f720222afa014592f.json +UB1 0.41379 0.17857 0.31034 0.13291 +UB2 0.17241 0.10714 0.17241 0.05696 +LexRank 0.03448 0.0 0.03448 0.00633 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +07359a3030a38fab559b35b8ad916c66180c7a3f.json +UB1 0.64935 0.23684 0.33766 0.23318 +UB2 0.5974 0.27632 0.33766 0.25785 +LexRank 0.09091 0.0 0.05195 0.0157 +TextRank 0.07792 0.0 0.05195 0.01345 +Luhn 0.12987 0.02632 0.09091 0.03587 +ICSI 0.25974 0.09211 0.18182 0.09417 +5b07bf4a49a441d1afe62089343ee5780af36c1b.json +UB1 0.60396 0.25 0.27723 0.25763 +UB2 0.62376 0.31 0.25743 0.28983 +LexRank 0.42574 0.16 0.16832 0.15763 +TextRank 0.35644 0.11 0.17822 0.14237 +Luhn 0.19802 0.02 0.08911 0.05424 +ICSI 0.43564 0.16 0.18812 0.18983 +26fbc2f7d0dffeef9c5f1c299885e73116e1cc1c.json +UB1 0.32075 0.07692 0.11321 0.09272 +UB2 0.28302 0.11538 0.15094 0.09272 +LexRank 0.15094 0.0 0.07547 0.0298 +TextRank 0.03774 0.0 0.03774 0.00662 +Luhn 0.11321 0.0 0.07547 0.02318 +ICSI 0.09434 0.0 0.03774 0.01987 +3fdb9ee60681f753a389f7a8b5c147258dbae3c0.json +UB1 0.46809 0.23913 0.23404 0.19925 +UB2 0.48936 0.28261 0.29787 0.21429 +LexRank 0.21277 0.0 0.14894 0.05639 +TextRank 0.19149 0.0 0.14894 0.05263 +Luhn 0.17021 0.02174 0.08511 0.04511 +ICSI 0.12766 0.0 0.04255 0.02256 +8737e6a18abf2be0110b9754905af0730fe40729.json +UB1 0.625 0.45161 0.4375 0.34091 +UB2 0.625 0.45161 0.4375 0.34091 +LexRank 0.09375 0.0 0.0625 0.01705 +TextRank 0.09375 0.0 0.0625 0.01705 +Luhn 0.375 0.12903 0.34375 0.13636 +ICSI 0.25 0.12903 0.25 0.10795 +15ecd868616703a30ef673632f1378494d4e1a3b.json +UB1 0.32143 0.07407 0.21429 0.08553 +UB2 0.21429 0.11111 0.14286 0.05921 +LexRank 0.10714 0.0 0.07143 0.01974 +TextRank 0.03571 0.0 0.03571 0.00658 +Luhn 0.10714 0.0 0.10714 0.01974 +ICSI 0.10714 0.0 0.07143 0.01974 +73b96f68c5c9de43a3e2061f3476c7256ff462d5.json +UB1 0.275 0.02564 0.15 0.08482 +UB2 0.25 0.05128 0.15 0.06696 +LexRank 0.2 0.0 0.125 0.05357 +TextRank 0.225 0.05128 0.15 0.07589 +Luhn 0.225 0.05128 0.15 0.07589 +ICSI 0.2 0.02564 0.1 0.05804 +5523f0fdc5139aa03ccada8546759af12fcf41b8.json +UB1 0.22222 0.0 0.11111 0.04348 +UB2 0.0 0.0 0.0 0.0 +LexRank 0.05556 0.0 0.05556 0.01087 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05556 0.0 0.05556 0.01087 +ICSI 0.11111 0.0 0.11111 0.02174 +413bf842381b892461d39176c0aa0d12a0813f09.json +UB1 0.45 0.15789 0.35 0.15385 +UB2 0.3 0.15789 0.25 0.08654 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05 0.0 0.05 0.00962 +ICSI 0.15 0.0 0.1 0.04808 +7d74334dbd1b7c1069bcaee5038f6c847681ff1e.json +UB1 0.61111 0.16901 0.26389 0.22356 +UB2 0.58333 0.28169 0.23611 0.26202 +LexRank 0.43056 0.11268 0.19444 0.14663 +TextRank 0.29167 0.02817 0.125 0.07212 +Luhn 0.45833 0.15493 0.30556 0.17548 +ICSI 0.375 0.07042 0.19444 0.1274 +1b0b576ccef91950bc811649a1d7011676b4ca0f.json +UB1 0.46154 0.15789 0.23077 0.15138 +UB2 0.35897 0.18421 0.20513 0.11468 +LexRank 0.10256 0.0 0.10256 0.01835 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05128 0.0 0.02564 0.00917 +ICSI 0.05128 0.0 0.02564 0.00917 +204e99b53bd1b069f371443cbb8452d5cbcd3026.json +UB1 0.66667 0.3 0.39216 0.36207 +UB2 0.58824 0.38 0.35294 0.37931 +LexRank 0.37255 0.14 0.21569 0.18276 +TextRank 0.31373 0.12 0.23529 0.18276 +Luhn 0.2549 0.02 0.13725 0.08276 +ICSI 0.31373 0.1 0.21569 0.13793 +4e91f404e7d21b5812723a154934ded167d52734.json +UB1 0.34146 0.1 0.17073 0.1 +UB2 0.26829 0.125 0.12195 0.07391 +LexRank 0.17073 0.075 0.09756 0.04783 +TextRank 0.04878 0.0 0.02439 0.0087 +Luhn 0.09756 0.025 0.04878 0.02174 +ICSI 0.14634 0.025 0.12195 0.03478 +191af244140ebb4c1ae87b0d33924dfb62f0a57f.json +UB1 0.39394 0.13846 0.19697 0.11842 +UB2 0.31818 0.13846 0.19697 0.10789 +LexRank 0.21212 0.06154 0.10606 0.06053 +TextRank 0.24242 0.03077 0.13636 0.06579 +Luhn 0.22727 0.04615 0.13636 0.05789 +ICSI 0.34848 0.04615 0.15152 0.08158 +80066b174527640dd1dbb74537856d4128f2a37b.json +UB1 0.66216 0.31507 0.43243 0.3715 +UB2 0.66216 0.41096 0.43243 0.38551 +LexRank 0.32432 0.0137 0.13514 0.0771 +TextRank 0.39189 0.13699 0.2973 0.16822 +Luhn 0.43243 0.10959 0.22973 0.15654 +ICSI 0.48649 0.19178 0.25676 0.19626 +490ac941a938fd9c5abc44c16a90392c9efdc081.json +UB1 0.52 0.22973 0.37333 0.23502 +UB2 0.54667 0.2973 0.36 0.30415 +LexRank 0.26667 0.04054 0.14667 0.07373 +TextRank 0.21333 0.08108 0.13333 0.07143 +Luhn 0.34667 0.12162 0.17333 0.12673 +ICSI 0.26667 0.06757 0.10667 0.06912 +4964e4d5053ed46fa63fb4bab38f565b7a760a00.json +UB1 0.54839 0.13333 0.32258 0.18824 +UB2 0.35484 0.16667 0.32258 0.14706 +LexRank 0.06452 0.0 0.03226 0.01176 +TextRank 0.09677 0.0 0.09677 0.01765 +Luhn 0.09677 0.0 0.09677 0.01765 +ICSI 0.29032 0.03333 0.19355 0.08824 +00a1bac63dae5d3fca514cbf94152d52b621df7a.json +UB1 0.4127 0.09677 0.25397 0.12707 +UB2 0.34921 0.12903 0.20635 0.11878 +LexRank 0.11111 0.0 0.07937 0.01934 +TextRank 0.04762 0.0 0.03175 0.00829 +Luhn 0.04762 0.0 0.03175 0.00829 +ICSI 0.1746 0.01613 0.11111 0.04144 +7b338edcd3f4fc21677b9c590677b805842a6a42.json +UB1 0.64706 0.4 0.37255 0.35517 +UB2 0.52941 0.36 0.41176 0.31379 +LexRank 0.35294 0.12 0.23529 0.11034 +TextRank 0.37255 0.1 0.19608 0.09655 +Luhn 0.23529 0.06 0.15686 0.06207 +ICSI 0.33333 0.1 0.21569 0.13448 +4a9b89d489ef5cb221f3432d43fca58275e964b8.json +UB1 0.47143 0.14493 0.3 0.16832 +UB2 0.45714 0.2029 0.28571 0.18069 +LexRank 0.17143 0.04348 0.08571 0.03713 +TextRank 0.08571 0.0 0.05714 0.01485 +Luhn 0.15714 0.07246 0.11429 0.07426 +ICSI 0.25714 0.08696 0.15714 0.09406 +390c7baf48f59a7a9df8f839db06a6ac531f7b5a.json +UB1 0.36667 0.06897 0.2 0.09146 +UB2 0.3 0.10345 0.2 0.08537 +LexRank 0.03333 0.0 0.03333 0.0061 +TextRank 0.13333 0.0 0.1 0.03049 +Luhn 0.13333 0.0 0.06667 0.01829 +ICSI 0.1 0.0 0.1 0.01829 +16c201f3faaf8d3530b84ba5aa60d5c4ba18ee52.json +UB1 0.60465 0.2619 0.25581 0.21488 +UB2 0.5814 0.30952 0.23256 0.26446 +LexRank 0.04651 0.0 0.04651 0.00826 +TextRank 0.27907 0.07143 0.23256 0.07851 +Luhn 0.11628 0.02381 0.09302 0.03306 +ICSI 0.44186 0.16667 0.2093 0.11983 +315454d68ab8adcd4dd33c1331056ff721c443a0.json +UB1 0.6338 0.28571 0.32394 0.35122 +UB2 0.6338 0.38571 0.25352 0.37805 +LexRank 0.25352 0.01429 0.11268 0.05854 +TextRank 0.12676 0.0 0.05634 0.02195 +Luhn 0.22535 0.02857 0.14085 0.05366 +ICSI 0.35211 0.1 0.21127 0.13171 +5fef4433b2aa6df2846f53649c829b4ba97b2c39.json +UB1 0.35385 0.04688 0.16923 0.10695 +UB2 0.29231 0.125 0.16923 0.13904 +LexRank 0.15385 0.0 0.10769 0.03743 +TextRank 0.15385 0.0 0.09231 0.03476 +Luhn 0.12308 0.0 0.07692 0.02674 +ICSI 0.2 0.0 0.10769 0.03476 +3272cda09ceab89085cf1eedaf28b597f3a201a3.json +UB1 0.51852 0.34615 0.51852 0.29452 +UB2 0.51852 0.34615 0.51852 0.29452 +LexRank 0.11111 0.0 0.07407 0.02055 +TextRank 0.07407 0.0 0.07407 0.0137 +Luhn 0.07407 0.0 0.03704 0.0137 +ICSI 0.11111 0.0 0.07407 0.02055 +8d3b5c16c51285be7390db20d1b0e888c158a2b6.json +UB1 0.49412 0.19048 0.14118 0.17409 +UB2 0.48235 0.2381 0.21176 0.2004 +LexRank 0.24706 0.04762 0.11765 0.0668 +TextRank 0.14118 0.0 0.10588 0.02632 +Luhn 0.29412 0.11905 0.12941 0.11134 +ICSI 0.27059 0.03571 0.17647 0.07287 +54e56c836722412b9b09dfdc344bb6e34beeac5c.json +UB1 0.38889 0.17143 0.13889 0.12 +UB2 0.33333 0.2 0.27778 0.13 +LexRank 0.16667 0.02857 0.13889 0.05 +TextRank 0.11111 0.0 0.05556 0.025 +Luhn 0.05556 0.0 0.02778 0.01 +ICSI 0.16667 0.0 0.08333 0.03 +0d1500aed63e86cd7bafb30f8af85f64ff3fe360.json +UB1 0.48077 0.27451 0.30769 0.26689 +UB2 0.48077 0.27451 0.30769 0.26689 +LexRank 0.19231 0.01961 0.13462 0.04392 +TextRank 0.21154 0.01961 0.13462 0.0473 +Luhn 0.15385 0.07843 0.13462 0.06081 +ICSI 0.21154 0.03922 0.09615 0.0473 +39d5b3d8e81030ca36a490e0f2fe59ac43b5ba6e.json +UB1 0.33333 0.13793 0.26667 0.10366 +UB2 0.3 0.13793 0.2 0.14634 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.03333 0.0 0.03333 0.0061 +ICSI 0.16667 0.03448 0.1 0.03659 +55d1c684fee1adc8ac3f8b278e7e68292afd5579.json +UB1 0.5625 0.22222 0.35938 0.23641 +UB2 0.39062 0.20635 0.23438 0.18207 +LexRank 0.09375 0.01587 0.0625 0.01902 +TextRank 0.14062 0.01587 0.07812 0.02717 +Luhn 0.17188 0.01587 0.125 0.03804 +ICSI 0.15625 0.01587 0.07812 0.02989 +34b1743fbb8d507feee17267d812dd74f07af9b4.json +UB1 0.4375 0.06452 0.1875 0.125 +UB2 0.375 0.16129 0.25 0.15909 +LexRank 0.1875 0.0 0.09375 0.03977 +TextRank 0.0625 0.0 0.03125 0.00568 +Luhn 0.125 0.0 0.09375 0.02841 +ICSI 0.3125 0.03226 0.15625 0.07955 +2770c977ec1fe458ec87f7b5998c84bc54e2955d.json +UB1 0.42857 0.19512 0.2619 0.18644 +UB2 0.40476 0.2439 0.28571 0.19492 +LexRank 0.11905 0.02439 0.04762 0.02966 +TextRank 0.07143 0.0 0.04762 0.01271 +Luhn 0.09524 0.0 0.04762 0.02119 +ICSI 0.02381 0.0 0.02381 0.00424 +6b0745dc8df133d7c4e1ab1323e80d09e16fd99b.json +UB1 0.54054 0.11111 0.21622 0.12136 +UB2 0.43243 0.27778 0.21622 0.15534 +LexRank 0.21622 0.05556 0.13514 0.0534 +TextRank 0.27027 0.02778 0.16216 0.05825 +Luhn 0.18919 0.05556 0.13514 0.0534 +ICSI 0.35135 0.16667 0.21622 0.10194 +2944f4ff303018e34e52285c2e6dffa924e86def.json +UB1 0.3871 0.16667 0.32258 0.21176 +UB2 0.35484 0.16667 0.32258 0.21176 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03226 0.0 0.03226 0.00588 +Luhn 0.03226 0.0 0.03226 0.00588 +ICSI 0.06452 0.0 0.03226 0.01176 +2286f8f5aa528977b61d8208d181dcc97b2bd8b1.json +UB1 0.32258 0.06667 0.16129 0.07647 +UB2 0.3871 0.16667 0.19355 0.12941 +LexRank 0.03226 0.0 0.03226 0.00588 +TextRank 0.06452 0.0 0.03226 0.00588 +Luhn 0.09677 0.0 0.03226 0.01765 +ICSI 0.09677 0.0 0.06452 0.01765 +60b233b8b1d870148a0297aec24978c1f0729dd8.json +UB1 0.47368 0.16216 0.23684 0.16981 +UB2 0.39474 0.16216 0.21053 0.13208 +LexRank 0.13158 0.0 0.05263 0.02358 +TextRank 0.05263 0.0 0.05263 0.00943 +Luhn 0.05263 0.0 0.05263 0.00943 +ICSI 0.10526 0.0 0.05263 0.01887 +00ac5437a4880d0a7ce0b4ec9210b219cb0ca995.json +UB1 0.45455 0.13953 0.15909 0.14516 +UB2 0.34091 0.16279 0.25 0.15323 +LexRank 0.18182 0.0 0.06818 0.03629 +TextRank 0.18182 0.0 0.09091 0.04032 +Luhn 0.18182 0.0 0.09091 0.04032 +ICSI 0.22727 0.06977 0.15909 0.07661 +5a10a9c6541c5876ea7934967071a922c7bc60c4.json +UB1 0.33333 0.18421 0.20513 0.15138 +UB2 0.38462 0.21053 0.23077 0.16055 +LexRank 0.28205 0.18421 0.17949 0.12385 +TextRank 0.02564 0.0 0.02564 0.00459 +Luhn 0.10256 0.0 0.07692 0.01835 +ICSI 0.10256 0.0 0.07692 0.01835 +15d2417dcfdb334f9c717f7dd67190c91b1e69f7.json +UB1 0.52083 0.31915 0.35417 0.27206 +UB2 0.52083 0.31915 0.35417 0.27206 +LexRank 0.22917 0.06383 0.125 0.06985 +TextRank 0.25 0.12766 0.20833 0.11397 +Luhn 0.10417 0.02128 0.04167 0.02206 +ICSI 0.3125 0.14894 0.25 0.16912 +313feac231410b790d065f1b8674f249815f13bd.json +UB1 0.37143 0.08824 0.2 0.12371 +UB2 0.31429 0.14706 0.11429 0.10825 +LexRank 0.14286 0.0 0.05714 0.02062 +TextRank 0.14286 0.0 0.08571 0.03093 +Luhn 0.14286 0.0 0.11429 0.02577 +ICSI 0.08571 0.0 0.08571 0.02062 +5cadc2642cbc609aa5a19a57e2d530226e6d8558.json +UB1 0.32432 0.13889 0.18919 0.10194 +UB2 0.21622 0.13889 0.18919 0.12621 +LexRank 0.08108 0.0 0.08108 0.01942 +TextRank 0.05405 0.0 0.05405 0.00971 +Luhn 0.05405 0.0 0.05405 0.00971 +ICSI 0.08108 0.0 0.05405 0.01456 +4327402d6b145e3293ccd102e259af648c021e0b.json +UB1 0.43902 0.15 0.29268 0.14348 +UB2 0.4878 0.2 0.39024 0.17391 +LexRank 0.2439 0.075 0.14634 0.07826 +TextRank 0.12195 0.0 0.09756 0.02609 +Luhn 0.12195 0.0 0.09756 0.02609 +ICSI 0.14634 0.05 0.12195 0.03478 +7aa49b230988ff7f3c7b70ced72b8a0680f27d96.json +UB1 0.51724 0.21429 0.37931 0.18354 +UB2 0.34483 0.14286 0.34483 0.13291 +LexRank 0.03448 0.0 0.03448 0.00633 +TextRank 0.2069 0.03571 0.17241 0.07595 +Luhn 0.13793 0.0 0.06897 0.03165 +ICSI 0.17241 0.03571 0.13793 0.05063 +4fb3f58e3699e37d8bc0e6a735c1664ab0def2b1.json +UB1 0.35897 0.10526 0.25641 0.11009 +UB2 0.30769 0.18421 0.20513 0.12844 +LexRank 0.33333 0.13158 0.20513 0.12385 +TextRank 0.12821 0.0 0.10256 0.02294 +Luhn 0.10256 0.0 0.07692 0.01835 +ICSI 0.15385 0.0 0.07692 0.02752 +89ef43e23128e46d49f408ef47805e554e36fce0.json +UB1 0.6 0.35897 0.425 0.29911 +UB2 0.6 0.35897 0.425 0.29911 +LexRank 0.175 0.07692 0.075 0.04911 +TextRank 0.125 0.0 0.1 0.02679 +Luhn 0.2 0.05128 0.075 0.04464 +ICSI 0.35 0.20513 0.3 0.1875 +422426f13a454db568a635411323f468de52e2c3.json +UB1 0.6625 0.26582 0.2625 0.31681 +UB2 0.6125 0.34177 0.2625 0.29957 +LexRank 0.3125 0.06329 0.1875 0.10345 +TextRank 0.25 0.06329 0.175 0.07328 +Luhn 0.2375 0.02532 0.1125 0.05819 +ICSI 0.475 0.16456 0.225 0.18319 +5fba5270d16301ec5bd646ece1d4b065ae2b8b56.json +UB1 0.37931 0.07143 0.27586 0.10127 +UB2 0.27586 0.14286 0.17241 0.07595 +LexRank 0.24138 0.03571 0.17241 0.06962 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.13793 0.0 0.10345 0.02532 +19dfd60ee8517a47ff534d53c22366c5144705a5.json +UB1 0.5 0.22449 0.24 0.2007 +UB2 0.44 0.30612 0.24 0.25 +LexRank 0.06 0.02041 0.06 0.01408 +TextRank 0.04 0.0 0.04 0.01056 +Luhn 0.2 0.10204 0.14 0.09507 +ICSI 0.38 0.16327 0.2 0.14085 +1bc1d78a1381393b301a1def777c6189df8a6b02.json +UB1 0.55263 0.16216 0.34211 0.21226 +UB2 0.44737 0.27027 0.31579 0.20283 +LexRank 0.39474 0.13514 0.23684 0.15094 +TextRank 0.23684 0.0 0.15789 0.06132 +Luhn 0.21053 0.0 0.15789 0.04717 +ICSI 0.39474 0.18919 0.31579 0.14151 +757ddca2d5ee98a4eb72beb27cb4a42d31f00827.json +UB1 0.4 0.02941 0.25714 0.12371 +UB2 0.2 0.05882 0.14286 0.04639 +LexRank 0.08571 0.0 0.05714 0.02062 +TextRank 0.08571 0.0 0.08571 0.02062 +Luhn 0.14286 0.0 0.08571 0.03093 +ICSI 0.11429 0.0 0.08571 0.02062 +29df01395f037fd4d21a2c9151170ea15d0482f8.json +UB1 0.33333 0.07692 0.14815 0.08904 +UB2 0.18519 0.07692 0.11111 0.04795 +LexRank 0.07407 0.0 0.03704 0.0137 +TextRank 0.03704 0.0 0.03704 0.00685 +Luhn 0.11111 0.0 0.11111 0.0274 +ICSI 0.07407 0.0 0.03704 0.0137 +507d6758e5561abef58159f5898f20c761da62d8.json +UB1 0.41379 0.14286 0.24138 0.10759 +UB2 0.34483 0.17857 0.27586 0.09494 +LexRank 0.13793 0.03571 0.13793 0.03797 +TextRank 0.03448 0.0 0.03448 0.00633 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.10345 0.0 0.06897 0.01899 +21e64005b1aff609b13978fd6527ac35c7a47bdf.json +UB1 0.38235 0.21212 0.20588 0.12234 +UB2 0.35294 0.21212 0.20588 0.11702 +LexRank 0.20588 0.0303 0.14706 0.04255 +TextRank 0.29412 0.12121 0.26471 0.09574 +Luhn 0.29412 0.12121 0.26471 0.09574 +ICSI 0.29412 0.12121 0.17647 0.09043 +64afa7b3afb9b8f9e440170895e71d335c41d925.json +UB1 0.625 0.35632 0.28409 0.29102 +UB2 0.60227 0.41379 0.46591 0.33203 +LexRank 0.29545 0.11494 0.18182 0.14453 +TextRank 0.28409 0.09195 0.21591 0.12305 +Luhn 0.29545 0.12644 0.19318 0.14062 +ICSI 0.35227 0.18391 0.21591 0.17578 +17070c311e401dcc9250a158c0d9228ccddeadb8.json +UB1 0.36 0.06757 0.21333 0.09908 +UB2 0.36 0.16216 0.18667 0.13134 +LexRank 0.22667 0.06757 0.17333 0.07143 +TextRank 0.17333 0.01351 0.09333 0.03687 +Luhn 0.21333 0.04054 0.09333 0.05991 +ICSI 0.21333 0.02703 0.06667 0.0553 +11277a844a23c2b18bf056a102eb7da46efd61c5.json +UB1 0.53333 0.20455 0.37778 0.22047 +UB2 0.48889 0.25 0.37778 0.24016 +LexRank 0.26667 0.02273 0.08889 0.05512 +TextRank 0.31111 0.09091 0.22222 0.11024 +Luhn 0.31111 0.09091 0.22222 0.11024 +ICSI 0.35556 0.06818 0.15556 0.1063 +6e9ad1a51921f9de4cf420d02fc905ba00b54c81.json +UB1 0.4375 0.12698 0.15625 0.12772 +UB2 0.42188 0.1746 0.15625 0.13859 +LexRank 0.09375 0.0 0.07812 0.01902 +TextRank 0.32812 0.07937 0.15625 0.09783 +Luhn 0.25 0.06349 0.14062 0.07337 +ICSI 0.1875 0.03175 0.10938 0.04348 +3bf72b8b38ff4a24fcec4f02a4f29033874664a4.json +UB1 0.36364 0.12963 0.21818 0.1242 +UB2 0.34545 0.18519 0.18182 0.12739 +LexRank 0.09091 0.0 0.07273 0.01592 +TextRank 0.16364 0.0 0.09091 0.03503 +Luhn 0.2 0.0 0.09091 0.0414 +ICSI 0.21818 0.01852 0.10909 0.04459 +2f15be86c763b486a7dadc0e4f679cf31c656d91.json +UB1 0.51282 0.21053 0.33333 0.22936 +UB2 0.41026 0.18421 0.25641 0.19725 +LexRank 0.15385 0.02632 0.10256 0.0367 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.07692 0.0 0.07692 0.01835 +61a2f02b6597a4d9f6289ab5f68466abbcf00058.json +UB1 0.42593 0.09434 0.24074 0.14935 +UB2 0.48148 0.16981 0.2963 0.22727 +LexRank 0.37037 0.07547 0.22222 0.12987 +TextRank 0.27778 0.03774 0.18519 0.08117 +Luhn 0.12963 0.03774 0.09259 0.03571 +ICSI 0.40741 0.09434 0.2037 0.16558 +039d5532d53c291bd1f261224a68694170da1cad.json +UB1 0.46154 0.28 0.42308 0.24286 +UB2 0.38462 0.28 0.38462 0.22857 +LexRank 0.11538 0.0 0.11538 0.02143 +TextRank 0.11538 0.0 0.11538 0.02857 +Luhn 0.07692 0.0 0.07692 0.01429 +ICSI 0.15385 0.0 0.11538 0.05 +13e1fdc459f5795f1642a3776654a47e5ffdb52e.json +UB1 0.60784 0.3 0.33333 0.25172 +UB2 0.52941 0.28 0.45098 0.26207 +LexRank 0.2549 0.08 0.13725 0.07241 +TextRank 0.17647 0.04 0.11765 0.05517 +Luhn 0.23529 0.06 0.13725 0.05517 +ICSI 0.21569 0.04 0.09804 0.05172 +7b9da6e6b5e9b8b5575c822c2a3edf7b9fda7e6d.json +UB1 0.63492 0.40323 0.4127 0.35359 +UB2 0.63492 0.45161 0.4127 0.3674 +LexRank 0.04762 0.0 0.04762 0.00829 +TextRank 0.03175 0.0 0.03175 0.00552 +Luhn 0.09524 0.0 0.04762 0.01934 +ICSI 0.06349 0.0 0.03175 0.01105 +705c33c5a1d4367dbb1a2665aa6d41fd5e0b5bc9.json +UB1 0.55 0.20513 0.4 0.21429 +UB2 0.45 0.28205 0.4 0.22321 +LexRank 0.175 0.0 0.125 0.03125 +TextRank 0.1 0.02564 0.075 0.02232 +Luhn 0.075 0.0 0.05 0.01339 +ICSI 0.075 0.0 0.075 0.01339 +5ce4944bc118cb9ceb27f3a6fb45a19facad505e.json +UB1 0.70513 0.41558 0.35897 0.4115 +UB2 0.69231 0.42857 0.34615 0.40929 +LexRank 0.26923 0.02597 0.14103 0.0708 +TextRank 0.19231 0.01299 0.10256 0.03982 +Luhn 0.32051 0.05195 0.20513 0.10841 +ICSI 0.32051 0.06494 0.19231 0.09292 +1956cc8608aff8e443b550f705b7b506c8c5eba4.json +UB1 0.625 0.39683 0.23438 0.36141 +UB2 0.59375 0.42857 0.23438 0.3288 +LexRank 0.21875 0.01587 0.125 0.04891 +TextRank 0.15625 0.03175 0.14062 0.05435 +Luhn 0.15625 0.04762 0.125 0.05435 +ICSI 0.42188 0.25397 0.29688 0.20924 +526dceaa7edaa139caa61994c94dd31af6e7e31e.json +UB1 0.65254 0.37607 0.4322 0.37428 +UB2 0.62712 0.45299 0.4661 0.39306 +LexRank 0.38983 0.09402 0.17797 0.13006 +TextRank 0.35593 0.15385 0.25424 0.19509 +Luhn 0.27966 0.03419 0.12712 0.07659 +ICSI 0.40678 0.11111 0.22881 0.14162 +027946808ebbe3ca21ee64db5249776edc479e32.json +UB1 0.55769 0.19608 0.38462 0.21622 +UB2 0.44231 0.23529 0.36538 0.18581 +LexRank 0.23077 0.09804 0.17308 0.0777 +TextRank 0.17308 0.03922 0.11538 0.04392 +Luhn 0.13462 0.0 0.09615 0.02703 +ICSI 0.25 0.09804 0.19231 0.08784 +1bfcae33372c35c3e351bab59d24c6b56f47d0fa.json +UB1 0.33333 0.06 0.13725 0.08276 +UB2 0.31373 0.22 0.13725 0.15517 +LexRank 0.11765 0.0 0.03922 0.02069 +TextRank 0.11765 0.0 0.03922 0.02069 +Luhn 0.07843 0.02 0.03922 0.01724 +ICSI 0.13725 0.0 0.03922 0.02414 +667490c311f4f6b4486bc423a43ad1e7b0c67040.json +UB1 0.46667 0.2069 0.33333 0.17683 +UB2 0.43333 0.24138 0.36667 0.21341 +LexRank 0.16667 0.0 0.1 0.04268 +TextRank 0.1 0.0 0.06667 0.01829 +Luhn 0.26667 0.13793 0.23333 0.14024 +ICSI 0.13333 0.0 0.1 0.02439 +14abcd32b2347b1e924450dd75e8f86edb57e3f6.json +UB1 0.32 0.08333 0.16 0.07463 +UB2 0.16 0.08333 0.16 0.05224 +LexRank 0.08 0.0 0.08 0.01493 +TextRank 0.16 0.0 0.12 0.02985 +Luhn 0.16 0.04167 0.16 0.04478 +ICSI 0.16 0.0 0.12 0.02239 +021753f7fbf878f5d1f0a3584c8e7a2651106b85.json +UB1 0.31579 0.05556 0.26316 0.12245 +UB2 0.31579 0.22222 0.31579 0.14286 +LexRank 0.05263 0.0 0.05263 0.0102 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.15789 0.0 0.10526 0.03061 +1895ccead0babc179b59f2d8ad539287350782e7.json +UB1 0.64 0.37838 0.46667 0.34793 +UB2 0.61333 0.37838 0.50667 0.36175 +LexRank 0.34667 0.09459 0.16 0.09677 +TextRank 0.56 0.33784 0.41333 0.28341 +Luhn 0.56 0.33784 0.41333 0.28341 +ICSI 0.53333 0.24324 0.36 0.2235 +043d6e17f57b242fb95bd759dd35eeb3d7dc80a2.json +UB1 0.42308 0.16 0.26923 0.11429 +UB2 0.38462 0.2 0.19231 0.12857 +LexRank 0.07692 0.0 0.07692 0.01429 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.15385 0.04 0.11538 0.03571 +5d313ed13b2a21db255a7498f99d9a08ac0b7074.json +UB1 0.22222 0.02857 0.11111 0.05 +UB2 0.13889 0.05714 0.13889 0.04 +LexRank 0.05556 0.0 0.02778 0.01 +TextRank 0.08333 0.0 0.05556 0.015 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.08333 0.0 0.08333 0.02 +69c2c77c17601a317735e247a8168cc815dc7df5.json +UB1 0.55556 0.28571 0.33333 0.25 +UB2 0.58333 0.31429 0.38889 0.255 +LexRank 0.08333 0.0 0.05556 0.015 +TextRank 0.11111 0.0 0.08333 0.025 +Luhn 0.11111 0.0 0.08333 0.025 +ICSI 0.27778 0.11429 0.22222 0.135 +6731cce7433d23010f329aa7e21ff7cab4123c86.json +UB1 0.475 0.12821 0.275 0.17411 +UB2 0.375 0.15385 0.175 0.12946 +LexRank 0.05 0.0 0.05 0.00893 +TextRank 0.1 0.0 0.05 0.01786 +Luhn 0.1 0.0 0.05 0.01786 +ICSI 0.175 0.0 0.1 0.03125 +7cdbd199c658535dc313f4fb5801b864a4c4b924.json +UB1 0.32432 0.05556 0.18919 0.08738 +UB2 0.27027 0.11111 0.24324 0.08738 +LexRank 0.10811 0.0 0.08108 0.02427 +TextRank 0.02703 0.0 0.02703 0.00485 +Luhn 0.02703 0.0 0.02703 0.00485 +ICSI 0.08108 0.0 0.08108 0.01942 +4e7e4fde855fa5853a26a68ebdf91e087e11c629.json +UB1 0.61972 0.35714 0.38028 0.33171 +UB2 0.60563 0.42857 0.43662 0.37317 +LexRank 0.14085 0.01429 0.08451 0.02927 +TextRank 0.07042 0.0 0.02817 0.01463 +Luhn 0.09859 0.0 0.05634 0.02195 +ICSI 0.22535 0.05714 0.1831 0.08049 +56560c5c7198d549e5518a57d27d14e0ba2e86ad.json +UB1 0.81967 0.63333 0.45902 0.59143 +UB2 0.81967 0.63333 0.45902 0.59143 +LexRank 0.29508 0.1 0.16393 0.09714 +TextRank 0.19672 0.0 0.09836 0.03714 +Luhn 0.21311 0.05 0.09836 0.05714 +ICSI 0.45902 0.26667 0.32787 0.26286 +13e8fb1d1de5a0467b2d374d9fb6ae96505a65a7.json +UB1 0.36585 0.125 0.2439 0.15652 +UB2 0.31707 0.15 0.26829 0.1087 +LexRank 0.2439 0.05 0.17073 0.06957 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.21951 0.075 0.17073 0.06522 +ICSI 0.19512 0.0 0.12195 0.04348 +4d5b73d89fdf434fc0b8f5554ef3fe6bbe6768c4.json +UB1 0.44898 0.12371 0.2551 0.14685 +UB2 0.43878 0.16495 0.26531 0.15909 +LexRank 0.2449 0.02062 0.10204 0.06119 +TextRank 0.2551 0.03093 0.16327 0.07692 +Luhn 0.27551 0.04124 0.14286 0.07343 +ICSI 0.27551 0.08247 0.14286 0.08392 +67237b4555779706c8a8cb0733e8c8cf26c1fa31.json +UB1 0.4186 0.2619 0.23256 0.17355 +UB2 0.4186 0.2619 0.23256 0.17355 +LexRank 0.16279 0.0 0.06977 0.02893 +TextRank 0.18605 0.02381 0.09302 0.04545 +Luhn 0.16279 0.0 0.09302 0.02893 +ICSI 0.06977 0.0 0.06977 0.0124 +5e3675c38386c111294d0d25a3face3b3dcef303.json +UB1 0.62963 0.3375 0.23457 0.28936 +UB2 0.62963 0.4375 0.37037 0.33617 +LexRank 0.41975 0.1375 0.20988 0.13617 +TextRank 0.2963 0.0625 0.1358 0.09149 +Luhn 0.18519 0.025 0.11111 0.04894 +ICSI 0.37037 0.15 0.18519 0.14043 +273815d4033850611cd6a4515a8633d99e6a95d1.json +UB1 0.54545 0.23256 0.36364 0.2379 +UB2 0.54545 0.23256 0.36364 0.2379 +LexRank 0.11364 0.0 0.04545 0.02016 +TextRank 0.02273 0.0 0.02273 0.00403 +Luhn 0.06818 0.0 0.06818 0.0121 +ICSI 0.31818 0.09302 0.22727 0.10484 +6f94a5f58588f90a822aed0dfc2989cdf5952cef.json +UB1 0.45833 0.21277 0.39583 0.17647 +UB2 0.39583 0.21277 0.375 0.16544 +LexRank 0.125 0.04255 0.10417 0.04412 +TextRank 0.125 0.0 0.10417 0.01838 +Luhn 0.02083 0.0 0.02083 0.0 +ICSI 0.22917 0.12766 0.22917 0.11397 +66b708e0c8a82f68a21fa85dccc01bca50069df0.json +UB1 0.57576 0.1875 0.36364 0.23626 +UB2 0.51515 0.25 0.36364 0.27473 +LexRank 0.09091 0.0 0.09091 0.01648 +TextRank 0.12121 0.0 0.06061 0.02747 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.24242 0.03125 0.21212 0.06593 +4938f9f74cc55145c62f9781d9ff46731465528c.json +UB1 0.44444 0.05714 0.16667 0.125 +UB2 0.33333 0.11429 0.22222 0.09 +LexRank 0.11111 0.0 0.11111 0.02 +TextRank 0.11111 0.0 0.05556 0.02 +Luhn 0.19444 0.02857 0.13889 0.04 +ICSI 0.22222 0.05714 0.16667 0.06 +37137b2244a12c5e86811ee0d9e3b328b9ae1956.json +UB1 0.60465 0.23529 0.4186 0.276 +UB2 0.54651 0.28235 0.39535 0.256 +LexRank 0.19767 0.03529 0.11628 0.068 +TextRank 0.23256 0.03529 0.15116 0.092 +Luhn 0.16279 0.03529 0.09302 0.044 +ICSI 0.27907 0.04706 0.11628 0.088 +55d3a7b5da59ff665c916c26b843178ff29cc6d9.json +UB1 0.5283 0.25 0.32075 0.25497 +UB2 0.49057 0.34615 0.32075 0.28808 +LexRank 0.24528 0.07692 0.18868 0.07285 +TextRank 0.09434 0.01923 0.09434 0.02318 +Luhn 0.09434 0.01923 0.09434 0.02318 +ICSI 0.30189 0.07692 0.15094 0.08609 +2e7515c1c66b1a05fd6866ab373f5e3b6d89826b.json +UB1 0.64706 0.39394 0.41176 0.34043 +UB2 0.64706 0.39394 0.41176 0.34043 +LexRank 0.11765 0.0 0.11765 0.03723 +TextRank 0.05882 0.0 0.05882 0.01064 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.52941 0.21212 0.23529 0.24468 +693ad88440eb5a99552c4b847da5fea85bf8567e.json +UB1 0.34783 0.22727 0.34783 0.17213 +UB2 0.34783 0.22727 0.34783 0.17213 +LexRank 0.04348 0.0 0.04348 0.0082 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.04348 0.0 0.04348 0.0082 +33da54c99a18aff5635021811a1e697275806668.json +UB1 0.5 0.21622 0.36842 0.25 +UB2 0.5 0.21622 0.36842 0.25 +LexRank 0.07895 0.0 0.05263 0.01415 +TextRank 0.10526 0.0 0.07895 0.02358 +Luhn 0.10526 0.0 0.07895 0.02358 +ICSI 0.07895 0.0 0.05263 0.01415 +6bf48a12380084a2a38de5511fbc1ac954d0dfcc.json +UB1 0.32558 0.02381 0.16279 0.11157 +UB2 0.34884 0.16667 0.2093 0.1157 +LexRank 0.25581 0.02381 0.13953 0.08264 +TextRank 0.23256 0.04762 0.11628 0.05785 +Luhn 0.06977 0.0 0.04651 0.01653 +ICSI 0.27907 0.02381 0.13953 0.09917 +7950c778593a7a19b6315696390d09c41921e688.json +UB1 0.36667 0.10345 0.2 0.09146 +UB2 0.3 0.13793 0.2 0.09146 +LexRank 0.13333 0.0 0.06667 0.02439 +TextRank 0.06667 0.0 0.03333 0.0122 +Luhn 0.03333 0.0 0.03333 0.0061 +ICSI 0.06667 0.0 0.06667 0.0122 +4387c7107ce9846c64c01d496a77c5e04aa120c5.json +UB1 0.70874 0.35294 0.30097 0.32558 +UB2 0.65049 0.38235 0.28155 0.30399 +LexRank 0.24272 0.04902 0.1068 0.06312 +TextRank 0.16505 0.0098 0.1165 0.03488 +Luhn 0.58252 0.31373 0.40777 0.30399 +ICSI 0.46602 0.14706 0.23301 0.15615 +6efaf2157698195505c4cdcd1c783cf13659f972.json +UB1 0.4359 0.13158 0.17949 0.13761 +UB2 0.4359 0.21053 0.15385 0.15138 +LexRank 0.20513 0.0 0.12821 0.04587 +TextRank 0.07692 0.0 0.05128 0.01376 +Luhn 0.15385 0.0 0.07692 0.02752 +ICSI 0.15385 0.0 0.10256 0.02752 +2a4154bb482dd582898a53e2dd946457c2c33145.json +UB1 0.55556 0.47059 0.55556 0.45652 +UB2 0.55556 0.47059 0.55556 0.45652 +LexRank 0.27778 0.0 0.16667 0.06522 +TextRank 0.27778 0.0 0.16667 0.06522 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.11111 0.0 0.05556 0.02174 +2cae274006cd46726fe217f1fd09c3ee63c59f3d.json +UB1 0.33333 0.0 0.2 0.08108 +UB2 0.0 0.0 0.0 0.0 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.13333 0.0 0.13333 0.04054 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.13333 0.0 0.13333 0.04054 +45b4be76213534480c169dd97979778cad2368d0.json +UB1 0.61017 0.13793 0.28814 0.22189 +UB2 0.40678 0.24138 0.25424 0.22485 +LexRank 0.32203 0.13793 0.20339 0.16864 +TextRank 0.27119 0.08621 0.18644 0.08284 +Luhn 0.18644 0.03448 0.11864 0.04734 +ICSI 0.42373 0.13793 0.23729 0.1716 +7afe0c7f848b06241f75c540eca6067a8be92962.json +UB1 0.69231 0.42105 0.25641 0.40367 +UB2 0.5641 0.39474 0.33333 0.37156 +LexRank 0.5641 0.34211 0.28205 0.3211 +TextRank 0.28205 0.02632 0.17949 0.10092 +Luhn 0.28205 0.07895 0.25641 0.11468 +ICSI 0.38462 0.15789 0.25641 0.18349 +13b4f2372e6d920ede90ef12e34adb1fe54a04fe.json +UB1 0.31707 0.1 0.19512 0.11739 +UB2 0.39024 0.15 0.21951 0.12174 +LexRank 0.07317 0.0 0.04878 0.01739 +TextRank 0.14634 0.0 0.09756 0.02609 +Luhn 0.02439 0.0 0.02439 0.00435 +ICSI 0.14634 0.05 0.12195 0.03913 +223c887a72703f5b3c1db247236cd1caf46d060a.json +UB1 0.60417 0.29787 0.41667 0.31618 +UB2 0.60417 0.48936 0.25 0.43382 +LexRank 0.41667 0.14894 0.14583 0.14338 +TextRank 0.27083 0.10638 0.1875 0.10662 +Luhn 0.1875 0.0 0.125 0.03676 +ICSI 0.4375 0.21277 0.27083 0.21324 +22ba5a377e59c718f4729e30898d81369ba678f8.json +UB1 0.2 0.03448 0.13333 0.04268 +UB2 0.2 0.03448 0.13333 0.04268 +LexRank 0.03333 0.0 0.03333 0.0061 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.03333 0.0 0.03333 0.0061 +23d91944d5ae50eb8dd8622a48f431b8f0673604.json +UB1 0.47059 0.18 0.31373 0.16897 +UB2 0.37255 0.22 0.33333 0.16897 +LexRank 0.17647 0.02 0.15686 0.03793 +TextRank 0.13725 0.0 0.09804 0.02759 +Luhn 0.13725 0.0 0.09804 0.02759 +ICSI 0.31373 0.12 0.21569 0.0931 +2b38a20bf55f6b23c8e1bb4e38e5130fa8e41bd9.json +UB1 0.54839 0.36667 0.48387 0.32353 +UB2 0.54839 0.36667 0.48387 0.32353 +LexRank 0.12903 0.03333 0.12903 0.04706 +TextRank 0.16129 0.06667 0.16129 0.04706 +Luhn 0.12903 0.03333 0.12903 0.04706 +ICSI 0.54839 0.36667 0.35484 0.33529 +34b50d1375e793629dfd587bbce224a7a09ff773.json +UB1 0.48837 0.16667 0.25581 0.1405 +UB2 0.44186 0.19048 0.23256 0.18182 +LexRank 0.2093 0.04762 0.11628 0.04545 +TextRank 0.09302 0.0 0.06977 0.01653 +Luhn 0.13953 0.0 0.09302 0.03306 +ICSI 0.16279 0.04762 0.09302 0.03719 +047fc0b00274b7b19b5461e79eb82e5f78591eff.json +UB1 0.65217 0.48889 0.56522 0.43846 +UB2 0.65217 0.48889 0.56522 0.43846 +LexRank 0.32609 0.11111 0.21739 0.11154 +TextRank 0.36957 0.15556 0.17391 0.13462 +Luhn 0.52174 0.28889 0.30435 0.27692 +ICSI 0.30435 0.11111 0.13043 0.09615 +4ae6dc12b7472abf51c751b60736252213c53207.json +UB1 0.46988 0.17073 0.26506 0.20124 +UB2 0.44578 0.20732 0.26506 0.20747 +LexRank 0.12048 0.0 0.08434 0.0249 +TextRank 0.09639 0.0 0.07229 0.0166 +Luhn 0.12048 0.0 0.07229 0.02282 +ICSI 0.26506 0.06098 0.12048 0.09544 +8557dc0205a9f0682201be500d4768691579a974.json +UB1 0.38462 0.05263 0.25641 0.12385 +UB2 0.35897 0.15789 0.20513 0.15138 +LexRank 0.20513 0.0 0.15385 0.05046 +TextRank 0.28205 0.05263 0.15385 0.08716 +Luhn 0.02564 0.0 0.02564 0.00459 +ICSI 0.23077 0.07895 0.17949 0.05963 +225161173e2d3f8d89c371ea4fa386e874bbe8b8.json +UB1 0.47368 0.16 0.26316 0.18182 +UB2 0.40789 0.2 0.25 0.16136 +LexRank 0.18421 0.0 0.10526 0.03409 +TextRank 0.17105 0.05333 0.10526 0.04318 +Luhn 0.10526 0.0 0.06579 0.01818 +ICSI 0.21053 0.05333 0.11842 0.05 +70b92f5a3fba8f5c6e8635029c05599d873e1032.json +UB1 0.30303 0.09375 0.15152 0.07692 +UB2 0.30303 0.09375 0.15152 0.07692 +LexRank 0.27273 0.0625 0.15152 0.06044 +TextRank 0.27273 0.0625 0.15152 0.06044 +Luhn 0.27273 0.0625 0.15152 0.06044 +ICSI 0.18182 0.03125 0.12121 0.03846 +35ac996cf57d2f1cf88c28cc1965200f26a27a59.json +UB1 0.2069 0.07143 0.13793 0.05063 +UB2 0.2069 0.07143 0.13793 0.05063 +LexRank 0.06897 0.0 0.06897 0.01266 +TextRank 0.2069 0.03571 0.17241 0.05063 +Luhn 0.2069 0.03571 0.17241 0.05063 +ICSI 0.13793 0.03571 0.13793 0.03797 +0d3e6356daab6def3154f53250d9f72ae49a7efe.json +UB1 0.77778 0.64655 0.5641 0.61662 +UB2 0.76068 0.64655 0.53846 0.60787 +LexRank 0.45299 0.16379 0.26496 0.19825 +TextRank 0.30769 0.12931 0.18803 0.14286 +Luhn 0.24786 0.0431 0.16239 0.06997 +ICSI 0.33333 0.11207 0.18803 0.14286 +034c973f13feff3a933a5d4d35de47ddc22f5e43.json +UB1 0.42857 0.05882 0.25714 0.13402 +UB2 0.25714 0.11765 0.22857 0.09278 +LexRank 0.11429 0.02941 0.08571 0.03608 +TextRank 0.08571 0.0 0.05714 0.01546 +Luhn 0.05714 0.0 0.02857 0.01031 +ICSI 0.02857 0.0 0.02857 0.00515 +14cf2d87777c4673906a4265a818b7f1f4d14324.json +UB1 0.33333 0.14286 0.33333 0.12162 +UB2 0.2 0.14286 0.2 0.08108 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.13333 0.0 0.06667 0.02703 +485ac1c7a412446e3941509854850a463078f9dc.json +UB1 0.46809 0.19565 0.34043 0.15414 +UB2 0.38298 0.19565 0.31915 0.1391 +LexRank 0.08511 0.0 0.08511 0.01504 +TextRank 0.08511 0.0 0.06383 0.01504 +Luhn 0.08511 0.0 0.06383 0.01128 +ICSI 0.12766 0.0 0.06383 0.02632 +87cc12ffe1beefab2d8282eccfda739a340520e0.json +UB1 0.67568 0.38889 0.43243 0.34466 +UB2 0.64865 0.41667 0.43243 0.33495 +LexRank 0.13514 0.02778 0.10811 0.02913 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.08108 0.02778 0.08108 0.01942 +ICSI 0.05405 0.0 0.02703 0.00971 +14cfdc6135932c4f5085461103d76744ca1a6eeb.json +UB1 0.33333 0.05882 0.16667 0.09783 +UB2 0.33333 0.11765 0.16667 0.09783 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.11111 0.0 0.11111 0.02174 +2461ede7866c6b667632956dbffac4d764a27305.json +UB1 0.68966 0.35088 0.53448 0.36747 +UB2 0.62069 0.42105 0.44828 0.39157 +LexRank 0.17241 0.05263 0.10345 0.04819 +TextRank 0.2069 0.01754 0.10345 0.04518 +Luhn 0.39655 0.10526 0.22414 0.14458 +ICSI 0.27586 0.05263 0.17241 0.06928 +51268ad387a564fe7e54578aa4c379442f131c7a.json +UB1 0.44898 0.16667 0.22449 0.19424 +UB2 0.46939 0.25 0.2449 0.22302 +LexRank 0.18367 0.02083 0.12245 0.05036 +TextRank 0.08163 0.0 0.08163 0.01439 +Luhn 0.10204 0.0 0.08163 0.01799 +ICSI 0.20408 0.02083 0.14286 0.05755 +15c4e3df9b7d6865726bddde790bc7c87d659001.json +UB1 0.475 0.07692 0.2 0.15625 +UB2 0.35 0.23077 0.175 0.16964 +LexRank 0.1 0.0 0.075 0.01786 +TextRank 0.25 0.10256 0.125 0.09821 +Luhn 0.025 0.0 0.025 0.00446 +ICSI 0.25 0.05128 0.125 0.0625 +73f7cf65e8c1d777e6fe0c38adb84fe101c5a3ec.json +UB1 0.45714 0.14706 0.17143 0.10825 +UB2 0.37143 0.14706 0.2 0.11856 +LexRank 0.11429 0.0 0.08571 0.02577 +TextRank 0.14286 0.0 0.11429 0.02577 +Luhn 0.08571 0.0 0.02857 0.01546 +ICSI 0.17143 0.0 0.05714 0.03093 +46e134b99d43fa5dd63a590ee90e73d2af7c4bec.json +UB1 0.72881 0.55172 0.47458 0.51479 +UB2 0.72881 0.55172 0.47458 0.51479 +LexRank 0.22034 0.05172 0.08475 0.07101 +TextRank 0.15254 0.0 0.0678 0.02663 +Luhn 0.18644 0.0 0.08475 0.04438 +ICSI 0.37288 0.18966 0.30508 0.14793 +580b1b2119c42ac613375caefc71e862e4fcb4a2.json +UB1 0.46154 0.32 0.46154 0.21429 +UB2 0.46154 0.32 0.46154 0.21429 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.03846 0.0 0.03846 0.00714 +7844a43f71644c5ec21be22d73224336a4979d78.json +UB1 0.42424 0.0625 0.15152 0.12088 +UB2 0.30303 0.09375 0.15152 0.08242 +LexRank 0.09091 0.0 0.09091 0.01648 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.06061 0.03125 0.06061 0.01648 +ICSI 0.0303 0.0 0.0303 0.00549 +86d14d4d5435e8def3d70805f1c91618129a996f.json +UB1 0.45349 0.10588 0.19767 0.136 +UB2 0.40698 0.18824 0.16279 0.14 +LexRank 0.24419 0.01176 0.12791 0.054 +TextRank 0.22093 0.03529 0.12791 0.058 +Luhn 0.03488 0.0 0.02326 0.004 +ICSI 0.31395 0.02353 0.15116 0.082 +27595083a1d7b4a129347eb9e5a6ff5e6c6a0420.json +UB1 0.71875 0.51613 0.625 0.48295 +UB2 0.71875 0.51613 0.625 0.48295 +LexRank 0.4375 0.25806 0.34375 0.21591 +TextRank 0.28125 0.19355 0.28125 0.14205 +Luhn 0.0625 0.0 0.03125 0.01136 +ICSI 0.34375 0.19355 0.28125 0.15341 +79a14eab41427026a3d0f1857ac09dde25c0338f.json +UB1 0.65625 0.46032 0.40625 0.46196 +UB2 0.67188 0.52381 0.40625 0.51359 +LexRank 0.20312 0.0 0.07812 0.04348 +TextRank 0.125 0.0 0.0625 0.02174 +Luhn 0.23438 0.0 0.10938 0.04891 +ICSI 0.26562 0.04762 0.15625 0.06793 +247122c27b899a37e271f2dd0c8ac735cfbc06e5.json +UB1 0.59677 0.29508 0.29032 0.30337 +UB2 0.67742 0.55738 0.48387 0.48596 +LexRank 0.12903 0.0 0.06452 0.0309 +TextRank 0.1129 0.0 0.08065 0.02809 +Luhn 0.12903 0.0 0.08065 0.0309 +ICSI 0.1129 0.01639 0.06452 0.02247 +49d9a13704fd2a40d2b64aa561bf02f31950e7bd.json +UB1 0.5 0.19355 0.40625 0.25 +UB2 0.46875 0.19355 0.375 0.24432 +LexRank 0.28125 0.0 0.1875 0.07386 +TextRank 0.375 0.16129 0.25 0.16477 +Luhn 0.21875 0.06452 0.15625 0.06818 +ICSI 0.3125 0.09677 0.1875 0.09091 +79f0d8279b88f9e538547233429c48dd50e30273.json +UB1 0.3913 0.06667 0.17391 0.09615 +UB2 0.23913 0.13333 0.21739 0.1 +LexRank 0.19565 0.0 0.08696 0.03462 +TextRank 0.13043 0.02222 0.06522 0.03077 +Luhn 0.13043 0.02222 0.06522 0.02692 +ICSI 0.15217 0.0 0.1087 0.03077 +7d9d07ea5fc8a7ae64ad4476b8992886c6dbebc0.json +UB1 0.52273 0.18605 0.25 0.17742 +UB2 0.45455 0.23256 0.22727 0.20565 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.02273 0.0 0.02273 0.00403 +Luhn 0.09091 0.0 0.04545 0.01613 +ICSI 0.29545 0.13953 0.15909 0.1371 +8a50d2bc26d8b1be82754411f325584f297f8b11.json +UB1 0.36585 0.175 0.21951 0.13043 +UB2 0.43902 0.2 0.21951 0.16957 +LexRank 0.17073 0.05 0.12195 0.06087 +TextRank 0.14634 0.025 0.12195 0.03043 +Luhn 0.07317 0.0 0.07317 0.01739 +ICSI 0.17073 0.0 0.09756 0.03913 +245a413b0b105a0b6d42776b4a8ac0a0f6421107.json +UB1 0.63158 0.24324 0.42105 0.28302 +UB2 0.55263 0.35135 0.47368 0.33491 +LexRank 0.10526 0.0 0.05263 0.01887 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.07895 0.0 0.07895 0.01415 +ICSI 0.10526 0.0 0.05263 0.01887 +77d6a3dd72c047e79cf6c2340b4965face5b04c9.json +UB1 0.43396 0.11538 0.15094 0.12252 +UB2 0.39623 0.19231 0.22642 0.1457 +LexRank 0.16981 0.0 0.09434 0.03311 +TextRank 0.15094 0.05769 0.11321 0.05298 +Luhn 0.15094 0.01923 0.07547 0.03642 +ICSI 0.22642 0.01923 0.09434 0.05629 +45d4f88176cdce2cbdb752b63b98f471f4b449fa.json +UB1 0.3 0.03448 0.13333 0.09146 +UB2 0.3 0.10345 0.1 0.09756 +LexRank 0.06667 0.0 0.06667 0.0122 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.06667 0.0 0.06667 0.0122 +ICSI 0.13333 0.0 0.06667 0.02439 +785dd3eb5c994dfdfab24de59df968360ca84763.json +UB1 0.35294 0.1 0.13725 0.1 +UB2 0.35294 0.18 0.17647 0.13793 +LexRank 0.17647 0.0 0.07843 0.03448 +TextRank 0.11765 0.0 0.07843 0.02069 +Luhn 0.13725 0.02 0.07843 0.03103 +ICSI 0.15686 0.02 0.11765 0.03103 +5a589b48ef113331a6df7f428b205de61eb6f285.json +UB1 0.60784 0.32 0.41176 0.31724 +UB2 0.4902 0.3 0.39216 0.27931 +LexRank 0.05882 0.0 0.03922 0.01034 +TextRank 0.13725 0.0 0.07843 0.02759 +Luhn 0.29412 0.2 0.2549 0.18966 +ICSI 0.19608 0.06 0.13725 0.05517 +499067224450f757b18ce7093865c0f91aef5062.json +UB1 0.41026 0.15789 0.28205 0.16055 +UB2 0.41026 0.21053 0.25641 0.16972 +LexRank 0.10256 0.0 0.07692 0.02752 +TextRank 0.15385 0.0 0.07692 0.02752 +Luhn 0.17949 0.05263 0.15385 0.06422 +ICSI 0.23077 0.05263 0.15385 0.05505 +77cd70db32805c79698171905b57b62c84e38a0f.json +UB1 0.34694 0.08333 0.18367 0.08273 +UB2 0.30612 0.14583 0.16327 0.09353 +LexRank 0.18367 0.0 0.10204 0.03957 +TextRank 0.12245 0.0 0.06122 0.02518 +Luhn 0.10204 0.0 0.06122 0.01799 +ICSI 0.16327 0.0 0.08163 0.03237 +4a89253322d42beb644bd9648d5ec4a6d33c2130.json +UB1 0.66667 0.50943 0.61111 0.47727 +UB2 0.66667 0.50943 0.61111 0.47727 +LexRank 0.53704 0.39623 0.46296 0.40909 +TextRank 0.16667 0.01887 0.07407 0.03571 +Luhn 0.25926 0.01887 0.12963 0.07143 +ICSI 0.2963 0.0566 0.18519 0.11039 +086aa2704356bfd1deab5a75641d88dc9055014c.json +UB1 0.38636 0.09302 0.22727 0.125 +UB2 0.34091 0.11628 0.25 0.10887 +LexRank 0.18182 0.0 0.11364 0.04435 +TextRank 0.13636 0.0 0.09091 0.03629 +Luhn 0.11364 0.0 0.06818 0.02016 +ICSI 0.13636 0.02326 0.09091 0.04032 +3dbd55230aa3724e8ee3c7dd3876188d13a12ce0.json +UB1 0.21739 0.02222 0.17391 0.05769 +UB2 0.21739 0.02222 0.13043 0.05385 +LexRank 0.1087 0.0 0.1087 0.01923 +TextRank 0.04348 0.0 0.02174 0.00769 +Luhn 0.15217 0.0 0.06522 0.02692 +ICSI 0.04348 0.0 0.04348 0.00769 +5108658805722f81a771fad019c638b214a01556.json +UB1 0.46154 0.24 0.26923 0.25714 +UB2 0.46154 0.32 0.46154 0.26429 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.15385 0.0 0.07692 0.02857 +Luhn 0.03846 0.0 0.03846 0.00714 +ICSI 0.11538 0.04 0.11538 0.04286 +0cca7ecc77ea71dafcc4848b0ffbe1e731296195.json +UB1 0.56897 0.31579 0.48276 0.33133 +UB2 0.62069 0.33333 0.48276 0.34639 +LexRank 0.32759 0.08772 0.22414 0.10843 +TextRank 0.05172 0.0 0.03448 0.00602 +Luhn 0.31034 0.12281 0.18966 0.11145 +ICSI 0.2931 0.08772 0.22414 0.10241 +23ff12cc1c3e0ad78d625515de96c63521c3f51c.json +UB1 0.57812 0.25397 0.25 0.22011 +UB2 0.46875 0.30159 0.26562 0.2337 +LexRank 0.1875 0.0 0.09375 0.03533 +TextRank 0.26562 0.01587 0.125 0.05978 +Luhn 0.21875 0.04762 0.14062 0.06793 +ICSI 0.40625 0.1746 0.25 0.17935 +210207cbffc4f045a43f272d5e575de63ca6d927.json +UB1 0.52381 0.26506 0.2619 0.21516 +UB2 0.52381 0.3253 0.32143 0.22541 +LexRank 0.2381 0.0 0.09524 0.04713 +TextRank 0.03571 0.0 0.03571 0.00615 +Luhn 0.32143 0.04819 0.13095 0.08402 +ICSI 0.40476 0.21687 0.17857 0.16189 +0562544abe056fa635a4c1cbfc06209e90fbc351.json +UB1 0.55263 0.08108 0.26316 0.18868 +UB2 0.47368 0.21622 0.34211 0.21226 +LexRank 0.28947 0.05405 0.21053 0.08019 +TextRank 0.07895 0.0 0.05263 0.01415 +Luhn 0.07895 0.0 0.05263 0.01415 +ICSI 0.39474 0.08108 0.18421 0.11792 +5b0fbfac0e425e777459aa35642c95eb4e3a0e78.json +UB1 0.48529 0.13433 0.25 0.16327 +UB2 0.44118 0.16418 0.23529 0.16837 +LexRank 0.14706 0.0 0.07353 0.02806 +TextRank 0.11765 0.01493 0.08824 0.02296 +Luhn 0.11765 0.01493 0.08824 0.02296 +ICSI 0.23529 0.04478 0.16176 0.07143 +138f94c6b496ad581bcc226c52ed021ba62a7b1c.json +UB1 0.375 0.08511 0.20833 0.09191 +UB2 0.3125 0.17021 0.25 0.125 +LexRank 0.16667 0.02128 0.10417 0.03309 +TextRank 0.08333 0.0 0.0625 0.01838 +Luhn 0.08333 0.0 0.0625 0.01838 +ICSI 0.14583 0.02128 0.10417 0.02941 +4085c6a5ae135d84a9db3f034989f578cbdc9dc1.json +UB1 0.5 0.2 0.36111 0.225 +UB2 0.33333 0.22857 0.27778 0.155 +LexRank 0.13889 0.02857 0.08333 0.03 +TextRank 0.11111 0.0 0.05556 0.02 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.33333 0.17143 0.30556 0.15 +331bedcf8845fdb1c9fa81c8318c4002e7e5cd89.json +UB1 0.33333 0.02439 0.11905 0.06356 +UB2 0.2619 0.09756 0.14286 0.05932 +LexRank 0.07143 0.0 0.07143 0.01271 +TextRank 0.07143 0.0 0.07143 0.01271 +Luhn 0.07143 0.0 0.07143 0.01271 +ICSI 0.11905 0.02439 0.07143 0.02542 +26d404b412a025a03df685c42008b11737a5bed7.json +UB1 0.29167 0.02128 0.14583 0.07353 +UB2 0.16667 0.04255 0.125 0.03676 +LexRank 0.10417 0.02128 0.0625 0.02206 +TextRank 0.08333 0.0 0.04167 0.01471 +Luhn 0.0625 0.02128 0.0625 0.01471 +ICSI 0.08333 0.0 0.08333 0.02206 +0469451b333db4161cb047e4e1ceec76db8cabbd.json +UB1 0.35897 0.07895 0.25641 0.12385 +UB2 0.48718 0.26316 0.33333 0.26147 +LexRank 0.23077 0.10526 0.17949 0.08257 +TextRank 0.15385 0.02632 0.10256 0.04128 +Luhn 0.15385 0.02632 0.10256 0.04128 +ICSI 0.35897 0.18421 0.28205 0.16514 +0c3d092c7f4f5952062c0cf981ffbb5d20b37b84.json +UB1 0.63889 0.48571 0.58333 0.485 +UB2 0.66667 0.54286 0.58333 0.53 +LexRank 0.25 0.11429 0.22222 0.1 +TextRank 0.36111 0.17143 0.25 0.12 +Luhn 0.16667 0.02857 0.08333 0.035 +ICSI 0.5 0.17143 0.33333 0.16 +66202493f1027c8038060636a9c36a52dacd242a.json +UB1 0.39286 0.09091 0.10714 0.10312 +UB2 0.375 0.10909 0.14286 0.10312 +LexRank 0.16071 0.0 0.08929 0.0375 +TextRank 0.16071 0.0 0.07143 0.0375 +Luhn 0.16071 0.0 0.07143 0.03438 +ICSI 0.17857 0.0 0.10714 0.04063 +87753e9c2b4476c77aab89b3f13324adb4b798c4.json +UB1 0.65625 0.32258 0.34375 0.30114 +UB2 0.65625 0.32258 0.34375 0.30114 +LexRank 0.03125 0.0 0.03125 0.00568 +TextRank 0.03125 0.0 0.03125 0.00568 +Luhn 0.03125 0.0 0.03125 0.00568 +ICSI 0.09375 0.0 0.09375 0.02273 +6ec12b3b45e4e42a1493fcee212f044fdbb3d390.json +UB1 0.56383 0.24731 0.2234 0.25 +UB2 0.5 0.27957 0.35106 0.27372 +LexRank 0.34043 0.04301 0.17021 0.09307 +TextRank 0.34043 0.04301 0.18085 0.11496 +Luhn 0.39362 0.16129 0.25532 0.19343 +ICSI 0.44681 0.13978 0.2234 0.18613 +1f385e6edab80edd4c8cffc75ad5e1b4bab7b79a.json +UB1 0.51613 0.23333 0.32258 0.20588 +UB2 0.3871 0.23333 0.29032 0.18824 +LexRank 0.09677 0.0 0.06452 0.02353 +TextRank 0.16129 0.03333 0.12903 0.03529 +Luhn 0.19355 0.03333 0.12903 0.04118 +ICSI 0.09677 0.0 0.09677 0.01765 +76960c86f1a827076bf21a07aff495cbdf300ff4.json +UB1 0.38889 0.09434 0.27778 0.12662 +UB2 0.40741 0.16981 0.33333 0.19805 +LexRank 0.2037 0.01887 0.09259 0.04221 +TextRank 0.31481 0.09434 0.24074 0.12338 +Luhn 0.16667 0.0 0.12963 0.03247 +ICSI 0.25926 0.09434 0.2037 0.10714 +8bb9e511fdc05139da40d9a9e9364107237df9ae.json +UB1 0.66667 0.52113 0.56944 0.44952 +UB2 0.625 0.50704 0.56944 0.4399 +LexRank 0.27778 0.09859 0.15278 0.08413 +TextRank 0.19444 0.02817 0.11111 0.05048 +Luhn 0.23611 0.05634 0.09722 0.06731 +ICSI 0.38889 0.21127 0.27778 0.19712 +8a475cb970ffbcb02267a98f4569f441a532b9a1.json +UB1 0.59375 0.34921 0.21875 0.34783 +UB2 0.53125 0.34921 0.3125 0.33152 +LexRank 0.26562 0.06349 0.17188 0.08696 +TextRank 0.23438 0.01587 0.10938 0.05435 +Luhn 0.20312 0.0 0.10938 0.0462 +ICSI 0.3125 0.11111 0.23438 0.11685 +44c269d90fe873be78a74fbe36016308f30e8c25.json +UB1 0.71739 0.48889 0.52174 0.45 +UB2 0.67391 0.48889 0.5 0.43846 +LexRank 0.1087 0.0 0.08696 0.03462 +TextRank 0.1087 0.04444 0.08696 0.02692 +Luhn 0.04348 0.0 0.04348 0.00769 +ICSI 0.13043 0.02222 0.1087 0.03077 +1dac763dd8eb981dab5a3b41247f24a1a93720eb.json +UB1 0.31034 0.07143 0.17241 0.09494 +UB2 0.31034 0.14286 0.17241 0.11392 +LexRank 0.06897 0.0 0.06897 0.00633 +TextRank 0.06897 0.0 0.03448 0.01266 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.13793 0.0 0.06897 0.01899 +1c7eb7a4985edde90bc9291b28bee802ccae80f8.json +UB1 0.3913 0.27273 0.21739 0.17213 +UB2 0.34783 0.27273 0.21739 0.16393 +LexRank 0.17391 0.0 0.17391 0.04098 +TextRank 0.08696 0.0 0.08696 0.01639 +Luhn 0.08696 0.0 0.04348 0.01639 +ICSI 0.08696 0.0 0.04348 0.01639 +045f67a430cc4660cb3e5a74092961856480f292.json +UB1 0.625 0.4 0.3125 0.275 +UB2 0.625 0.4 0.3125 0.275 +LexRank 0.0625 0.0 0.0625 0.0125 +TextRank 0.3125 0.2 0.25 0.125 +Luhn 0.3125 0.0 0.125 0.05 +ICSI 0.5625 0.2 0.3125 0.2125 +3e7dca8b7b0018a393e66b248be73b884a802752.json +UB1 0.56098 0.3 0.39024 0.26957 +UB2 0.46341 0.35 0.39024 0.3087 +LexRank 0.12195 0.0 0.07317 0.02609 +TextRank 0.09756 0.0 0.09756 0.01739 +Luhn 0.09756 0.0 0.07317 0.0087 +ICSI 0.21951 0.05 0.17073 0.05217 +2d7e9eb8c1fda4bdf7c7a9206770e4b5c5f0975a.json +UB1 0.42105 0.08108 0.18421 0.14623 +UB2 0.28947 0.18919 0.23684 0.17925 +LexRank 0.18421 0.0 0.10526 0.03774 +TextRank 0.26316 0.08108 0.10526 0.08491 +Luhn 0.13158 0.0 0.05263 0.02358 +ICSI 0.39474 0.05405 0.18421 0.11792 +2cba90fe1bab8eaeb68597cce4b9f9a24d32896a.json +UB1 0.59016 0.33333 0.39344 0.37143 +UB2 0.57377 0.41667 0.45902 0.38571 +LexRank 0.2623 0.01667 0.13115 0.07429 +TextRank 0.11475 0.01667 0.09836 0.03143 +Luhn 0.18033 0.03333 0.14754 0.04857 +ICSI 0.2623 0.03333 0.13115 0.07714 +05cdeb78ab46ff6c0d33dc63a71d4e555648f316.json +UB1 0.5 0.20513 0.325 0.20982 +UB2 0.575 0.35897 0.275 0.34821 +LexRank 0.35 0.15385 0.25 0.16964 +TextRank 0.15 0.0 0.125 0.03125 +Luhn 0.1 0.0 0.075 0.01786 +ICSI 0.225 0.0 0.125 0.05357 +33e760d3faaefc33c5a560571c8d073c3dc62be6.json +UB1 0.28 0.125 0.2 0.08209 +UB2 0.2 0.125 0.2 0.06716 +LexRank 0.16 0.0 0.12 0.04478 +TextRank 0.08 0.0 0.08 0.00746 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.08 0.0 0.08 0.01493 +00a4d4b148cde3ee551c6956aed27b6e1abf8431.json +UB1 0.45455 0.03704 0.14545 0.1242 +UB2 0.4 0.22222 0.27273 0.1879 +LexRank 0.2 0.01852 0.14545 0.05414 +TextRank 0.05455 0.0 0.05455 0.00955 +Luhn 0.05455 0.0 0.05455 0.00955 +ICSI 0.25455 0.01852 0.14545 0.06688 +13cca8f4e1b3b8e9f373e956364d7238cb0e73e1.json +UB1 0.35165 0.08889 0.13187 0.10189 +UB2 0.2967 0.14444 0.18681 0.10566 +LexRank 0.13187 0.0 0.07692 0.02264 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.21978 0.01111 0.0989 0.0434 +8ed6054558cfdeb179da039e4500210ad338aa96.json +UB1 0.53488 0.2381 0.37209 0.23967 +UB2 0.55814 0.40476 0.37209 0.33471 +LexRank 0.18605 0.0 0.09302 0.03719 +TextRank 0.02326 0.0 0.02326 0.00413 +Luhn 0.27907 0.02381 0.13953 0.07025 +ICSI 0.39535 0.19048 0.32558 0.20661 +296a134a501d96483d47ab586bbda0d9b39f0c97.json +UB1 0.44118 0.15152 0.20588 0.15957 +UB2 0.32353 0.18182 0.29412 0.16489 +LexRank 0.17647 0.0303 0.05882 0.03723 +TextRank 0.32353 0.06061 0.14706 0.09574 +Luhn 0.11765 0.0 0.08824 0.0266 +ICSI 0.23529 0.0303 0.17647 0.06915 +61919595ae7c83007bacbe6b557a190baf15db5b.json +UB1 0.57143 0.3253 0.34524 0.30943 +UB2 0.55952 0.36145 0.36905 0.32377 +LexRank 0.2381 0.08434 0.10714 0.07992 +TextRank 0.19048 0.09639 0.13095 0.11066 +Luhn 0.20238 0.08434 0.15476 0.11066 +ICSI 0.2381 0.08434 0.14286 0.1168 +76942d961b3f56924c5f9616d4cbed60063c9b5b.json +UB1 0.69048 0.46341 0.47619 0.38136 +UB2 0.69048 0.5122 0.47619 0.44068 +LexRank 0.11905 0.02439 0.07143 0.02542 +TextRank 0.07143 0.0 0.04762 0.00847 +Luhn 0.40476 0.21951 0.35714 0.24153 +ICSI 0.45238 0.2439 0.40476 0.2161 +80325a7eb0fe8cc696fb9b40fe4d4c94706b33b2.json +UB1 0.41379 0.14035 0.36207 0.16566 +UB2 0.43103 0.21053 0.2069 0.17771 +LexRank 0.12069 0.0 0.05172 0.02108 +TextRank 0.18966 0.0 0.12069 0.04518 +Luhn 0.10345 0.0 0.06897 0.01807 +ICSI 0.2069 0.01754 0.10345 0.05422 +5e2e4c39294a327c616f0b83cbcf3530f0107f19.json +UB1 0.40909 0.13953 0.27273 0.18145 +UB2 0.29545 0.16279 0.18182 0.13306 +LexRank 0.06818 0.0 0.04545 0.0121 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.06818 0.0 0.04545 0.0121 +73b98e78ecb67128efe8ec8d4047fe2a29b0a8c0.json +UB1 0.70833 0.51064 0.52083 0.43382 +UB2 0.66667 0.51064 0.5 0.42279 +LexRank 0.22917 0.06383 0.125 0.08456 +TextRank 0.35417 0.23404 0.3125 0.22794 +Luhn 0.35417 0.23404 0.3125 0.22794 +ICSI 0.375 0.23404 0.27083 0.24632 +2c8b8cb4a1d98d509a91d45249cd68c457216ea9.json +UB1 0.35 0.05128 0.225 0.09821 +UB2 0.25 0.07692 0.1 0.07589 +LexRank 0.225 0.0 0.15 0.05357 +TextRank 0.125 0.0 0.075 0.02232 +Luhn 0.1 0.0 0.075 0.01786 +ICSI 0.075 0.0 0.075 0.01339 +6fd882dd15412e2231fffa6baa76c495b9259420.json +UB1 0.51064 0.13978 0.15957 0.15328 +UB2 0.5 0.22581 0.2234 0.18066 +LexRank 0.28723 0.05376 0.14894 0.07482 +TextRank 0.21277 0.01075 0.11702 0.0438 +Luhn 0.21277 0.01075 0.08511 0.04562 +ICSI 0.31915 0.05376 0.1383 0.09489 +35a16aad948b24ecc7a9d8b5538ab0f108a3358a.json +UB1 0.51282 0.21053 0.20513 0.19725 +UB2 0.41026 0.26316 0.20513 0.19725 +LexRank 0.15385 0.0 0.07692 0.02752 +TextRank 0.07692 0.0 0.07692 0.01376 +Luhn 0.17949 0.02632 0.12821 0.04587 +ICSI 0.17949 0.02632 0.07692 0.05505 +0e29b6d2904a0b5ea9e0d37d2d12536b9cd08d18.json +UB1 0.63415 0.35802 0.40244 0.32353 +UB2 0.52439 0.32099 0.42683 0.28782 +LexRank 0.32927 0.11111 0.2439 0.13235 +TextRank 0.12195 0.0 0.06098 0.02311 +Luhn 0.12195 0.0 0.06098 0.02311 +ICSI 0.23171 0.01235 0.12195 0.05252 +2e66490de21399d146d60f05ca275751d23bc295.json +UB1 0.54545 0.28125 0.30303 0.26374 +UB2 0.54545 0.28125 0.30303 0.26374 +LexRank 0.12121 0.03125 0.09091 0.02747 +TextRank 0.27273 0.09375 0.18182 0.09341 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.06061 0.0 0.06061 0.01099 +556de2abb8a594056c939af8501be8940e6a6fd1.json +UB1 0.58333 0.17391 0.20833 0.26562 +UB2 0.5 0.21739 0.20833 0.24219 +LexRank 0.08333 0.0 0.08333 0.01562 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.125 0.0 0.08333 0.02344 +ICSI 0.20833 0.0 0.125 0.0625 +4b9c6279130786aa664b8cb295666a2a9cf89647.json +UB1 0.4898 0.125 0.18367 0.14748 +UB2 0.4898 0.125 0.20408 0.14388 +LexRank 0.22449 0.0 0.08163 0.04676 +TextRank 0.22449 0.10417 0.20408 0.08633 +Luhn 0.08163 0.0 0.06122 0.01439 +ICSI 0.26531 0.0 0.14286 0.05036 +2d5e425d78dae1ab3ecacdd9d44296b8f857b910.json +UB1 0.36364 0.04651 0.20455 0.1129 +UB2 0.15909 0.06977 0.11364 0.04435 +LexRank 0.13636 0.0 0.11364 0.02823 +TextRank 0.13636 0.0 0.11364 0.02823 +Luhn 0.11364 0.0 0.09091 0.02419 +ICSI 0.22727 0.0 0.11364 0.04839 +28fb777449d6da0591e3ff655ef26bfea4e4517d.json +UB1 0.41463 0.225 0.19512 0.16087 +UB2 0.41463 0.225 0.19512 0.16087 +LexRank 0.09756 0.0 0.07317 0.01739 +TextRank 0.04878 0.0 0.02439 0.0087 +Luhn 0.07317 0.0 0.04878 0.01304 +ICSI 0.09756 0.0 0.09756 0.02174 +449740e590f6e8296d1972fc3c4c29220cde9616.json +UB1 0.54054 0.19444 0.24324 0.19417 +UB2 0.45946 0.22222 0.18919 0.17961 +LexRank 0.16216 0.02778 0.13514 0.04854 +TextRank 0.21622 0.02778 0.13514 0.05825 +Luhn 0.24324 0.02778 0.13514 0.04854 +ICSI 0.21622 0.02778 0.13514 0.04369 +1cdee0b25af81ac4c3223eb3b88909acf9650075.json +UB1 0.48 0.16327 0.28 0.17958 +UB2 0.44 0.2449 0.3 0.18662 +LexRank 0.26 0.04082 0.14 0.07394 +TextRank 0.26 0.04082 0.18 0.0669 +Luhn 0.24 0.06122 0.14 0.07042 +ICSI 0.22 0.0 0.14 0.05634 +23454cc89162897ec4584429fee69ef51cd2a18b.json +UB1 0.40909 0.16279 0.22727 0.14516 +UB2 0.43182 0.2093 0.20455 0.17742 +LexRank 0.20455 0.02326 0.11364 0.04032 +TextRank 0.11364 0.0 0.11364 0.02419 +Luhn 0.15909 0.02326 0.11364 0.03226 +ICSI 0.11364 0.02326 0.09091 0.02419 +26c9b190114f4f8a4670b95dc901bd00c9cbd2b5.json +UB1 0.43137 0.06 0.29412 0.14483 +UB2 0.45098 0.2 0.2549 0.18276 +LexRank 0.19608 0.02 0.11765 0.05172 +TextRank 0.27451 0.0 0.13725 0.07241 +Luhn 0.23529 0.04 0.11765 0.06207 +ICSI 0.29412 0.1 0.19608 0.10345 +5730dadd957a7d77b4c46ec5e817ded8a797df36.json +UB1 0.53846 0.23684 0.30769 0.23853 +UB2 0.51282 0.23684 0.30769 0.22477 +LexRank 0.10256 0.0 0.07692 0.01835 +TextRank 0.20513 0.02632 0.10256 0.05505 +Luhn 0.10256 0.0 0.07692 0.01835 +ICSI 0.10256 0.0 0.05128 0.01835 +0db6076870d0b0d99205fce691a45c4c72edd2bf.json +UB1 0.63265 0.29167 0.34694 0.27338 +UB2 0.63265 0.35417 0.34694 0.30216 +LexRank 0.12245 0.02083 0.08163 0.02518 +TextRank 0.2449 0.02083 0.12245 0.05396 +Luhn 0.2449 0.02083 0.12245 0.05396 +ICSI 0.5102 0.22917 0.2449 0.20144 +6e59671b5a27ee2833971e10b7f1949494168680.json +UB1 0.48387 0.14754 0.19355 0.15449 +UB2 0.45161 0.19672 0.27419 0.1573 +LexRank 0.09677 0.01639 0.08065 0.02247 +TextRank 0.1129 0.0 0.06452 0.01966 +Luhn 0.08065 0.0 0.06452 0.01404 +ICSI 0.14516 0.01639 0.08065 0.03652 +6619805649ed1bc2c327325cd70620b7c4bd5565.json +UB1 0.44643 0.14545 0.21429 0.175 +UB2 0.35714 0.16364 0.21429 0.14062 +LexRank 0.17857 0.0 0.08929 0.03438 +TextRank 0.125 0.0 0.07143 0.025 +Luhn 0.16071 0.01818 0.08929 0.0375 +ICSI 0.10714 0.0 0.05357 0.01875 +42b10996e9f2e7697a086a2bbeca98a13e885f7f.json +UB1 0.59 0.25253 0.37 0.27226 +UB2 0.61 0.28283 0.32 0.26712 +LexRank 0.2 0.0202 0.11 0.04281 +TextRank 0.32 0.07071 0.15 0.09247 +Luhn 0.17 0.0101 0.1 0.04281 +ICSI 0.35 0.11111 0.16 0.13356 +51da371ea945119bc63822df5048b784eb149fcb.json +UB1 0.45545 0.11 0.22772 0.15254 +UB2 0.39604 0.16 0.18812 0.14068 +LexRank 0.17822 0.04 0.14851 0.05085 +TextRank 0.19802 0.02 0.10891 0.04915 +Luhn 0.18812 0.03 0.08911 0.04407 +ICSI 0.27723 0.04 0.14851 0.08475 +881bd67f6d54afc79ccaffacf7e7988f9664fede.json +UB1 0.60714 0.27273 0.32143 0.23125 +UB2 0.57143 0.32727 0.21429 0.24688 +LexRank 0.375 0.09091 0.14286 0.10938 +TextRank 0.17857 0.01818 0.125 0.0375 +Luhn 0.17857 0.0 0.08929 0.03438 +ICSI 0.21429 0.01818 0.10714 0.0375 +18144fd16523836ed83323facb4be280b5717a37.json +UB1 0.34783 0.08889 0.17391 0.12692 +UB2 0.28261 0.08889 0.08696 0.06923 +LexRank 0.28261 0.02222 0.15217 0.06923 +TextRank 0.13043 0.02222 0.1087 0.02692 +Luhn 0.30435 0.04444 0.17391 0.09615 +ICSI 0.26087 0.0 0.17391 0.06923 +6dd6fbefb1de73a4e02723cacdba22b8b24f69ee.json +UB1 0.25806 0.0 0.12903 0.07647 +UB2 0.19355 0.06667 0.16129 0.07059 +LexRank 0.12903 0.0 0.09677 0.02941 +TextRank 0.25806 0.0 0.19355 0.06471 +Luhn 0.06452 0.0 0.06452 0.01176 +ICSI 0.19355 0.03333 0.16129 0.05294 +567c5e7b4c9fc8afc53a0c569936ff4431c708e9.json +UB1 0.47619 0.17073 0.2619 0.20339 +UB2 0.38095 0.21951 0.16667 0.16949 +LexRank 0.14286 0.0 0.14286 0.03814 +TextRank 0.16667 0.02439 0.11905 0.04661 +Luhn 0.16667 0.04878 0.09524 0.04661 +ICSI 0.2381 0.07317 0.11905 0.0678 +3ab19b1c7dc24d94eac846d9ebb058c479fed044.json +UB1 0.43333 0.17241 0.23333 0.17073 +UB2 0.33333 0.17241 0.26667 0.15244 +LexRank 0.13333 0.03448 0.1 0.03049 +TextRank 0.26667 0.13793 0.2 0.14024 +Luhn 0.26667 0.13793 0.2 0.14024 +ICSI 0.26667 0.13793 0.2 0.14024 +7ffa32d8354faddf7e27c310232973e53722451b.json +UB1 0.4625 0.20253 0.2125 0.17888 +UB2 0.475 0.22785 0.2375 0.18966 +LexRank 0.3125 0.08861 0.2 0.10991 +TextRank 0.2375 0.03797 0.1375 0.06466 +Luhn 0.25 0.05063 0.1625 0.06681 +ICSI 0.3625 0.13924 0.225 0.14009 +88d9a473e593c631b5cee6115da49bc42aed44e4.json +UB1 0.39024 0.175 0.29268 0.13478 +UB2 0.36585 0.2 0.21951 0.15652 +LexRank 0.09756 0.0 0.04878 0.0087 +TextRank 0.07317 0.0 0.07317 0.01304 +Luhn 0.19512 0.0 0.12195 0.03478 +ICSI 0.07317 0.0 0.04878 0.01739 +3ee07f42c9b244c3582520f09a6b030270e7c051.json +UB1 0.54286 0.14493 0.17143 0.16832 +UB2 0.57143 0.15942 0.18571 0.18317 +LexRank 0.38571 0.13043 0.12857 0.13861 +TextRank 0.28571 0.04348 0.15714 0.07673 +Luhn 0.28571 0.05797 0.12857 0.06931 +ICSI 0.28571 0.08696 0.15714 0.08663 +3921156a838455446989d7e398f4bb332f5bc7d1.json +UB1 0.39286 0.05455 0.14286 0.10938 +UB2 0.375 0.09091 0.125 0.13437 +LexRank 0.19643 0.0 0.08929 0.0375 +TextRank 0.16071 0.0 0.10714 0.0375 +Luhn 0.07143 0.0 0.05357 0.01562 +ICSI 0.125 0.0 0.05357 0.02187 +3ee867655b67b6ed7b849e512620a84de3a8116c.json +UB1 0.39583 0.14894 0.25 0.125 +UB2 0.39583 0.14894 0.25 0.125 +LexRank 0.08333 0.0 0.0625 0.01471 +TextRank 0.125 0.0 0.08333 0.02941 +Luhn 0.08333 0.0 0.08333 0.01838 +ICSI 0.25 0.02128 0.125 0.04779 +4959c49394649aa0cd1a5003192754b0fa7df1b1.json +UB1 0.43333 0.13559 0.15 0.17442 +UB2 0.4 0.27119 0.21667 0.22965 +LexRank 0.25 0.08475 0.16667 0.10174 +TextRank 0.13333 0.0 0.1 0.03198 +Luhn 0.13333 0.0 0.1 0.03198 +ICSI 0.38333 0.13559 0.25 0.14535 +81e154f64ddc10f71dca10c121a7ae7f8e2475dc.json +UB1 0.48485 0.1875 0.30303 0.19231 +UB2 0.42424 0.1875 0.33333 0.17033 +LexRank 0.09091 0.0 0.09091 0.01648 +TextRank 0.15152 0.0 0.12121 0.02198 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.30303 0.125 0.24242 0.0989 +578c7747f64c03415530a984a557d0c7c0b10425.json +UB1 0.5641 0.28947 0.41026 0.25688 +UB2 0.48718 0.34211 0.38462 0.24771 +LexRank 0.02564 0.0 0.02564 0.00459 +TextRank 0.20513 0.10526 0.15385 0.06422 +Luhn 0.07692 0.0 0.05128 0.01376 +ICSI 0.10256 0.0 0.07692 0.01835 +1147fdeb10e8bf498b0430c7cf388c0754a632ca.json +UB1 0.55357 0.38182 0.25 0.30312 +UB2 0.53571 0.38182 0.23214 0.29375 +LexRank 0.21429 0.01818 0.10714 0.04688 +TextRank 0.30357 0.09091 0.19643 0.11563 +Luhn 0.19643 0.01818 0.08929 0.04375 +ICSI 0.23214 0.01818 0.10714 0.05 +13759fc31c1dc8ea669cd4a95be2812e8c5dab2c.json +UB1 0.55556 0.2125 0.34568 0.23191 +UB2 0.55556 0.2375 0.32099 0.22128 +LexRank 0.32099 0.0875 0.19753 0.10638 +TextRank 0.23457 0.0 0.11111 0.04681 +Luhn 0.11111 0.0 0.08642 0.02553 +ICSI 0.2716 0.0125 0.14815 0.06596 +634726038e039d233481020e80d308c1564d0ee7.json +UB1 0.43243 0.16667 0.27027 0.16019 +UB2 0.37838 0.13889 0.21622 0.14078 +LexRank 0.13514 0.02778 0.08108 0.02913 +TextRank 0.16216 0.02778 0.13514 0.03398 +Luhn 0.05405 0.0 0.05405 0.00971 +ICSI 0.21622 0.05556 0.13514 0.0534 +099724fd98ff665fc9a074e71a457cc6a38d4e86.json +UB1 0.45455 0.24074 0.25455 0.20701 +UB2 0.45455 0.24074 0.25455 0.20701 +LexRank 0.12727 0.0 0.05455 0.02866 +TextRank 0.07273 0.0 0.05455 0.01592 +Luhn 0.16364 0.0 0.07273 0.03185 +ICSI 0.18182 0.03704 0.12727 0.04777 +42ce31e4a8cde8f5f5a476fd06c3219df4806467.json +UB1 0.51852 0.26923 0.22222 0.20548 +UB2 0.48148 0.30769 0.22222 0.17123 +LexRank 0.14815 0.07692 0.14815 0.06849 +TextRank 0.18519 0.0 0.11111 0.03425 +Luhn 0.22222 0.07692 0.11111 0.05479 +ICSI 0.37037 0.23077 0.33333 0.14384 +6e36223826772b14286d5175ed15aa229f2bc22b.json +UB1 0.5283 0.28846 0.32075 0.25166 +UB2 0.62264 0.42308 0.58491 0.37417 +LexRank 0.22642 0.07692 0.11321 0.08278 +TextRank 0.03774 0.0 0.03774 0.00662 +Luhn 0.03774 0.0 0.03774 0.00662 +ICSI 0.32075 0.09615 0.18868 0.10596 +42b34715128c1801fd1e072f58a46f9ef157f74c.json +UB1 0.26923 0.12 0.19231 0.11429 +UB2 0.34615 0.16 0.26923 0.13571 +LexRank 0.19231 0.04 0.11538 0.04286 +TextRank 0.03846 0.0 0.03846 0.00714 +Luhn 0.07692 0.0 0.07692 0.01429 +ICSI 0.07692 0.0 0.03846 0.01429 +7a25bd2223baba5e14ea7ca137eb909595f98482.json +UB1 0.43956 0.16667 0.20879 0.16604 +UB2 0.46154 0.23333 0.23077 0.18491 +LexRank 0.28571 0.05556 0.14286 0.08113 +TextRank 0.23077 0.0 0.12088 0.0566 +Luhn 0.28571 0.05556 0.16484 0.08679 +ICSI 0.37363 0.13333 0.18681 0.13396 +878d035f9fa2e6c3e54ed8b6d904dcd2ec8e7a07.json +UB1 0.47368 0.05405 0.18421 0.14623 +UB2 0.44737 0.24324 0.36842 0.20283 +LexRank 0.15789 0.0 0.13158 0.03302 +TextRank 0.13158 0.0 0.10526 0.02358 +Luhn 0.13158 0.0 0.07895 0.02358 +ICSI 0.23684 0.0 0.13158 0.06132 +02fa4e3cd43ad4627c4bf7ceba9bf2cc73917948.json +UB1 0.26087 0.13636 0.26087 0.13115 +UB2 0.13043 0.04545 0.08696 0.03279 +LexRank 0.21739 0.09091 0.21739 0.05738 +TextRank 0.21739 0.09091 0.21739 0.05738 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.13043 0.04545 0.13043 0.03279 +0256a105710fe57132e8888b534a0f7de12adb9a.json +UB1 0.80769 0.64 0.80769 0.63571 +UB2 0.80769 0.68 0.80769 0.67143 +LexRank 0.11538 0.0 0.07692 0.02143 +TextRank 0.07692 0.0 0.07692 0.01429 +Luhn 0.07692 0.0 0.07692 0.01429 +ICSI 0.07692 0.0 0.07692 0.01429 +7866e840c598b624d47d1fe310743b27af791a7a.json +UB1 0.5122 0.325 0.34146 0.28261 +UB2 0.43902 0.35 0.36585 0.26522 +LexRank 0.07317 0.0 0.04878 0.01304 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.02439 0.0 0.02439 0.00435 +ICSI 0.19512 0.05 0.12195 0.06087 +243a8d77cf79bd54b16ca3909afc70fabad4b98f.json +UB1 0.42373 0.15517 0.18644 0.13314 +UB2 0.42373 0.25862 0.20339 0.19231 +LexRank 0.20339 0.01724 0.11864 0.04142 +TextRank 0.20339 0.03448 0.13559 0.04734 +Luhn 0.20339 0.03448 0.13559 0.04734 +ICSI 0.28814 0.10345 0.13559 0.08876 +3f786c3ba2349134dcb7663692ba575720f6510e.json +UB1 0.57447 0.23913 0.3617 0.26692 +UB2 0.53191 0.26087 0.34043 0.26316 +LexRank 0.14894 0.02174 0.10638 0.06015 +TextRank 0.08511 0.02174 0.06383 0.02256 +Luhn 0.14894 0.02174 0.10638 0.06015 +ICSI 0.14894 0.02174 0.10638 0.03008 +88cad9341e68b06fd1fde9b073484a37db75af78.json +UB1 0.63636 0.27632 0.27273 0.24439 +UB2 0.5974 0.31579 0.28571 0.24215 +LexRank 0.03896 0.0 0.02597 0.00673 +TextRank 0.1039 0.0 0.07792 0.02018 +Luhn 0.19481 0.0 0.1039 0.0426 +ICSI 0.41558 0.13158 0.19481 0.13229 +553a0839b29c191c6f32df0821fe14ebf9c60dda.json +UB1 0.51613 0.27869 0.20968 0.22472 +UB2 0.43548 0.2459 0.12903 0.17978 +LexRank 0.08065 0.0 0.06452 0.01404 +TextRank 0.06452 0.0 0.06452 0.01124 +Luhn 0.1129 0.0 0.08065 0.01966 +ICSI 0.17742 0.03279 0.09677 0.04494 +66113529be3107506cf46bdc1618830b1416516a.json +UB1 0.22727 0.0 0.18182 0.06034 +UB2 0.18182 0.09524 0.18182 0.06034 +LexRank 0.04545 0.0 0.04545 0.00862 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.09091 0.0 0.09091 0.01724 +640f0904a3b4082a26fe72536b1191b5e6961823.json +UB1 0.59804 0.31683 0.34314 0.30201 +UB2 0.52941 0.27723 0.34314 0.24832 +LexRank 0.30392 0.0396 0.11765 0.08054 +TextRank 0.06863 0.0 0.05882 0.01342 +Luhn 0.34314 0.12871 0.16667 0.14933 +ICSI 0.42157 0.23762 0.17647 0.2047 +6e558322daee839f92a0cd01205b2be9c7b202fe.json +UB1 0.44444 0.2 0.25 0.2 +UB2 0.36111 0.2 0.25 0.16 +LexRank 0.16667 0.02857 0.13889 0.045 +TextRank 0.13889 0.0 0.08333 0.025 +Luhn 0.08333 0.0 0.05556 0.015 +ICSI 0.25 0.02857 0.13889 0.065 +7e4d4dc3b7eb259c7fa8232f6aba661c11502ad3.json +UB1 0.63366 0.33 0.42574 0.31695 +UB2 0.61386 0.38 0.51485 0.37288 +LexRank 0.35644 0.08 0.18812 0.11695 +TextRank 0.34653 0.09 0.14851 0.10169 +Luhn 0.23762 0.03 0.10891 0.05932 +ICSI 0.42574 0.1 0.17822 0.12203 +5aad9519e766b5355ce18427d901213500d16371.json +UB1 0.41935 0.13333 0.29032 0.11765 +UB2 0.32258 0.13333 0.22581 0.11176 +LexRank 0.12903 0.03333 0.06452 0.02941 +TextRank 0.09677 0.0 0.06452 0.01176 +Luhn 0.09677 0.0 0.06452 0.01176 +ICSI 0.12903 0.03333 0.09677 0.04118 +2b37d26ee0b1a17f9741a807fba4f83f086f9d3c.json +UB1 0.6875 0.26582 0.3 0.33405 +UB2 0.6 0.34177 0.325 0.32759 +LexRank 0.3 0.11392 0.1625 0.11853 +TextRank 0.425 0.11392 0.2125 0.20259 +Luhn 0.4125 0.11392 0.2125 0.20043 +ICSI 0.3875 0.16456 0.1875 0.17026 +28a99ae9a836295f87118b7c042d4edb20f9340f.json +UB1 0.32 0.10204 0.22 0.09507 +UB2 0.32 0.14286 0.18 0.10563 +LexRank 0.22 0.06122 0.12 0.07042 +TextRank 0.1 0.0 0.06 0.01761 +Luhn 0.06 0.0 0.06 0.01056 +ICSI 0.18 0.06122 0.1 0.06338 +88f4fab5499775d37bd930eccadad9b44d7b3616.json +UB1 0.52941 0.26 0.2549 0.25517 +UB2 0.52941 0.26 0.2549 0.25517 +LexRank 0.15686 0.0 0.07843 0.02414 +TextRank 0.13725 0.0 0.07843 0.02759 +Luhn 0.09804 0.0 0.03922 0.01379 +ICSI 0.23529 0.04 0.17647 0.06897 +2a2a647d1b1b2975d025d4870aa429f921efda73.json +UB1 0.60465 0.21429 0.23256 0.24793 +UB2 0.55814 0.33333 0.48837 0.33058 +LexRank 0.18605 0.0 0.09302 0.04959 +TextRank 0.2093 0.04762 0.11628 0.04545 +Luhn 0.2093 0.04762 0.11628 0.04545 +ICSI 0.60465 0.33333 0.48837 0.34298 +7d9c6ea3a9293450d07269075b8ee1f8a79c8b0e.json +UB1 0.46341 0.125 0.12195 0.11304 +UB2 0.36585 0.15 0.14634 0.09565 +LexRank 0.09756 0.0 0.04878 0.01739 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.09756 0.0 0.07317 0.01739 +ICSI 0.07317 0.0 0.04878 0.01304 +123729bb272751e6d0898454cfb29f9de336e55a.json +UB1 0.7 0.46939 0.32 0.39437 +UB2 0.64 0.4898 0.54 0.39437 +LexRank 0.34 0.12245 0.2 0.11972 +TextRank 0.4 0.18367 0.32 0.1831 +Luhn 0.32 0.12245 0.26 0.13028 +ICSI 0.32 0.06122 0.14 0.07394 +189cd12ea4d3d0db3c1bf4c2f753264621ba3945.json +UB1 0.23944 0.04286 0.12676 0.06829 +UB2 0.19718 0.07143 0.12676 0.06585 +LexRank 0.12676 0.0 0.08451 0.02439 +TextRank 0.12676 0.0 0.08451 0.02439 +Luhn 0.12676 0.0 0.08451 0.02439 +ICSI 0.16901 0.01429 0.08451 0.03902 +639fda5c7722a56bdc9fb65402c5a77239c9c5b7.json +UB1 0.475 0.23077 0.275 0.17411 +UB2 0.5 0.38462 0.5 0.33036 +LexRank 0.175 0.0 0.1 0.02679 +TextRank 0.45 0.33333 0.4 0.30804 +Luhn 0.45 0.33333 0.4 0.30804 +ICSI 0.325 0.10256 0.175 0.11607 +0a07bd21176b3e43d2d484ee95604385f986f420.json +UB1 0.25 0.0 0.125 0.04688 +UB2 0.08333 0.04348 0.08333 0.02344 +LexRank 0.08333 0.0 0.04167 0.01562 +TextRank 0.08333 0.0 0.08333 0.02344 +Luhn 0.08333 0.0 0.08333 0.02344 +ICSI 0.08333 0.0 0.08333 0.01562 +69731081348975d62ca2269bd068e2df5a050187.json +UB1 0.7069 0.52632 0.31034 0.50904 +UB2 0.7069 0.52632 0.31034 0.50904 +LexRank 0.2931 0.03509 0.15517 0.06928 +TextRank 0.24138 0.01754 0.10345 0.05422 +Luhn 0.13793 0.01754 0.10345 0.03313 +ICSI 0.25862 0.01754 0.10345 0.05723 +40b56e61750970e6b85482ea9291a5667046fab4.json +UB1 0.38776 0.14583 0.34694 0.17986 +UB2 0.32653 0.16667 0.30612 0.15827 +LexRank 0.08163 0.02083 0.06122 0.01799 +TextRank 0.14286 0.02083 0.14286 0.05396 +Luhn 0.14286 0.02083 0.12245 0.05396 +ICSI 0.22449 0.04167 0.12245 0.06115 +8cc77fb7d9525b755f362684250ff2d639be4d92.json +UB1 0.33962 0.03846 0.13208 0.07947 +UB2 0.32075 0.09615 0.18868 0.09272 +LexRank 0.13208 0.0 0.07547 0.02318 +TextRank 0.16981 0.03846 0.09434 0.04305 +Luhn 0.18868 0.03846 0.11321 0.04636 +ICSI 0.13208 0.01923 0.0566 0.0298 +1a2c2afc065487175a697f06182d48fccde939c5.json +UB1 0.58 0.38776 0.52 0.36268 +UB2 0.62 0.38776 0.5 0.36972 +LexRank 0.18 0.0 0.14 0.04225 +TextRank 0.3 0.14286 0.28 0.15845 +Luhn 0.16 0.0 0.1 0.03521 +ICSI 0.4 0.18367 0.28 0.19014 +3867787310028240016ae24dde8049fcf13293f3.json +UB1 0.64062 0.47619 0.4375 0.44022 +UB2 0.625 0.47619 0.42188 0.4375 +LexRank 0.1875 0.0 0.10938 0.04076 +TextRank 0.09375 0.0 0.0625 0.01902 +Luhn 0.15625 0.01587 0.10938 0.04076 +ICSI 0.17188 0.0 0.07812 0.03533 +460d689239a945fd3856f98fc9b4f4aba2588cdc.json +UB1 0.40541 0.08333 0.27027 0.15049 +UB2 0.32432 0.16667 0.21622 0.10194 +LexRank 0.05405 0.0 0.05405 0.01456 +TextRank 0.02703 0.0 0.02703 0.00485 +Luhn 0.02703 0.0 0.02703 0.00485 +ICSI 0.13514 0.0 0.10811 0.02913 +0ba453782c03327f8aa144e4b57fbf12c778c159.json +UB1 0.64286 0.21818 0.25 0.2 +UB2 0.57143 0.21818 0.30357 0.19375 +LexRank 0.21429 0.03636 0.16071 0.07812 +TextRank 0.33929 0.10909 0.17857 0.12187 +Luhn 0.25 0.03636 0.17857 0.08125 +ICSI 0.32143 0.10909 0.16071 0.1125 +5b95f99855764cdb1d1bbd233a0d8f25109ccd24.json +UB1 0.41176 0.15152 0.26471 0.18617 +UB2 0.38235 0.21212 0.20588 0.18617 +LexRank 0.14706 0.0 0.08824 0.0266 +TextRank 0.02941 0.0 0.02941 0.00532 +Luhn 0.02941 0.0 0.02941 0.00532 +ICSI 0.17647 0.0 0.14706 0.04255 +59b5eedeadceab47f368261def064fc5cd578ba3.json +UB1 0.37037 0.16981 0.14815 0.15584 +UB2 0.37037 0.16981 0.14815 0.15584 +LexRank 0.2037 0.0 0.11111 0.03896 +TextRank 0.18519 0.0 0.11111 0.03247 +Luhn 0.25926 0.0566 0.16667 0.06818 +ICSI 0.16667 0.0 0.09259 0.03247 +6b46a5826adb8a6b8116c3b8d50ef1f845adb54f.json +UB1 0.33333 0.09756 0.2381 0.10169 +UB2 0.2381 0.09756 0.21429 0.08475 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.02381 0.0 0.02381 0.00424 +Luhn 0.02381 0.0 0.02381 0.00424 +ICSI 0.04762 0.0 0.02381 0.00847 +6d7a428f6f5df2108214485717ceb983db769ded.json +UB1 0.44231 0.11765 0.15385 0.125 +UB2 0.34615 0.13725 0.15385 0.09797 +LexRank 0.03846 0.0 0.03846 0.00676 +TextRank 0.09615 0.0 0.07692 0.02027 +Luhn 0.11538 0.01961 0.07692 0.02365 +ICSI 0.09615 0.0 0.07692 0.02027 +59aa2f5d0add289c68cb9b7a1124893a8f06650c.json +UB1 0.36585 0.075 0.14634 0.08261 +UB2 0.36585 0.1 0.14634 0.0913 +LexRank 0.12195 0.025 0.09756 0.03043 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.21951 0.025 0.12195 0.05652 +ICSI 0.19512 0.0 0.09756 0.04348 +3e7657d3f5fd4cf15f1cab72a62b079d9bd98846.json +UB1 0.45333 0.14865 0.22667 0.16359 +UB2 0.38667 0.21622 0.29333 0.17742 +LexRank 0.12 0.0 0.06667 0.02304 +TextRank 0.09333 0.0 0.06667 0.02074 +Luhn 0.09333 0.0 0.06667 0.02074 +ICSI 0.22667 0.0 0.10667 0.04378 +208bc0fc7fbbd19ed34964301110d4c6d1d0f94c.json +UB1 0.54386 0.21429 0.42105 0.2362 +UB2 0.52632 0.25 0.38596 0.27914 +LexRank 0.40351 0.14286 0.33333 0.19018 +TextRank 0.38596 0.125 0.29825 0.18098 +Luhn 0.2807 0.08929 0.21053 0.14417 +ICSI 0.19298 0.03571 0.12281 0.05215 +2567bb971c1d02a3131f612a9a17fe54aff349b5.json +UB1 0.36585 0.075 0.19512 0.09565 +UB2 0.2439 0.1 0.14634 0.05652 +LexRank 0.31707 0.025 0.19512 0.11304 +TextRank 0.14634 0.0 0.09756 0.03043 +Luhn 0.26829 0.025 0.09756 0.05217 +ICSI 0.21951 0.0 0.09756 0.04783 +797d037aca315b02e468d849ff197b9135385ac2.json +UB1 0.61333 0.33784 0.28 0.30876 +UB2 0.57333 0.33784 0.26667 0.30184 +LexRank 0.10667 0.0 0.05333 0.01843 +TextRank 0.18667 0.02703 0.12 0.0553 +Luhn 0.24 0.02703 0.13333 0.06452 +ICSI 0.24 0.02703 0.14667 0.06452 +0950e707d32f845db059b6c91a1bdbe19dad6e51.json +UB1 0.86538 0.72549 0.75 0.75338 +UB2 0.75 0.70588 0.75 0.70608 +LexRank 0.21154 0.01961 0.13462 0.06419 +TextRank 0.19231 0.03922 0.09615 0.0473 +Luhn 0.17308 0.0 0.11538 0.03716 +ICSI 0.28846 0.0 0.15385 0.08108 +52aedc80284ab5fa9e623f3e0445448f84cedc41.json +UB1 0.53623 0.30882 0.31884 0.27889 +UB2 0.56522 0.33824 0.31884 0.31407 +LexRank 0.15942 0.0 0.08696 0.03015 +TextRank 0.28986 0.11765 0.2029 0.14322 +Luhn 0.18841 0.02941 0.10145 0.0402 +ICSI 0.4058 0.17647 0.18841 0.16583 +1d5ff9c834d55f92a4694e9abaff1493652d1b54.json +UB1 0.475 0.17949 0.35 0.1875 +UB2 0.475 0.28205 0.25 0.25 +LexRank 0.075 0.0 0.075 0.01339 +TextRank 0.075 0.0 0.075 0.01339 +Luhn 0.05 0.0 0.05 0.00893 +ICSI 0.125 0.05128 0.125 0.03571 +37ba94fc581502b990db54241a8841e8e59a2e67.json +UB1 0.5 0.20482 0.2381 0.19672 +UB2 0.54762 0.3012 0.25 0.2418 +LexRank 0.21429 0.03614 0.11905 0.05943 +TextRank 0.11905 0.0 0.04762 0.02254 +Luhn 0.15476 0.06024 0.14286 0.04713 +ICSI 0.46429 0.16867 0.19048 0.18852 +5b1e19d3d5c8e1a987471ec3552b5979d62f53d8.json +UB1 0.47 0.20202 0.21 0.18664 +UB2 0.45 0.23232 0.2 0.17123 +LexRank 0.24 0.0101 0.08 0.07021 +TextRank 0.23 0.0404 0.11 0.07192 +Luhn 0.17 0.05051 0.11 0.05651 +ICSI 0.2 0.0303 0.11 0.05651 +0706acc3b6da23da2103db627c27a2a8149e010c.json +UB1 0.51923 0.21569 0.25 0.21284 +UB2 0.55769 0.31373 0.26923 0.26014 +LexRank 0.5 0.17647 0.30769 0.17905 +TextRank 0.30769 0.05882 0.19231 0.13176 +Luhn 0.46154 0.11765 0.25 0.1723 +ICSI 0.44231 0.17647 0.21154 0.18243 +3e97e8b87cdd7b3120170d085cabacf5a732e447.json +UB1 0.61702 0.28261 0.3617 0.25564 +UB2 0.55319 0.30435 0.34043 0.25188 +LexRank 0.14894 0.0 0.08511 0.03008 +TextRank 0.10638 0.0 0.06383 0.0188 +Luhn 0.06383 0.0 0.04255 0.01128 +ICSI 0.23404 0.08696 0.17021 0.07519 +77df94e31bf206c4565d9c7344cfba1386e40fea.json +UB1 0.45833 0.17391 0.25 0.16406 +UB2 0.41667 0.17391 0.25 0.15625 +LexRank 0.04167 0.0 0.04167 0.00781 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.04167 0.0 0.04167 0.00781 +ICSI 0.08333 0.0 0.04167 0.01562 +2751b807cb5c37fc078724596bbdde5bdc40fd55.json +UB1 0.44681 0.17391 0.12766 0.15038 +UB2 0.42553 0.21739 0.10638 0.16165 +LexRank 0.19149 0.0 0.08511 0.04135 +TextRank 0.17021 0.0 0.08511 0.03383 +Luhn 0.25532 0.02174 0.17021 0.07519 +ICSI 0.17021 0.0 0.10638 0.03383 +46fe4f72d9df7a7c2ed9672a60bd30724ec689ca.json +UB1 0.40741 0.16981 0.27778 0.1461 +UB2 0.51852 0.30189 0.22222 0.21104 +LexRank 0.2037 0.0566 0.14815 0.05195 +TextRank 0.07407 0.01887 0.05556 0.01623 +Luhn 0.11111 0.03774 0.05556 0.02597 +ICSI 0.14815 0.01887 0.09259 0.03247 +58566172968b4169e562e254b8de577062ea09c3.json +UB1 0.55102 0.125 0.30612 0.17626 +UB2 0.4898 0.1875 0.28571 0.20504 +LexRank 0.40816 0.0625 0.20408 0.1223 +TextRank 0.36735 0.10417 0.2449 0.14388 +Luhn 0.34694 0.10417 0.22449 0.13669 +ICSI 0.44898 0.10417 0.22449 0.1223 +2dd5086ecc75584190927a2d8d51761914b1acd3.json +UB1 0.38462 0.125 0.26154 0.13904 +UB2 0.33846 0.1875 0.23077 0.12567 +LexRank 0.2 0.03125 0.13846 0.05348 +TextRank 0.21538 0.09375 0.16923 0.09091 +Luhn 0.06154 0.0 0.04615 0.0107 +ICSI 0.26154 0.09375 0.16923 0.09893 +6c2438d06950b0ec502ad76840bb3343a392a744.json +UB1 0.38095 0.15 0.19048 0.13636 +UB2 0.28571 0.2 0.28571 0.14545 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09524 0.0 0.09524 0.00909 +ICSI 0.09524 0.0 0.09524 0.02727 +3e29d540bb2f7d699a20afefdca7cf159509e81b.json +UB1 0.28 0.0 0.16 0.08209 +UB2 0.28 0.08333 0.24 0.09701 +LexRank 0.04 0.0 0.04 0.00746 +TextRank 0.08 0.0 0.08 0.01493 +Luhn 0.08 0.0 0.08 0.01493 +ICSI 0.04 0.0 0.04 0.00746 +654f7af0433ae4c1d91a94c9c4e5c11c975490ad.json +UB1 0.4359 0.13158 0.23077 0.11468 +UB2 0.4359 0.21053 0.28205 0.14679 +LexRank 0.17949 0.0 0.10256 0.02752 +TextRank 0.20513 0.0 0.15385 0.04128 +Luhn 0.28205 0.10526 0.15385 0.08257 +ICSI 0.20513 0.0 0.10256 0.0367 +8df89a2c388f787c97e63f7492ca969684c08cee.json +UB1 0.70833 0.46479 0.41667 0.46394 +UB2 0.73611 0.47887 0.43056 0.47356 +LexRank 0.29167 0.02817 0.11111 0.06971 +TextRank 0.13889 0.01408 0.08333 0.02644 +Luhn 0.23611 0.02817 0.11111 0.05769 +ICSI 0.34722 0.15493 0.23611 0.17067 +5a1b4cdf4ae4cb41a4e3d5ad355b8e8cf4d90a48.json +UB1 0.58333 0.21739 0.25 0.16406 +UB2 0.33333 0.17391 0.16667 0.10156 +LexRank 0.04167 0.0 0.04167 0.00781 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +84a4b6cd776c81f75a79ef3d26c2bc00be6b524f.json +UB1 0.45455 0.09302 0.31818 0.16129 +UB2 0.38636 0.18605 0.34091 0.16129 +LexRank 0.09091 0.0 0.06818 0.0121 +TextRank 0.06818 0.0 0.04545 0.0121 +Luhn 0.13636 0.0 0.11364 0.03226 +ICSI 0.15909 0.02326 0.11364 0.03629 +21dcfb17dae6a679945574baf04f2615d7ab484d.json +UB1 0.68966 0.53571 0.65517 0.53797 +UB2 0.65517 0.5 0.58621 0.39873 +LexRank 0.06897 0.0 0.06897 0.01266 +TextRank 0.06897 0.0 0.06897 0.01266 +Luhn 0.06897 0.0 0.06897 0.01266 +ICSI 0.24138 0.17857 0.2069 0.13924 +4a4b5e65a8da5e1c9e4014f2ffb539607b044408.json +UB1 0.37209 0.09524 0.2093 0.1157 +UB2 0.34884 0.14286 0.13953 0.1405 +LexRank 0.04651 0.0 0.04651 0.00826 +TextRank 0.16279 0.0 0.09302 0.03306 +Luhn 0.16279 0.0 0.09302 0.03306 +ICSI 0.11628 0.0 0.06977 0.02066 +77b753cd567924f32076c566fea6be0c9b78177a.json +UB1 0.78571 0.71084 0.5 0.64754 +UB2 0.77381 0.71084 0.5 0.64549 +LexRank 0.28571 0.01205 0.11905 0.06762 +TextRank 0.2381 0.01205 0.08333 0.05533 +Luhn 0.15476 0.0 0.10714 0.02664 +ICSI 0.45238 0.26506 0.34524 0.26639 +6f52c444f2a5c32cca823c5e15d101d79f89f8b4.json +UB1 0.14286 0.0 0.09524 0.03636 +UB2 0.0 0.0 0.0 0.0 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.04762 0.0 0.04762 0.00909 +ICSI 0.0 0.0 0.0 0.0 +684e90ebdeb40b082ec2176aea202368906089cc.json +UB1 0.58065 0.36667 0.19355 0.32353 +UB2 0.6129 0.4 0.35484 0.35294 +LexRank 0.25806 0.06667 0.19355 0.08235 +TextRank 0.16129 0.0 0.12903 0.04118 +Luhn 0.19355 0.06667 0.19355 0.04706 +ICSI 0.25806 0.1 0.16129 0.11176 +721cfc60856827d84fd59fb2b997558364bcb74c.json +UB1 0.39024 0.11111 0.17073 0.14076 +UB2 0.40244 0.12346 0.17073 0.14916 +LexRank 0.19512 0.01235 0.09756 0.05252 +TextRank 0.14634 0.0 0.06098 0.02521 +Luhn 0.19512 0.02469 0.09756 0.05042 +ICSI 0.18293 0.02469 0.08537 0.04202 +18e7a7c6f79a5d76fcc3d75e428eaa3b2c7acaad.json +UB1 0.36111 0.11429 0.19444 0.1 +UB2 0.25 0.11429 0.19444 0.095 +LexRank 0.11111 0.0 0.05556 0.02 +TextRank 0.19444 0.0 0.11111 0.04 +Luhn 0.19444 0.0 0.11111 0.04 +ICSI 0.13889 0.02857 0.05556 0.03 +3dfa4cb311d9fb86a4352895143773e99e4b1c75.json +UB1 0.5814 0.21429 0.27907 0.18595 +UB2 0.53488 0.30952 0.39535 0.21074 +LexRank 0.04651 0.0 0.02326 0.00826 +TextRank 0.02326 0.0 0.02326 0.00413 +Luhn 0.06977 0.0 0.06977 0.0124 +ICSI 0.2093 0.07143 0.16279 0.06612 +33325214b60c103bfb7408d33f98f0cb55b88811.json +UB1 0.44737 0.24324 0.21053 0.17453 +UB2 0.47368 0.2973 0.28947 0.23585 +LexRank 0.07895 0.0 0.02632 0.01415 +TextRank 0.07895 0.0 0.07895 0.01415 +Luhn 0.07895 0.0 0.07895 0.01415 +ICSI 0.18421 0.10811 0.15789 0.07547 +176a53b513a034e532aa61dc5035b8478bd92773.json +UB1 0.39024 0.125 0.21951 0.13913 +UB2 0.29268 0.175 0.2439 0.13043 +LexRank 0.12195 0.0 0.04878 0.02174 +TextRank 0.07317 0.0 0.04878 0.01304 +Luhn 0.04878 0.0 0.02439 0.0087 +ICSI 0.07317 0.0 0.04878 0.01304 +24b2b2afee86d4c083383d73b677b295914c20bd.json +UB1 0.44118 0.09091 0.38235 0.17021 +UB2 0.38235 0.15152 0.26471 0.14894 +LexRank 0.20588 0.0303 0.17647 0.05319 +TextRank 0.08824 0.0303 0.08824 0.02128 +Luhn 0.08824 0.0303 0.08824 0.02128 +ICSI 0.26471 0.06061 0.14706 0.08511 +2215a32650f8002079473227339e84bdc27cca4d.json +UB1 0.33333 0.09375 0.18182 0.10989 +UB2 0.39394 0.125 0.15152 0.14286 +LexRank 0.15152 0.0 0.09091 0.03297 +TextRank 0.12121 0.0 0.06061 0.02198 +Luhn 0.12121 0.0 0.06061 0.02198 +ICSI 0.15152 0.0 0.06061 0.02747 +21903a1871343a45f4c97582fa24993947f452aa.json +UB1 0.38235 0.09091 0.32353 0.17553 +UB2 0.20588 0.12121 0.20588 0.13298 +LexRank 0.14706 0.0 0.08824 0.0266 +TextRank 0.05882 0.0 0.05882 0.01064 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.23529 0.0 0.11765 0.04787 +885c3fcf9cb6fa2a935bbcf56d3d8fb03251b0e0.json +UB1 0.42593 0.15094 0.27778 0.15909 +UB2 0.27778 0.18868 0.14815 0.11688 +LexRank 0.07407 0.0 0.03704 0.01299 +TextRank 0.12963 0.0 0.09259 0.02597 +Luhn 0.14815 0.0 0.07407 0.02597 +ICSI 0.12963 0.01887 0.09259 0.03247 +261b5b77e9398b5f18b9eef370161723bfb79851.json +UB1 0.3 0.03448 0.1 0.06098 +UB2 0.26667 0.13793 0.13333 0.09146 +LexRank 0.06667 0.0 0.03333 0.0122 +TextRank 0.1 0.0 0.1 0.02439 +Luhn 0.16667 0.0 0.1 0.03659 +ICSI 0.13333 0.0 0.1 0.03049 +4de20d908ddcc305ccb9712a6418f2e29ac3c573.json +UB1 0.47222 0.08571 0.27778 0.205 +UB2 0.36111 0.11429 0.22222 0.18 +LexRank 0.08333 0.0 0.05556 0.02 +TextRank 0.11111 0.02857 0.08333 0.025 +Luhn 0.13889 0.0 0.11111 0.025 +ICSI 0.16667 0.02857 0.11111 0.05 +59eb6bbe9fa2e2149000d88bc67a7669d2736d3f.json +UB1 0.45 0.20253 0.2875 0.18966 +UB2 0.4125 0.18987 0.2625 0.14224 +LexRank 0.075 0.0 0.05 0.01509 +TextRank 0.1 0.0 0.0625 0.0194 +Luhn 0.05 0.0 0.05 0.01078 +ICSI 0.2125 0.05063 0.125 0.05603 +6480a3d5c8cf4620180812c049f8812b67677b0e.json +UB1 0.51667 0.27119 0.26667 0.22674 +UB2 0.55 0.32203 0.25 0.25581 +LexRank 0.25 0.0678 0.21667 0.08721 +TextRank 0.3 0.10169 0.16667 0.11919 +Luhn 0.3 0.10169 0.16667 0.11919 +ICSI 0.26667 0.08475 0.16667 0.0843 +44901a6edbcf8a5cf4fbe4a4b0acd9393816f216.json +UB1 0.72603 0.33333 0.31507 0.33649 +UB2 0.63014 0.36111 0.31507 0.36019 +LexRank 0.17808 0.02778 0.09589 0.04502 +TextRank 0.16438 0.01389 0.10959 0.04028 +Luhn 0.24658 0.05556 0.13699 0.08057 +ICSI 0.24658 0.05556 0.12329 0.06398 +38c2bb474e0ec93c6670f11590f80fe6e466bab1.json +UB1 0.38235 0.15152 0.20588 0.15426 +UB2 0.38235 0.18182 0.20588 0.15957 +LexRank 0.17647 0.0 0.08824 0.03723 +TextRank 0.11765 0.0 0.08824 0.0266 +Luhn 0.05882 0.0 0.05882 0.01596 +ICSI 0.11765 0.0 0.08824 0.0266 +1f6f07f7f46f23dc307be154b8cd39928b8b8c2f.json +UB1 0.5625 0.35484 0.34375 0.32955 +UB2 0.5 0.41935 0.34375 0.36932 +LexRank 0.09375 0.0 0.0625 0.01705 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09375 0.0 0.0625 0.01705 +ICSI 0.0625 0.0 0.03125 0.01136 +1d809716610f614c7c19d148c67c209a1c9119cd.json +UB1 0.71014 0.52941 0.55072 0.48241 +UB2 0.71014 0.52941 0.55072 0.48241 +LexRank 0.31884 0.10294 0.18841 0.09799 +TextRank 0.43478 0.13235 0.23188 0.16583 +Luhn 0.37681 0.16176 0.2029 0.14573 +ICSI 0.62319 0.36765 0.24638 0.38191 +2143c52676777bef2eb59d77aae18ce7dac829c7.json +UB1 0.52632 0.18919 0.31579 0.21226 +UB2 0.47368 0.21622 0.39474 0.21698 +LexRank 0.05263 0.0 0.05263 0.00943 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.23684 0.10811 0.15789 0.09434 +ICSI 0.05263 0.0 0.05263 0.00943 +118bd44c83db746eb85a4902abdf1848325e8605.json +UB1 0.36364 0.0 0.15152 0.08242 +UB2 0.27273 0.125 0.18182 0.07692 +LexRank 0.27273 0.0625 0.24242 0.09341 +TextRank 0.27273 0.0 0.09091 0.04945 +Luhn 0.09091 0.0 0.09091 0.01648 +ICSI 0.21212 0.03125 0.12121 0.04396 +6191f1b62e746740c75e7ffba94ee14cceba4f8b.json +UB1 0.375 0.12903 0.1875 0.15909 +UB2 0.25 0.09677 0.1875 0.11364 +LexRank 0.03125 0.0 0.03125 0.00568 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.03125 0.0 0.03125 0.00568 +2b489c85bc87cccf16d0f706820f76e4b71470c3.json +UB1 0.37255 0.12 0.2549 0.13793 +UB2 0.33333 0.16 0.29412 0.12069 +LexRank 0.11765 0.04 0.11765 0.03793 +TextRank 0.13725 0.0 0.09804 0.03103 +Luhn 0.09804 0.0 0.03922 0.01724 +ICSI 0.21569 0.06 0.15686 0.05862 +59c53167a409fdfe690ade16899bdaea4d29a681.json +UB1 0.38462 0.21053 0.15385 0.16514 +UB2 0.33333 0.18421 0.12821 0.14679 +LexRank 0.15385 0.05263 0.10256 0.04128 +TextRank 0.12821 0.02632 0.10256 0.02752 +Luhn 0.20513 0.0 0.07692 0.05046 +ICSI 0.25641 0.07895 0.15385 0.07339 +5adad10aec071ab3ed3647fd079f2b4bbef20574.json +UB1 0.4375 0.12903 0.34375 0.15909 +UB2 0.34375 0.29032 0.21875 0.15909 +LexRank 0.1875 0.03226 0.09375 0.03409 +TextRank 0.0625 0.0 0.0625 0.01136 +Luhn 0.03125 0.0 0.03125 0.00568 +ICSI 0.1875 0.09677 0.125 0.07386 +8e84c3f7249650e9f33f2dfb37a9bf0bbe86d20c.json +UB1 0.74026 0.43421 0.42857 0.43498 +UB2 0.64935 0.43421 0.41558 0.42377 +LexRank 0.1039 0.0 0.06494 0.02242 +TextRank 0.06494 0.01316 0.03896 0.01345 +Luhn 0.28571 0.13158 0.23377 0.14798 +ICSI 0.32468 0.11842 0.22078 0.1435 +8367470eadc17d1877bfb50bc43f5205fc5a95de.json +UB1 0.4 0.20833 0.2 0.16418 +UB2 0.4 0.20833 0.2 0.16418 +LexRank 0.08 0.0 0.08 0.01493 +TextRank 0.08 0.0 0.08 0.01493 +Luhn 0.12 0.0 0.12 0.02239 +ICSI 0.12 0.0 0.08 0.02239 +5b3a77b6b9f662e7e497e16bb1068102a5d4ae25.json +UB1 0.72289 0.35366 0.48193 0.40664 +UB2 0.72289 0.43902 0.54217 0.46058 +LexRank 0.25301 0.06098 0.15663 0.09336 +TextRank 0.33735 0.08537 0.19277 0.12241 +Luhn 0.22892 0.02439 0.10843 0.06017 +ICSI 0.36145 0.04878 0.26506 0.139 +71bfe531e41d615465ceb4d917515d944fe22f27.json +UB1 0.46512 0.19048 0.25581 0.19008 +UB2 0.37209 0.21429 0.18605 0.17355 +LexRank 0.13953 0.0 0.06977 0.03719 +TextRank 0.04651 0.0 0.04651 0.00826 +Luhn 0.04651 0.0 0.04651 0.00826 +ICSI 0.16279 0.0 0.11628 0.03306 +1f4e0a5514c5fd01d56c1785854ee22ef883cee9.json +UB1 0.4717 0.03846 0.22642 0.12583 +UB2 0.43396 0.15385 0.15094 0.11589 +LexRank 0.20755 0.01923 0.11321 0.03974 +TextRank 0.13208 0.0 0.11321 0.0298 +Luhn 0.11321 0.0 0.07547 0.01987 +ICSI 0.26415 0.0 0.13208 0.04967 +194cd4fc4d62deae45f13200267f9cd1af7008c2.json +UB1 0.80882 0.62687 0.42647 0.55102 +UB2 0.80882 0.68657 0.61765 0.64541 +LexRank 0.25 0.04478 0.11765 0.06888 +TextRank 0.11765 0.01493 0.07353 0.02806 +Luhn 0.22059 0.02985 0.16176 0.06122 +ICSI 0.27941 0.0597 0.17647 0.07398 +82779f5e0fa913841f828daa3b662f320870fee0.json +UB1 0.55172 0.28571 0.31034 0.27848 +UB2 0.55172 0.28571 0.31034 0.27848 +LexRank 0.27586 0.07143 0.13793 0.06329 +TextRank 0.03448 0.0 0.03448 0.00633 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.10345 0.0 0.10345 0.01899 +6627a9153b177adaca96612092b4f5bbccc7ec83.json +UB1 0.65517 0.15789 0.2931 0.20783 +UB2 0.60345 0.22807 0.27586 0.25301 +LexRank 0.34483 0.12281 0.22414 0.13554 +TextRank 0.10345 0.07018 0.10345 0.0512 +Luhn 0.10345 0.07018 0.10345 0.0512 +ICSI 0.41379 0.14035 0.27586 0.1506 +11d19ae23779cc706d10624ab6d00a03b6679323.json +UB1 0.74227 0.5625 0.34021 0.54417 +UB2 0.72165 0.625 0.28866 0.57597 +LexRank 0.40206 0.17708 0.20619 0.16961 +TextRank 0.13402 0.0 0.07216 0.0265 +Luhn 0.10309 0.01042 0.07216 0.02297 +ICSI 0.37113 0.07292 0.18557 0.13428 +6147dd84d4a8a74a9dc23973d23298c9830d7e16.json +UB1 0.36842 0.13514 0.18421 0.12736 +UB2 0.34211 0.13514 0.15789 0.12736 +LexRank 0.02632 0.0 0.02632 0.00472 +TextRank 0.05263 0.0 0.02632 0.00943 +Luhn 0.05263 0.0 0.02632 0.00943 +ICSI 0.02632 0.0 0.02632 0.00472 +7c0c9582af94606ce850627681b9d7a3baa4bea5.json +UB1 0.66279 0.32941 0.38372 0.344 +UB2 0.60465 0.38824 0.4186 0.354 +LexRank 0.12791 0.01176 0.0814 0.024 +TextRank 0.03488 0.0 0.03488 0.006 +Luhn 0.31395 0.08235 0.18605 0.102 +ICSI 0.43023 0.12941 0.24419 0.144 +65169ff3c28164e2db1fdfb39b045ffaac6283e3.json +UB1 0.6 0.30769 0.3 0.26339 +UB2 0.55 0.35897 0.5 0.36607 +LexRank 0.075 0.0 0.05 0.01339 +TextRank 0.225 0.02564 0.1 0.04464 +Luhn 0.225 0.02564 0.1 0.04464 +ICSI 0.175 0.02564 0.125 0.04018 +0a7ef9512804ad69230567169ea1011e3696dc9c.json +UB1 0.52632 0.24324 0.28947 0.23585 +UB2 0.52632 0.24324 0.28947 0.23585 +LexRank 0.23684 0.05405 0.18421 0.07547 +TextRank 0.21053 0.02703 0.10526 0.05189 +Luhn 0.15789 0.0 0.13158 0.0283 +ICSI 0.28947 0.08108 0.13158 0.09434 +841c10b740e76b35feea0511f9f7bc1efe850cef.json +UB1 0.47368 0.07143 0.24561 0.12883 +UB2 0.38596 0.16071 0.2807 0.12577 +LexRank 0.12281 0.0 0.07018 0.02454 +TextRank 0.19298 0.0 0.08772 0.03681 +Luhn 0.21053 0.01786 0.12281 0.06135 +ICSI 0.22807 0.0 0.12281 0.04601 +29a64ce36f3b96fe3d3e784a73e0081aa3e568c0.json +UB1 0.59259 0.39623 0.37037 0.35065 +UB2 0.55556 0.39623 0.25926 0.34091 +LexRank 0.27778 0.09434 0.16667 0.10714 +TextRank 0.14815 0.0 0.11111 0.02597 +Luhn 0.11111 0.0 0.05556 0.01948 +ICSI 0.27778 0.01887 0.14815 0.06494 +1ad0ed329b01a8aea7711e205c09cb0b926e56dc.json +UB1 0.41026 0.10526 0.17949 0.13303 +UB2 0.30769 0.21053 0.23077 0.1422 +LexRank 0.15385 0.02632 0.12821 0.03211 +TextRank 0.12821 0.0 0.07692 0.02294 +Luhn 0.33333 0.21053 0.25641 0.15138 +ICSI 0.20513 0.07895 0.15385 0.06881 +8ebc03661325c05dec8cec83e926b43e8cbe0378.json +UB1 0.53333 0.16216 0.25333 0.20737 +UB2 0.52 0.27027 0.25333 0.24194 +LexRank 0.13333 0.0 0.09333 0.03456 +TextRank 0.2 0.01351 0.09333 0.04147 +Luhn 0.26667 0.02703 0.13333 0.06912 +ICSI 0.25333 0.04054 0.17333 0.08986 +75d7f5e63ff15b27a80a2da051e1f4f7ccdb5c48.json +UB1 0.5 0.19048 0.36364 0.24138 +UB2 0.45455 0.19048 0.36364 0.23276 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.09091 0.04762 0.09091 0.02586 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.09091 0.04762 0.09091 0.02586 +7bdb070cdb61c47ac6712ce9e0207115ad5354b5.json +UB1 0.75676 0.61111 0.59459 0.52913 +UB2 0.75676 0.61111 0.59459 0.52913 +LexRank 0.13514 0.0 0.10811 0.03398 +TextRank 0.13514 0.0 0.10811 0.03398 +Luhn 0.13514 0.0 0.10811 0.03398 +ICSI 0.13514 0.0 0.08108 0.02913 +6b52acf049aedeba96aa988422b9ea585e2b687a.json +UB1 0.38462 0.15789 0.25641 0.1789 +UB2 0.35897 0.18421 0.25641 0.16514 +LexRank 0.12821 0.0 0.07692 0.02294 +TextRank 0.07692 0.0 0.05128 0.00917 +Luhn 0.07692 0.0 0.05128 0.00917 +ICSI 0.12821 0.0 0.07692 0.02752 +1c366f3e70e2682b7aaeefeac9476c7b995e11fb.json +UB1 0.37209 0.02381 0.16279 0.10331 +UB2 0.39535 0.21429 0.2093 0.19835 +LexRank 0.06977 0.0 0.04651 0.0124 +TextRank 0.16279 0.02381 0.06977 0.04545 +Luhn 0.06977 0.0 0.04651 0.0124 +ICSI 0.11628 0.0 0.09302 0.02479 +37c0f6ea36d6d4d032d184074785ec467c2e2efd.json +UB1 0.61905 0.35484 0.39683 0.30663 +UB2 0.61905 0.45161 0.34921 0.37293 +LexRank 0.50794 0.22581 0.22222 0.25138 +TextRank 0.4127 0.16129 0.2381 0.19613 +Luhn 0.30159 0.04839 0.14286 0.07182 +ICSI 0.38095 0.22581 0.22222 0.18232 +541acf10946f8f3a7cc614a0c7e33df27072abe1.json +UB1 0.30303 0.0 0.12121 0.05495 +UB2 0.06061 0.03125 0.06061 0.01648 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.06061 0.0 0.0303 0.01099 +ICSI 0.0 0.0 0.0 0.0 +6e7199cd488a3861ae550846297bcc1e16269983.json +UB1 0.5 0.18868 0.24074 0.15909 +UB2 0.5 0.28302 0.27778 0.22403 +LexRank 0.22222 0.03774 0.14815 0.06169 +TextRank 0.24074 0.09434 0.18519 0.11039 +Luhn 0.16667 0.0566 0.16667 0.04545 +ICSI 0.2037 0.09434 0.11111 0.07468 +179e64b00c25c551b02751b5f3beac33205bf700.json +UB1 0.35294 0.0303 0.23529 0.10106 +UB2 0.29412 0.15152 0.20588 0.10638 +LexRank 0.05882 0.0303 0.05882 0.01064 +TextRank 0.05882 0.0 0.02941 0.01064 +Luhn 0.05882 0.0 0.02941 0.01064 +ICSI 0.05882 0.0 0.05882 0.01596 +71f084ccc52707e6a06c3e0694e9bb28f4de648c.json +UB1 0.34375 0.12903 0.28125 0.11932 +UB2 0.28125 0.12903 0.25 0.10795 +LexRank 0.25 0.0 0.125 0.06818 +TextRank 0.25 0.0 0.15625 0.06818 +Luhn 0.03125 0.0 0.03125 0.00568 +ICSI 0.1875 0.03226 0.09375 0.03977 +7a02e16ed1701a5cca61c00a15dd03fc18edbcd5.json +UB1 0.48529 0.28358 0.22059 0.20918 +UB2 0.47059 0.28358 0.22059 0.20408 +LexRank 0.26471 0.07463 0.13235 0.07398 +TextRank 0.17647 0.02985 0.13235 0.04592 +Luhn 0.17647 0.02985 0.13235 0.04592 +ICSI 0.23529 0.04478 0.11765 0.07908 +2ad55e65e3c68bd43d1b02073a9443104f24a85e.json +UB1 0.21053 0.11111 0.21053 0.10204 +UB2 0.21053 0.11111 0.21053 0.10204 +LexRank 0.21053 0.11111 0.21053 0.10204 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.21053 0.11111 0.21053 0.10204 +78d90f57dae5cff6c9223e1d59d96e514d504da5.json +UB1 0.5 0.27273 0.47059 0.25 +UB2 0.47059 0.27273 0.47059 0.24468 +LexRank 0.26471 0.06061 0.11765 0.06383 +TextRank 0.02941 0.0 0.02941 0.0 +Luhn 0.17647 0.0303 0.08824 0.03723 +ICSI 0.11765 0.0303 0.05882 0.0266 +1a73f65e265fc5cda62d9bff7472b44b10f223a0.json +UB1 0.42553 0.1087 0.14894 0.13158 +UB2 0.40426 0.13043 0.2766 0.15789 +LexRank 0.12766 0.0 0.10638 0.02256 +TextRank 0.06383 0.0 0.04255 0.0188 +Luhn 0.08511 0.0 0.06383 0.01504 +ICSI 0.19149 0.0 0.08511 0.04511 +4b5d2adbf38d3cc44b3b6292418883511b8bb6ff.json +UB1 0.48485 0.0625 0.27273 0.14835 +UB2 0.30303 0.125 0.24242 0.10989 +LexRank 0.06061 0.0 0.06061 0.01099 +TextRank 0.15152 0.03125 0.09091 0.03297 +Luhn 0.24242 0.03125 0.12121 0.05495 +ICSI 0.24242 0.03125 0.15152 0.07143 +26fc19f548be380b938b9b06e7655c938b21231a.json +UB1 0.30435 0.04444 0.15217 0.08846 +UB2 0.34783 0.13333 0.13043 0.10385 +LexRank 0.17391 0.04444 0.1087 0.04231 +TextRank 0.1087 0.0 0.06522 0.01923 +Luhn 0.08696 0.0 0.06522 0.01538 +ICSI 0.1087 0.02222 0.08696 0.02692 +31e40c33f992e00630195cc5ee794d01608a7ac4.json +UB1 0.3871 0.2 0.19355 0.13529 +UB2 0.35484 0.2 0.29032 0.12941 +LexRank 0.22581 0.06667 0.12903 0.08824 +TextRank 0.16129 0.06667 0.16129 0.06471 +Luhn 0.16129 0.06667 0.16129 0.06471 +ICSI 0.22581 0.06667 0.16129 0.08235 +6d18d2fac011ef6be6550d0dfb6d9fe159f44417.json +UB1 0.35849 0.07692 0.15094 0.10596 +UB2 0.32075 0.21154 0.16981 0.13576 +LexRank 0.16981 0.05769 0.13208 0.05298 +TextRank 0.11321 0.03846 0.07547 0.03311 +Luhn 0.0566 0.0 0.03774 0.00993 +ICSI 0.18868 0.05769 0.11321 0.05298 +74fdfc9c759ef19ddfff1c3fa342ea5e1df31d0b.json +UB1 0.51282 0.10526 0.25641 0.18807 +UB2 0.35897 0.18421 0.25641 0.11927 +LexRank 0.07692 0.0 0.05128 0.01376 +TextRank 0.05128 0.0 0.05128 0.00917 +Luhn 0.07692 0.0 0.05128 0.01376 +ICSI 0.07692 0.0 0.02564 0.01376 +184b9ba38dcd4098ce8bad77a08647ad16e76a39.json +UB1 0.76238 0.57 0.64356 0.57458 +UB2 0.75248 0.6 0.68317 0.58475 +LexRank 0.17822 0.0 0.08911 0.04068 +TextRank 0.11881 0.02 0.08911 0.02203 +Luhn 0.16832 0.0 0.08911 0.03559 +ICSI 0.33663 0.17 0.23762 0.18983 +5c58aac2566a5c658abaf4a76e562a493efae53b.json +UB1 0.50943 0.21154 0.28302 0.18212 +UB2 0.45283 0.23077 0.26415 0.17219 +LexRank 0.15094 0.0 0.07547 0.0298 +TextRank 0.15094 0.0 0.09434 0.03642 +Luhn 0.22642 0.0 0.09434 0.04305 +ICSI 0.18868 0.01923 0.11321 0.05298 +48bd19df020a1fecbdc3da25798e7e01878880de.json +UB1 0.55172 0.17857 0.44828 0.29747 +UB2 0.48276 0.21429 0.34483 0.25949 +LexRank 0.10345 0.0 0.06897 0.01899 +TextRank 0.13793 0.03571 0.10345 0.03165 +Luhn 0.10345 0.0 0.10345 0.02532 +ICSI 0.10345 0.0 0.06897 0.01899 +8291e0253934827162f97a7f4304d472a8f8d3c1.json +UB1 0.41667 0.14737 0.1875 0.125 +UB2 0.40625 0.18947 0.1875 0.15179 +LexRank 0.25 0.05263 0.09375 0.07321 +TextRank 0.14583 0.0 0.09375 0.03214 +Luhn 0.14583 0.0 0.09375 0.03214 +ICSI 0.26042 0.06316 0.09375 0.07321 +40dfa15aee265775489d535f2503cf4562099200.json +UB1 0.61111 0.37143 0.27778 0.28 +UB2 0.58333 0.37143 0.25 0.27 +LexRank 0.25 0.08571 0.13889 0.065 +TextRank 0.05556 0.0 0.05556 0.01 +Luhn 0.08333 0.0 0.05556 0.015 +ICSI 0.19444 0.02857 0.13889 0.045 +4e461e724c96666991e561dda4d8617854156a57.json +UB1 0.52273 0.32558 0.43182 0.34274 +UB2 0.52273 0.37209 0.40909 0.32258 +LexRank 0.18182 0.02326 0.11364 0.03629 +TextRank 0.04545 0.0 0.04545 0.0121 +Luhn 0.36364 0.2093 0.27273 0.2379 +ICSI 0.27273 0.04651 0.20455 0.08468 +08c825b2eee4da078c90517c6167f71930e576e6.json +UB1 0.41176 0.21212 0.32353 0.19681 +UB2 0.38235 0.21212 0.32353 0.19149 +LexRank 0.08824 0.0 0.05882 0.01596 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.02941 0.0 0.02941 0.00532 +ICSI 0.02941 0.0 0.02941 0.00532 +0895402136020e29c61f244826745f14e983d682.json +UB1 0.40741 0.07547 0.25926 0.12662 +UB2 0.35185 0.11321 0.18519 0.10065 +LexRank 0.25926 0.03774 0.2037 0.09091 +TextRank 0.25926 0.07547 0.14815 0.08442 +Luhn 0.37037 0.11321 0.22222 0.12338 +ICSI 0.18519 0.01887 0.11111 0.04221 +8d68f04152ca18d85e57296d1d7414f3cb661578.json +UB1 0.36 0.0 0.16 0.10448 +UB2 0.32 0.08333 0.16 0.1194 +LexRank 0.08 0.0 0.08 0.01493 +TextRank 0.12 0.0 0.08 0.02239 +Luhn 0.12 0.0 0.08 0.02239 +ICSI 0.12 0.0 0.12 0.02985 +1a95353990b9a864eba883cf3a64b00a0b496962.json +UB1 0.52632 0.18919 0.36842 0.20755 +UB2 0.39474 0.21622 0.18421 0.13679 +LexRank 0.10526 0.0 0.05263 0.01887 +TextRank 0.23684 0.10811 0.18421 0.09434 +Luhn 0.21053 0.05405 0.13158 0.0566 +ICSI 0.31579 0.16216 0.18421 0.10377 +3fb459d21e7c6eef3e945da8496f6dc711d87ae3.json +UB1 0.4386 0.08929 0.19298 0.16258 +UB2 0.35088 0.21429 0.17544 0.14724 +LexRank 0.22807 0.05357 0.10526 0.06442 +TextRank 0.15789 0.01786 0.07018 0.03067 +Luhn 0.12281 0.0 0.10526 0.02454 +ICSI 0.15789 0.0 0.07018 0.02761 +0716a3678a25f0305ffd453d6ef2f9dcffbf7598.json +UB1 0.51351 0.27778 0.27027 0.21359 +UB2 0.45946 0.30556 0.27027 0.21359 +LexRank 0.24324 0.08333 0.13514 0.08252 +TextRank 0.02703 0.0 0.02703 0.00485 +Luhn 0.02703 0.0 0.02703 0.00485 +ICSI 0.08108 0.0 0.05405 0.01942 +314d4d5c7946aecc14fc5eba2661b28154529b6e.json +UB1 0.48936 0.17391 0.2766 0.19549 +UB2 0.38298 0.26087 0.21277 0.16541 +LexRank 0.14894 0.04348 0.12766 0.03383 +TextRank 0.17021 0.02174 0.08511 0.04135 +Luhn 0.17021 0.02174 0.08511 0.04135 +ICSI 0.10638 0.0 0.08511 0.0188 +6367c3a314d4c22ae63cb6cbcc5d9a02d7740928.json +UB1 0.33333 0.02632 0.20513 0.08716 +UB2 0.30769 0.10526 0.15385 0.10092 +LexRank 0.23077 0.07895 0.15385 0.08257 +TextRank 0.07692 0.0 0.07692 0.01835 +Luhn 0.15385 0.02632 0.05128 0.02752 +ICSI 0.15385 0.02632 0.12821 0.0367 +28cc871d3c38adae779ee42134ee64069b78448e.json +UB1 0.55319 0.30435 0.3617 0.30451 +UB2 0.55319 0.30435 0.3617 0.30451 +LexRank 0.06383 0.0 0.04255 0.01128 +TextRank 0.06383 0.0 0.04255 0.01128 +Luhn 0.3617 0.19565 0.25532 0.16917 +ICSI 0.10638 0.0 0.04255 0.02256 +218b05be98c45d30a88d5e21374d34bebca20b48.json +UB1 0.44286 0.11594 0.24286 0.12624 +UB2 0.44286 0.18841 0.21429 0.14851 +LexRank 0.07143 0.0 0.05714 0.01733 +TextRank 0.08571 0.0 0.04286 0.01485 +Luhn 0.21429 0.01449 0.08571 0.0495 +ICSI 0.27143 0.04348 0.11429 0.06683 +621bdceab9c5335ad89c8f814edd03bcbe6ccf57.json +UB1 0.40984 0.08333 0.18033 0.10286 +UB2 0.39344 0.16667 0.21311 0.14286 +LexRank 0.18033 0.01667 0.11475 0.04286 +TextRank 0.18033 0.01667 0.11475 0.03714 +Luhn 0.11475 0.0 0.06557 0.02 +ICSI 0.18033 0.01667 0.11475 0.04571 +782668be7b89a2482281da33e955ecffd1dada5d.json +UB1 0.65625 0.44444 0.39062 0.42391 +UB2 0.57812 0.44444 0.35938 0.40761 +LexRank 0.20312 0.01587 0.07812 0.04076 +TextRank 0.35938 0.2381 0.21875 0.17935 +Luhn 0.26562 0.03175 0.14062 0.06793 +ICSI 0.51562 0.28571 0.32812 0.29891 +30be37d8a3bd37a5f3e34850bed5fbf2cf4f7e70.json +UB1 0.58537 0.35 0.39024 0.25217 +UB2 0.58537 0.35 0.39024 0.25217 +LexRank 0.09756 0.0 0.04878 0.01739 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.14634 0.025 0.09756 0.05652 +ICSI 0.2439 0.025 0.17073 0.07391 +64cd7e32c53d3f6e6dc88f843433fe0c087204f6.json +UB1 0.39286 0.18519 0.21429 0.15789 +UB2 0.39286 0.18519 0.21429 0.15789 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.17857 0.07407 0.14286 0.06579 +ICSI 0.07143 0.0 0.07143 0.01974 +59ed35d1cf454e436be5aa0e317cba03eefab43b.json +UB1 0.38095 0.04878 0.19048 0.10593 +UB2 0.2381 0.12195 0.14286 0.08051 +LexRank 0.21429 0.0 0.14286 0.04661 +TextRank 0.07143 0.0 0.04762 0.01271 +Luhn 0.14286 0.0 0.07143 0.02542 +ICSI 0.09524 0.0 0.04762 0.01695 +6ac8c22e78406c112a43e44ed23a343beacf07ea.json +UB1 0.47222 0.14286 0.38889 0.205 +UB2 0.47222 0.14286 0.38889 0.205 +LexRank 0.13889 0.0 0.08333 0.025 +TextRank 0.33333 0.11429 0.25 0.145 +Luhn 0.22222 0.0 0.08333 0.04 +ICSI 0.33333 0.11429 0.25 0.145 +04701f49bcf7c7ee31f0664359330549b74d1191.json +UB1 0.56 0.36486 0.42667 0.32949 +UB2 0.48 0.39189 0.36 0.34101 +LexRank 0.22667 0.05405 0.12 0.06682 +TextRank 0.16 0.0 0.12 0.03456 +Luhn 0.17333 0.0 0.09333 0.03456 +ICSI 0.26667 0.01351 0.14667 0.06912 +19f9c80f3c082e2996e6a0a7351d8f9a459872a3.json +UB1 0.47826 0.13333 0.23913 0.16538 +UB2 0.47826 0.13333 0.23913 0.16538 +LexRank 0.1087 0.0 0.04348 0.02692 +TextRank 0.13043 0.02222 0.08696 0.02308 +Luhn 0.1087 0.0 0.06522 0.02308 +ICSI 0.1087 0.0 0.06522 0.01538 +1fcec8f0940e30b61c674ac2044e8af206c2aa3a.json +UB1 0.35484 0.13333 0.19355 0.15294 +UB2 0.29032 0.13333 0.19355 0.09412 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03226 0.0 0.03226 0.00588 +Luhn 0.03226 0.0 0.03226 0.00588 +ICSI 0.16129 0.03333 0.16129 0.07059 +9db6e8bf099c57efab72daa931dc5dbee95dcabe.json +UB1 0.43243 0.16667 0.18919 0.12621 +UB2 0.2973 0.16667 0.27027 0.1068 +LexRank 0.10811 0.0 0.08108 0.02427 +TextRank 0.10811 0.0 0.08108 0.01942 +Luhn 0.08108 0.0 0.08108 0.01456 +ICSI 0.24324 0.05556 0.16216 0.05825 +909f0b3e827f79abba0b6f866ef2bbb5f65da518.json +UB1 0.4359 0.14286 0.25641 0.16593 +UB2 0.38462 0.23377 0.19231 0.18142 +LexRank 0.23077 0.0 0.11538 0.0531 +TextRank 0.0641 0.0 0.0641 0.01327 +Luhn 0.15385 0.01299 0.10256 0.03097 +ICSI 0.15385 0.02597 0.11538 0.04867 +b465d2301f2166d55920a41e0399538cb37fef3f.json +UB1 0.51351 0.15068 0.24324 0.18224 +UB2 0.44595 0.24658 0.17568 0.19159 +LexRank 0.16216 0.0 0.06757 0.02804 +TextRank 0.24324 0.0137 0.08108 0.04673 +Luhn 0.14865 0.05479 0.10811 0.05841 +ICSI 0.28378 0.05479 0.16216 0.0771 +99b1a233860ebce6f5b22afdf6a44c6264583433.json +UB1 0.71 0.52525 0.43 0.48116 +UB2 0.77 0.61616 0.59 0.5976 +LexRank 0.18 0.0202 0.09 0.03938 +TextRank 0.13 0.0202 0.05 0.0274 +Luhn 0.19 0.0202 0.09 0.04281 +ICSI 0.33 0.10101 0.16 0.10959 +ae395a8da181f6d5ba2b20491aa07a9b74e1fd61.json +UB1 0.51724 0.28571 0.31034 0.22152 +UB2 0.51724 0.28571 0.31034 0.22152 +LexRank 0.17241 0.07143 0.10345 0.0443 +TextRank 0.17241 0.0 0.17241 0.0443 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.24138 0.03571 0.17241 0.05696 +9d3fdad90b47af565d7e227c889c8abc40755e30.json +UB1 0.36364 0.18462 0.18182 0.15 +UB2 0.39394 0.21538 0.15152 0.16579 +LexRank 0.12121 0.0 0.09091 0.02105 +TextRank 0.18182 0.0 0.10606 0.03947 +Luhn 0.15152 0.0 0.10606 0.02895 +ICSI 0.27273 0.04615 0.13636 0.06842 +94fb7bb5b1ad91fb80f75a7b07991323fe316077.json +UB1 0.48592 0.11348 0.15493 0.14952 +UB2 0.40845 0.15603 0.16901 0.15311 +LexRank 0.21831 0.02837 0.09155 0.05622 +TextRank 0.26056 0.07092 0.11268 0.07297 +Luhn 0.20423 0.04965 0.08451 0.05742 +ICSI 0.32394 0.07801 0.14789 0.09928 +952e0a23c73fc6ca2643c09c9c490578c1c48fed.json +UB1 0.5625 0.29787 0.29167 0.30515 +UB2 0.5625 0.3617 0.35417 0.32721 +LexRank 0.16667 0.02128 0.08333 0.03676 +TextRank 0.25 0.0 0.125 0.07353 +Luhn 0.22917 0.12766 0.20833 0.12868 +ICSI 0.20833 0.0 0.125 0.05147 +b15e7e3ff10e52b4f6c5d268ae94dfd94d2b54d4.json +UB1 0.375 0.07595 0.175 0.10345 +UB2 0.3125 0.11392 0.1125 0.10776 +LexRank 0.1625 0.01266 0.0625 0.03233 +TextRank 0.125 0.01266 0.0875 0.02586 +Luhn 0.1875 0.05063 0.0875 0.04957 +ICSI 0.15 0.01266 0.075 0.03233 +a0b66321415c54c791401633a25f149a419e0b77.json +UB1 0.38636 0.09302 0.25 0.10887 +UB2 0.27273 0.11628 0.20455 0.10887 +LexRank 0.11364 0.0 0.06818 0.02419 +TextRank 0.13636 0.04651 0.11364 0.04839 +Luhn 0.13636 0.04651 0.09091 0.04839 +ICSI 0.22727 0.04651 0.15909 0.06048 +a2ed8c96bb62c697de82b5a7912be3a0ccd2190a.json +UB1 0.57778 0.20455 0.37778 0.24803 +UB2 0.55556 0.29545 0.28889 0.29528 +LexRank 0.15556 0.0 0.11111 0.0315 +TextRank 0.15556 0.02273 0.08889 0.04724 +Luhn 0.15556 0.02273 0.11111 0.03543 +ICSI 0.51111 0.11364 0.24444 0.17717 +92368aa5ee1fcd10a0bdeb56e71df4f13151c711.json +UB1 0.40625 0.16129 0.1875 0.14205 +UB2 0.28125 0.16129 0.25 0.125 +LexRank 0.28125 0.16129 0.21875 0.11364 +TextRank 0.0625 0.0 0.0625 0.01136 +Luhn 0.28125 0.16129 0.21875 0.11364 +ICSI 0.15625 0.0 0.09375 0.02841 +b4642682a7400eda93ac1af3ed91f24a8bda69a8.json +UB1 0.20833 0.08696 0.20833 0.08594 +UB2 0.20833 0.13043 0.16667 0.07812 +LexRank 0.04167 0.0 0.04167 0.00781 +TextRank 0.08333 0.04348 0.08333 0.02344 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.125 0.04348 0.125 0.03906 +afd94370bb6bf90ec4f7329c93b5205ba3b3a6b9.json +UB1 0.62069 0.21053 0.31034 0.20181 +UB2 0.7069 0.45614 0.2931 0.38855 +LexRank 0.44828 0.14035 0.22414 0.1988 +TextRank 0.10345 0.0 0.06897 0.01807 +Luhn 0.13793 0.0 0.10345 0.02711 +ICSI 0.44828 0.15789 0.31034 0.18072 +944c23e98b2fe6ec0e097c02feb94d1cbca5eac7.json +UB1 0.54054 0.27778 0.43243 0.26699 +UB2 0.54054 0.27778 0.43243 0.26699 +LexRank 0.16216 0.05556 0.16216 0.04854 +TextRank 0.18919 0.05556 0.16216 0.0534 +Luhn 0.45946 0.13889 0.27027 0.17476 +ICSI 0.16216 0.02778 0.10811 0.03883 +b33de412548405ded258a837f0fbd403cf8a4843.json +UB1 0.41176 0.15152 0.23529 0.1383 +UB2 0.29412 0.15152 0.20588 0.10638 +LexRank 0.26471 0.0 0.14706 0.07979 +TextRank 0.08824 0.0 0.08824 0.01596 +Luhn 0.08824 0.0 0.05882 0.02128 +ICSI 0.08824 0.0 0.08824 0.02128 +9e553d5301341db0f237790dd8fbc3858cb53884.json +UB1 0.60976 0.4 0.39024 0.33043 +UB2 0.4878 0.4 0.31707 0.3 +LexRank 0.09756 0.0 0.07317 0.02174 +TextRank 0.09756 0.025 0.07317 0.02174 +Luhn 0.04878 0.0 0.04878 0.0087 +ICSI 0.14634 0.0 0.09756 0.02609 +96f711bf764677a0e53e0b3870b9a22172c1c656.json +UB1 0.40541 0.19444 0.16216 0.15534 +UB2 0.40541 0.19444 0.16216 0.15534 +LexRank 0.13514 0.0 0.05405 0.02913 +TextRank 0.10811 0.0 0.10811 0.02913 +Luhn 0.10811 0.0 0.08108 0.02427 +ICSI 0.13514 0.0 0.08108 0.02913 +91e8c1b2d9a5e650f45c0eed694dbbb422413025.json +UB1 0.31579 0.11111 0.21053 0.09184 +UB2 0.15789 0.11111 0.15789 0.06122 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05263 0.0 0.05263 0.0102 +ICSI 0.15789 0.05556 0.10526 0.04082 +a36e10f4c7005bde6e1edf1307dadeb7cb84d910.json +UB1 0.44444 0.14286 0.19444 0.125 +UB2 0.27778 0.11429 0.16667 0.095 +LexRank 0.08333 0.0 0.05556 0.015 +TextRank 0.08333 0.0 0.05556 0.015 +Luhn 0.05556 0.0 0.05556 0.01 +ICSI 0.16667 0.0 0.11111 0.05 +99a4d76722e74cf766576eb8a385e44ea25add7a.json +UB1 0.44 0.125 0.36 0.19403 +UB2 0.36 0.125 0.24 0.12687 +LexRank 0.04 0.0 0.04 0.00746 +TextRank 0.08 0.0 0.04 0.01493 +Luhn 0.08 0.0 0.04 0.01493 +ICSI 0.08 0.0 0.08 0.01493 +aceb63ff1efd256ca6641601897177a9e2c3fcd1.json +UB1 0.41176 0.18182 0.26471 0.19149 +UB2 0.41176 0.18182 0.26471 0.19149 +LexRank 0.11765 0.0 0.08824 0.02128 +TextRank 0.02941 0.0 0.02941 0.00532 +Luhn 0.11765 0.0 0.11765 0.03191 +ICSI 0.14706 0.0303 0.11765 0.03191 +91c7f08fcd59bddb10aa5e40342268bd9170885f.json +UB1 0.40351 0.05357 0.15789 0.09509 +UB2 0.35088 0.10714 0.21053 0.10736 +LexRank 0.17544 0.03571 0.07018 0.04294 +TextRank 0.12281 0.0 0.07018 0.02147 +Luhn 0.12281 0.01786 0.10526 0.03067 +ICSI 0.21053 0.03571 0.14035 0.04908 +aeec0e8d7a6046cdb7ddacf1de9fc2ace91722bf.json +UB1 0.45 0.23077 0.225 0.16518 +UB2 0.425 0.23077 0.25 0.15625 +LexRank 0.1 0.05128 0.1 0.03125 +TextRank 0.075 0.0 0.05 0.01786 +Luhn 0.1 0.0 0.075 0.01786 +ICSI 0.25 0.07692 0.1 0.06696 +9a40709e680e060ad5babe3b52a45fd47e6f44ad.json +UB1 0.44 0.16667 0.16 0.19403 +UB2 0.36 0.16667 0.16 0.14179 +LexRank 0.08 0.0 0.04 0.01493 +TextRank 0.12 0.0 0.08 0.02239 +Luhn 0.04 0.0 0.04 0.00746 +ICSI 0.08 0.0 0.08 0.01493 +a38aa636b29891f90b7f6e5ad601566c308a21d7.json +UB1 0.81967 0.58333 0.32787 0.48857 +UB2 0.80328 0.56667 0.32787 0.47714 +LexRank 0.27869 0.01667 0.13115 0.07714 +TextRank 0.18033 0.0 0.16393 0.04857 +Luhn 0.21311 0.01667 0.11475 0.04571 +ICSI 0.31148 0.03333 0.18033 0.09143 +98282f9ebf8f8780cc55c4ab9a9844ced3c39408.json +UB1 0.3871 0.2 0.29032 0.11765 +UB2 0.29032 0.16667 0.22581 0.1 +LexRank 0.16129 0.0 0.09677 0.02941 +TextRank 0.03226 0.0 0.03226 0.00588 +Luhn 0.09677 0.0 0.03226 0.01765 +ICSI 0.16129 0.03333 0.09677 0.03529 +9ccfdfae29a71215566fbdf01b0109068c9b4a0b.json +UB1 0.60784 0.36 0.31373 0.33448 +UB2 0.56863 0.36 0.29412 0.32414 +LexRank 0.27451 0.12 0.21569 0.15517 +TextRank 0.09804 0.02 0.07843 0.02069 +Luhn 0.09804 0.02 0.07843 0.02069 +ICSI 0.33333 0.12 0.2549 0.16897 +b837155585f408a2473fb39c20f0630b03a19687.json +UB1 0.53125 0.2381 0.375 0.22283 +UB2 0.45312 0.25397 0.35938 0.23641 +LexRank 0.14062 0.0 0.10938 0.03261 +TextRank 0.1875 0.0 0.09375 0.03533 +Luhn 0.10938 0.0 0.07812 0.02717 +ICSI 0.25 0.03175 0.10938 0.05435 +a8c91d4e1e056ae3be2c26c74dc195a18231cda0.json +UB1 0.3913 0.0 0.21739 0.12295 +UB2 0.30435 0.18182 0.26087 0.10656 +LexRank 0.08696 0.0 0.08696 0.02459 +TextRank 0.04348 0.0 0.04348 0.0082 +Luhn 0.13043 0.0 0.13043 0.03279 +ICSI 0.08696 0.0 0.04348 0.01639 +8ef1ab4aa770d6007923f561a56e24e0ce0c2049.json +UB1 0.53247 0.34211 0.35065 0.35202 +UB2 0.50649 0.34211 0.33766 0.34753 +LexRank 0.32468 0.05263 0.19481 0.09417 +TextRank 0.22078 0.0 0.11688 0.04709 +Luhn 0.11688 0.0 0.06494 0.02466 +ICSI 0.38961 0.17105 0.23377 0.15695 +9abf21fd4af04ac097c6a2353417636931126fea.json +UB1 0.42647 0.1791 0.20588 0.16837 +UB2 0.39706 0.22388 0.19118 0.21429 +LexRank 0.13235 0.0 0.07353 0.02806 +TextRank 0.08824 0.0 0.05882 0.01786 +Luhn 0.13235 0.0 0.08824 0.02296 +ICSI 0.23529 0.02985 0.14706 0.06888 +b18254dffcb3a911ebc20e79594742b8394965a0.json +UB1 0.26316 0.0 0.10526 0.07143 +UB2 0.21053 0.05556 0.21053 0.07143 +LexRank 0.10526 0.0 0.10526 0.02041 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.05263 0.0 0.05263 0.0102 +a7d463c603242fd28948931383ef0c8d6581358e.json +UB1 0.46154 0.17188 0.23077 0.17647 +UB2 0.43077 0.17188 0.26154 0.1631 +LexRank 0.27692 0.04688 0.10769 0.07219 +TextRank 0.23077 0.04688 0.15385 0.05615 +Luhn 0.18462 0.0625 0.15385 0.04545 +ICSI 0.30769 0.07812 0.18462 0.08824 +92983a358941680132762a0506d4ba488dc89db8.json +UB1 0.39394 0.0625 0.12121 0.11538 +UB2 0.30303 0.09375 0.12121 0.09341 +LexRank 0.12121 0.0 0.09091 0.02198 +TextRank 0.0303 0.0 0.0303 0.00549 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.15152 0.0 0.12121 0.02747 +ac2168e9bcdd581aabc14c55ce97276c37cd1cf3.json +UB1 0.53448 0.14035 0.22414 0.1747 +UB2 0.46552 0.19298 0.31034 0.18072 +LexRank 0.15517 0.01754 0.08621 0.03012 +TextRank 0.13793 0.03509 0.10345 0.04518 +Luhn 0.25862 0.03509 0.10345 0.06627 +ICSI 0.2069 0.03509 0.10345 0.05723 +a70a8ae89da4a22315926aa0cfd3bbae3f1e6d7a.json +UB1 0.44186 0.21429 0.39535 0.21488 +UB2 0.37209 0.21429 0.30233 0.17769 +LexRank 0.13953 0.0 0.06977 0.02479 +TextRank 0.11628 0.0 0.06977 0.02066 +Luhn 0.11628 0.0 0.06977 0.02066 +ICSI 0.2093 0.02381 0.09302 0.05785 +9e6c1dc471813792436ab0063c57f4b0b273634a.json +UB1 0.73214 0.34545 0.41071 0.3375 +UB2 0.57143 0.4 0.41071 0.3125 +LexRank 0.32143 0.01818 0.16071 0.10312 +TextRank 0.17857 0.03636 0.14286 0.05312 +Luhn 0.17857 0.03636 0.14286 0.05312 +ICSI 0.375 0.14545 0.25 0.14375 +93cc71f38435a951f7bb37a0bfe13cd85bbc0284.json +UB1 0.42857 0.16129 0.30159 0.16298 +UB2 0.34921 0.20968 0.28571 0.16851 +LexRank 0.15873 0.0 0.11111 0.03039 +TextRank 0.06349 0.0 0.06349 0.01381 +Luhn 0.07937 0.0 0.06349 0.01381 +ICSI 0.11111 0.0 0.07937 0.0221 +97b53ef4962dd3ffb80e68987ebe58ceef27efba.json +UB1 0.28571 0.05 0.14286 0.05455 +UB2 0.28571 0.05 0.2381 0.10909 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.14286 0.05 0.14286 0.05455 +a7a3b1f32c4276dbe3665642c47954de92c1726e.json +UB1 0.44186 0.19048 0.25581 0.17355 +UB2 0.39535 0.21429 0.32558 0.18182 +LexRank 0.13953 0.04762 0.09302 0.04132 +TextRank 0.06977 0.0 0.04651 0.0124 +Luhn 0.09302 0.0 0.06977 0.01653 +ICSI 0.06977 0.0 0.06977 0.0124 +99a60bb0fb7a9b20e39ea5dae8d47cf1e0820ff1.json +UB1 0.77419 0.5 0.54839 0.53529 +UB2 0.67742 0.5 0.51613 0.50588 +LexRank 0.09677 0.0 0.06452 0.01765 +TextRank 0.09677 0.0 0.09677 0.01765 +Luhn 0.09677 0.0 0.09677 0.01765 +ICSI 0.22581 0.13333 0.19355 0.10588 +91c97373a0cedd4d1e8eb87b1810d7637c4f64a2.json +UB1 0.46939 0.1875 0.30612 0.20863 +UB2 0.4898 0.20833 0.36735 0.19424 +LexRank 0.38776 0.125 0.14286 0.11511 +TextRank 0.12245 0.0 0.10204 0.02158 +Luhn 0.38776 0.125 0.14286 0.11511 +ICSI 0.34694 0.10417 0.18367 0.1259 +ab59b148d341243c5a527fb2096c7086dbd237af.json +UB1 0.63636 0.4023 0.375 0.40039 +UB2 0.61364 0.48276 0.42045 0.43164 +LexRank 0.25 0.03448 0.11364 0.0625 +TextRank 0.28409 0.08046 0.18182 0.08984 +Luhn 0.30682 0.11494 0.22727 0.11914 +ICSI 0.36364 0.16092 0.20455 0.15039 +b8220bb12ee95006c420d7cdd11b5cd75dca9d6f.json +UB1 0.41667 0.14894 0.25 0.15074 +UB2 0.41667 0.21277 0.29167 0.1875 +LexRank 0.33333 0.08511 0.1875 0.10662 +TextRank 0.35417 0.04255 0.22917 0.12132 +Luhn 0.04167 0.0 0.02083 0.00735 +ICSI 0.25 0.08511 0.20833 0.09559 +9fa0b49a73f0f293f8905f335dd1e7908f19317c.json +UB1 0.36364 0.21875 0.21212 0.13187 +UB2 0.36364 0.21875 0.21212 0.13187 +LexRank 0.18182 0.03125 0.09091 0.03297 +TextRank 0.06061 0.0 0.0303 0.01099 +Luhn 0.06061 0.0 0.06061 0.01099 +ICSI 0.06061 0.0 0.0303 0.01099 +b9eee652ec2d89bad67c57d55962fc985ce8384f.json +UB1 0.22222 0.07692 0.18519 0.06164 +UB2 0.18519 0.07692 0.18519 0.05479 +LexRank 0.07407 0.0 0.03704 0.0137 +TextRank 0.07407 0.0 0.03704 0.0137 +Luhn 0.07407 0.0 0.03704 0.0137 +ICSI 0.03704 0.0 0.03704 0.00685 +9b725ed42e6fff2fe0fa86b6ebfc21cea223f3c7.json +UB1 0.4359 0.21053 0.23077 0.19266 +UB2 0.4359 0.23684 0.23077 0.19725 +LexRank 0.15385 0.0 0.10256 0.04128 +TextRank 0.12821 0.0 0.07692 0.03211 +Luhn 0.07692 0.0 0.05128 0.01376 +ICSI 0.30769 0.13158 0.25641 0.11009 +b3456a7bb87e4adb4c8f6ce9e536ca8b82d5a6c7.json +UB1 0.56522 0.24444 0.28261 0.22308 +UB2 0.5 0.26667 0.30435 0.2 +LexRank 0.21739 0.06667 0.13043 0.06154 +TextRank 0.21739 0.06667 0.15217 0.07692 +Luhn 0.08696 0.0 0.06522 0.01923 +ICSI 0.28261 0.08889 0.23913 0.10769 +b85269462acb0d63234827b6495a21a8a7e86fdf.json +UB1 0.46667 0.10345 0.23333 0.18902 +UB2 0.3 0.17241 0.26667 0.14634 +LexRank 0.16667 0.0 0.06667 0.03049 +TextRank 0.1 0.0 0.03333 0.01829 +Luhn 0.13333 0.0 0.06667 0.03049 +ICSI 0.1 0.0 0.06667 0.02439 +9207f81001cfabd1e99e8c6063c987bde6127c78.json +UB1 0.55556 0.20225 0.21111 0.21374 +UB2 0.51111 0.25843 0.18889 0.23473 +LexRank 0.07778 0.0 0.05556 0.01718 +TextRank 0.15556 0.0 0.11111 0.03244 +Luhn 0.13333 0.02247 0.1 0.02863 +ICSI 0.26667 0.07865 0.16667 0.08206 +b1fc49154a9fb2d3c2e482367c5f6845868c9cab.json +UB1 0.47826 0.22059 0.31884 0.21357 +UB2 0.50725 0.26471 0.36232 0.21106 +LexRank 0.15942 0.0 0.10145 0.03266 +TextRank 0.08696 0.0 0.05797 0.01508 +Luhn 0.08696 0.0 0.05797 0.01508 +ICSI 0.34783 0.11765 0.14493 0.13065 +99a6637acbd522ccabe2754b58ee31859f0b1f2a.json +UB1 0.42857 0.15 0.2381 0.14545 +UB2 0.42857 0.15 0.2381 0.14545 +LexRank 0.04762 0.0 0.04762 0.00909 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.04762 0.0 0.04762 0.00909 +ICSI 0.04762 0.0 0.04762 0.00909 +b7dd7644c8f4218ec4ba6fe6fa12c8169b226183.json +UB1 0.5 0.14634 0.2619 0.17373 +UB2 0.38095 0.17073 0.21429 0.13983 +LexRank 0.19048 0.02439 0.11905 0.05085 +TextRank 0.16667 0.04878 0.14286 0.05508 +Luhn 0.16667 0.02439 0.09524 0.04237 +ICSI 0.2381 0.07317 0.21429 0.07203 +af16af8e3fcdab90baadd8c0fcd048132342f026.json +UB1 0.37778 0.13636 0.2 0.12205 +UB2 0.42222 0.15909 0.17778 0.13386 +LexRank 0.13333 0.0 0.06667 0.02756 +TextRank 0.06667 0.0 0.04444 0.01181 +Luhn 0.08889 0.0 0.06667 0.01181 +ICSI 0.11111 0.0 0.06667 0.01969 +a2674925988f2754c074a90a21864b7a049a8872.json +UB1 0.45714 0.20588 0.22857 0.22165 +UB2 0.4 0.20588 0.22857 0.21134 +LexRank 0.05714 0.0 0.02857 0.00515 +TextRank 0.11429 0.0 0.08571 0.02062 +Luhn 0.11429 0.0 0.08571 0.02062 +ICSI 0.08571 0.02941 0.05714 0.02062 +b5afc478a5ce4474dcaae010ea3607c73873f12d.json +UB1 0.41935 0.1 0.19355 0.11765 +UB2 0.32258 0.06667 0.12903 0.07647 +LexRank 0.25806 0.03333 0.09677 0.05882 +TextRank 0.25806 0.03333 0.16129 0.05882 +Luhn 0.25806 0.06667 0.16129 0.06471 +ICSI 0.25806 0.03333 0.16129 0.06471 +9acf6498ab1040e750379038a80912d55b414079.json +UB1 0.5 0.11864 0.28333 0.1657 +UB2 0.43333 0.16949 0.2 0.11919 +LexRank 0.05 0.01695 0.05 0.01163 +TextRank 0.2 0.05085 0.11667 0.05233 +Luhn 0.18333 0.01695 0.1 0.0436 +ICSI 0.23333 0.05085 0.1 0.05523 +b657fa79aa7a33090058207e82b5830db41d4692.json +UB1 0.44643 0.05455 0.19643 0.12187 +UB2 0.375 0.18182 0.23214 0.13437 +LexRank 0.23214 0.0 0.14286 0.05312 +TextRank 0.21429 0.0 0.10714 0.04375 +Luhn 0.14286 0.01818 0.08929 0.03125 +ICSI 0.23214 0.0 0.10714 0.05625 +93754b5389c90809544b7983a1bc2d32297d1d76.json +UB1 0.5 0.18367 0.24 0.21127 +UB2 0.46 0.2449 0.2 0.19366 +LexRank 0.14 0.02041 0.1 0.03169 +TextRank 0.28 0.0 0.16 0.06338 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.2 0.0 0.12 0.04577 +b8a41261803b4cefc2c33a26f2b13429d691d269.json +UB1 0.52632 0.21622 0.39474 0.18868 +UB2 0.42105 0.27027 0.36842 0.1934 +LexRank 0.10526 0.0 0.07895 0.01887 +TextRank 0.13158 0.0 0.07895 0.02358 +Luhn 0.18421 0.05405 0.13158 0.04717 +ICSI 0.18421 0.05405 0.13158 0.04717 +a0b4d76402f00a155547bcf6075a5b0e25aed2bf.json +UB1 0.51351 0.13889 0.2973 0.14563 +UB2 0.32432 0.13889 0.18919 0.1068 +LexRank 0.05405 0.0 0.02703 0.00971 +TextRank 0.2973 0.02778 0.16216 0.05825 +Luhn 0.2973 0.02778 0.16216 0.05825 +ICSI 0.18919 0.0 0.13514 0.03883 +ab8a95c29b335be92de626b4d098cf3f62e003fe.json +UB1 0.5 0.11268 0.30556 0.14423 +UB2 0.36111 0.12676 0.23611 0.11779 +LexRank 0.30556 0.04225 0.18056 0.06971 +TextRank 0.09722 0.0 0.08333 0.02163 +Luhn 0.09722 0.0 0.05556 0.02163 +ICSI 0.26389 0.02817 0.125 0.0625 +a0e317edd8bfec67730cdd58dc540124d319663c.json +UB1 0.35849 0.17308 0.24528 0.12914 +UB2 0.35849 0.17308 0.24528 0.12914 +LexRank 0.09434 0.0 0.07547 0.01656 +TextRank 0.11321 0.0 0.07547 0.02318 +Luhn 0.11321 0.0 0.11321 0.02318 +ICSI 0.22642 0.03846 0.13208 0.04967 +a5d869f60ab69db127e6e92d63b6f4dcedbf807e.json +UB1 0.22222 0.05882 0.11111 0.06522 +UB2 0.22222 0.05882 0.11111 0.05435 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.05556 0.0 0.05556 0.01087 +Luhn 0.05556 0.0 0.05556 0.01087 +ICSI 0.05556 0.0 0.05556 0.01087 +b86fb2ceb85ae4653e43417de1fabc3de4f88aef.json +UB1 0.37037 0.11538 0.22222 0.13699 +UB2 0.2963 0.11538 0.22222 0.12329 +LexRank 0.11111 0.03846 0.07407 0.0274 +TextRank 0.22222 0.03846 0.18519 0.08219 +Luhn 0.22222 0.03846 0.18519 0.08219 +ICSI 0.18519 0.03846 0.14815 0.05479 +ad651c0de8b5ce75113bca1141060f017cda8860.json +UB1 0.48485 0.25 0.30303 0.1978 +UB2 0.39394 0.25 0.30303 0.15934 +LexRank 0.06061 0.0 0.0303 0.01099 +TextRank 0.06061 0.0 0.06061 0.01099 +Luhn 0.27273 0.0625 0.21212 0.09341 +ICSI 0.12121 0.0 0.06061 0.02747 +a2eb9be47585ca0049fdab03616bba3c603d0c80.json +UB1 0.57971 0.23529 0.31884 0.24623 +UB2 0.52174 0.22059 0.26087 0.20101 +LexRank 0.26087 0.04412 0.13043 0.06281 +TextRank 0.28986 0.07353 0.14493 0.08794 +Luhn 0.30435 0.07353 0.14493 0.09045 +ICSI 0.34783 0.04412 0.14493 0.08794 +af5e47099361eb3982a6ebbbcdab3da865547c83.json +UB1 0.62264 0.30769 0.35849 0.25166 +UB2 0.5283 0.30769 0.32075 0.22848 +LexRank 0.09434 0.0 0.07547 0.01987 +TextRank 0.11321 0.0 0.09434 0.0298 +Luhn 0.15094 0.0 0.11321 0.03311 +ICSI 0.18868 0.05769 0.11321 0.04636 +b55278d9a43096d6fe030f9b20a0209187c16d8c.json +UB1 0.44737 0.08108 0.28947 0.13208 +UB2 0.36842 0.16216 0.18421 0.11321 +LexRank 0.15789 0.0 0.07895 0.0283 +TextRank 0.07895 0.0 0.07895 0.01887 +Luhn 0.07895 0.0 0.07895 0.01887 +ICSI 0.13158 0.0 0.07895 0.0283 +b7bd1a0be1c404784032c2d4459e791eaa5205f8.json +UB1 0.57143 0.15789 0.16883 0.18161 +UB2 0.49351 0.21053 0.18182 0.18161 +LexRank 0.14286 0.0 0.06494 0.03139 +TextRank 0.1039 0.02632 0.09091 0.02466 +Luhn 0.09091 0.0 0.05195 0.0157 +ICSI 0.27273 0.02632 0.1039 0.0583 +9814c41b9b6631688598a91b6b569805bdd6dc71.json +UB1 0.35135 0.05556 0.10811 0.09709 +UB2 0.24324 0.08333 0.10811 0.07767 +LexRank 0.05405 0.0 0.05405 0.00971 +TextRank 0.16216 0.02778 0.10811 0.05825 +Luhn 0.16216 0.02778 0.10811 0.03398 +ICSI 0.13514 0.02778 0.08108 0.02913 +a23ff9ee90d46450c9cc943716c86845791b2477.json +UB1 0.32258 0.06667 0.22581 0.09412 +UB2 0.35484 0.26667 0.32258 0.21176 +LexRank 0.22581 0.06667 0.12903 0.05882 +TextRank 0.06452 0.0 0.03226 0.01176 +Luhn 0.06452 0.0 0.03226 0.01176 +ICSI 0.25806 0.06667 0.16129 0.05882 +9a874a199a672679f194db055643c5c511af333d.json +UB1 0.27273 0.0 0.13636 0.0431 +UB2 0.18182 0.09524 0.09091 0.0431 +LexRank 0.04545 0.0 0.04545 0.0 +TextRank 0.04545 0.0 0.04545 0.00862 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.18182 0.04762 0.13636 0.03448 +b79ce71dc33510af289f1209ca4fb0af2326d309.json +UB1 0.48649 0.13889 0.21622 0.20388 +UB2 0.54054 0.16667 0.24324 0.27184 +LexRank 0.05405 0.0 0.05405 0.00971 +TextRank 0.10811 0.0 0.10811 0.02427 +Luhn 0.27027 0.08333 0.16216 0.09709 +ICSI 0.35135 0.08333 0.24324 0.12621 +a35694bf977be6e7765c243ee1b5d55dda1a40b3.json +UB1 0.4878 0.175 0.14634 0.15652 +UB2 0.4878 0.2 0.19512 0.16087 +LexRank 0.14634 0.0 0.09756 0.03043 +TextRank 0.17073 0.025 0.07317 0.03478 +Luhn 0.09756 0.025 0.07317 0.01739 +ICSI 0.17073 0.05 0.09756 0.03043 +b6c1d6253f827aa3d794c5369d37d42ed79d556f.json +UB1 0.53846 0.23377 0.23077 0.26327 +UB2 0.47436 0.24675 0.25641 0.23009 +LexRank 0.23077 0.02597 0.14103 0.06637 +TextRank 0.25641 0.06494 0.14103 0.08628 +Luhn 0.25641 0.06494 0.14103 0.08628 +ICSI 0.23077 0.03896 0.12821 0.06195 +aabf90c7e540500e9a74301de275c63d4a3c741c.json +UB1 0.35714 0.07273 0.23214 0.1375 +UB2 0.39286 0.10909 0.28571 0.16875 +LexRank 0.14286 0.0 0.10714 0.02813 +TextRank 0.21429 0.01818 0.125 0.04688 +Luhn 0.08929 0.0 0.05357 0.01875 +ICSI 0.17857 0.0 0.125 0.04063 +9cac8960fe2d0cfdd86eb4d2f7dcbad09e06a46e.json +UB1 0.54167 0.17021 0.33333 0.22059 +UB2 0.33333 0.21277 0.29167 0.16176 +LexRank 0.08333 0.0 0.04167 0.01471 +TextRank 0.0625 0.0 0.04167 0.00735 +Luhn 0.0625 0.0 0.04167 0.00735 +ICSI 0.14583 0.0 0.08333 0.02941 +961777b87e14908255fd4f30fa254c4d5dc3b5c7.json +UB1 0.45833 0.1831 0.23611 0.1899 +UB2 0.43056 0.28169 0.31944 0.23077 +LexRank 0.125 0.0 0.05556 0.02163 +TextRank 0.20833 0.01408 0.11111 0.05529 +Luhn 0.02778 0.0 0.02778 0.00481 +ICSI 0.29167 0.11268 0.18056 0.10577 +a7d87f792722f0b14ca224d5549201090dabf1ce.json +UB1 0.38889 0.22857 0.25 0.17 +UB2 0.38889 0.22857 0.25 0.17 +LexRank 0.11111 0.0 0.05556 0.02 +TextRank 0.05556 0.0 0.02778 0.005 +Luhn 0.11111 0.0 0.11111 0.025 +ICSI 0.08333 0.02857 0.08333 0.02 +aab8c262cdbc94e78890e673b760d2ce3eb5ef24.json +UB1 0.60606 0.30769 0.30303 0.26053 +UB2 0.60606 0.4 0.36364 0.32895 +LexRank 0.33333 0.07692 0.16667 0.09474 +TextRank 0.24242 0.06154 0.10606 0.06316 +Luhn 0.25758 0.03077 0.12121 0.06579 +ICSI 0.40909 0.12308 0.18182 0.12895 +935069d25424dd4cf0d1458a626637757f939a31.json +UB1 0.40909 0.2381 0.40909 0.23276 +UB2 0.40909 0.2381 0.40909 0.23276 +LexRank 0.09091 0.0 0.09091 0.01724 +TextRank 0.18182 0.0 0.09091 0.03448 +Luhn 0.09091 0.0 0.09091 0.01724 +ICSI 0.13636 0.04762 0.09091 0.0431 +9ec930916a85ad9b54789e1c292eda4a234cdb89.json +UB1 0.35897 0.05263 0.20513 0.1055 +UB2 0.33333 0.10526 0.25641 0.11468 +LexRank 0.07692 0.0 0.07692 0.01376 +TextRank 0.17949 0.0 0.07692 0.0367 +Luhn 0.07692 0.0 0.02564 0.01376 +ICSI 0.17949 0.0 0.10256 0.0367 +907f18afbcbb71555d88b9afb4c8800b656c9de3.json +UB1 0.52475 0.13 0.20792 0.16102 +UB2 0.46535 0.21 0.22772 0.1661 +LexRank 0.29703 0.05 0.12871 0.07966 +TextRank 0.11881 0.01 0.08911 0.02542 +Luhn 0.18812 0.03 0.12871 0.04746 +ICSI 0.38614 0.1 0.18812 0.12712 +95d0a32c9c7086b8cff8549a7da3186ebb637752.json +UB1 0.50943 0.25 0.20755 0.21192 +UB2 0.49057 0.25 0.18868 0.20861 +LexRank 0.28302 0.09615 0.11321 0.07947 +TextRank 0.22642 0.07692 0.16981 0.07947 +Luhn 0.20755 0.07692 0.15094 0.07947 +ICSI 0.32075 0.13462 0.15094 0.10927 +b20c5ee61c4a30a3c796aff94b3103afdd4229d7.json +UB1 0.43333 0.24138 0.33333 0.14024 +UB2 0.4 0.24138 0.3 0.13415 +LexRank 0.03333 0.0 0.03333 0.0061 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.1 0.0 0.06667 0.01829 +ICSI 0.16667 0.06897 0.1 0.04878 +ba0951dded9c1ee1bc5c1bac33ac3d884f6d43de.json +UB1 0.37209 0.14286 0.25581 0.13223 +UB2 0.30233 0.16667 0.18605 0.1281 +LexRank 0.2093 0.0 0.11628 0.05372 +TextRank 0.2093 0.0 0.13953 0.05372 +Luhn 0.13953 0.0 0.06977 0.02893 +ICSI 0.23256 0.0 0.11628 0.05785 +a208615cce4619a23e9b275579f75aee98e035b4.json +UB1 0.475 0.13924 0.175 0.14871 +UB2 0.4375 0.20253 0.175 0.16595 +LexRank 0.225 0.08861 0.175 0.09698 +TextRank 0.1875 0.03797 0.0875 0.04741 +Luhn 0.2 0.06329 0.125 0.06681 +ICSI 0.2125 0.02532 0.0875 0.04741 +992a8d2011808949055a3f5a5a98e2284c7c7864.json +UB1 0.58108 0.20548 0.21622 0.2243 +UB2 0.54054 0.23288 0.21622 0.23832 +LexRank 0.18919 0.0 0.09459 0.03505 +TextRank 0.13514 0.0137 0.08108 0.03505 +Luhn 0.17568 0.0 0.08108 0.03505 +ICSI 0.21622 0.0137 0.12162 0.05607 +91cdde02ff49d6983ec0b6e82eceab4ca0334920.json +UB1 0.38462 0.05263 0.17949 0.11468 +UB2 0.25641 0.07895 0.15385 0.09174 +LexRank 0.02564 0.0 0.02564 0.00459 +TextRank 0.25641 0.02632 0.12821 0.05963 +Luhn 0.25641 0.02632 0.12821 0.05963 +ICSI 0.12821 0.0 0.07692 0.02294 +b7e876c5f0b8e5111e910fea89c6802ade28ee6d.json +UB1 0.64615 0.4375 0.58462 0.41176 +UB2 0.66154 0.46875 0.55385 0.42781 +LexRank 0.23077 0.09375 0.2 0.10428 +TextRank 0.09231 0.0 0.06154 0.01872 +Luhn 0.09231 0.01562 0.09231 0.02406 +ICSI 0.16923 0.03125 0.10769 0.03743 +b2fa350e69ac78e04dce8f00aaaa8bc313085ab6.json +UB1 0.42424 0.09231 0.22727 0.11316 +UB2 0.37879 0.16923 0.21212 0.12895 +LexRank 0.16667 0.0 0.06061 0.03158 +TextRank 0.09091 0.0 0.06061 0.01579 +Luhn 0.09091 0.0 0.06061 0.01579 +ICSI 0.19697 0.0 0.10606 0.03947 +91c7a120cacf07b9cf3ccfd0ecc0f56b15dd2e00.json +UB1 0.77011 0.45349 0.28736 0.42095 +UB2 0.73563 0.52326 0.25287 0.48221 +LexRank 0.35632 0.2093 0.28736 0.20158 +TextRank 0.37931 0.2093 0.31034 0.22134 +Luhn 0.32184 0.2093 0.29885 0.19368 +ICSI 0.44828 0.19767 0.24138 0.20158 +9198b8d7f44be92df86732b9f9feba24c7aef2a4.json +UB1 0.54167 0.17391 0.41667 0.22656 +UB2 0.41667 0.21739 0.33333 0.17969 +LexRank 0.08333 0.0 0.08333 0.01562 +TextRank 0.04167 0.0 0.04167 0.00781 +Luhn 0.125 0.0 0.125 0.03125 +ICSI 0.08333 0.0 0.04167 0.00781 +90441e58fb97c55ecea0e9f976bbf538f3ba632a.json +UB1 0.52703 0.19178 0.16216 0.19626 +UB2 0.45946 0.24658 0.17568 0.22196 +LexRank 0.16216 0.0 0.08108 0.03271 +TextRank 0.17568 0.0 0.08108 0.03738 +Luhn 0.14865 0.0 0.08108 0.02804 +ICSI 0.18919 0.0137 0.09459 0.03738 +a9064af3d4d2414ca7c88e6529dda508c4267316.json +UB1 0.4902 0.26 0.29412 0.28621 +UB2 0.56863 0.3 0.33333 0.31034 +LexRank 0.2549 0.02 0.13725 0.06552 +TextRank 0.19608 0.0 0.11765 0.05172 +Luhn 0.15686 0.0 0.11765 0.04138 +ICSI 0.21569 0.0 0.13725 0.05172 +a7623744a912173f6a3a99b770e2a534d0ed6a19.json +UB1 0.4902 0.24 0.2549 0.1931 +UB2 0.37255 0.2 0.23529 0.14138 +LexRank 0.11765 0.0 0.05882 0.02414 +TextRank 0.13725 0.0 0.09804 0.02759 +Luhn 0.23529 0.0 0.09804 0.06552 +ICSI 0.15686 0.0 0.09804 0.03103 +ac132e7f42a5012bec42062519cc4105ecb086d7.json +UB1 0.28571 0.07407 0.17857 0.07237 +UB2 0.17857 0.07407 0.07143 0.04605 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03571 0.0 0.03571 0.00658 +Luhn 0.03571 0.0 0.03571 0.00658 +ICSI 0.03571 0.0 0.03571 0.00658 +a497ee333337937222726b0957d279310d8fb762.json +UB1 0.64407 0.36207 0.30508 0.33728 +UB2 0.62712 0.36207 0.32203 0.3284 +LexRank 0.25424 0.05172 0.13559 0.05917 +TextRank 0.10169 0.0 0.08475 0.01775 +Luhn 0.25424 0.06897 0.11864 0.07692 +ICSI 0.38983 0.12069 0.18644 0.10651 +b3fce277468e5e7c3b2bb65b7291ad705d460704.json +UB1 0.44737 0.13514 0.21053 0.14151 +UB2 0.34211 0.13514 0.23684 0.08962 +LexRank 0.15789 0.0 0.07895 0.03774 +TextRank 0.10526 0.0 0.05263 0.01887 +Luhn 0.15789 0.0 0.10526 0.03302 +ICSI 0.18421 0.02703 0.10526 0.03774 +a8697cb2b46b0a55a734d01c744a7a54af868ae1.json +UB1 0.48485 0.26154 0.25758 0.23421 +UB2 0.43939 0.26154 0.22727 0.22632 +LexRank 0.12121 0.0 0.06061 0.02895 +TextRank 0.07576 0.0 0.04545 0.01316 +Luhn 0.12121 0.0 0.07576 0.02895 +ICSI 0.27273 0.07692 0.10606 0.08684 +b1cf700627f532671af6ee7cd1ae3bad6bb27524.json +UB1 0.50794 0.25806 0.33333 0.27624 +UB2 0.52381 0.29032 0.33333 0.26796 +LexRank 0.25397 0.08065 0.12698 0.09669 +TextRank 0.26984 0.06452 0.1746 0.09669 +Luhn 0.19048 0.0 0.12698 0.03867 +ICSI 0.30159 0.09677 0.15873 0.10497 +b0592991ffe59b15971eed85748d6ebfaf5a22ff.json +UB1 0.48148 0.11538 0.2963 0.14384 +UB2 0.33333 0.19231 0.18519 0.12329 +LexRank 0.03704 0.0 0.03704 0.00685 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.18519 0.11538 0.18519 0.06849 +b3a5678ebad960e453c922a6020ea7585dfb0226.json +UB1 0.24 0.04167 0.16 0.0597 +UB2 0.16 0.04167 0.12 0.04478 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.12 0.04167 0.12 0.02985 +a1f6cb4f80e5345b63a95ebd75276860f0efaee2.json +UB1 0.51064 0.15054 0.17021 0.17701 +UB2 0.43617 0.17204 0.15957 0.13869 +LexRank 0.26596 0.04301 0.10638 0.08029 +TextRank 0.23404 0.02151 0.09574 0.05292 +Luhn 0.26596 0.03226 0.11702 0.06752 +ICSI 0.25532 0.07527 0.14894 0.07664 +9cd3d190151b49afa3a4ce3086b6685706e5c0cb.json +UB1 0.37838 0.05556 0.18919 0.09223 +UB2 0.16216 0.05556 0.10811 0.03398 +LexRank 0.24324 0.02778 0.13514 0.05825 +TextRank 0.08108 0.0 0.05405 0.01942 +Luhn 0.08108 0.0 0.05405 0.01942 +ICSI 0.24324 0.02778 0.13514 0.07282 +9c8ce0b7739583df38e5ae81906332d822fa4c45.json +UB1 0.61702 0.34783 0.29787 0.29699 +UB2 0.51064 0.30435 0.19149 0.25188 +LexRank 0.2766 0.06522 0.12766 0.07895 +TextRank 0.04255 0.0 0.04255 0.00752 +Luhn 0.19149 0.02174 0.12766 0.05263 +ICSI 0.3617 0.19565 0.21277 0.16917 +b968c1c4f8c171d96a6b410697b2d1a4f18dbb08.json +UB1 0.55556 0.25843 0.21111 0.24427 +UB2 0.5 0.29213 0.3 0.22519 +LexRank 0.14444 0.01124 0.08889 0.02863 +TextRank 0.14444 0.0 0.11111 0.03244 +Luhn 0.17778 0.01124 0.07778 0.04198 +ICSI 0.13333 0.01124 0.08889 0.02863 +ad7287bd2f55507241cc3dc878558bcc1f950a4d.json +UB1 0.43243 0.16667 0.32432 0.16019 +UB2 0.45946 0.16667 0.2973 0.18932 +LexRank 0.10811 0.02778 0.08108 0.02427 +TextRank 0.10811 0.0 0.08108 0.01942 +Luhn 0.13514 0.02778 0.10811 0.02913 +ICSI 0.21622 0.08333 0.16216 0.09223 +b2cf501fc1cef7015d6335a4f77e3ef4b0f1b92b.json +UB1 0.43333 0.03448 0.26667 0.13415 +UB2 0.43333 0.24138 0.4 0.25 +LexRank 0.23333 0.03448 0.16667 0.06707 +TextRank 0.06667 0.0 0.06667 0.0122 +Luhn 0.16667 0.03448 0.1 0.05488 +ICSI 0.26667 0.03448 0.16667 0.07317 +b2dd475aeca04374c8b0a1611a5738a0e5ac82b9.json +UB1 0.39286 0.18519 0.17857 0.17105 +UB2 0.35714 0.18519 0.17857 0.16447 +LexRank 0.25 0.03704 0.21429 0.08553 +TextRank 0.28571 0.07407 0.17857 0.07237 +Luhn 0.17857 0.0 0.10714 0.03947 +ICSI 0.21429 0.03704 0.17857 0.05921 +b4ac97a998df19f4ada91d06b8cc071a9110d622.json +UB1 0.49315 0.16667 0.19178 0.16588 +UB2 0.36986 0.13889 0.23288 0.13033 +LexRank 0.21918 0.02778 0.10959 0.04739 +TextRank 0.09589 0.0 0.08219 0.01896 +Luhn 0.30137 0.11111 0.19178 0.09716 +ICSI 0.31507 0.04167 0.16438 0.08768 +9e723736f8ed27cc40632450977084235c54e53e.json +UB1 0.57692 0.31373 0.36538 0.23649 +UB2 0.55769 0.31373 0.36538 0.23311 +LexRank 0.05769 0.0 0.03846 0.01014 +TextRank 0.15385 0.0 0.09615 0.03378 +Luhn 0.15385 0.0 0.09615 0.03378 +ICSI 0.26923 0.07843 0.17308 0.09122 +abcef017ff26419a8dfa70e22b6736307e8e0bc6.json +UB1 0.56522 0.26471 0.28986 0.23367 +UB2 0.57971 0.32353 0.27536 0.24874 +LexRank 0.23188 0.04412 0.08696 0.0603 +TextRank 0.31884 0.05882 0.17391 0.09296 +Luhn 0.31884 0.05882 0.17391 0.09296 +ICSI 0.21739 0.0 0.13043 0.05276 +a333056e5b493dca481b54c7d46efccf8d85c41a.json +UB1 0.36709 0.10256 0.17722 0.11572 +UB2 0.31646 0.12821 0.13924 0.09825 +LexRank 0.1519 0.0 0.10127 0.03493 +TextRank 0.13924 0.0 0.07595 0.02838 +Luhn 0.11392 0.01282 0.08861 0.03057 +ICSI 0.13924 0.01282 0.07595 0.02838 +a03179b3283b1a24ecb62884cc2ee54503447cdf.json +UB1 0.17391 0.04545 0.13043 0.04098 +UB2 0.13043 0.04545 0.13043 0.02459 +LexRank 0.04348 0.0 0.04348 0.0 +TextRank 0.21739 0.04545 0.13043 0.04918 +Luhn 0.21739 0.04545 0.13043 0.04918 +ICSI 0.0 0.0 0.0 0.0 +9b60ac32ba86efd681aacbb59bc7027f95c63ef5.json +UB1 0.38298 0.08696 0.21277 0.1015 +UB2 0.44681 0.23913 0.31915 0.19173 +LexRank 0.14894 0.02174 0.10638 0.03383 +TextRank 0.10638 0.0 0.10638 0.02632 +Luhn 0.12766 0.0 0.08511 0.02632 +ICSI 0.21277 0.02174 0.14894 0.04887 +aa9e886391960220cecbce44d358862638273956.json +UB1 0.3871 0.1 0.22581 0.14706 +UB2 0.35484 0.16667 0.32258 0.17059 +LexRank 0.09677 0.0 0.06452 0.01765 +TextRank 0.19355 0.06667 0.19355 0.06471 +Luhn 0.09677 0.06667 0.09677 0.03529 +ICSI 0.09677 0.0 0.06452 0.01765 +9cbf995ac59db13afdfd1a9caa06784804c6c19a.json +UB1 0.47619 0.17073 0.30952 0.19492 +UB2 0.42857 0.2439 0.35714 0.20339 +LexRank 0.14286 0.0 0.07143 0.02542 +TextRank 0.11905 0.0 0.07143 0.02119 +Luhn 0.16667 0.0 0.11905 0.02966 +ICSI 0.21429 0.02439 0.14286 0.05085 +8eeba672631568af9a4e25799cb7683f17436c55.json +UB1 0.39474 0.0 0.15789 0.08491 +UB2 0.26316 0.10811 0.13158 0.07075 +LexRank 0.10526 0.0 0.07895 0.01887 +TextRank 0.02632 0.0 0.02632 0.00472 +Luhn 0.15789 0.02703 0.07895 0.03774 +ICSI 0.05263 0.0 0.05263 0.00943 +904d0542b0aa745d3d94ab4eeaea218867e52e01.json +UB1 0.54545 0.27632 0.23377 0.25785 +UB2 0.51948 0.31579 0.27273 0.26233 +LexRank 0.23377 0.01316 0.09091 0.05381 +TextRank 0.41558 0.11842 0.22078 0.16368 +Luhn 0.27273 0.01316 0.12987 0.07175 +ICSI 0.33766 0.01316 0.11688 0.0852 +9eb7f9b373f6c932f8083b15769dc5dd1708634d.json +UB1 0.52113 0.22857 0.32394 0.22683 +UB2 0.5493 0.25714 0.30986 0.24634 +LexRank 0.11268 0.0 0.08451 0.02195 +TextRank 0.21127 0.04286 0.14085 0.05854 +Luhn 0.30986 0.04286 0.11268 0.08293 +ICSI 0.32394 0.01429 0.15493 0.07317 +93353a5088dadd7704b8793774851ee610431d3f.json +UB1 0.28 0.0 0.12 0.04478 +UB2 0.2 0.04167 0.16 0.06716 +LexRank 0.04 0.0 0.04 0.00746 +TextRank 0.12 0.0 0.12 0.02239 +Luhn 0.04 0.0 0.04 0.00746 +ICSI 0.12 0.0 0.08 0.02239 +b9766f8a4bf2f4af0aca7a04f094809f967982b8.json +UB1 0.42857 0.2 0.33333 0.18182 +UB2 0.33333 0.2 0.28571 0.14545 +LexRank 0.09524 0.0 0.09524 0.01818 +TextRank 0.04762 0.0 0.04762 0.00909 +Luhn 0.04762 0.0 0.04762 0.00909 +ICSI 0.09524 0.0 0.09524 0.01818 +b0fbb8efa2693bfe14493e9038ca388177cd12f6.json +UB1 0.45098 0.1 0.15686 0.13448 +UB2 0.35294 0.16 0.15686 0.13103 +LexRank 0.07843 0.02 0.07843 0.01724 +TextRank 0.13725 0.0 0.07843 0.02414 +Luhn 0.15686 0.0 0.05882 0.03103 +ICSI 0.13725 0.02 0.09804 0.03793 +a884dbcb32ff958b26506d743457442a8db125b0.json +UB1 0.74 0.57143 0.32 0.54225 +UB2 0.72 0.59184 0.32 0.53873 +LexRank 0.32 0.10204 0.16 0.11268 +TextRank 0.32 0.10204 0.16 0.11268 +Luhn 0.32 0.10204 0.16 0.11268 +ICSI 0.24 0.04082 0.06 0.05634 +9731c7d5f785d57454134ea850c47ab46180b634.json +UB1 0.23333 0.06897 0.16667 0.09146 +UB2 0.23333 0.2069 0.23333 0.16463 +LexRank 0.1 0.0 0.1 0.02439 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.06667 0.0 0.03333 0.0122 +ICSI 0.06667 0.0 0.03333 0.0122 +91a732f2bd5a35f9b74f15d62c2b0f8f3dd55308.json +UB1 0.56 0.27027 0.34667 0.25576 +UB2 0.53333 0.37838 0.4 0.30876 +LexRank 0.24 0.04054 0.10667 0.0576 +TextRank 0.24 0.02703 0.13333 0.08295 +Luhn 0.14667 0.01351 0.08 0.02995 +ICSI 0.4 0.14865 0.2 0.14516 +b22ce5d2575b2cab9f3ca6467b6d9af703c5adf7.json +UB1 0.34211 0.08108 0.18421 0.11321 +UB2 0.26316 0.10811 0.21053 0.08019 +LexRank 0.05263 0.0 0.02632 0.00943 +TextRank 0.07895 0.0 0.07895 0.00943 +Luhn 0.07895 0.0 0.02632 0.01415 +ICSI 0.05263 0.0 0.02632 0.00472 +b9211ce8cbd42b3c2b6d4ced10ad6c0aee65e291.json +UB1 0.55738 0.18333 0.14754 0.18 +UB2 0.5082 0.18333 0.13115 0.16 +LexRank 0.09836 0.0 0.04918 0.01429 +TextRank 0.18033 0.0 0.06557 0.03714 +Luhn 0.22951 0.01667 0.11475 0.05714 +ICSI 0.14754 0.0 0.09836 0.02571 +b9382d63c5abc85d269258503788ecffe9aebf1b.json +UB1 0.7549 0.63366 0.47059 0.58221 +UB2 0.7451 0.63366 0.46078 0.57718 +LexRank 0.35294 0.12871 0.17647 0.13591 +TextRank 0.34314 0.17822 0.18627 0.1594 +Luhn 0.33333 0.17822 0.22549 0.16779 +ICSI 0.41176 0.23762 0.20588 0.23658 +a1c660fdeb0dbfccabe91324c84346bd63a9e5dd.json +UB1 0.51163 0.2381 0.34884 0.2438 +UB2 0.51163 0.28571 0.32558 0.26033 +LexRank 0.09302 0.0 0.06977 0.01653 +TextRank 0.06977 0.02381 0.04651 0.01653 +Luhn 0.06977 0.02381 0.04651 0.01653 +ICSI 0.16279 0.0 0.09302 0.03306 +a5bfcb543c67f628e17668e1222388e57ce865a0.json +UB1 0.61364 0.53488 0.59091 0.51613 +UB2 0.61364 0.53488 0.59091 0.51613 +LexRank 0.04545 0.0 0.02273 0.00806 +TextRank 0.27273 0.11628 0.22727 0.125 +Luhn 0.31818 0.13953 0.25 0.15323 +ICSI 0.43182 0.23256 0.31818 0.25403 +aed88ef43a9e8296cfdb629cb996b584a53d5e11.json +UB1 0.6 0.35938 0.36923 0.33422 +UB2 0.6 0.35938 0.36923 0.33422 +LexRank 0.26154 0.03125 0.12308 0.07219 +TextRank 0.32308 0.07812 0.26154 0.12567 +Luhn 0.30769 0.0625 0.15385 0.09091 +ICSI 0.46154 0.25 0.38462 0.23529 +b668b1d10b5094de271261b63b18f7b9e1e8c7d2.json +UB1 0.51316 0.2 0.22368 0.18409 +UB2 0.48684 0.25333 0.28947 0.20682 +LexRank 0.17105 0.0 0.06579 0.02955 +TextRank 0.15789 0.02667 0.14474 0.04773 +Luhn 0.10526 0.0 0.10526 0.02045 +ICSI 0.19737 0.06667 0.13158 0.05227 +b5fba6689afa8910cb937375992f6f650d41b44b.json +UB1 0.50943 0.25 0.30189 0.22848 +UB2 0.4717 0.26923 0.32075 0.21523 +LexRank 0.22642 0.07692 0.09434 0.07616 +TextRank 0.16981 0.03846 0.11321 0.03974 +Luhn 0.35849 0.15385 0.22642 0.14238 +ICSI 0.32075 0.15385 0.20755 0.11258 +9878c3394aeddf7c54f5175358f0462e3dbdd7e7.json +UB1 0.52273 0.18605 0.31818 0.20968 +UB2 0.47727 0.23256 0.34091 0.22177 +LexRank 0.09091 0.0 0.09091 0.01613 +TextRank 0.09091 0.0 0.09091 0.01613 +Luhn 0.13636 0.0 0.11364 0.03226 +ICSI 0.11364 0.0 0.09091 0.02419 +ae6b35ef9232e686b01151780f4c98a1d26eea8a.json +UB1 0.4359 0.07895 0.23077 0.1422 +UB2 0.35897 0.13158 0.25641 0.11927 +LexRank 0.33333 0.13158 0.17949 0.11009 +TextRank 0.17949 0.02632 0.12821 0.04128 +Luhn 0.15385 0.02632 0.10256 0.04128 +ICSI 0.20513 0.02632 0.12821 0.05046 +9063fd39527fc91823af21146dad43d36ba01070.json +UB1 0.2381 0.1 0.2381 0.07273 +UB2 0.2381 0.1 0.2381 0.07273 +LexRank 0.19048 0.0 0.04762 0.03636 +TextRank 0.19048 0.0 0.04762 0.03636 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.04762 0.0 0.04762 0.00909 +9814c70e15dad80f3ab0a20c8a61a7fa8b775136.json +UB1 0.55556 0.25714 0.19444 0.19 +UB2 0.47222 0.25714 0.27778 0.165 +LexRank 0.16667 0.05714 0.08333 0.045 +TextRank 0.13889 0.0 0.05556 0.015 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.19444 0.08571 0.13889 0.08 +a7a3aee2b5782be0ecf927fb54caf6201e0d9870.json +UB1 0.47826 0.08889 0.26087 0.14615 +UB2 0.34783 0.17778 0.28261 0.16923 +LexRank 0.08696 0.0 0.08696 0.01538 +TextRank 0.19565 0.06667 0.15217 0.05769 +Luhn 0.1087 0.0 0.08696 0.02308 +ICSI 0.1087 0.0 0.08696 0.02308 +b1f55a9e0dba175031fe2590a7d18ef81479b350.json +UB1 0.45652 0.15556 0.32609 0.16154 +UB2 0.3913 0.2 0.36957 0.17308 +LexRank 0.17391 0.0 0.06522 0.03077 +TextRank 0.21739 0.06667 0.1087 0.05 +Luhn 0.21739 0.04444 0.17391 0.06538 +ICSI 0.15217 0.02222 0.08696 0.03462 +a8d36d2b8e0af40fa3d8c728c4c12a50396c2d88.json +UB1 0.45588 0.14925 0.30882 0.20408 +UB2 0.36765 0.16418 0.29412 0.18367 +LexRank 0.23529 0.01493 0.10294 0.06122 +TextRank 0.16176 0.01493 0.08824 0.03571 +Luhn 0.23529 0.07463 0.17647 0.09184 +ICSI 0.25 0.01493 0.08824 0.05867 +9ec389729c3a11815bcd7fc6691a7c2cfe6389f0.json +UB1 0.4 0.13636 0.26667 0.15748 +UB2 0.4 0.20455 0.26667 0.16929 +LexRank 0.08889 0.0 0.06667 0.02362 +TextRank 0.15556 0.0 0.08889 0.03937 +Luhn 0.08889 0.0 0.04444 0.01575 +ICSI 0.15556 0.0 0.08889 0.04331 +b0c6944d5cbd2eada017b275c90ec470a29cf121.json +UB1 0.45161 0.33333 0.41935 0.25294 +UB2 0.45161 0.33333 0.41935 0.25294 +LexRank 0.06452 0.0 0.06452 0.01176 +TextRank 0.09677 0.0 0.06452 0.02353 +Luhn 0.09677 0.03333 0.09677 0.02353 +ICSI 0.25806 0.16667 0.22581 0.11176 +ab9813ad0272498308c041c931274552fbec5915.json +UB1 0.62319 0.35294 0.36232 0.32663 +UB2 0.5942 0.35294 0.34783 0.32161 +LexRank 0.31884 0.08824 0.15942 0.11558 +TextRank 0.21739 0.0 0.08696 0.0402 +Luhn 0.21739 0.0 0.08696 0.0402 +ICSI 0.34783 0.02941 0.17391 0.09045 +9d73c06508bdab2f59910af3f0e64020c21afea5.json +UB1 0.50704 0.15714 0.15493 0.19756 +UB2 0.39437 0.18571 0.21127 0.14634 +LexRank 0.16901 0.0 0.12676 0.03659 +TextRank 0.15493 0.02857 0.08451 0.03415 +Luhn 0.16901 0.01429 0.12676 0.04146 +ICSI 0.22535 0.01429 0.14085 0.05122 +ad8cb9ac9a4adf8a3dd13a7a94387d58160ab76f.json +UB1 0.51163 0.19048 0.27907 0.19835 +UB2 0.46512 0.21429 0.25581 0.18595 +LexRank 0.18605 0.04762 0.11628 0.04545 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09302 0.0 0.06977 0.01653 +ICSI 0.25581 0.07143 0.13953 0.06612 +b11481667c0839330061fbed2b34cbbcbcbc3fb0.json +UB1 0.55556 0.30769 0.2963 0.31507 +UB2 0.48148 0.30769 0.25926 0.30137 +LexRank 0.07407 0.0 0.07407 0.0137 +TextRank 0.11111 0.03846 0.11111 0.0274 +Luhn 0.14815 0.03846 0.11111 0.0411 +ICSI 0.40741 0.23077 0.25926 0.21918 +980a97215d14aa169baa37557078d358c098e8ca.json +UB1 0.62069 0.38596 0.2931 0.31024 +UB2 0.58621 0.38596 0.2931 0.30422 +LexRank 0.2931 0.07018 0.13793 0.08735 +TextRank 0.37931 0.21053 0.2069 0.20783 +Luhn 0.2931 0.03509 0.13793 0.06928 +ICSI 0.5 0.33333 0.36207 0.29819 +af0582194d9e9262eb20bec448a25b3da883386a.json +UB1 0.2619 0.07317 0.16667 0.09322 +UB2 0.2381 0.07317 0.16667 0.08898 +LexRank 0.09524 0.0 0.04762 0.01695 +TextRank 0.07143 0.0 0.07143 0.01271 +Luhn 0.07143 0.0 0.07143 0.01271 +ICSI 0.04762 0.0 0.04762 0.00847 +af48c49504bf9e115e3f0537dc68f8ec33689358.json +UB1 0.52778 0.31429 0.38889 0.275 +UB2 0.52778 0.31429 0.38889 0.275 +LexRank 0.36111 0.2 0.27778 0.185 +TextRank 0.13889 0.02857 0.11111 0.03 +Luhn 0.08333 0.02857 0.05556 0.02 +ICSI 0.16667 0.08571 0.13889 0.05 +b185f8ae2ed46ae33799bdf6439fc250a9058aea.json +UB1 0.55263 0.21622 0.47368 0.27358 +UB2 0.55263 0.2973 0.39474 0.26887 +LexRank 0.15789 0.0 0.07895 0.02358 +TextRank 0.15789 0.02703 0.07895 0.03774 +Luhn 0.13158 0.02703 0.07895 0.03302 +ICSI 0.34211 0.10811 0.15789 0.09434 +b65baa2736c53cd337c137b841b921e8e689384c.json +UB1 0.46774 0.13115 0.19355 0.16854 +UB2 0.48387 0.21311 0.22581 0.20225 +LexRank 0.17742 0.01639 0.09677 0.03933 +TextRank 0.06452 0.0 0.04839 0.01124 +Luhn 0.14516 0.0 0.09677 0.03933 +ICSI 0.37097 0.13115 0.19355 0.14888 +b173909c771b16631587add0fdc940272124440b.json +UB1 0.66667 0.42105 0.38462 0.38991 +UB2 0.66667 0.42105 0.38462 0.38991 +LexRank 0.05128 0.0 0.05128 0.00917 +TextRank 0.05128 0.0 0.02564 0.00917 +Luhn 0.05128 0.0 0.02564 0.00917 +ICSI 0.07692 0.0 0.07692 0.01376 +a4977364f92fbf22fc05dea904129c834b2a5077.json +UB1 0.36 0.10811 0.14667 0.12212 +UB2 0.32 0.17568 0.14667 0.1106 +LexRank 0.2 0.08108 0.16 0.06912 +TextRank 0.13333 0.02703 0.08 0.03226 +Luhn 0.06667 0.0 0.05333 0.01382 +ICSI 0.24 0.02703 0.12 0.053 +b11b680ac4757ed3f7b25aebc566a7c018118a3e.json +UB1 0.67647 0.30303 0.47059 0.34574 +UB2 0.67647 0.30303 0.47059 0.34574 +LexRank 0.35294 0.15152 0.23529 0.17553 +TextRank 0.5 0.18182 0.35294 0.25 +Luhn 0.5 0.18182 0.35294 0.25 +ICSI 0.35294 0.12121 0.26471 0.12766 +95c99bc58fa0548bc621397510780c8f1b4bd0c1.json +UB1 0.41818 0.11111 0.2 0.10828 +UB2 0.41818 0.12963 0.18182 0.11465 +LexRank 0.30909 0.03704 0.14545 0.08599 +TextRank 0.18182 0.03704 0.12727 0.04459 +Luhn 0.21818 0.01852 0.10909 0.05732 +ICSI 0.21818 0.07407 0.16364 0.06051 +943adcbb2e91d00357b61b3919fd434488664da7.json +UB1 0.475 0.23077 0.225 0.1875 +UB2 0.45 0.23077 0.275 0.17411 +LexRank 0.125 0.02564 0.1 0.02679 +TextRank 0.025 0.0 0.025 0.00446 +Luhn 0.025 0.0 0.025 0.0 +ICSI 0.125 0.02564 0.1 0.02679 +b5982cc1a53b9c06450c78c7d94068b25860b2fb.json +UB1 0.41935 0.16667 0.35484 0.2 +UB2 0.32258 0.23333 0.29032 0.20588 +LexRank 0.29032 0.06667 0.22581 0.11765 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.25806 0.06667 0.19355 0.11176 +9d8708f33d5a564d070140a8c1c9e0f5fb3e4c4a.json +UB1 0.48649 0.19444 0.32432 0.20388 +UB2 0.45946 0.22222 0.32432 0.2233 +LexRank 0.13514 0.0 0.10811 0.03398 +TextRank 0.13514 0.02778 0.10811 0.03883 +Luhn 0.21622 0.02778 0.08108 0.0534 +ICSI 0.08108 0.0 0.05405 0.01456 +901a165e28d4abb80aa56c8ea6a399af174bd765.json +UB1 0.57377 0.28333 0.27869 0.29714 +UB2 0.52459 0.31667 0.31148 0.30286 +LexRank 0.47541 0.2 0.27869 0.22 +TextRank 0.11475 0.0 0.08197 0.02 +Luhn 0.22951 0.06667 0.13115 0.06571 +ICSI 0.21311 0.05 0.19672 0.06571 +addd29387c13ac24b4542322168e0cbc1349ebe5.json +UB1 0.81944 0.66197 0.43056 0.61298 +UB2 0.75 0.67606 0.56944 0.62981 +LexRank 0.40278 0.15493 0.27778 0.1899 +TextRank 0.41667 0.15493 0.27778 0.19231 +Luhn 0.31944 0.02817 0.15278 0.07452 +ICSI 0.51389 0.22535 0.30556 0.24519 +a7701670ea18932031a46ab6e183513df3a64b78.json +UB1 0.38889 0.2 0.33333 0.195 +UB2 0.36111 0.2 0.33333 0.19 +LexRank 0.05556 0.0 0.05556 0.01 +TextRank 0.13889 0.0 0.08333 0.025 +Luhn 0.22222 0.08571 0.13889 0.075 +ICSI 0.27778 0.11429 0.22222 0.135 +aa49319045f521ae61ca6df8d49032955cd21bba.json +UB1 0.39535 0.02381 0.25581 0.10744 +UB2 0.27907 0.07143 0.13953 0.11157 +LexRank 0.16279 0.02381 0.11628 0.03306 +TextRank 0.23256 0.02381 0.16279 0.05372 +Luhn 0.11628 0.0 0.09302 0.01653 +ICSI 0.25581 0.02381 0.11628 0.04959 +a06dffb7c9849b247824a93b8d8564490a0cd634.json +UB1 0.46552 0.10526 0.25862 0.13554 +UB2 0.2931 0.12281 0.24138 0.09337 +LexRank 0.24138 0.07018 0.13793 0.06928 +TextRank 0.10345 0.0 0.06897 0.02711 +Luhn 0.12069 0.03509 0.08621 0.03012 +ICSI 0.13793 0.0 0.08621 0.03012 +a65b3548899383f478da46c7498edd74a69942e1.json +UB1 0.39474 0.16216 0.21053 0.16509 +UB2 0.36842 0.16216 0.21053 0.16038 +LexRank 0.07895 0.0 0.02632 0.01415 +TextRank 0.07895 0.0 0.05263 0.01415 +Luhn 0.07895 0.0 0.07895 0.01415 +ICSI 0.05263 0.0 0.05263 0.00943 +9557d10de054dadb6bff18679a8ddec1e71af39f.json +UB1 0.29412 0.04 0.11765 0.05862 +UB2 0.19608 0.1 0.11765 0.05862 +LexRank 0.09804 0.0 0.05882 0.02069 +TextRank 0.21569 0.04 0.13725 0.06207 +Luhn 0.15686 0.0 0.09804 0.02759 +ICSI 0.11765 0.04 0.09804 0.03448 +95b96f80b4d024e10c68b93e8af9da43cba7619d.json +UB1 0.5 0.2 0.35714 0.24375 +UB2 0.48214 0.23636 0.26786 0.23438 +LexRank 0.21429 0.01818 0.10714 0.05 +TextRank 0.07143 0.0 0.05357 0.0125 +Luhn 0.10714 0.0 0.08929 0.025 +ICSI 0.17857 0.0 0.08929 0.03438 +9f694966be2a9a709ad9ba0794b02429f79fac65.json +UB1 0.30556 0.05714 0.22222 0.11 +UB2 0.30556 0.17143 0.19444 0.11 +LexRank 0.08333 0.0 0.05556 0.02 +TextRank 0.13889 0.0 0.08333 0.025 +Luhn 0.13889 0.0 0.08333 0.025 +ICSI 0.11111 0.0 0.08333 0.025 +a5556446ac4e7d766f83fbf283462ad2767eca55.json +UB1 0.44737 0.18919 0.21053 0.20283 +UB2 0.36842 0.21622 0.18421 0.16509 +LexRank 0.15789 0.02703 0.07895 0.03302 +TextRank 0.05263 0.0 0.02632 0.00943 +Luhn 0.07895 0.0 0.07895 0.01887 +ICSI 0.15789 0.0 0.07895 0.03302 +a2d5c4105853ea154b925383298b519effffb9a0.json +UB1 0.51724 0.21429 0.37931 0.22152 +UB2 0.37931 0.28571 0.37931 0.21519 +LexRank 0.27586 0.0 0.13793 0.05696 +TextRank 0.06897 0.0 0.06897 0.01266 +Luhn 0.06897 0.0 0.06897 0.01266 +ICSI 0.17241 0.03571 0.10345 0.03797 +a2a78bb612bb7350daa6ebb87becf07372a2d580.json +UB1 0.70833 0.42553 0.39583 0.43015 +UB2 0.6875 0.42553 0.41667 0.40441 +LexRank 0.54167 0.38298 0.4375 0.34926 +TextRank 0.54167 0.38298 0.4375 0.34926 +Luhn 0.54167 0.38298 0.4375 0.34926 +ICSI 0.41667 0.17021 0.25 0.18015 +ab51c039947994625264b09aebafbe4c62c1f507.json +UB1 0.47368 0.2973 0.31579 0.1934 +UB2 0.47368 0.2973 0.31579 0.1934 +LexRank 0.07895 0.0 0.05263 0.01415 +TextRank 0.21053 0.13514 0.18421 0.08019 +Luhn 0.15789 0.08108 0.13158 0.05189 +ICSI 0.28947 0.18919 0.28947 0.11792 +94973319cbdfe56d39cdfb64de53ad9eade8c5d9.json +UB1 0.25 0.05263 0.15 0.05769 +UB2 0.25 0.05263 0.15 0.05769 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.05 0.0 0.05 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.1 0.0 0.1 0.00962 +af06f0c47a16af9d32d69512e5d737093b817ab6.json +UB1 0.47619 0.29268 0.2381 0.25 +UB2 0.42857 0.26829 0.21429 0.21186 +LexRank 0.19048 0.02439 0.09524 0.03814 +TextRank 0.07143 0.0 0.07143 0.01271 +Luhn 0.11905 0.0 0.07143 0.02119 +ICSI 0.14286 0.07317 0.14286 0.04237 +9c54c6c41a02bd96734852e262cd64d62b1fd26b.json +UB1 0.53333 0.25 0.28889 0.19685 +UB2 0.48889 0.29545 0.33333 0.20866 +LexRank 0.08889 0.0 0.04444 0.01575 +TextRank 0.33333 0.15909 0.2 0.12992 +Luhn 0.2 0.02273 0.13333 0.04331 +ICSI 0.24444 0.06818 0.13333 0.06693 +9d76bf26e1156a520c44d8c51f48859018dba5d4.json +UB1 0.5102 0.25 0.34694 0.21223 +UB2 0.46939 0.27083 0.2449 0.19065 +LexRank 0.14286 0.0 0.08163 0.03597 +TextRank 0.2449 0.0625 0.14286 0.06835 +Luhn 0.2449 0.0625 0.14286 0.06835 +ICSI 0.14286 0.0 0.08163 0.02878 +93e18a0118f5a9ca77e1f9fbc2fb6fafad8e8d87.json +UB1 0.40541 0.08333 0.21622 0.12136 +UB2 0.37838 0.08333 0.18919 0.1165 +LexRank 0.10811 0.0 0.08108 0.01942 +TextRank 0.10811 0.0 0.05405 0.02427 +Luhn 0.10811 0.0 0.05405 0.02427 +ICSI 0.24324 0.05556 0.13514 0.06311 +ae4587f5d1fb6111cc5fcdbad3437a34a5db8ac5.json +UB1 0.48649 0.13889 0.24324 0.16505 +UB2 0.35135 0.16667 0.18919 0.13592 +LexRank 0.18919 0.08333 0.13514 0.06311 +TextRank 0.08108 0.0 0.05405 0.01456 +Luhn 0.08108 0.0 0.05405 0.01456 +ICSI 0.18919 0.08333 0.13514 0.06796 +8f090475cab148738ac178213f072207bcdd4fac.json +UB1 0.46939 0.125 0.18367 0.15468 +UB2 0.40816 0.1875 0.18367 0.16187 +LexRank 0.16327 0.04167 0.12245 0.04317 +TextRank 0.14286 0.04167 0.10204 0.03597 +Luhn 0.06122 0.0 0.06122 0.01439 +ICSI 0.14286 0.02083 0.10204 0.02518 +9f38be60081a29111a30b6be6e4ebeb0c3776903.json +UB1 0.78 0.65306 0.72 0.6162 +UB2 0.76 0.65306 0.72 0.60915 +LexRank 0.2 0.0 0.12 0.05282 +TextRank 0.3 0.04082 0.14 0.09155 +Luhn 0.3 0.04082 0.14 0.09155 +ICSI 0.5 0.30612 0.42 0.28521 +a933621002a32f73bec343742289840fea4012ad.json +UB1 0.43902 0.125 0.34146 0.17391 +UB2 0.36585 0.15 0.29268 0.15652 +LexRank 0.14634 0.0 0.12195 0.03043 +TextRank 0.12195 0.025 0.09756 0.02609 +Luhn 0.02439 0.0 0.02439 0.00435 +ICSI 0.09756 0.0 0.07317 0.01739 +982d1c8ca9f26c60bdffaf603d5cb51904de34ea.json +UB1 0.33333 0.125 0.21212 0.0989 +UB2 0.30303 0.125 0.15152 0.08791 +LexRank 0.27273 0.15625 0.21212 0.15385 +TextRank 0.15152 0.0 0.06061 0.02747 +Luhn 0.15152 0.0 0.06061 0.02747 +ICSI 0.24242 0.0625 0.15152 0.07143 +92e51cc582671bf0b25c49a4b9f263487a871627.json +UB1 0.42857 0.14815 0.35714 0.13816 +UB2 0.39286 0.25926 0.35714 0.15789 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.07143 0.0 0.07143 0.01316 +Luhn 0.10714 0.0 0.07143 0.01974 +ICSI 0.14286 0.0 0.07143 0.03289 +a0648368a41db3b8220f6a25a4e4654a95dca749.json +UB1 0.3 0.14286 0.18 0.10915 +UB2 0.3 0.16327 0.16 0.12324 +LexRank 0.08 0.0 0.06 0.01408 +TextRank 0.12 0.02041 0.08 0.02817 +Luhn 0.14 0.0 0.08 0.02465 +ICSI 0.24 0.06122 0.18 0.07394 +9a47c0bbea72243464687fe0438323f7a8b15f2a.json +UB1 0.34091 0.04651 0.18182 0.07661 +UB2 0.31818 0.16279 0.29545 0.14516 +LexRank 0.09091 0.0 0.06818 0.01613 +TextRank 0.18182 0.04651 0.11364 0.04839 +Luhn 0.09091 0.0 0.06818 0.01613 +ICSI 0.09091 0.0 0.06818 0.01613 +b03d8723c7b6d4accc8f191751dae58e2379b5ca.json +UB1 0.34211 0.10811 0.18421 0.10377 +UB2 0.39474 0.18919 0.26316 0.12736 +LexRank 0.10526 0.0 0.07895 0.01887 +TextRank 0.13158 0.0 0.07895 0.0283 +Luhn 0.07895 0.0 0.05263 0.01415 +ICSI 0.18421 0.02703 0.15789 0.04717 +90a4f810fa7be20a3adfdc2b920aabe42683ea67.json +UB1 0.42857 0.19512 0.2619 0.21186 +UB2 0.42857 0.26829 0.42857 0.26271 +LexRank 0.11905 0.0 0.07143 0.02542 +TextRank 0.14286 0.0 0.11905 0.0339 +Luhn 0.14286 0.0 0.07143 0.02542 +ICSI 0.16667 0.0 0.11905 0.0339 +a4c243ce74b480c3221bfb2edd6497dcb525c001.json +UB1 0.47273 0.09259 0.23636 0.13694 +UB2 0.43636 0.2037 0.25455 0.16242 +LexRank 0.03636 0.0 0.01818 0.00637 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09091 0.01852 0.07273 0.01911 +ICSI 0.21818 0.03704 0.12727 0.05096 +98611d7aeedf753db556e59fb4762af364ff4365.json +UB1 0.30952 0.02439 0.11905 0.05508 +UB2 0.2619 0.07317 0.21429 0.10593 +LexRank 0.11905 0.0 0.07143 0.02119 +TextRank 0.14286 0.0 0.09524 0.02542 +Luhn 0.16667 0.0 0.09524 0.0339 +ICSI 0.19048 0.0 0.11905 0.0339 +a9ef78e3a4bc9398fc791f204d433df3dc90580d.json +UB1 0.53333 0.2069 0.4 0.2622 +UB2 0.33333 0.24138 0.3 0.21341 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.06667 0.0 0.03333 0.0122 +Luhn 0.4 0.13793 0.26667 0.17073 +ICSI 0.03333 0.0 0.03333 0.0061 +90eed94d25069d67cdf00df26e61b20086d8bd47.json +UB1 0.33333 0.19231 0.2963 0.14384 +UB2 0.33333 0.19231 0.2963 0.14384 +LexRank 0.07407 0.0 0.07407 0.0137 +TextRank 0.07407 0.0 0.07407 0.0137 +Luhn 0.03704 0.0 0.03704 0.00685 +ICSI 0.18519 0.03846 0.11111 0.04795 +8f682538fd05652ef808f9f588a6c0cbf3dec391.json +UB1 0.58889 0.30337 0.28889 0.29389 +UB2 0.6 0.32584 0.28889 0.30534 +LexRank 0.32222 0.10112 0.17778 0.12023 +TextRank 0.26667 0.0 0.1 0.0687 +Luhn 0.2 0.0 0.08889 0.04962 +ICSI 0.4 0.16854 0.2 0.16221 +a55d35d0d4aa8cb133f4d29a2cb1e372b0450597.json +UB1 0.42222 0.13636 0.35556 0.16929 +UB2 0.35556 0.13636 0.31111 0.15354 +LexRank 0.11111 0.0 0.06667 0.01969 +TextRank 0.08889 0.0 0.04444 0.01575 +Luhn 0.08889 0.0 0.06667 0.01575 +ICSI 0.15556 0.0 0.08889 0.03937 +a487e41d38280557813d1d97ae8ae4c07771305a.json +UB1 0.45714 0.11765 0.28571 0.15464 +UB2 0.4 0.14706 0.25714 0.14948 +LexRank 0.05714 0.0 0.02857 0.01031 +TextRank 0.11429 0.0 0.08571 0.02577 +Luhn 0.11429 0.0 0.11429 0.01546 +ICSI 0.05714 0.0 0.05714 0.01031 +b44d7de8120c7c56ec783329aa9f704ad71a3135.json +UB1 0.59375 0.4127 0.29688 0.36957 +UB2 0.57812 0.4127 0.26562 0.37228 +LexRank 0.20312 0.04762 0.14062 0.05435 +TextRank 0.20312 0.06349 0.09375 0.05435 +Luhn 0.29688 0.1746 0.1875 0.16576 +ICSI 0.42188 0.2381 0.28125 0.22011 +a999839f7e5d95569c532e4b7a28f0c86ca3501f.json +UB1 0.5 0.15385 0.35 0.21429 +UB2 0.35 0.17949 0.25 0.15625 +LexRank 0.1 0.02564 0.1 0.03125 +TextRank 0.05 0.0 0.05 0.00893 +Luhn 0.2 0.0 0.1 0.04018 +ICSI 0.05 0.0 0.05 0.00893 +931802772b74326a8ee82f4ac41ffc5dec27a7b2.json +UB1 0.42857 0.23529 0.22857 0.20103 +UB2 0.4 0.23529 0.2 0.19588 +LexRank 0.14286 0.0 0.08571 0.03093 +TextRank 0.05714 0.0 0.05714 0.01031 +Luhn 0.08571 0.0 0.08571 0.02062 +ICSI 0.14286 0.02941 0.11429 0.04124 +a45fe29d46cda877ad9e3780a4ad84ba55f11074.json +UB1 0.25 0.0 0.10417 0.04779 +UB2 0.22917 0.04255 0.14583 0.05147 +LexRank 0.29167 0.04255 0.14583 0.09191 +TextRank 0.29167 0.04255 0.14583 0.09191 +Luhn 0.29167 0.04255 0.14583 0.09191 +ICSI 0.14583 0.0 0.10417 0.02941 +a9e8baf730041af1aee9224d1a5559806be57c90.json +UB1 0.39024 0.125 0.14634 0.13478 +UB2 0.39024 0.125 0.14634 0.13478 +LexRank 0.21951 0.025 0.14634 0.06957 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.09756 0.0 0.07317 0.02174 +ICSI 0.31707 0.1 0.21951 0.10435 +a16aa0397a5c8ee597b872eb2bb6219ff3751643.json +UB1 0.54545 0.26316 0.38961 0.28475 +UB2 0.51948 0.31579 0.38961 0.31166 +LexRank 0.11688 0.01316 0.07792 0.02466 +TextRank 0.12987 0.01316 0.07792 0.02691 +Luhn 0.14286 0.01316 0.09091 0.02915 +ICSI 0.15584 0.01316 0.09091 0.03363 +b251dc246380d784004cfef3b71f1d0410ed55f3.json +UB1 0.27273 0.04762 0.13636 0.08621 +UB2 0.18182 0.09524 0.13636 0.06034 +LexRank 0.04545 0.0 0.04545 0.00862 +TextRank 0.18182 0.0 0.18182 0.06034 +Luhn 0.18182 0.0 0.18182 0.06034 +ICSI 0.09091 0.04762 0.09091 0.02586 +957381fe46d8a658b1db6742932e1646a488c52f.json +UB1 0.41667 0.13043 0.29167 0.1875 +UB2 0.41667 0.17391 0.29167 0.16406 +LexRank 0.16667 0.0 0.08333 0.03906 +TextRank 0.04167 0.0 0.04167 0.00781 +Luhn 0.04167 0.0 0.04167 0.00781 +ICSI 0.125 0.0 0.125 0.02344 +b9fb0eb89f40eaa77a5ab105354f36d9d6d8d5e1.json +UB1 0.45714 0.14706 0.22857 0.13402 +UB2 0.45714 0.14706 0.22857 0.13402 +LexRank 0.42857 0.17647 0.28571 0.18041 +TextRank 0.11429 0.0 0.05714 0.02062 +Luhn 0.11429 0.0 0.05714 0.02062 +ICSI 0.25714 0.02941 0.11429 0.0567 +a875508605088898c26256363ded4cc66dd7757c.json +UB1 0.26829 0.025 0.17073 0.06087 +UB2 0.21951 0.05 0.14634 0.05652 +LexRank 0.12195 0.0 0.07317 0.02174 +TextRank 0.07317 0.0 0.07317 0.01304 +Luhn 0.04878 0.0 0.04878 0.0087 +ICSI 0.09756 0.0 0.07317 0.01739 +a19bc9c4a206701b698d1827d6869aa7bff9426d.json +UB1 0.54545 0.32558 0.31818 0.30645 +UB2 0.56818 0.34884 0.27273 0.30645 +LexRank 0.06818 0.0 0.04545 0.0121 +TextRank 0.04545 0.0 0.04545 0.00806 +Luhn 0.22727 0.16279 0.18182 0.14113 +ICSI 0.27273 0.16279 0.22727 0.14516 +b479197979f245b865e4df73de7183fb49b5d8f5.json +UB1 0.47368 0.24324 0.23684 0.20283 +UB2 0.44737 0.2973 0.21053 0.21698 +LexRank 0.10526 0.0 0.07895 0.01887 +TextRank 0.13158 0.0 0.10526 0.02358 +Luhn 0.07895 0.0 0.05263 0.01415 +ICSI 0.21053 0.05405 0.15789 0.04245 +9f3aac8b41c552244b015e151ab1614b3c251242.json +UB1 0.42424 0.125 0.18182 0.13187 +UB2 0.33333 0.15625 0.15152 0.0989 +LexRank 0.09091 0.0 0.06061 0.01099 +TextRank 0.06061 0.0 0.06061 0.01099 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.09091 0.0 0.06061 0.01648 +8f522ded03df4a66c85fcb0553bce4f608220c46.json +UB1 0.42857 0.14583 0.28571 0.16187 +UB2 0.32653 0.125 0.22449 0.11871 +LexRank 0.14286 0.0 0.06122 0.02518 +TextRank 0.14286 0.0 0.08163 0.02878 +Luhn 0.06122 0.0 0.04082 0.01079 +ICSI 0.14286 0.0 0.08163 0.02878 +948577d08a42ec173148b90fb47419e0e26f9639.json +UB1 0.52174 0.15556 0.21739 0.21154 +UB2 0.47826 0.2 0.28261 0.20385 +LexRank 0.21739 0.04444 0.17391 0.06538 +TextRank 0.06522 0.0 0.06522 0.00769 +Luhn 0.04348 0.0 0.04348 0.00769 +ICSI 0.21739 0.04444 0.15217 0.06538 +9c8a296effa43992f264d54b1970bf9b69cef56f.json +UB1 0.38298 0.15217 0.21277 0.16165 +UB2 0.40426 0.26087 0.17021 0.15414 +LexRank 0.14894 0.0 0.10638 0.03383 +TextRank 0.14894 0.0 0.12766 0.03383 +Luhn 0.12766 0.0 0.08511 0.02256 +ICSI 0.10638 0.02174 0.08511 0.02256 +b1f10207782dea4b7ab403f6255af9ec2cc309e0.json +UB1 0.46667 0.11864 0.23333 0.14244 +UB2 0.38333 0.15254 0.18333 0.13372 +LexRank 0.36667 0.08475 0.16667 0.10465 +TextRank 0.15 0.01695 0.1 0.03198 +Luhn 0.21667 0.01695 0.08333 0.0436 +ICSI 0.36667 0.11864 0.18333 0.11337 +982866378c2f9f3356198aeca097e98fcdc53e0e.json +UB1 0.75 0.51064 0.52083 0.45588 +UB2 0.6875 0.59574 0.66667 0.53309 +LexRank 0.3125 0.08511 0.14583 0.11397 +TextRank 0.3125 0.08511 0.14583 0.11765 +Luhn 0.3125 0.08511 0.14583 0.11397 +ICSI 0.70833 0.59574 0.66667 0.54412 +9d87b71bd1a38484eeff099bb243fdc95cdd1b07.json +UB1 0.44595 0.12329 0.18919 0.16822 +UB2 0.40541 0.15068 0.2027 0.1729 +LexRank 0.12162 0.0 0.05405 0.02103 +TextRank 0.13514 0.0137 0.10811 0.03271 +Luhn 0.10811 0.0 0.06757 0.02103 +ICSI 0.2027 0.0137 0.12162 0.04206 +b71210b3f8cfa393b4404cf3189f98ae7c0b85df.json +UB1 0.54167 0.19149 0.29167 0.19485 +UB2 0.45833 0.23404 0.35417 0.21691 +LexRank 0.04167 0.0 0.02083 0.00735 +TextRank 0.0625 0.0 0.02083 0.01103 +Luhn 0.0625 0.0 0.0625 0.01103 +ICSI 0.29167 0.08511 0.1875 0.07721 +921bb8e8b5f570dc512e82fd47ba6b36f2d02aae.json +UB1 0.375 0.10909 0.17857 0.10938 +UB2 0.33929 0.14545 0.17857 0.10938 +LexRank 0.10714 0.0 0.07143 0.02187 +TextRank 0.10714 0.0 0.05357 0.02187 +Luhn 0.125 0.0 0.07143 0.02813 +ICSI 0.21429 0.05455 0.125 0.05312 +b00921980762a59c5437385164e78fe4cd141cb3.json +UB1 0.55738 0.25 0.37705 0.27714 +UB2 0.57377 0.33333 0.36066 0.29143 +LexRank 0.31148 0.03333 0.18033 0.08 +TextRank 0.04918 0.0 0.04918 0.00857 +Luhn 0.19672 0.03333 0.09836 0.06286 +ICSI 0.34426 0.1 0.19672 0.10857 +ab3e37e010a02bc93f15652b3ebbbedd3e382131.json +UB1 0.53659 0.325 0.39024 0.23913 +UB2 0.39024 0.3 0.36585 0.26957 +LexRank 0.09756 0.0 0.07317 0.02174 +TextRank 0.07317 0.0 0.04878 0.01304 +Luhn 0.17073 0.0 0.09756 0.03043 +ICSI 0.19512 0.05 0.12195 0.04783 +a640db5f7e69d430b42459353aa64bbe778a42ad.json +UB1 0.61194 0.43939 0.52239 0.39378 +UB2 0.53731 0.45455 0.46269 0.39119 +LexRank 0.23881 0.04545 0.14925 0.06736 +TextRank 0.37313 0.15152 0.22388 0.1658 +Luhn 0.34328 0.21212 0.26866 0.17876 +ICSI 0.56716 0.27273 0.46269 0.29275 +b0b15d8f00addbb1b781257a9a730447f703a992.json +UB1 0.45652 0.17778 0.28261 0.18462 +UB2 0.34783 0.2 0.23913 0.15385 +LexRank 0.1087 0.02222 0.1087 0.02308 +TextRank 0.13043 0.0 0.08696 0.02308 +Luhn 0.13043 0.0 0.08696 0.02308 +ICSI 0.04348 0.0 0.04348 0.00769 +8fe322c0e73885fac0931084bb28edcf7a90e94a.json +UB1 0.48 0.22449 0.26 0.19014 +UB2 0.44 0.2449 0.28 0.18662 +LexRank 0.12 0.0 0.08 0.02465 +TextRank 0.22 0.06122 0.12 0.07042 +Luhn 0.26 0.06122 0.16 0.08099 +ICSI 0.38 0.06122 0.2 0.11268 +a3b964d378e55c92d4095731a3071428ce8f691c.json +UB1 0.61224 0.25 0.38776 0.26259 +UB2 0.57143 0.27083 0.38776 0.2482 +LexRank 0.2449 0.02083 0.16327 0.06115 +TextRank 0.14286 0.0 0.10204 0.02878 +Luhn 0.30612 0.0625 0.16327 0.07194 +ICSI 0.26531 0.02083 0.16327 0.07194 +9fb5f0e601ae691222cdbf21b5954aaf5d55e974.json +UB1 0.56338 0.12857 0.21127 0.16829 +UB2 0.35211 0.17143 0.26761 0.12439 +LexRank 0.3662 0.04286 0.16901 0.10244 +TextRank 0.08451 0.0 0.07042 0.01463 +Luhn 0.14085 0.0 0.05634 0.02195 +ICSI 0.19718 0.02857 0.09859 0.0439 +a415f8d6ad07683b1d8a1cb2a49061b39e0499b0.json +UB1 0.63636 0.35185 0.41818 0.34395 +UB2 0.67273 0.40741 0.41818 0.38535 +LexRank 0.49091 0.31481 0.32727 0.28025 +TextRank 0.32727 0.07407 0.2 0.08917 +Luhn 0.49091 0.33333 0.4 0.28662 +ICSI 0.52727 0.18519 0.25455 0.20382 +a5271498f33cc43befe6caae7af33ebb94181762.json +UB1 0.52308 0.14062 0.18462 0.1631 +UB2 0.43077 0.20312 0.18462 0.15775 +LexRank 0.26154 0.09375 0.15385 0.10963 +TextRank 0.21538 0.07812 0.16923 0.07754 +Luhn 0.38462 0.10938 0.18462 0.11497 +ICSI 0.24615 0.07812 0.12308 0.08289 +90328457101f1e1b26898f7082fe2582ae975a18.json +UB1 0.51685 0.18182 0.26966 0.22201 +UB2 0.52809 0.28409 0.32584 0.27027 +LexRank 0.16854 0.11364 0.14607 0.11004 +TextRank 0.1236 0.02273 0.07865 0.02896 +Luhn 0.03371 0.0 0.02247 0.00772 +ICSI 0.24719 0.06818 0.1236 0.06178 +9a73cc8507b65d1d2493c3c2c324e7623086564b.json +UB1 0.50877 0.125 0.21053 0.16564 +UB2 0.49123 0.26786 0.21053 0.21472 +LexRank 0.01754 0.0 0.01754 0.00307 +TextRank 0.21053 0.03571 0.15789 0.06748 +Luhn 0.01754 0.0 0.01754 0.00307 +ICSI 0.2807 0.03571 0.19298 0.07669 +93f8b2d2423f55e6fc3f943a16ef505ddd457a12.json +UB1 0.54054 0.19444 0.27027 0.16505 +UB2 0.56757 0.22222 0.2973 0.18932 +LexRank 0.16216 0.0 0.10811 0.03883 +TextRank 0.40541 0.11111 0.16216 0.11165 +Luhn 0.45946 0.16667 0.2973 0.15049 +ICSI 0.40541 0.08333 0.16216 0.12136 +ad8539a0938491a5a7375ce22c07cf10bc60de7c.json +UB1 0.42857 0.22222 0.28571 0.16447 +UB2 0.53571 0.25926 0.32143 0.19737 +LexRank 0.53571 0.25926 0.35714 0.21053 +TextRank 0.42857 0.18519 0.28571 0.15132 +Luhn 0.42857 0.25926 0.32143 0.23026 +ICSI 0.39286 0.22222 0.25 0.15132 +b4fddc1f5c0da0b2dc99945d4398ea8ed0990e43.json +UB1 0.46429 0.25926 0.35714 0.19737 +UB2 0.35714 0.25926 0.35714 0.17763 +LexRank 0.25 0.14815 0.21429 0.10526 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.07143 0.03704 0.07143 0.01974 +9aa1f1b66495284ee7b64c396dd59258cff84a91.json +UB1 0.44444 0.05882 0.22222 0.09783 +UB2 0.22222 0.11765 0.11111 0.04348 +LexRank 0.16667 0.0 0.11111 0.03261 +TextRank 0.11111 0.0 0.05556 0.02174 +Luhn 0.11111 0.0 0.05556 0.02174 +ICSI 0.05556 0.0 0.05556 0.01087 +ab6c8d20d8188137e84c31e57921b3f55835f8dd.json +UB1 0.65 0.23077 0.275 0.20982 +UB2 0.7 0.25641 0.275 0.23214 +LexRank 0.225 0.05128 0.15 0.05804 +TextRank 0.175 0.02564 0.125 0.04018 +Luhn 0.35 0.10256 0.225 0.10268 +ICSI 0.575 0.15385 0.3 0.20089 +91477499b63de02934be3f76223017cf79cc5e50.json +UB1 0.39216 0.16 0.15686 0.13103 +UB2 0.41176 0.2 0.23529 0.14828 +LexRank 0.13725 0.0 0.07843 0.02069 +TextRank 0.07843 0.0 0.03922 0.01379 +Luhn 0.29412 0.04 0.15686 0.07586 +ICSI 0.15686 0.02 0.13725 0.03103 +a64669f8fcc53fcc3faa60e8bcff88c8d350ed15.json +UB1 0.42308 0.07843 0.25 0.12162 +UB2 0.48077 0.19608 0.13462 0.18581 +LexRank 0.01923 0.0 0.01923 0.00338 +TextRank 0.13462 0.0 0.09615 0.03041 +Luhn 0.26923 0.03922 0.13462 0.07432 +ICSI 0.26923 0.01961 0.11538 0.06081 +b9fbecbb947a5e1ccd94e89fc73c0b727059f2c6.json +UB1 0.34483 0.17857 0.24138 0.14557 +UB2 0.37931 0.21429 0.24138 0.16456 +LexRank 0.17241 0.0 0.10345 0.03797 +TextRank 0.03448 0.0 0.03448 0.00633 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.06897 0.0 0.06897 0.01266 +a4e74709e409e190f3ad569d7271cd6fe8c0921d.json +UB1 0.45238 0.14634 0.30952 0.13559 +UB2 0.45238 0.12195 0.2381 0.14831 +LexRank 0.16667 0.0 0.09524 0.02542 +TextRank 0.19048 0.0 0.09524 0.03814 +Luhn 0.19048 0.0 0.09524 0.03814 +ICSI 0.28571 0.07317 0.19048 0.08051 +a58f59068d96e1f1672f096306990f22e54b9918.json +UB1 0.77273 0.69767 0.59091 0.64919 +UB2 0.77273 0.69767 0.59091 0.64919 +LexRank 0.11364 0.0 0.06818 0.02016 +TextRank 0.06818 0.0 0.06818 0.01613 +Luhn 0.61364 0.5814 0.59091 0.57258 +ICSI 0.56818 0.34884 0.34091 0.35081 +a52efad4d925ba666bc6ef9ecb344f58e8c45c29.json +UB1 0.52222 0.19101 0.27778 0.22328 +UB2 0.48889 0.23596 0.27778 0.21947 +LexRank 0.27778 0.02247 0.15556 0.08397 +TextRank 0.16667 0.0 0.1 0.03244 +Luhn 0.16667 0.0 0.1 0.03244 +ICSI 0.27778 0.03371 0.13333 0.08397 +99a2508b028c2987bca191cfd79f288778cb02fd.json +UB1 0.49123 0.21429 0.24561 0.20859 +UB2 0.50877 0.32143 0.24561 0.2638 +LexRank 0.14035 0.0 0.07018 0.02761 +TextRank 0.10526 0.0 0.05263 0.02147 +Luhn 0.12281 0.0 0.07018 0.02147 +ICSI 0.10526 0.0 0.07018 0.02454 +aa687a03c9f52d182ba44619ce1de6153f401cac.json +UB1 0.52381 0.14458 0.19048 0.19672 +UB2 0.5 0.14458 0.20238 0.17828 +LexRank 0.41667 0.07229 0.20238 0.13525 +TextRank 0.14286 0.01205 0.08333 0.03279 +Luhn 0.15476 0.0 0.08333 0.03484 +ICSI 0.2619 0.04819 0.10714 0.06557 +99667a893b7734f9324ec30cf23cda063ff8354f.json +UB1 0.42308 0.09804 0.17308 0.14189 +UB2 0.44231 0.15686 0.23077 0.15541 +LexRank 0.28846 0.03922 0.15385 0.06757 +TextRank 0.09615 0.0 0.05769 0.02027 +Luhn 0.13462 0.0 0.05769 0.02365 +ICSI 0.36538 0.07843 0.15385 0.09797 +b90aad9a341f2efcb3c248fe26e33cbb1084ecdf.json +UB1 0.65152 0.35385 0.27273 0.33421 +UB2 0.54545 0.35385 0.22727 0.30526 +LexRank 0.21212 0.06154 0.15152 0.07895 +TextRank 0.0303 0.0 0.0303 0.00263 +Luhn 0.09091 0.0 0.06061 0.01579 +ICSI 0.30303 0.04615 0.15152 0.08421 +aff15ed19ae7d2653a9283a07c6d99967d048df8.json +UB1 0.46 0.08163 0.18 0.1338 +UB2 0.3 0.14286 0.2 0.10915 +LexRank 0.24 0.0 0.12 0.04577 +TextRank 0.14 0.0 0.06 0.02817 +Luhn 0.1 0.0 0.08 0.01761 +ICSI 0.1 0.0 0.08 0.01761 +9d0d79431906a80ef3ef5318209c5c1cdea862b6.json +UB1 0.47059 0.2 0.19608 0.23103 +UB2 0.43137 0.22 0.19608 0.22759 +LexRank 0.15686 0.04 0.11765 0.05172 +TextRank 0.11765 0.02 0.05882 0.02414 +Luhn 0.09804 0.0 0.05882 0.02414 +ICSI 0.31373 0.12 0.21569 0.14138 +a6a637f835fc06e59feecc032fff54aaccaaf951.json +UB1 0.73611 0.47887 0.34722 0.4399 +UB2 0.76389 0.53521 0.36111 0.48798 +LexRank 0.20833 0.01408 0.09722 0.05529 +TextRank 0.08333 0.0 0.06944 0.01683 +Luhn 0.26389 0.05634 0.15278 0.08173 +ICSI 0.41667 0.16901 0.22222 0.17788 +9ea30d3ae575dce26bcc30df997fc7cc23d2f37b.json +UB1 0.53125 0.25806 0.46875 0.22727 +UB2 0.5 0.25806 0.4375 0.20455 +LexRank 0.1875 0.0 0.15625 0.05682 +TextRank 0.15625 0.0 0.125 0.04545 +Luhn 0.15625 0.0 0.125 0.04545 +ICSI 0.15625 0.06452 0.125 0.04545 +90f8ea02277e8363fd41b047ee0b7d0c213b2340.json +UB1 0.59722 0.25352 0.33333 0.25 +UB2 0.66667 0.33803 0.31944 0.29567 +LexRank 0.30556 0.05634 0.19444 0.11538 +TextRank 0.25 0.02817 0.11111 0.05048 +Luhn 0.15278 0.0 0.125 0.03606 +ICSI 0.33333 0.09859 0.19444 0.11298 +9977d1f4f2373aa19529dc948c3a8061cf1c4fae.json +UB1 0.49383 0.175 0.2716 0.17021 +UB2 0.49383 0.2625 0.35802 0.22979 +LexRank 0.23457 0.0125 0.11111 0.04681 +TextRank 0.16049 0.0125 0.07407 0.03191 +Luhn 0.24691 0.0 0.09877 0.04681 +ICSI 0.20988 0.0125 0.08642 0.04468 +ab4a88d5f212a3d68583eb7ed8b6d10c4aefa316.json +UB1 0.58571 0.27536 0.38571 0.31188 +UB2 0.51429 0.36232 0.32857 0.31683 +LexRank 0.22857 0.02899 0.11429 0.05446 +TextRank 0.14286 0.0 0.08571 0.02723 +Luhn 0.14286 0.0 0.08571 0.02723 +ICSI 0.28571 0.07246 0.18571 0.09901 +a912e68c078897736da6c32700925143f56bdb70.json +UB1 0.36667 0.10345 0.33333 0.10976 +UB2 0.3 0.10345 0.2 0.09146 +LexRank 0.03333 0.0 0.03333 0.0061 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.06667 0.0 0.03333 0.0061 +ICSI 0.13333 0.0 0.13333 0.03049 +ad4f34da5e420111d9ccfa7b8769ae7d6f8c1e87.json +UB1 0.5 0.24528 0.40741 0.21753 +UB2 0.5 0.26415 0.40741 0.21753 +LexRank 0.24074 0.0566 0.16667 0.06818 +TextRank 0.09259 0.0 0.05556 0.01623 +Luhn 0.16667 0.01887 0.09259 0.03896 +ICSI 0.22222 0.01887 0.14815 0.05195 +a2084574cfd479a850535663bc97a4f0aacaf5ab.json +UB1 0.32 0.10204 0.2 0.11972 +UB2 0.4 0.20408 0.3 0.19366 +LexRank 0.08 0.0 0.06 0.01408 +TextRank 0.08 0.02041 0.04 0.01761 +Luhn 0.04 0.0 0.04 0.00704 +ICSI 0.12 0.0 0.06 0.02113 +a517c398bc867d395ff8d416e888aeebbf8d7b86.json +UB1 0.45161 0.18033 0.19355 0.17697 +UB2 0.40323 0.14754 0.20968 0.14326 +LexRank 0.17742 0.01639 0.09677 0.03652 +TextRank 0.16129 0.06557 0.09677 0.04213 +Luhn 0.12903 0.0 0.08065 0.02809 +ICSI 0.16129 0.01639 0.09677 0.03933 +b88f731f0971f5b2eee0f47e41f8ae6477635bcc.json +UB1 0.42857 0.125 0.2449 0.17626 +UB2 0.34694 0.16667 0.2449 0.16906 +LexRank 0.16327 0.0 0.12245 0.03237 +TextRank 0.10204 0.0 0.06122 0.01799 +Luhn 0.12245 0.0 0.08163 0.02518 +ICSI 0.20408 0.0 0.12245 0.04676 +a4b56b6980336c3ec12560b8f6c3aa7bbd36cfc5.json +UB1 0.47368 0.10811 0.28947 0.18868 +UB2 0.42105 0.13514 0.28947 0.17453 +LexRank 0.15789 0.0 0.10526 0.03302 +TextRank 0.21053 0.05405 0.18421 0.08019 +Luhn 0.18421 0.0 0.10526 0.03774 +ICSI 0.31579 0.08108 0.23684 0.10377 +a1e2ce464fc6cd148c92b77235ab1924aba17c40.json +UB1 0.60656 0.31667 0.34426 0.30286 +UB2 0.63934 0.41667 0.42623 0.40571 +LexRank 0.36066 0.08333 0.14754 0.12571 +TextRank 0.55738 0.26667 0.34426 0.23714 +Luhn 0.36066 0.1 0.16393 0.12286 +ICSI 0.52459 0.28333 0.27869 0.26 +96b5cf5e599ecbeedb2a465cc28c3edd7f4204bc.json +UB1 0.38889 0.23529 0.33333 0.17391 +UB2 0.33333 0.17647 0.33333 0.1413 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.22222 0.0 0.16667 0.05435 +Luhn 0.05556 0.0 0.05556 0.01087 +ICSI 0.16667 0.0 0.11111 0.04348 +a5f162dcccc9ec36327a4541bdc565e564451357.json +UB1 0.45 0.25641 0.4 0.25446 +UB2 0.4 0.25641 0.375 0.23661 +LexRank 0.075 0.0 0.075 0.01339 +TextRank 0.025 0.0 0.025 0.00446 +Luhn 0.45 0.28205 0.4 0.25446 +ICSI 0.2 0.05128 0.125 0.04911 +97985060743138367a38d93c453790e6f03a283e.json +UB1 0.58974 0.44737 0.5641 0.44954 +UB2 0.5641 0.44737 0.5641 0.44495 +LexRank 0.10256 0.02632 0.07692 0.01835 +TextRank 0.38462 0.21053 0.30769 0.19266 +Luhn 0.05128 0.0 0.05128 0.00917 +ICSI 0.30769 0.10526 0.23077 0.09633 +a9c7b4ac73a70dbae0cac9c9bf6f35b32c30eb4e.json +UB1 0.33333 0.02439 0.14286 0.08898 +UB2 0.2619 0.07317 0.14286 0.0678 +LexRank 0.2381 0.0 0.14286 0.05932 +TextRank 0.19048 0.02439 0.09524 0.05085 +Luhn 0.19048 0.02439 0.09524 0.05085 +ICSI 0.19048 0.0 0.09524 0.04237 +ab8ca99e52aafafb70ac4ffb11ea1d302d6c1035.json +UB1 0.39024 0.15 0.2439 0.15652 +UB2 0.39024 0.2 0.21951 0.16087 +LexRank 0.14634 0.025 0.09756 0.03913 +TextRank 0.14634 0.025 0.09756 0.03478 +Luhn 0.12195 0.025 0.09756 0.02609 +ICSI 0.2439 0.025 0.12195 0.06522 +af1329e79545475b88db7ca230e7197dabd5527d.json +UB1 0.60674 0.30682 0.26966 0.28185 +UB2 0.5618 0.30682 0.26966 0.28764 +LexRank 0.30337 0.06818 0.19101 0.11969 +TextRank 0.24719 0.01136 0.11236 0.07336 +Luhn 0.16854 0.01136 0.08989 0.03282 +ICSI 0.26966 0.01136 0.1236 0.05405 +9aeb97cfbee9a9c792b7317773cf58c50218e4a3.json +UB1 0.74419 0.58824 0.53488 0.534 +UB2 0.74419 0.58824 0.52326 0.548 +LexRank 0.2093 0.02353 0.10465 0.052 +TextRank 0.17442 0.0 0.10465 0.04 +Luhn 0.32558 0.09412 0.18605 0.086 +ICSI 0.34884 0.14118 0.22093 0.162 +9080abceb7933dfee499d072679ea95fa0c7f217.json +UB1 0.5625 0.19355 0.40625 0.19886 +UB2 0.34375 0.19355 0.21875 0.125 +LexRank 0.03125 0.0 0.03125 0.00568 +TextRank 0.125 0.0 0.09375 0.02841 +Luhn 0.125 0.0 0.09375 0.02841 +ICSI 0.15625 0.03226 0.125 0.03409 +9561f12845827fbe279923ade4c88222953e4fae.json +UB1 0.42857 0.19512 0.35714 0.17797 +UB2 0.42857 0.21951 0.35714 0.18644 +LexRank 0.09524 0.0 0.04762 0.01695 +TextRank 0.14286 0.0 0.11905 0.0339 +Luhn 0.11905 0.0 0.09524 0.02966 +ICSI 0.21429 0.04878 0.16667 0.06356 +9f85dd5f4235be44c407e2542b5e787f00d8e2ca.json +UB1 0.49123 0.17857 0.24561 0.18098 +UB2 0.35088 0.19643 0.26316 0.15644 +LexRank 0.14035 0.01786 0.08772 0.03988 +TextRank 0.07018 0.0 0.07018 0.01227 +Luhn 0.07018 0.0 0.07018 0.01227 +ICSI 0.29825 0.08929 0.19298 0.07975 +a44734106dcfae825af80c9abd1db9b544fcea60.json +UB1 0.51064 0.08696 0.21277 0.1391 +UB2 0.46809 0.17391 0.23404 0.1391 +LexRank 0.31915 0.1087 0.19149 0.09398 +TextRank 0.31915 0.04348 0.17021 0.08647 +Luhn 0.31915 0.04348 0.17021 0.08647 +ICSI 0.29787 0.06522 0.19149 0.09398 +ba963f6f156ecded7fa0ad2e389df1c3d2b25428.json +UB1 0.55556 0.22535 0.375 0.28125 +UB2 0.54167 0.29577 0.44444 0.3101 +LexRank 0.30556 0.01408 0.125 0.06971 +TextRank 0.33333 0.08451 0.16667 0.11298 +Luhn 0.27778 0.07042 0.15278 0.08894 +ICSI 0.47222 0.14085 0.22222 0.19952 +a20ee9cbd9be84efff724ddf9fe2666a72e95026.json +UB1 0.53846 0.2549 0.32692 0.25338 +UB2 0.5 0.2549 0.32692 0.25 +LexRank 0.36538 0.11765 0.25 0.13851 +TextRank 0.40385 0.13725 0.23077 0.15203 +Luhn 0.19231 0.01961 0.09615 0.04392 +ICSI 0.36538 0.07843 0.21154 0.10135 +9b8f6d2c6076d2b18a2af5187d2489dff4235a51.json +UB1 0.37037 0.11538 0.2963 0.10959 +UB2 0.22222 0.15385 0.22222 0.12329 +LexRank 0.07407 0.0 0.07407 0.02055 +TextRank 0.03704 0.0 0.03704 0.00685 +Luhn 0.03704 0.0 0.03704 0.00685 +ICSI 0.03704 0.0 0.03704 0.00685 +9af3ce672907cc4a397c8e57cd4878cd32fecadd.json +UB1 0.65152 0.41538 0.45455 0.38421 +UB2 0.63636 0.43077 0.43939 0.38947 +LexRank 0.31818 0.12308 0.19697 0.13421 +TextRank 0.48485 0.24615 0.36364 0.23421 +Luhn 0.25758 0.12308 0.19697 0.13158 +ICSI 0.37879 0.2 0.30303 0.22105 +b8e3205011a82dfc9133164d0481c6a0a7fa3963.json +UB1 0.53659 0.3 0.39024 0.26957 +UB2 0.46341 0.275 0.39024 0.27391 +LexRank 0.31707 0.05 0.17073 0.0913 +TextRank 0.2439 0.0 0.12195 0.04783 +Luhn 0.2439 0.0 0.12195 0.04783 +ICSI 0.31707 0.025 0.21951 0.09565 +939e2656210a49897fc3d6cf1a70403b5ead00e7.json +UB1 0.41463 0.15 0.29268 0.13043 +UB2 0.41463 0.15 0.29268 0.13043 +LexRank 0.14634 0.025 0.12195 0.03043 +TextRank 0.07317 0.0 0.07317 0.01304 +Luhn 0.04878 0.0 0.02439 0.0087 +ICSI 0.14634 0.075 0.14634 0.04348 +a97fd48745edd78d2950e001ce691fb05c2f3c13.json +UB1 0.4878 0.25 0.31707 0.21739 +UB2 0.46341 0.25 0.31707 0.23043 +LexRank 0.12195 0.025 0.09756 0.02609 +TextRank 0.17073 0.0 0.09756 0.03043 +Luhn 0.17073 0.025 0.12195 0.04348 +ICSI 0.17073 0.025 0.07317 0.04348 +a71ff0c906e7e61881028e9788d05a4d555e0db6.json +UB1 0.45055 0.11111 0.23077 0.15472 +UB2 0.40659 0.18889 0.27473 0.1566 +LexRank 0.15385 0.0 0.06593 0.02642 +TextRank 0.13187 0.01111 0.07692 0.0283 +Luhn 0.08791 0.01111 0.06593 0.01887 +ICSI 0.21978 0.05556 0.12088 0.06604 +b0b5ca749acb9e079578333cc3d8449d3b2fb190.json +UB1 0.53448 0.31579 0.32759 0.28916 +UB2 0.53448 0.31579 0.32759 0.28916 +LexRank 0.10345 0.0 0.08621 0.02108 +TextRank 0.06897 0.0 0.05172 0.01506 +Luhn 0.10345 0.01754 0.08621 0.0241 +ICSI 0.2931 0.08772 0.18966 0.09036 +aa67fe31a89650481fab2aa14a1d7a70db325df8.json +UB1 0.35484 0.16667 0.22581 0.14706 +UB2 0.29032 0.2 0.22581 0.12941 +LexRank 0.09677 0.0 0.09677 0.01765 +TextRank 0.16129 0.0 0.12903 0.04118 +Luhn 0.03226 0.0 0.03226 0.00588 +ICSI 0.12903 0.0 0.09677 0.02941 +9be3511baac68dc3f2fbe56bb36f3c1927d2f927.json +UB1 0.59649 0.35714 0.21053 0.30368 +UB2 0.50877 0.30357 0.21053 0.26994 +LexRank 0.35088 0.125 0.17544 0.14417 +TextRank 0.2807 0.01786 0.14035 0.05828 +Luhn 0.31579 0.10714 0.21053 0.09509 +ICSI 0.40351 0.25 0.19298 0.21779 +a2cf8176856d3a3daf3c5d755ca9d61d32cb333f.json +UB1 0.51852 0.19231 0.25926 0.21918 +UB2 0.48148 0.26923 0.25926 0.21918 +LexRank 0.11111 0.0 0.07407 0.02055 +TextRank 0.07407 0.0 0.03704 0.0137 +Luhn 0.07407 0.0 0.03704 0.0137 +ICSI 0.14815 0.03846 0.11111 0.03425 +95c54b322e6626f3cd7a1b4c4768499113ecfd85.json +UB1 0.57143 0.26829 0.40476 0.25847 +UB2 0.52381 0.2439 0.40476 0.23729 +LexRank 0.28571 0.09756 0.16667 0.11441 +TextRank 0.16667 0.02439 0.14286 0.04237 +Luhn 0.16667 0.02439 0.11905 0.06356 +ICSI 0.40476 0.12195 0.21429 0.13983 +b25226ecde8e0cad03f0b8d40030f08e3feedf46.json +UB1 0.375 0.10256 0.225 0.10714 +UB2 0.35 0.17949 0.2 0.11607 +LexRank 0.225 0.0 0.15 0.05357 +TextRank 0.05 0.0 0.05 0.00893 +Luhn 0.25 0.0 0.175 0.0625 +ICSI 0.2 0.05128 0.1 0.05804 +90dca3b6d934eb1189a9c20103a0ade97300df47.json +UB1 0.42105 0.10811 0.23684 0.15566 +UB2 0.26316 0.08108 0.21053 0.07075 +LexRank 0.26316 0.08108 0.15789 0.07547 +TextRank 0.07895 0.0 0.07895 0.01415 +Luhn 0.07895 0.0 0.05263 0.01887 +ICSI 0.28947 0.05405 0.21053 0.09434 +92893818c4cce7c6a157aa871d5923f057178d7a.json +UB1 0.36364 0.09302 0.22727 0.10081 +UB2 0.29545 0.11628 0.22727 0.08468 +LexRank 0.04545 0.0 0.04545 0.00806 +TextRank 0.09091 0.0 0.04545 0.01613 +Luhn 0.09091 0.0 0.04545 0.01613 +ICSI 0.11364 0.0 0.06818 0.02419 +a216ef108089b457d94af9e537f0ed6a8dbe3f67.json +UB1 0.325 0.10256 0.25 0.09375 +UB2 0.325 0.12821 0.275 0.09821 +LexRank 0.075 0.0 0.075 0.02232 +TextRank 0.1 0.0 0.05 0.01786 +Luhn 0.15 0.0 0.1 0.03571 +ICSI 0.15 0.0 0.05 0.03125 +8f031c196dd19a8328dea8bc84a10d4f2c7b80ca.json +UB1 0.43478 0.13333 0.26087 0.12308 +UB2 0.36957 0.2 0.26087 0.13846 +LexRank 0.04348 0.0 0.04348 0.00769 +TextRank 0.1087 0.0 0.08696 0.02308 +Luhn 0.06522 0.0 0.04348 0.01154 +ICSI 0.08696 0.02222 0.06522 0.02308 +9cce61809110514cd8119977f3c0dee5822bb364.json +UB1 0.84906 0.71154 0.58491 0.64901 +UB2 0.84906 0.71154 0.58491 0.64901 +LexRank 0.41509 0.21154 0.32075 0.21523 +TextRank 0.35849 0.13462 0.22642 0.13907 +Luhn 0.45283 0.23077 0.33962 0.22848 +ICSI 0.43396 0.28846 0.35849 0.27152 +91add6b3c19d3f3d35d9fa15ebd5ecab76777720.json +UB1 0.46154 0.14062 0.27692 0.18717 +UB2 0.4 0.21875 0.2 0.16578 +LexRank 0.27692 0.03125 0.15385 0.08824 +TextRank 0.23077 0.04688 0.09231 0.06417 +Luhn 0.18462 0.0 0.07692 0.03476 +ICSI 0.24615 0.03125 0.12308 0.06417 +b0a31081f247534c59010356e22fcba1b74c43fd.json +UB1 0.63889 0.28571 0.22222 0.27 +UB2 0.63889 0.28571 0.22222 0.27 +LexRank 0.19444 0.02857 0.11111 0.04 +TextRank 0.30556 0.08571 0.13889 0.07 +Luhn 0.19444 0.02857 0.11111 0.04 +ICSI 0.47222 0.14286 0.16667 0.115 +9dc48f061724efa8aff18144a4797b271db89205.json +UB1 0.61538 0.40625 0.35385 0.33422 +UB2 0.58462 0.40625 0.35385 0.3262 +LexRank 0.23077 0.0 0.10769 0.0508 +TextRank 0.44615 0.09375 0.16923 0.13102 +Luhn 0.30769 0.01562 0.18462 0.08289 +ICSI 0.27692 0.04688 0.15385 0.06417 +91ffbe201d68187b2afe56101000130858196fda.json +UB1 0.35135 0.13889 0.27027 0.14563 +UB2 0.35135 0.13889 0.27027 0.14563 +LexRank 0.13514 0.0 0.08108 0.02427 +TextRank 0.08108 0.0 0.08108 0.01456 +Luhn 0.13514 0.0 0.08108 0.02913 +ICSI 0.13514 0.0 0.10811 0.02913 +a37bc1f25cf730a304dc02cca81dfbf5ea1212ee.json +UB1 0.58621 0.33721 0.21839 0.31028 +UB2 0.54023 0.36047 0.21839 0.29842 +LexRank 0.25287 0.04651 0.11494 0.07115 +TextRank 0.18391 0.02326 0.10345 0.04348 +Luhn 0.22989 0.02326 0.10345 0.05929 +ICSI 0.42529 0.22093 0.25287 0.21937 +af765e1170c0682f66e0b0bc019ed166615442e9.json +UB1 0.60656 0.33333 0.34426 0.29714 +UB2 0.52459 0.36667 0.36066 0.28857 +LexRank 0.22951 0.01667 0.13115 0.05714 +TextRank 0.2459 0.03333 0.11475 0.06571 +Luhn 0.31148 0.16667 0.2623 0.15714 +ICSI 0.22951 0.0 0.08197 0.04571 +acdc4524a821e187873cc7357f672779da95fd14.json +UB1 0.63889 0.42857 0.44444 0.395 +UB2 0.58333 0.45714 0.38889 0.36 +LexRank 0.05556 0.0 0.02778 0.01 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.02778 0.0 0.02778 0.005 +92d0ce701f3cc261cdae1cb5a391a54504b1e47b.json +UB1 0.55 0.22785 0.2125 0.23922 +UB2 0.5 0.29114 0.2625 0.27371 +LexRank 0.3375 0.10127 0.175 0.11207 +TextRank 0.3875 0.12658 0.2125 0.14224 +Luhn 0.4375 0.17722 0.175 0.18966 +ICSI 0.5125 0.21519 0.2375 0.23491 +936b987f8c0977e05cf87302a9f5429f6f3a9e26.json +UB1 0.43478 0.04545 0.17391 0.09836 +UB2 0.30435 0.18182 0.30435 0.15574 +LexRank 0.04348 0.0 0.04348 0.0082 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.08696 0.0 0.08696 0.01639 +ICSI 0.13043 0.0 0.08696 0.03279 +a076f5cff3027816ef9c0da786618bccf1819b3b.json +UB1 0.59615 0.29412 0.36538 0.27703 +UB2 0.57692 0.29412 0.36538 0.27027 +LexRank 0.19231 0.0 0.11538 0.04054 +TextRank 0.13462 0.01961 0.09615 0.03716 +Luhn 0.23077 0.0 0.17308 0.05068 +ICSI 0.32692 0.01961 0.15385 0.08784 +b0a33438fdf56654b3e0ed96fbdc74c5bf7d2b9e.json +UB1 0.29412 0.06061 0.17647 0.06915 +UB2 0.17647 0.06061 0.11765 0.04787 +LexRank 0.08824 0.0 0.08824 0.01596 +TextRank 0.02941 0.0 0.02941 0.00532 +Luhn 0.02941 0.0 0.02941 0.00532 +ICSI 0.08824 0.0 0.02941 0.01596 +98e802ef4aa82f734a227bbc61d0b4f57c1a084e.json +UB1 0.41667 0.12766 0.27083 0.15441 +UB2 0.39583 0.14894 0.20833 0.12868 +LexRank 0.1875 0.02128 0.10417 0.05147 +TextRank 0.1875 0.02128 0.10417 0.03676 +Luhn 0.08333 0.0 0.0625 0.01838 +ICSI 0.25 0.06383 0.125 0.06618 +f1799a669a32764f3a6bef224b404b009016cdff.json +UB1 0.48837 0.21429 0.34884 0.17769 +UB2 0.48837 0.21429 0.34884 0.17769 +LexRank 0.06977 0.0 0.04651 0.0124 +TextRank 0.27907 0.04762 0.13953 0.07025 +Luhn 0.25581 0.09524 0.2093 0.10744 +ICSI 0.18605 0.02381 0.11628 0.03719 +ba9b9fbe3484580b3ad304bf6b0271ca250c9e44.json +UB1 0.52174 0.24444 0.3913 0.20769 +UB2 0.45652 0.26667 0.34783 0.19615 +LexRank 0.04348 0.0 0.04348 0.00769 +TextRank 0.15217 0.0 0.1087 0.03462 +Luhn 0.15217 0.0 0.1087 0.03462 +ICSI 0.15217 0.0 0.15217 0.03462 +e4fa7fa4359fa59b9e5edaa320084c308f05a9a3.json +UB1 0.35556 0.13636 0.22222 0.12205 +UB2 0.37778 0.18182 0.13333 0.1378 +LexRank 0.17778 0.02273 0.08889 0.04331 +TextRank 0.11111 0.0 0.06667 0.01969 +Luhn 0.08889 0.0 0.06667 0.01969 +ICSI 0.06667 0.0 0.04444 0.01181 +f77044f1aee7179367bce6fc555ca266efaa0460.json +UB1 0.52857 0.23188 0.31429 0.22277 +UB2 0.48571 0.23188 0.21429 0.21287 +LexRank 0.18571 0.01449 0.08571 0.0495 +TextRank 0.14286 0.0 0.1 0.03465 +Luhn 0.07143 0.0 0.04286 0.01238 +ICSI 0.17143 0.05797 0.08571 0.04703 +d2959d3ef0691da8b32950b25b26cd0deccffcf0.json +UB1 0.36842 0.16216 0.23684 0.15094 +UB2 0.31579 0.24324 0.18421 0.15566 +LexRank 0.10526 0.0 0.07895 0.03302 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.07895 0.0 0.07895 0.01415 +ICSI 0.15789 0.10811 0.15789 0.07547 +d75c574b931bd7b952a2a9f9250a0baf1eb16803.json +UB1 0.26087 0.09091 0.26087 0.09836 +UB2 0.17391 0.09091 0.17391 0.04918 +LexRank 0.04348 0.0 0.04348 0.0082 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.30435 0.09091 0.17391 0.07377 +ICSI 0.17391 0.0 0.08696 0.04098 +bddf461ee17f7e789147271c737b4864d1be9e53.json +UB1 0.6 0.34091 0.31111 0.33071 +UB2 0.48889 0.36364 0.46667 0.38189 +LexRank 0.28889 0.02273 0.13333 0.07087 +TextRank 0.22222 0.0 0.13333 0.05118 +Luhn 0.17778 0.0 0.13333 0.03937 +ICSI 0.28889 0.0 0.13333 0.07087 +f83d0e6083045df07650c538e167051368c1b8f4.json +UB1 0.57143 0.21951 0.2619 0.27119 +UB2 0.5 0.31707 0.33333 0.2839 +LexRank 0.11905 0.0 0.07143 0.02966 +TextRank 0.19048 0.02439 0.11905 0.03814 +Luhn 0.19048 0.02439 0.11905 0.03814 +ICSI 0.2381 0.02439 0.11905 0.06356 +ce823323638f03fb27b9e6ed437a8b051616b6db.json +UB1 0.35714 0.14545 0.21429 0.14062 +UB2 0.35714 0.14545 0.21429 0.14062 +LexRank 0.125 0.0 0.10714 0.02813 +TextRank 0.14286 0.0 0.08929 0.02187 +Luhn 0.16071 0.0 0.10714 0.03125 +ICSI 0.16071 0.0 0.10714 0.02813 +efdb99ccd56055d7aaed828c5c478dc3e565feab.json +UB1 0.5 0.23636 0.35714 0.22187 +UB2 0.41071 0.27273 0.375 0.19062 +LexRank 0.17857 0.01818 0.10714 0.04063 +TextRank 0.08929 0.0 0.05357 0.01875 +Luhn 0.08929 0.01818 0.07143 0.01875 +ICSI 0.26786 0.01818 0.14286 0.06563 +f6126a1a1ea5fa436c713dece8b359f8d36ccd77.json +UB1 0.28205 0.10526 0.15385 0.08257 +UB2 0.28205 0.15789 0.12821 0.08257 +LexRank 0.05128 0.0 0.05128 0.00917 +TextRank 0.12821 0.0 0.07692 0.02294 +Luhn 0.07692 0.0 0.07692 0.01376 +ICSI 0.15385 0.02632 0.12821 0.04128 +de6a949cd8e1636ca47f93a32da56feb9b0516f8.json +UB1 0.60417 0.35789 0.27083 0.27857 +UB2 0.58333 0.35789 0.27083 0.27679 +LexRank 0.32292 0.05263 0.1875 0.09821 +TextRank 0.35417 0.09474 0.14583 0.11071 +Luhn 0.36458 0.07368 0.15625 0.11607 +ICSI 0.48958 0.12632 0.1875 0.16607 +fb8fb5a72e89a3c6c548263da3f882ce3773e09a.json +UB1 0.34615 0.05882 0.15385 0.09459 +UB2 0.36538 0.19608 0.17308 0.13514 +LexRank 0.19231 0.01961 0.09615 0.04054 +TextRank 0.19231 0.01961 0.09615 0.04054 +Luhn 0.11538 0.01961 0.07692 0.02365 +ICSI 0.17308 0.0 0.11538 0.03378 +e09e5de99b8cd7c56fc6ce2e01b86d1986ccda46.json +UB1 0.5 0.18182 0.38235 0.18085 +UB2 0.32353 0.18182 0.26471 0.1117 +LexRank 0.05882 0.0 0.05882 0.01064 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.08824 0.0 0.05882 0.01596 +ICSI 0.05882 0.0 0.05882 0.01064 +de78cd9e50e28f2d9d6a1ba6b9c28be6468bbb50.json +UB1 0.45161 0.26667 0.32258 0.21765 +UB2 0.3871 0.2 0.22581 0.17059 +LexRank 0.12903 0.03333 0.09677 0.02353 +TextRank 0.06452 0.0 0.06452 0.01176 +Luhn 0.09677 0.0 0.06452 0.02353 +ICSI 0.16129 0.1 0.16129 0.08235 +c3bee4cf01b4b7afb5d7c839e77684c81e6cd206.json +UB1 0.72093 0.5 0.37209 0.52479 +UB2 0.72093 0.5 0.37209 0.52479 +LexRank 0.16279 0.02381 0.09302 0.03719 +TextRank 0.11628 0.0 0.11628 0.02479 +Luhn 0.23256 0.0 0.16279 0.05785 +ICSI 0.44186 0.33333 0.39535 0.33058 +c320dcb48ef01cee802e05732343c713edc4287a.json +UB1 0.42857 0.17647 0.22857 0.1701 +UB2 0.34286 0.17647 0.2 0.15464 +LexRank 0.08571 0.0 0.05714 0.01546 +TextRank 0.08571 0.0 0.05714 0.01546 +Luhn 0.08571 0.0 0.05714 0.01546 +ICSI 0.05714 0.0 0.05714 0.01031 +c3d83b56364d6f1a83741d99579c00c1ee3b6cfb.json +UB1 0.4 0.12821 0.325 0.13393 +UB2 0.275 0.10256 0.275 0.11607 +LexRank 0.2 0.02564 0.125 0.05804 +TextRank 0.15 0.0 0.075 0.02232 +Luhn 0.075 0.0 0.075 0.01339 +ICSI 0.25 0.05128 0.25 0.08482 +c3e0db61f5aec358926c98860104d84e71682540.json +UB1 0.375 0.03175 0.14062 0.08967 +UB2 0.28125 0.11111 0.15625 0.10054 +LexRank 0.10938 0.0 0.0625 0.02174 +TextRank 0.04688 0.0 0.04688 0.00815 +Luhn 0.14062 0.03175 0.10938 0.05163 +ICSI 0.20312 0.06349 0.15625 0.05707 +fa387f7689b032d12c2d9e215df5f09519cbb0cd.json +UB1 0.46 0.14286 0.36 0.2007 +UB2 0.36 0.18367 0.28 0.17254 +LexRank 0.1 0.0 0.04 0.02113 +TextRank 0.16 0.02041 0.1 0.04225 +Luhn 0.16 0.02041 0.1 0.04225 +ICSI 0.22 0.06122 0.18 0.09859 +bbc072c237c4d3493d278c2d13d2de4025423ca6.json +UB1 0.52252 0.21818 0.27928 0.22923 +UB2 0.52252 0.32727 0.30631 0.28462 +LexRank 0.16216 0.03636 0.0991 0.03692 +TextRank 0.15315 0.0 0.08108 0.03077 +Luhn 0.12613 0.00909 0.08108 0.02923 +ICSI 0.35135 0.06364 0.15315 0.10615 +f919b2f4dfdda9e0bc77bb40f7b1501c62a18dd6.json +UB1 0.52778 0.2 0.25 0.22 +UB2 0.47222 0.25714 0.27778 0.18 +LexRank 0.25 0.05714 0.16667 0.08 +TextRank 0.22222 0.11429 0.13889 0.08 +Luhn 0.05556 0.0 0.02778 0.01 +ICSI 0.33333 0.14286 0.25 0.115 +c4ff0b83068b4dcc4812a517cd62cab0cbd01fc2.json +UB1 0.51724 0.21429 0.31034 0.27215 +UB2 0.37931 0.21429 0.31034 0.23418 +LexRank 0.13793 0.0 0.10345 0.03165 +TextRank 0.13793 0.0 0.10345 0.03165 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.37931 0.21429 0.34483 0.23418 +c13a4c01800910038041153d7d1c8cd7804b18de.json +UB1 0.38596 0.14286 0.24561 0.16258 +UB2 0.35088 0.14286 0.26316 0.13804 +LexRank 0.21053 0.01786 0.08772 0.03988 +TextRank 0.10526 0.0 0.07018 0.02147 +Luhn 0.07018 0.0 0.05263 0.01227 +ICSI 0.24561 0.01786 0.10526 0.05215 +cf17b9bffecb98c6583285a5fd9be407f58f0011.json +UB1 0.35849 0.07692 0.13208 0.08609 +UB2 0.39623 0.15385 0.16981 0.12252 +LexRank 0.15094 0.0 0.07547 0.02318 +TextRank 0.0566 0.0 0.0566 0.00993 +Luhn 0.09434 0.0 0.0566 0.01987 +ICSI 0.18868 0.05769 0.09434 0.04305 +d783bfe508aa4618fe98e8c26d6a4dc1647e88dc.json +UB1 0.34211 0.02703 0.13158 0.09434 +UB2 0.21053 0.10811 0.13158 0.06132 +LexRank 0.34211 0.13514 0.13158 0.09906 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.15789 0.08108 0.13158 0.04717 +ICSI 0.0 0.0 0.0 0.0 +fd5591b35e44ca5b5b4aa60c932ebf4d83a2ccb7.json +UB1 0.45 0.12821 0.275 0.16518 +UB2 0.4 0.12821 0.25 0.13393 +LexRank 0.1 0.0 0.05 0.01339 +TextRank 0.1 0.0 0.075 0.02232 +Luhn 0.075 0.0 0.05 0.01339 +ICSI 0.1 0.0 0.075 0.01786 +f743478839a124fcea75e2dd5fde30a0ca4810c6.json +UB1 0.44186 0.09524 0.18605 0.1157 +UB2 0.34884 0.16667 0.13953 0.1157 +LexRank 0.27907 0.0 0.2093 0.06612 +TextRank 0.23256 0.0 0.11628 0.04132 +Luhn 0.23256 0.0 0.11628 0.04132 +ICSI 0.27907 0.0 0.11628 0.05372 +cb26ad733793ba6a2306c8f9d6e62d7403a1f866.json +UB1 0.59184 0.27083 0.34694 0.27698 +UB2 0.53061 0.35417 0.38776 0.31295 +LexRank 0.14286 0.0 0.10204 0.03597 +TextRank 0.16327 0.0 0.08163 0.03597 +Luhn 0.18367 0.0 0.08163 0.04676 +ICSI 0.2449 0.02083 0.12245 0.07554 +d952ce89e85bd3715b9b6367c21970b36e3d9819.json +UB1 0.42222 0.06818 0.17778 0.1378 +UB2 0.24444 0.13636 0.15556 0.08268 +LexRank 0.15556 0.04545 0.08889 0.03543 +TextRank 0.22222 0.04545 0.13333 0.05118 +Luhn 0.06667 0.0 0.06667 0.01575 +ICSI 0.13333 0.0 0.08889 0.0315 +eb041c242c25a3712b594920816550312455ad05.json +UB1 0.45833 0.21277 0.25 0.19118 +UB2 0.5 0.2766 0.27083 0.19118 +LexRank 0.1875 0.0 0.10417 0.04412 +TextRank 0.29167 0.10638 0.125 0.09191 +Luhn 0.125 0.0 0.04167 0.02206 +ICSI 0.29167 0.10638 0.1875 0.08456 +ebb17ae8af423af2ce555e4a96b141bd1a4eace3.json +UB1 0.27778 0.02857 0.16667 0.07 +UB2 0.13889 0.05714 0.11111 0.035 +LexRank 0.16667 0.02857 0.11111 0.045 +TextRank 0.08333 0.0 0.05556 0.015 +Luhn 0.16667 0.0 0.11111 0.03 +ICSI 0.11111 0.0 0.08333 0.015 +c5398c5d0ca41914c29c309bf19470cd609ca9b4.json +UB1 0.40385 0.11765 0.21154 0.11486 +UB2 0.25 0.09804 0.17308 0.06757 +LexRank 0.07692 0.0 0.05769 0.01351 +TextRank 0.07692 0.0 0.07692 0.01351 +Luhn 0.15385 0.05882 0.11538 0.04054 +ICSI 0.17308 0.01961 0.07692 0.03041 +fbd64b6cc8b5d4a866365ecee2248e711edb3299.json +UB1 0.65079 0.45161 0.47619 0.40055 +UB2 0.60317 0.45161 0.31746 0.39227 +LexRank 0.33333 0.19355 0.31746 0.19613 +TextRank 0.38095 0.22581 0.34921 0.20994 +Luhn 0.11111 0.0 0.09524 0.02762 +ICSI 0.38095 0.24194 0.28571 0.21547 +d6f67becd88f5986e3e18df62994e1646c778d1b.json +UB1 0.54902 0.16 0.2549 0.19655 +UB2 0.5098 0.3 0.21569 0.2069 +LexRank 0.27451 0.06 0.19608 0.07931 +TextRank 0.31373 0.04 0.15686 0.08966 +Luhn 0.27451 0.06 0.19608 0.07931 +ICSI 0.35294 0.08 0.19608 0.09655 +c5a7168e4844088e129314b686e78c8236d429f1.json +UB1 0.64103 0.31579 0.28205 0.23853 +UB2 0.64103 0.31579 0.28205 0.25229 +LexRank 0.15385 0.0 0.10256 0.0367 +TextRank 0.12821 0.0 0.07692 0.02752 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.15385 0.07895 0.12821 0.05505 +c6ab2e16ad43189068a0ff94932af06b0483f272.json +UB1 0.52308 0.15625 0.29231 0.20588 +UB2 0.52308 0.3125 0.24615 0.31283 +LexRank 0.27692 0.07812 0.16923 0.07487 +TextRank 0.30769 0.01562 0.13846 0.07219 +Luhn 0.12308 0.0 0.06154 0.02406 +ICSI 0.33846 0.09375 0.16923 0.08824 +efcd5dd23493555537661e80c30d766146b596e3.json +UB1 0.45349 0.16471 0.23256 0.166 +UB2 0.39535 0.16471 0.22093 0.146 +LexRank 0.22093 0.03529 0.12791 0.056 +TextRank 0.19767 0.02353 0.10465 0.044 +Luhn 0.13953 0.01176 0.10465 0.03 +ICSI 0.24419 0.03529 0.12791 0.064 +d186dfb0c1a535dc1547f92992b57f3ae5fdce7c.json +UB1 0.64583 0.31915 0.375 0.28676 +UB2 0.6875 0.3617 0.375 0.30515 +LexRank 0.125 0.04255 0.125 0.03309 +TextRank 0.20833 0.06383 0.14583 0.06985 +Luhn 0.04167 0.0 0.02083 0.00735 +ICSI 0.20833 0.06383 0.08333 0.05147 +d5e1cf66cc4e0ccb627023cabae0fa5d200fba08.json +UB1 0.51724 0.12281 0.18966 0.20482 +UB2 0.41379 0.15789 0.22414 0.1747 +LexRank 0.31034 0.05263 0.13793 0.10542 +TextRank 0.22414 0.01754 0.13793 0.06627 +Luhn 0.17241 0.0 0.08621 0.03916 +ICSI 0.34483 0.03509 0.12069 0.10843 +fab4dd716156297fa4e4edeebb8a62e09340d1ad.json +UB1 0.42188 0.12698 0.15625 0.13315 +UB2 0.42188 0.12698 0.15625 0.13315 +LexRank 0.23438 0.04762 0.15625 0.0625 +TextRank 0.125 0.0 0.09375 0.02717 +Luhn 0.10938 0.01587 0.07812 0.02717 +ICSI 0.26562 0.06349 0.125 0.07337 +e99f11d1cd5af2b77f1a300f381170d57137b30b.json +UB1 0.375 0.19355 0.3125 0.15341 +UB2 0.46875 0.29032 0.4375 0.23864 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.03125 0.0 0.03125 0.0 +Luhn 0.03125 0.0 0.03125 0.0 +ICSI 0.21875 0.09677 0.15625 0.06818 +fa78caf5a89c95a487f4e3e814e013d59be8d08e.json +UB1 0.54762 0.2439 0.42857 0.25847 +UB2 0.5 0.29268 0.38095 0.26695 +LexRank 0.19048 0.09756 0.16667 0.07627 +TextRank 0.09524 0.0 0.09524 0.02119 +Luhn 0.11905 0.0 0.11905 0.02542 +ICSI 0.38095 0.07317 0.2619 0.11017 +c8436aeb55abe3facc9d098516f92bb0702cca72.json +UB1 0.47619 0.2439 0.2381 0.22881 +UB2 0.47619 0.2439 0.2381 0.22881 +LexRank 0.35714 0.14634 0.21429 0.10169 +TextRank 0.14286 0.0 0.07143 0.02542 +Luhn 0.14286 0.0 0.07143 0.02542 +ICSI 0.47619 0.2439 0.40476 0.22458 +d71c6bf6d32dd41ca6f4819793d8ab3f37438b4a.json +UB1 0.53571 0.10843 0.22619 0.16189 +UB2 0.53571 0.33735 0.30952 0.23975 +LexRank 0.19048 0.03614 0.13095 0.04918 +TextRank 0.22619 0.0241 0.11905 0.05123 +Luhn 0.20238 0.01205 0.08333 0.04098 +ICSI 0.29762 0.07229 0.13095 0.08402 +bc298c73a204d3ba0f1b0352c1fe8683eca7e141.json +UB1 0.45455 0.06977 0.25 0.14113 +UB2 0.27273 0.18605 0.18182 0.14919 +LexRank 0.11364 0.0 0.06818 0.02016 +TextRank 0.11364 0.0 0.06818 0.02016 +Luhn 0.18182 0.0 0.09091 0.03629 +ICSI 0.22727 0.13953 0.22727 0.1371 +c9333050da96acefc7c986d84cff7825496672c7.json +UB1 0.5 0.15152 0.23529 0.12234 +UB2 0.47059 0.24242 0.26471 0.17021 +LexRank 0.32353 0.12121 0.26471 0.15426 +TextRank 0.02941 0.0 0.02941 0.00532 +Luhn 0.08824 0.0303 0.08824 0.02128 +ICSI 0.11765 0.0 0.11765 0.0266 +f17e8d0548247dc3e0836a61b92ddc8a63de7f30.json +UB1 0.46809 0.17391 0.25532 0.17293 +UB2 0.40426 0.21739 0.23404 0.16165 +LexRank 0.12766 0.02174 0.08511 0.03008 +TextRank 0.17021 0.02174 0.12766 0.04511 +Luhn 0.08511 0.02174 0.06383 0.02256 +ICSI 0.19149 0.0 0.12766 0.04135 +bc36bbdd8ebbccd9d85c161893afd1ff85aebe38.json +UB1 0.48387 0.11957 0.17204 0.12915 +UB2 0.47312 0.22826 0.17204 0.17712 +LexRank 0.23656 0.01087 0.10753 0.05535 +TextRank 0.16129 0.0 0.10753 0.03321 +Luhn 0.22581 0.04348 0.08602 0.05904 +ICSI 0.25806 0.05435 0.12903 0.06642 +c27696bc4d9353b0fde3c688e2ac745dec334f57.json +UB1 0.57407 0.26415 0.48148 0.27922 +UB2 0.59259 0.32075 0.5 0.29545 +LexRank 0.22222 0.07547 0.16667 0.1039 +TextRank 0.09259 0.0 0.07407 0.01623 +Luhn 0.09259 0.0 0.07407 0.01623 +ICSI 0.25926 0.11321 0.18519 0.09091 +e5f0a4b7c08c385780e9b054a2c38324e4fc5c84.json +UB1 0.52381 0.19231 0.22857 0.18241 +UB2 0.47619 0.22115 0.2381 0.1759 +LexRank 0.19048 0.01923 0.12381 0.04723 +TextRank 0.18095 0.05769 0.09524 0.05863 +Luhn 0.24762 0.08654 0.14286 0.07818 +ICSI 0.21905 0.01923 0.10476 0.05049 +dbea167a5a9e06ebd96915ef391b1071c9bbaa89.json +UB1 0.36364 0.09302 0.27273 0.1129 +UB2 0.29545 0.11628 0.20455 0.07661 +LexRank 0.13636 0.0 0.06818 0.02016 +TextRank 0.13636 0.0 0.06818 0.02419 +Luhn 0.18182 0.04651 0.13636 0.04032 +ICSI 0.13636 0.02326 0.09091 0.02823 +de376fdc8cf59c088ec30edff779103d8e99296e.json +UB1 0.73256 0.61176 0.37209 0.544 +UB2 0.67442 0.57647 0.4186 0.542 +LexRank 0.26744 0.07059 0.19767 0.096 +TextRank 0.26744 0.07059 0.19767 0.096 +Luhn 0.26744 0.07059 0.19767 0.096 +ICSI 0.37209 0.09412 0.2093 0.124 +bc3c42652ab1c317f7aa3b9c5842e257bfa9eca3.json +UB1 0.58696 0.23077 0.26087 0.24067 +UB2 0.56522 0.30769 0.30435 0.28545 +LexRank 0.32609 0.03297 0.1413 0.08769 +TextRank 0.22826 0.01099 0.13043 0.06157 +Luhn 0.11957 0.01099 0.07609 0.02612 +ICSI 0.30435 0.05495 0.15217 0.08769 +f0c4c1b6e136841eadf07fecf5bfe6da538ff74c.json +UB1 0.56338 0.25714 0.29577 0.28537 +UB2 0.61972 0.38571 0.43662 0.33171 +LexRank 0.16901 0.0 0.09859 0.04146 +TextRank 0.25352 0.02857 0.11268 0.06341 +Luhn 0.1831 0.0 0.09859 0.03902 +ICSI 0.30986 0.05714 0.1831 0.10976 +e87c79daa25f77568cb7b3d2daabed9a9c19089d.json +UB1 0.53425 0.19444 0.19178 0.2109 +UB2 0.47945 0.26389 0.23288 0.20142 +LexRank 0.19178 0.01389 0.09589 0.04028 +TextRank 0.24658 0.05556 0.15068 0.07346 +Luhn 0.13699 0.0 0.08219 0.02844 +ICSI 0.35616 0.09722 0.15068 0.109 +ff2acf654d62dbfd0df3002afbc2d0b0dc3ba7f8.json +UB1 0.34483 0.14286 0.17241 0.14557 +UB2 0.37931 0.17857 0.31034 0.17089 +LexRank 0.03448 0.0 0.03448 0.0 +TextRank 0.03448 0.0 0.03448 0.00633 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.06897 0.0 0.06897 0.01266 +d1b43f97b3af073d090fe9a85118f17aa4b771b7.json +UB1 0.62069 0.38372 0.28736 0.34387 +UB2 0.54023 0.39535 0.28736 0.33597 +LexRank 0.26437 0.09302 0.14943 0.10277 +TextRank 0.26437 0.02326 0.10345 0.06522 +Luhn 0.26437 0.02326 0.10345 0.06522 +ICSI 0.26437 0.03488 0.14943 0.0751 +cd4f793a2299e62353c9d91ec5de2c6d1cb96f20.json +UB1 0.32143 0.03704 0.21429 0.09868 +UB2 0.25 0.11111 0.21429 0.08553 +LexRank 0.10714 0.0 0.10714 0.02632 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.07143 0.0 0.07143 0.01316 +e6bd706902c6fbdfaa3cd0446b278ad22d6badda.json +UB1 0.65432 0.4625 0.37037 0.44468 +UB2 0.65432 0.4625 0.37037 0.44468 +LexRank 0.2963 0.075 0.14815 0.08723 +TextRank 0.35802 0.1 0.17284 0.11489 +Luhn 0.16049 0.0 0.09877 0.03404 +ICSI 0.28395 0.0625 0.12346 0.07021 +d231636b70bf62d306d638bafebe53c31de1bfef.json +UB1 0.40909 0.16279 0.25 0.15323 +UB2 0.40909 0.16279 0.25 0.15323 +LexRank 0.11364 0.0 0.09091 0.02016 +TextRank 0.20455 0.02326 0.09091 0.03629 +Luhn 0.20455 0.02326 0.09091 0.03629 +ICSI 0.18182 0.0 0.06818 0.03629 +dce977e925e89df7d2a28388aae78dc84978a751.json +UB1 0.52941 0.28 0.27451 0.25862 +UB2 0.47059 0.3 0.27451 0.24828 +LexRank 0.19608 0.0 0.09804 0.04483 +TextRank 0.07843 0.0 0.05882 0.01724 +Luhn 0.13725 0.0 0.07843 0.02759 +ICSI 0.11765 0.0 0.05882 0.02759 +d530b91477ed209c5710ba6419b746ca6d5943aa.json +UB1 0.46835 0.16667 0.20253 0.18122 +UB2 0.43038 0.19231 0.31646 0.18559 +LexRank 0.13924 0.0 0.08861 0.03057 +TextRank 0.17722 0.01282 0.08861 0.03712 +Luhn 0.17722 0.01282 0.08861 0.03712 +ICSI 0.11392 0.01282 0.08861 0.03275 +e85db74f83362447b654a20bc58cb261ef8984a4.json +UB1 0.36986 0.05556 0.13699 0.09242 +UB2 0.31507 0.13889 0.21918 0.11374 +LexRank 0.15068 0.0 0.06849 0.02844 +TextRank 0.13699 0.0 0.06849 0.03318 +Luhn 0.0274 0.0 0.0274 0.00474 +ICSI 0.20548 0.02778 0.13699 0.05213 +d4bfcbf7490bb67877e66e58394a100674adffdb.json +UB1 0.44615 0.14062 0.21538 0.15508 +UB2 0.30769 0.1875 0.2 0.13102 +LexRank 0.23077 0.0625 0.16923 0.07487 +TextRank 0.18462 0.03125 0.10769 0.04545 +Luhn 0.16923 0.03125 0.10769 0.04011 +ICSI 0.21538 0.03125 0.10769 0.0615 +fbbc5a67b88fc5ddbeda800c4b51f15d7d3ee8d9.json +UB1 0.2963 0.07692 0.22222 0.12329 +UB2 0.33333 0.15385 0.18519 0.14384 +LexRank 0.22222 0.03846 0.22222 0.08219 +TextRank 0.07407 0.0 0.07407 0.0137 +Luhn 0.07407 0.0 0.07407 0.0137 +ICSI 0.22222 0.03846 0.22222 0.08219 +bcc9313e05053c50f6bc8b98bf65db37dd28bc77.json +UB1 0.39286 0.07407 0.28571 0.125 +UB2 0.32143 0.11111 0.25 0.10526 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.03571 0.0 0.03571 0.00658 +Luhn 0.03571 0.0 0.03571 0.00658 +ICSI 0.17857 0.0 0.14286 0.02632 +db097e196b6e1e23762394eff3d10e0c5254fd03.json +UB1 0.70909 0.5 0.54545 0.47771 +UB2 0.69091 0.51852 0.52727 0.4586 +LexRank 0.32727 0.03704 0.12727 0.09236 +TextRank 0.12727 0.0 0.05455 0.02548 +Luhn 0.12727 0.0 0.05455 0.02548 +ICSI 0.29091 0.05556 0.18182 0.08917 +f4b3e4ca22765de3b29c51744919628f26701566.json +UB1 0.56757 0.25 0.27027 0.26699 +UB2 0.51351 0.30556 0.27027 0.26214 +LexRank 0.08108 0.0 0.05405 0.01942 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.10811 0.02778 0.08108 0.02427 +c4191eaeac828a4bfdaea9243c821893ee1c83c5.json +UB1 0.48718 0.34211 0.48718 0.25688 +UB2 0.48718 0.34211 0.48718 0.25688 +LexRank 0.07692 0.0 0.05128 0.01376 +TextRank 0.05128 0.0 0.05128 0.01376 +Luhn 0.15385 0.02632 0.12821 0.03211 +ICSI 0.07692 0.0 0.05128 0.01376 +e86c0e8f29d7db9626f7d9193084af047c4b1c96.json +UB1 0.65385 0.33766 0.25641 0.29204 +UB2 0.60256 0.37662 0.26923 0.31416 +LexRank 0.30769 0.06494 0.17949 0.10841 +TextRank 0.16667 0.02597 0.10256 0.04425 +Luhn 0.34615 0.1039 0.20513 0.14381 +ICSI 0.53846 0.28571 0.30769 0.26106 +ee93d422b70716258dfd47aaf291854d3e03abc3.json +UB1 0.52381 0.1 0.28571 0.17273 +UB2 0.47619 0.1 0.28571 0.16364 +LexRank 0.04762 0.0 0.04762 0.00909 +TextRank 0.14286 0.0 0.14286 0.03636 +Luhn 0.04762 0.0 0.04762 0.00909 +ICSI 0.2381 0.05 0.19048 0.05455 +c530c1255daecb2af5e58b5b3fe626543dbd1d30.json +UB1 0.43902 0.2 0.26829 0.17826 +UB2 0.46341 0.225 0.26829 0.2087 +LexRank 0.09756 0.0 0.07317 0.01739 +TextRank 0.19512 0.05 0.17073 0.08696 +Luhn 0.14634 0.05 0.12195 0.07391 +ICSI 0.21951 0.05 0.17073 0.0913 +e5c01f2e4901a8e4637f9d87e059e382b6f71f49.json +UB1 0.53846 0.23684 0.30769 0.25688 +UB2 0.48718 0.23684 0.20513 0.24771 +LexRank 0.07692 0.0 0.05128 0.01376 +TextRank 0.07692 0.0 0.05128 0.01376 +Luhn 0.05128 0.0 0.02564 0.00459 +ICSI 0.12821 0.02632 0.10256 0.0367 +e40b3192a830d8c39afdb37be5c0a613e1af50d5.json +UB1 0.32692 0.11765 0.19231 0.11824 +UB2 0.32692 0.17647 0.15385 0.125 +LexRank 0.15385 0.0 0.09615 0.03378 +TextRank 0.17308 0.0 0.11538 0.03378 +Luhn 0.17308 0.0 0.09615 0.03716 +ICSI 0.21154 0.01961 0.13462 0.0473 +eb469f8815bba3106ff910a0385f624c24aa441d.json +UB1 0.54237 0.25862 0.25424 0.23077 +UB2 0.52542 0.25862 0.20339 0.22485 +LexRank 0.16949 0.01724 0.10169 0.0355 +TextRank 0.18644 0.0 0.10169 0.04142 +Luhn 0.23729 0.01724 0.15254 0.0503 +ICSI 0.32203 0.08621 0.15254 0.09467 +bd8c5b594d46f582129c9beada09ec20c990492c.json +UB1 0.50943 0.26923 0.24528 0.2649 +UB2 0.50943 0.26923 0.24528 0.25828 +LexRank 0.16981 0.01923 0.09434 0.04967 +TextRank 0.15094 0.0 0.07547 0.0298 +Luhn 0.09434 0.0 0.07547 0.01987 +ICSI 0.18868 0.03846 0.07547 0.0596 +d6c40774321a12ecea9544a8d58a0a29fcd840cb.json +UB1 0.63529 0.27381 0.36471 0.29555 +UB2 0.61176 0.32143 0.31765 0.29352 +LexRank 0.18824 0.0 0.10588 0.03846 +TextRank 0.17647 0.0119 0.09412 0.03846 +Luhn 0.32941 0.04762 0.14118 0.083 +ICSI 0.37647 0.08333 0.14118 0.1336 +d76fa8fc0e1e25b91f37841903c0a4cc74ab6766.json +UB1 0.39286 0.11111 0.35714 0.16447 +UB2 0.28571 0.11111 0.21429 0.13816 +LexRank 0.07143 0.0 0.07143 0.01316 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.10714 0.0 0.10714 0.01974 +ICSI 0.17857 0.03704 0.07143 0.03289 +cc0f2dfded76da22584b557c51433d38e85774ee.json +UB1 0.45283 0.09615 0.20755 0.11921 +UB2 0.37736 0.13462 0.16981 0.10927 +LexRank 0.13208 0.0 0.09434 0.0298 +TextRank 0.11321 0.0 0.07547 0.01987 +Luhn 0.11321 0.0 0.09434 0.0298 +ICSI 0.15094 0.0 0.07547 0.0298 +f91cd3b237a0dce3b29268639b991b87c07e4fef.json +UB1 0.51807 0.18293 0.27711 0.20124 +UB2 0.49398 0.28049 0.22892 0.21369 +LexRank 0.21687 0.02439 0.12048 0.06639 +TextRank 0.18072 0.04878 0.10843 0.05602 +Luhn 0.21687 0.0122 0.13253 0.05187 +ICSI 0.39759 0.20732 0.25301 0.1556 +f2ce4e1cecf6f4ece652e7c565734e2334e53a0c.json +UB1 0.56164 0.30556 0.34247 0.28199 +UB2 0.54795 0.34722 0.31507 0.28199 +LexRank 0.26027 0.06944 0.15068 0.08531 +TextRank 0.21918 0.04167 0.12329 0.07109 +Luhn 0.19178 0.01389 0.09589 0.04265 +ICSI 0.30137 0.08333 0.12329 0.09953 +d9f6b74e0e03f46fdc30628f7d21797284d46054.json +UB1 0.4878 0.1 0.29268 0.16522 +UB2 0.34146 0.125 0.17073 0.16087 +LexRank 0.14634 0.025 0.09756 0.03043 +TextRank 0.07317 0.0 0.04878 0.01304 +Luhn 0.07317 0.0 0.04878 0.01304 +ICSI 0.19512 0.025 0.17073 0.05652 +f91f7e5434d9d8b074b014065885ea8d2d86d2cd.json +UB1 0.51613 0.2 0.22581 0.18235 +UB2 0.58065 0.33333 0.32258 0.23529 +LexRank 0.22581 0.1 0.22581 0.08824 +TextRank 0.19355 0.1 0.12903 0.07647 +Luhn 0.12903 0.03333 0.12903 0.02941 +ICSI 0.32258 0.1 0.19355 0.08824 +e7438aad3063355dc5ae354a82a1a9e094949baf.json +UB1 0.67308 0.43137 0.44231 0.40203 +UB2 0.69231 0.45098 0.46154 0.41216 +LexRank 0.28846 0.01961 0.15385 0.07095 +TextRank 0.34615 0.07843 0.13462 0.08108 +Luhn 0.34615 0.07843 0.13462 0.08108 +ICSI 0.40385 0.09804 0.21154 0.13176 +eebb9056d3ec4e3868e128032640de0d83bd557e.json +UB1 0.44928 0.16176 0.23188 0.20352 +UB2 0.37681 0.17647 0.28986 0.19598 +LexRank 0.17391 0.01471 0.08696 0.0402 +TextRank 0.14493 0.0 0.10145 0.03015 +Luhn 0.14493 0.0 0.07246 0.02764 +ICSI 0.26087 0.05882 0.15942 0.0804 +c29a8fa234997248c0301a2d623f4ac3c5422593.json +UB1 0.59375 0.29032 0.40625 0.28409 +UB2 0.46875 0.29032 0.34375 0.22159 +LexRank 0.09375 0.0 0.09375 0.01705 +TextRank 0.09375 0.0 0.09375 0.01705 +Luhn 0.09375 0.0 0.09375 0.01705 +ICSI 0.21875 0.03226 0.15625 0.05682 +cd1cf384b68437b3c58cea07f5fa0e34d9e2f500.json +UB1 0.43902 0.05 0.19512 0.11304 +UB2 0.31707 0.125 0.19512 0.11304 +LexRank 0.12195 0.0 0.07317 0.02174 +TextRank 0.17073 0.025 0.07317 0.04783 +Luhn 0.17073 0.025 0.07317 0.04783 +ICSI 0.12195 0.025 0.07317 0.02609 +bf2f394da08995ff69b1fa294a01d1628045fc4c.json +UB1 0.52308 0.25 0.26154 0.24064 +UB2 0.46154 0.28125 0.29231 0.23262 +LexRank 0.4 0.23438 0.23077 0.19786 +TextRank 0.36923 0.21875 0.29231 0.19251 +Luhn 0.13846 0.01562 0.09231 0.03209 +ICSI 0.36923 0.10938 0.15385 0.12567 +eef40921f3edc5dc967d46806594a58c10b37bdd.json +UB1 0.53125 0.22581 0.375 0.19886 +UB2 0.46875 0.22581 0.3125 0.17614 +LexRank 0.125 0.0 0.125 0.02841 +TextRank 0.125 0.0 0.125 0.02841 +Luhn 0.0625 0.0 0.0625 0.01136 +ICSI 0.09375 0.0 0.09375 0.02273 +c4948c1a03e32d5f57aefffdad6ce1a188f8a63c.json +UB1 0.44444 0.11364 0.2 0.12205 +UB2 0.35556 0.15909 0.13333 0.09843 +LexRank 0.2 0.09091 0.13333 0.05512 +TextRank 0.2 0.06818 0.13333 0.05512 +Luhn 0.11111 0.0 0.04444 0.01969 +ICSI 0.28889 0.04545 0.2 0.09055 +d13637c3cafbf8f7b7112250b66d7aad950d340a.json +UB1 0.38333 0.13559 0.16667 0.15988 +UB2 0.35 0.16949 0.15 0.17151 +LexRank 0.05 0.0 0.05 0.00872 +TextRank 0.15 0.0339 0.08333 0.03488 +Luhn 0.15 0.0339 0.08333 0.03488 +ICSI 0.11667 0.0 0.08333 0.02035 +eb070be974da5b36fa568c90445045a2f39b036e.json +UB1 0.64789 0.5 0.29577 0.48293 +UB2 0.69014 0.57143 0.32394 0.54634 +LexRank 0.38028 0.21429 0.16901 0.19756 +TextRank 0.25352 0.07143 0.15493 0.09512 +Luhn 0.22535 0.1 0.16901 0.1122 +ICSI 0.35211 0.15714 0.21127 0.15122 +e69317be936b4e69d3d2706f7cb05e7fe3c369b1.json +UB1 0.48936 0.1087 0.23404 0.16917 +UB2 0.51064 0.23913 0.3617 0.21429 +LexRank 0.19149 0.02174 0.10638 0.05263 +TextRank 0.08511 0.0 0.06383 0.0188 +Luhn 0.08511 0.0 0.06383 0.0188 +ICSI 0.38298 0.06522 0.21277 0.15038 +f35468eda04d9ed77193d7545325dda6af14a4d9.json +UB1 0.52113 0.3 0.23944 0.26341 +UB2 0.56338 0.34286 0.25352 0.28537 +LexRank 0.16901 0.04286 0.14085 0.04634 +TextRank 0.11268 0.0 0.08451 0.03171 +Luhn 0.12676 0.0 0.07042 0.03171 +ICSI 0.33803 0.12857 0.1831 0.12439 +f9e3ee64ae9ee58de6f8cf77f343c650f50197dc.json +UB1 0.40625 0.16129 0.375 0.17045 +UB2 0.375 0.16129 0.25 0.11932 +LexRank 0.03125 0.0 0.03125 0.00568 +TextRank 0.0625 0.0 0.0625 0.01136 +Luhn 0.0625 0.0 0.0625 0.01136 +ICSI 0.09375 0.0 0.0625 0.01705 +e70020184fe8551e8a6b6d00db43c4f02c01e878.json +UB1 0.55056 0.23864 0.24719 0.24131 +UB2 0.55056 0.29545 0.2809 0.26834 +LexRank 0.33708 0.07955 0.17978 0.13514 +TextRank 0.29213 0.10227 0.20225 0.12548 +Luhn 0.2809 0.11364 0.14607 0.09266 +ICSI 0.38202 0.14773 0.16854 0.14286 +ee3e406cae518dd634b2f2fcefce2048ba4981f7.json +UB1 0.54762 0.29268 0.2619 0.2839 +UB2 0.47619 0.26829 0.45238 0.22881 +LexRank 0.07143 0.02439 0.07143 0.02119 +TextRank 0.02381 0.0 0.02381 0.00424 +Luhn 0.02381 0.0 0.02381 0.00424 +ICSI 0.2381 0.02439 0.11905 0.05085 +f828f687f709e675db683de4335636b6e497e970.json +UB1 0.49296 0.14286 0.16901 0.16098 +UB2 0.46479 0.27143 0.26761 0.1878 +LexRank 0.38028 0.17143 0.25352 0.1439 +TextRank 0.04225 0.01429 0.04225 0.00976 +Luhn 0.12676 0.01429 0.11268 0.03171 +ICSI 0.39437 0.14286 0.1831 0.12195 +fb8d5c4d719172dc607523b666c2b4ae99a6c979.json +UB1 0.4898 0.3125 0.40816 0.23741 +UB2 0.44898 0.3125 0.36735 0.22302 +LexRank 0.08163 0.0 0.06122 0.01439 +TextRank 0.10204 0.0 0.08163 0.01799 +Luhn 0.26531 0.0625 0.14286 0.06475 +ICSI 0.2449 0.02083 0.14286 0.05755 +ef6131a16ca12d64624618eb3db42c038d46cccd.json +UB1 0.53448 0.22807 0.36207 0.24699 +UB2 0.46552 0.24561 0.41379 0.25 +LexRank 0.12069 0.0 0.06897 0.02108 +TextRank 0.25862 0.10526 0.18966 0.11446 +Luhn 0.22414 0.08772 0.13793 0.09036 +ICSI 0.27586 0.01754 0.12069 0.06928 +ef6b1aa842d4f71b0a6dd286ddf3dfd0c07c734b.json +UB1 0.48276 0.07143 0.2069 0.12025 +UB2 0.31034 0.17857 0.24138 0.11392 +LexRank 0.13793 0.0 0.10345 0.02532 +TextRank 0.13793 0.0 0.10345 0.03165 +Luhn 0.13793 0.0 0.10345 0.03165 +ICSI 0.27586 0.03571 0.13793 0.08228 +e64bb808c17cfa0d022d330f5022e60f0160c823.json +UB1 0.60377 0.23077 0.41509 0.26821 +UB2 0.56604 0.30769 0.45283 0.28808 +LexRank 0.22642 0.01923 0.11321 0.05298 +TextRank 0.24528 0.01923 0.09434 0.0596 +Luhn 0.16981 0.0 0.11321 0.03642 +ICSI 0.35849 0.09615 0.16981 0.12252 +e2a54102a83b9b6bcfd2f8b942000a3d4b142ff7.json +UB1 0.48352 0.13333 0.25275 0.14151 +UB2 0.42857 0.15556 0.25275 0.1566 +LexRank 0.18681 0.01111 0.08791 0.04151 +TextRank 0.20879 0.05556 0.13187 0.06604 +Luhn 0.21978 0.05556 0.12088 0.06226 +ICSI 0.24176 0.01111 0.0989 0.06226 +cb4b43d491a4316ee6d280b09cdaca274a13930a.json +UB1 0.48235 0.15476 0.17647 0.17004 +UB2 0.48235 0.2381 0.21176 0.17004 +LexRank 0.23529 0.0119 0.10588 0.05263 +TextRank 0.18824 0.0119 0.10588 0.03644 +Luhn 0.24706 0.02381 0.10588 0.06073 +ICSI 0.28235 0.03571 0.14118 0.06073 +fc03a76728d48dff0cb1d8d4b00e30e7f54761ae.json +UB1 0.56 0.22449 0.32 0.21127 +UB2 0.48 0.28571 0.38 0.21479 +LexRank 0.22 0.04082 0.1 0.0493 +TextRank 0.1 0.06122 0.08 0.03873 +Luhn 0.08 0.0 0.06 0.01408 +ICSI 0.1 0.0 0.04 0.01761 +c9fa1506ae432ffd517971d0efdad44fb1064c81.json +UB1 0.43333 0.2069 0.23333 0.17073 +UB2 0.26667 0.17241 0.26667 0.15854 +LexRank 0.1 0.0 0.06667 0.01829 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.03333 0.0 0.03333 0.0061 +db897f5897090292649a68f24260cb5f257661ec.json +UB1 0.68889 0.59091 0.66667 0.53937 +UB2 0.68889 0.59091 0.66667 0.53937 +LexRank 0.17778 0.02273 0.11111 0.03543 +TextRank 0.08889 0.0 0.08889 0.01575 +Luhn 0.17778 0.02273 0.11111 0.06299 +ICSI 0.2 0.0 0.11111 0.04331 +f756816110869b79faff8d991505d90f0d9dd751.json +UB1 0.68333 0.38983 0.41667 0.43895 +UB2 0.6 0.38983 0.43333 0.38953 +LexRank 0.3 0.01695 0.18333 0.08721 +TextRank 0.13333 0.0 0.08333 0.02907 +Luhn 0.13333 0.0 0.08333 0.02907 +ICSI 0.21667 0.01695 0.13333 0.05523 +f78a251f0a8aed75e4ecabffc521c3fd8d72ea8b.json +UB1 0.48101 0.19231 0.22785 0.15721 +UB2 0.41772 0.21795 0.25316 0.15721 +LexRank 0.25316 0.02564 0.11392 0.05895 +TextRank 0.10127 0.0 0.06329 0.01747 +Luhn 0.27848 0.05128 0.11392 0.0655 +ICSI 0.21519 0.05128 0.12658 0.06769 +bbf7dd3a98daa4852abd3dabb0b2d207aff477e4.json +UB1 0.60976 0.5 0.36585 0.41304 +UB2 0.63415 0.55 0.36585 0.48696 +LexRank 0.4878 0.325 0.39024 0.33478 +TextRank 0.2439 0.1 0.19512 0.0913 +Luhn 0.41463 0.25 0.34146 0.22609 +ICSI 0.2439 0.1 0.17073 0.08696 +f5f823542c91285613553d99c835d305b51f9ca1.json +UB1 0.475 0.07692 0.275 0.15625 +UB2 0.325 0.15385 0.175 0.12054 +LexRank 0.225 0.02564 0.175 0.07589 +TextRank 0.175 0.02564 0.1 0.04018 +Luhn 0.1 0.0 0.075 0.02232 +ICSI 0.225 0.02564 0.15 0.05804 +be0cbe0dc60813b6a4f93d513969391929597538.json +UB1 0.30303 0.0625 0.15152 0.08791 +UB2 0.30303 0.09375 0.15152 0.10989 +LexRank 0.0303 0.0 0.0303 0.00549 +TextRank 0.06061 0.0 0.0303 0.01099 +Luhn 0.06061 0.0 0.0303 0.01099 +ICSI 0.06061 0.0 0.0303 0.01099 +c1db74c81865e623dbfe57486da2227c1595e4b0.json +UB1 0.49485 0.15625 0.17526 0.18551 +UB2 0.42268 0.1875 0.20619 0.16784 +LexRank 0.12371 0.0 0.07216 0.02297 +TextRank 0.13402 0.03125 0.09278 0.0424 +Luhn 0.07216 0.0 0.05155 0.0159 +ICSI 0.18557 0.01042 0.12371 0.05124 +d4a93bcff36517aa655948d3fd2ff682a5cf1d37.json +UB1 0.32075 0.13462 0.18868 0.10927 +UB2 0.32075 0.15385 0.15094 0.11589 +LexRank 0.11321 0.0 0.07547 0.02649 +TextRank 0.13208 0.01923 0.11321 0.0298 +Luhn 0.11321 0.0 0.07547 0.02318 +ICSI 0.15094 0.0 0.07547 0.03311 +e0fa4484f7665bd76d435e2fd47e23126e8b6021.json +UB1 0.44186 0.2381 0.25581 0.19008 +UB2 0.32558 0.2619 0.2093 0.19421 +LexRank 0.2093 0.02381 0.13953 0.07025 +TextRank 0.27907 0.16667 0.2093 0.16942 +Luhn 0.2093 0.07143 0.13953 0.06198 +ICSI 0.34884 0.16667 0.18605 0.13223 +cdf83b604ce89d728243ad0ec76bd6bee0f4b7cf.json +UB1 0.39474 0.24324 0.21053 0.1934 +UB2 0.39474 0.2973 0.23684 0.20755 +LexRank 0.15789 0.02703 0.10526 0.03302 +TextRank 0.18421 0.05405 0.13158 0.04717 +Luhn 0.18421 0.05405 0.13158 0.04717 +ICSI 0.34211 0.16216 0.15789 0.16038 +eafda889fcbc816acdc29a15e02a0b5cb4804701.json +UB1 0.475 0.17949 0.325 0.15179 +UB2 0.35 0.20513 0.275 0.16518 +LexRank 0.325 0.07692 0.175 0.08482 +TextRank 0.225 0.07692 0.125 0.06696 +Luhn 0.225 0.07692 0.125 0.06696 +ICSI 0.3 0.15385 0.25 0.125 +db7bd10070edbcf16f8c8bad0185e72bd1a25204.json +UB1 0.26923 0.04 0.19231 0.09286 +UB2 0.19231 0.08 0.19231 0.07143 +LexRank 0.19231 0.04 0.07692 0.04286 +TextRank 0.15385 0.04 0.15385 0.03571 +Luhn 0.11538 0.0 0.11538 0.02857 +ICSI 0.07692 0.0 0.07692 0.01429 +de023a6c380a01808b3c3d94123069e449af127c.json +UB1 0.38889 0.11765 0.22222 0.13043 +UB2 0.22222 0.11765 0.22222 0.06522 +LexRank 0.11111 0.0 0.05556 0.02174 +TextRank 0.11111 0.0 0.11111 0.02174 +Luhn 0.11111 0.0 0.11111 0.02174 +ICSI 0.27778 0.11765 0.22222 0.07609 +c8f412c30d1b6aa7f9efd537a45b9adff04b950d.json +UB1 0.50769 0.20312 0.30769 0.20053 +UB2 0.35385 0.20312 0.29231 0.16043 +LexRank 0.13846 0.0 0.07692 0.02674 +TextRank 0.16923 0.0 0.06154 0.02941 +Luhn 0.18462 0.0 0.09231 0.03476 +ICSI 0.13846 0.0 0.07692 0.03476 +ff01e08340ff066f0f47e98581c9f3bcbd65eeab.json +UB1 0.82051 0.68421 0.58974 0.61927 +UB2 0.79487 0.68421 0.58974 0.6055 +LexRank 0.05128 0.0 0.02564 0.00917 +TextRank 0.17949 0.0 0.10256 0.05046 +Luhn 0.41026 0.34211 0.38462 0.32569 +ICSI 0.10256 0.0 0.10256 0.02294 +ca7d2bb98c47243efd04c90111c15b1dce021826.json +UB1 0.5 0.13725 0.21154 0.15878 +UB2 0.42308 0.17647 0.25 0.17905 +LexRank 0.21154 0.05882 0.15385 0.05743 +TextRank 0.15385 0.0 0.07692 0.03378 +Luhn 0.13462 0.0 0.09615 0.02703 +ICSI 0.19231 0.0 0.09615 0.03716 +d3349af708ceb691abdab6d42c09b048b083f386.json +UB1 0.4375 0.19149 0.20833 0.19853 +UB2 0.39583 0.19149 0.20833 0.1875 +LexRank 0.20833 0.0 0.10417 0.05515 +TextRank 0.33333 0.06383 0.14583 0.09926 +Luhn 0.20833 0.0 0.10417 0.04779 +ICSI 0.1875 0.02128 0.10417 0.04044 +ddb12515a1db114db13c230a74011cd7c439dfb6.json +UB1 0.64912 0.53571 0.5614 0.5092 +UB2 0.63158 0.53571 0.54386 0.50613 +LexRank 0.29825 0.08929 0.19298 0.09202 +TextRank 0.12281 0.0 0.10526 0.02761 +Luhn 0.14035 0.0 0.10526 0.03067 +ICSI 0.47368 0.28571 0.29825 0.33436 +bb557d468c34911566368b88c80934fbb4568ced.json +UB1 0.49231 0.1938 0.26923 0.2199 +UB2 0.53846 0.27132 0.23846 0.26963 +LexRank 0.30769 0.03101 0.15385 0.09424 +TextRank 0.20769 0.0 0.13846 0.0589 +Luhn 0.36154 0.06202 0.16154 0.12565 +ICSI 0.40769 0.16279 0.20769 0.18717 +c569ae80b4ddac44843acf4002425830711674cf.json +UB1 0.57447 0.15217 0.42553 0.22556 +UB2 0.38298 0.17391 0.34043 0.17293 +LexRank 0.19149 0.02174 0.10638 0.04887 +TextRank 0.19149 0.02174 0.10638 0.05263 +Luhn 0.12766 0.02174 0.12766 0.03383 +ICSI 0.21277 0.04348 0.10638 0.05639 +ef321d8afc8003a6fedc70cb91598dbf3a294bef.json +UB1 0.49333 0.13514 0.22667 0.15668 +UB2 0.46667 0.25676 0.24 0.20737 +LexRank 0.18667 0.01351 0.12 0.03917 +TextRank 0.05333 0.01351 0.04 0.01152 +Luhn 0.17333 0.0 0.10667 0.04147 +ICSI 0.29333 0.09459 0.18667 0.11751 +cbe3803ab3703e6de66ae87e3dd107fd5f315569.json +UB1 0.67391 0.46667 0.34783 0.43077 +UB2 0.67391 0.46667 0.34783 0.43077 +LexRank 0.17391 0.0 0.1087 0.02692 +TextRank 0.23913 0.04444 0.15217 0.06923 +Luhn 0.19565 0.04444 0.13043 0.05 +ICSI 0.28261 0.02222 0.15217 0.08077 +e274de3efec788c4fceee1c9525f4455b3109858.json +UB1 0.25714 0.0 0.2 0.07216 +UB2 0.28571 0.17647 0.14286 0.10309 +LexRank 0.08571 0.0 0.08571 0.01546 +TextRank 0.11429 0.02941 0.05714 0.02577 +Luhn 0.05714 0.0 0.05714 0.01031 +ICSI 0.17143 0.05882 0.14286 0.05155 +f84d8f7445d2f9911637e5e69b097abe112f2f44.json +UB1 0.62857 0.34783 0.41429 0.29208 +UB2 0.67143 0.46377 0.61429 0.43812 +LexRank 0.2 0.0 0.1 0.03465 +TextRank 0.14286 0.0 0.11429 0.0297 +Luhn 0.52857 0.24638 0.38571 0.30198 +ICSI 0.28571 0.02899 0.11429 0.05693 +df7c4fa098577d0e5fd0ee67d33c8ac34f68e13f.json +UB1 0.425 0.17949 0.275 0.13839 +UB2 0.425 0.20513 0.25 0.14732 +LexRank 0.025 0.0 0.025 0.00446 +TextRank 0.025 0.0 0.025 0.00446 +Luhn 0.025 0.0 0.025 0.00446 +ICSI 0.175 0.0 0.1 0.03571 +df2ff0dc8531e8a9f4b4a59ef2a481878811de19.json +UB1 0.69048 0.58537 0.69048 0.54661 +UB2 0.69048 0.58537 0.69048 0.55508 +LexRank 0.38095 0.19512 0.2381 0.16102 +TextRank 0.30952 0.09756 0.14286 0.10169 +Luhn 0.2619 0.09756 0.16667 0.09322 +ICSI 0.52381 0.34146 0.2619 0.27966 +e9cf412c41cd4968d218a3fe4b0c7e597b6f4ffc.json +UB1 0.51786 0.25455 0.26786 0.22187 +UB2 0.48214 0.27273 0.21429 0.21563 +LexRank 0.17857 0.01818 0.10714 0.04063 +TextRank 0.14286 0.01818 0.08929 0.03125 +Luhn 0.14286 0.01818 0.08929 0.03125 +ICSI 0.26786 0.07273 0.14286 0.09062 +ef9784d38009eb29600c631bc527a63c166eac76.json +UB1 0.36364 0.125 0.30303 0.13736 +UB2 0.30303 0.15625 0.27273 0.12088 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.21212 0.03125 0.15152 0.04945 +Luhn 0.15152 0.03125 0.12121 0.04396 +ICSI 0.15152 0.0 0.09091 0.02747 +e648cde7077436c37631a759ed13e8e4514d5316.json +UB1 0.86667 0.71186 0.76667 0.67151 +UB2 0.86667 0.71186 0.76667 0.67151 +LexRank 0.16667 0.01695 0.11667 0.0436 +TextRank 0.21667 0.01695 0.13333 0.05233 +Luhn 0.28333 0.01695 0.15 0.07267 +ICSI 0.26667 0.10169 0.2 0.09302 +c044e70f7a0b7eb68ebdb6d763fb45f5f985b4b5.json +UB1 0.35294 0.12121 0.26471 0.08511 +UB2 0.35294 0.15152 0.23529 0.11702 +LexRank 0.02941 0.0 0.02941 0.00532 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05882 0.0 0.05882 0.01064 +ICSI 0.05882 0.0303 0.05882 0.01596 +f7ffe3022b9e6aa5510cbab92e6920c9af65c3f5.json +UB1 0.54167 0.26087 0.33333 0.23438 +UB2 0.375 0.21739 0.33333 0.1875 +LexRank 0.08333 0.0 0.08333 0.01562 +TextRank 0.08333 0.0 0.04167 0.01562 +Luhn 0.125 0.0 0.04167 0.02344 +ICSI 0.125 0.0 0.125 0.03125 +c4b5a2543b995962fbf5fe206aedcee02243499f.json +UB1 0.52778 0.25352 0.19444 0.23798 +UB2 0.44444 0.26761 0.16667 0.21875 +LexRank 0.16667 0.04225 0.08333 0.04567 +TextRank 0.15278 0.01408 0.06944 0.03125 +Luhn 0.19444 0.02817 0.11111 0.05048 +ICSI 0.29167 0.05634 0.18056 0.07452 +ece7d09995e728ac9f7fb932fd9d6485a294efbf.json +UB1 0.78992 0.66102 0.59664 0.63897 +UB2 0.77311 0.68644 0.61345 0.65186 +LexRank 0.23529 0.02542 0.10084 0.06447 +TextRank 0.2437 0.01695 0.10924 0.0745 +Luhn 0.20168 0.00847 0.09244 0.05158 +ICSI 0.47059 0.27966 0.33613 0.28797 +bab60c7583aaf932a42a926e5d242446c6b5a7d7.json +UB1 0.38961 0.11842 0.19481 0.12556 +UB2 0.37662 0.10526 0.16883 0.11435 +LexRank 0.27273 0.02632 0.12987 0.07399 +TextRank 0.31169 0.05263 0.15584 0.09417 +Luhn 0.31169 0.05263 0.15584 0.09417 +ICSI 0.33766 0.03947 0.15584 0.09865 +d3553a5b5d74328609605353ff12c785882bb563.json +UB1 0.51515 0.07692 0.27273 0.16053 +UB2 0.37879 0.10769 0.19697 0.12105 +LexRank 0.16667 0.0 0.07576 0.03158 +TextRank 0.10606 0.0 0.07576 0.01842 +Luhn 0.18182 0.0 0.12121 0.03684 +ICSI 0.27273 0.0 0.15152 0.08684 +be00d59d1a1e5c0ef5f575c6e2671b53b9b4c9b5.json +UB1 0.425 0.10256 0.2 0.11607 +UB2 0.4 0.12821 0.3 0.14732 +LexRank 0.275 0.05128 0.2 0.08036 +TextRank 0.35 0.05128 0.25 0.11161 +Luhn 0.35 0.05128 0.25 0.11161 +ICSI 0.3 0.02564 0.125 0.09375 +bb0b0e97262ba2fa81236a86c1dca19b7508e41b.json +UB1 0.5 0.16327 0.24 0.17606 +UB2 0.48 0.26531 0.28 0.21831 +LexRank 0.1 0.0 0.08 0.02113 +TextRank 0.12 0.0 0.06 0.02465 +Luhn 0.12 0.0 0.06 0.02465 +ICSI 0.12 0.0 0.06 0.02113 +cd3c1d604320e6ace7caffa7bf7a7ae3dd21463e.json +UB1 0.48889 0.1573 0.24444 0.16794 +UB2 0.48889 0.23596 0.31111 0.24237 +LexRank 0.13333 0.0 0.07778 0.02672 +TextRank 0.13333 0.01124 0.08889 0.02672 +Luhn 0.21111 0.04494 0.08889 0.06489 +ICSI 0.25556 0.02247 0.14444 0.0687 +d693ec672a7504fc8c28080c6279f9eb458eb900.json +UB1 0.38596 0.14286 0.24561 0.14417 +UB2 0.40351 0.19643 0.31579 0.17178 +LexRank 0.14035 0.03571 0.08772 0.03374 +TextRank 0.10526 0.0 0.05263 0.02147 +Luhn 0.10526 0.0 0.05263 0.02147 +ICSI 0.17544 0.01786 0.10526 0.03681 +cabbdaaffea8fcd4a00dd8f2ba5595621bffa098.json +UB1 0.57778 0.27273 0.31111 0.25197 +UB2 0.53333 0.31818 0.31111 0.23228 +LexRank 0.2 0.09091 0.11111 0.05906 +TextRank 0.13333 0.0 0.06667 0.02756 +Luhn 0.13333 0.0 0.06667 0.02756 +ICSI 0.31111 0.09091 0.2 0.10236 +fe86b011aa940a9a4b7f094d84d507ad4fd11ca1.json +UB1 0.53125 0.30159 0.45312 0.28804 +UB2 0.48438 0.33333 0.39062 0.27446 +LexRank 0.29688 0.04762 0.15625 0.06793 +TextRank 0.35938 0.22222 0.29688 0.22826 +Luhn 0.29688 0.11111 0.20312 0.13859 +ICSI 0.32812 0.12698 0.17188 0.10326 +e511dfd20eb25d74ccb9d9fdaf637f5f84802d8e.json +UB1 0.58824 0.16832 0.18627 0.20134 +UB2 0.58824 0.24752 0.27451 0.25839 +LexRank 0.28431 0.0495 0.11765 0.08221 +TextRank 0.37255 0.07921 0.19608 0.14094 +Luhn 0.30392 0.0495 0.14706 0.09396 +ICSI 0.38235 0.12871 0.17647 0.14597 +d268ac744e9e57933d42350eadfb25806ae9511b.json +UB1 0.62069 0.18605 0.24138 0.23913 +UB2 0.5977 0.30233 0.26437 0.25296 +LexRank 0.29885 0.06977 0.17241 0.10277 +TextRank 0.18391 0.03488 0.13793 0.03953 +Luhn 0.33333 0.0814 0.18391 0.11067 +ICSI 0.4023 0.10465 0.14943 0.13043 +c048db1c2a538ca753566f158306ad547a0cdbe6.json +UB1 0.425 0.12821 0.275 0.17411 +UB2 0.425 0.15385 0.275 0.17857 +LexRank 0.1 0.02564 0.075 0.02232 +TextRank 0.075 0.0 0.075 0.01339 +Luhn 0.025 0.0 0.025 0.00446 +ICSI 0.125 0.0 0.1 0.02232 +f3f3bff4d50770553dc8cb9a30688faeba0dfe93.json +UB1 0.425 0.10256 0.2 0.15179 +UB2 0.325 0.15385 0.25 0.125 +LexRank 0.2 0.07692 0.15 0.08036 +TextRank 0.15 0.02564 0.1 0.03571 +Luhn 0.15 0.0 0.075 0.03125 +ICSI 0.35 0.10256 0.225 0.11161 +ee76e15cf1b67f44ee0da5cc391e86906ac12edc.json +UB1 0.52 0.21622 0.26667 0.19355 +UB2 0.50667 0.24324 0.25333 0.20276 +LexRank 0.17333 0.01351 0.10667 0.03917 +TextRank 0.14667 0.0 0.10667 0.02535 +Luhn 0.14667 0.04054 0.08 0.03456 +ICSI 0.24 0.04054 0.16 0.07373 +bc87557af51d0085df2fb0962a6318d73ae7277b.json +UB1 0.52 0.21622 0.18667 0.18894 +UB2 0.48 0.24324 0.22667 0.20507 +LexRank 0.24 0.04054 0.10667 0.06452 +TextRank 0.21333 0.02703 0.12 0.05991 +Luhn 0.24 0.01351 0.10667 0.0576 +ICSI 0.29333 0.05405 0.17333 0.08756 +bdba9e67a4b3f37de78b2d091cabb9d4a609dd37.json +UB1 0.33333 0.05714 0.22222 0.09 +UB2 0.30556 0.11429 0.22222 0.1 +LexRank 0.16667 0.02857 0.16667 0.045 +TextRank 0.08333 0.0 0.08333 0.015 +Luhn 0.08333 0.0 0.08333 0.015 +ICSI 0.08333 0.0 0.08333 0.015 +fe03e3fc2b3aea915fba4d9d8bec88a604dc1057.json +UB1 0.3913 0.13636 0.13043 0.09836 +UB2 0.34783 0.13636 0.26087 0.11475 +LexRank 0.04348 0.0 0.04348 0.0082 +TextRank 0.04348 0.0 0.04348 0.0082 +Luhn 0.13043 0.0 0.08696 0.03279 +ICSI 0.08696 0.0 0.08696 0.01639 +c2c0bcc3cc206332f552e2a59ff502f30b65a35b.json +UB1 0.7037 0.5 0.66667 0.52055 +UB2 0.77778 0.5 0.48148 0.46575 +LexRank 0.55556 0.30769 0.48148 0.37671 +TextRank 0.22222 0.0 0.11111 0.0411 +Luhn 0.22222 0.0 0.11111 0.0411 +ICSI 0.14815 0.0 0.07407 0.0274 +fd5baebfbc522f646c1ba92cffdfceb62a565c05.json +UB1 0.38806 0.09091 0.16418 0.11399 +UB2 0.37313 0.13636 0.10448 0.1114 +LexRank 0.20896 0.01515 0.08955 0.04145 +TextRank 0.1194 0.0 0.08955 0.02591 +Luhn 0.14925 0.0 0.08955 0.03627 +ICSI 0.19403 0.0 0.10448 0.04663 +dfbfb0e280788f63b215abdc491ff67ad7d97ccf.json +UB1 0.5122 0.15 0.31707 0.17826 +UB2 0.39024 0.175 0.29268 0.16087 +LexRank 0.09756 0.0 0.04878 0.01739 +TextRank 0.07317 0.0 0.07317 0.01304 +Luhn 0.29268 0.025 0.12195 0.08696 +ICSI 0.31707 0.075 0.14634 0.08261 +ca6af7303e98a100ab55b99a7531d3b3bd59f114.json +UB1 0.41379 0.21429 0.31034 0.17089 +UB2 0.41379 0.25 0.31034 0.18354 +LexRank 0.06897 0.0 0.03448 0.01266 +TextRank 0.17241 0.0 0.10345 0.05063 +Luhn 0.17241 0.0 0.10345 0.05063 +ICSI 0.10345 0.0 0.06897 0.01899 +d5269476c525476f0404847748e11c4b370d8ba2.json +UB1 0.58065 0.2 0.35484 0.28824 +UB2 0.35484 0.23333 0.25806 0.20588 +LexRank 0.09677 0.0 0.06452 0.01765 +TextRank 0.09677 0.0 0.03226 0.01765 +Luhn 0.12903 0.0 0.06452 0.02353 +ICSI 0.12903 0.0 0.06452 0.02353 +eddfd95719fe76deec6882416cccd5abf2c62be5.json +UB1 0.57778 0.27273 0.24444 0.24409 +UB2 0.53333 0.29545 0.26667 0.27559 +LexRank 0.31111 0.18182 0.17778 0.14173 +TextRank 0.31111 0.18182 0.17778 0.14173 +Luhn 0.31111 0.18182 0.17778 0.14173 +ICSI 0.26667 0.04545 0.15556 0.09449 +d28af58dcf7eac6a3d83a2d736b33b711d4733d6.json +UB1 0.45 0.07692 0.2 0.17411 +UB2 0.325 0.10256 0.175 0.13393 +LexRank 0.1 0.0 0.075 0.02679 +TextRank 0.15 0.0 0.1 0.03125 +Luhn 0.1 0.0 0.05 0.01786 +ICSI 0.225 0.0 0.125 0.05357 +f2ed59905c5d946ae7565abeac55a1a0597c6834.json +UB1 0.66327 0.38144 0.37755 0.37762 +UB2 0.64286 0.38144 0.36735 0.35315 +LexRank 0.22449 0.06186 0.14286 0.06993 +TextRank 0.05102 0.0 0.04082 0.01049 +Luhn 0.23469 0.05155 0.13265 0.07168 +ICSI 0.4898 0.16495 0.22449 0.17657 +c5d119774356ef383ddde73dcdda0e8e334f5f7d.json +UB1 0.34286 0.02941 0.14286 0.10309 +UB2 0.17143 0.05882 0.08571 0.04124 +LexRank 0.11429 0.0 0.11429 0.02062 +TextRank 0.08571 0.0 0.05714 0.01546 +Luhn 0.05714 0.0 0.05714 0.01031 +ICSI 0.11429 0.0 0.08571 0.02062 +f68672e06c6755f0d05e440df49861f598e03fad.json +UB1 0.28571 0.03704 0.17857 0.07895 +UB2 0.21429 0.11111 0.21429 0.07895 +LexRank 0.07143 0.0 0.07143 0.01316 +TextRank 0.17857 0.07407 0.14286 0.05263 +Luhn 0.17857 0.07407 0.14286 0.05263 +ICSI 0.07143 0.03704 0.07143 0.01974 +f1cf516c3eef931881a3f60993f1f13aad081db7.json +UB1 0.52778 0.17143 0.30556 0.18 +UB2 0.44444 0.2 0.22222 0.175 +LexRank 0.13889 0.02857 0.08333 0.03 +TextRank 0.16667 0.02857 0.11111 0.03 +Luhn 0.11111 0.0 0.11111 0.025 +ICSI 0.22222 0.02857 0.19444 0.065 +d0ceb919bf8c17bfc0f14a9ec63e96857f84775e.json +UB1 0.5 0.15686 0.40385 0.20946 +UB2 0.38462 0.17647 0.19231 0.14189 +LexRank 0.25 0.01961 0.15385 0.06081 +TextRank 0.26923 0.01961 0.17308 0.06757 +Luhn 0.26923 0.01961 0.15385 0.06757 +ICSI 0.25 0.03922 0.15385 0.08108 +de2e66efd1954b5d898b9e6606b4e66d06c037ef.json +UB1 0.57692 0.28571 0.28205 0.27434 +UB2 0.53846 0.2987 0.26923 0.2677 +LexRank 0.29487 0.07792 0.20513 0.09735 +TextRank 0.23077 0.03896 0.11538 0.0531 +Luhn 0.11538 0.02597 0.0641 0.02655 +ICSI 0.26923 0.09091 0.15385 0.09956 +f5b518f1e4d312ac41a04f13658a60945a93c01e.json +UB1 0.49091 0.18519 0.30909 0.20382 +UB2 0.45455 0.22222 0.34545 0.20382 +LexRank 0.27273 0.07407 0.16364 0.09236 +TextRank 0.25455 0.09259 0.14545 0.07643 +Luhn 0.18182 0.01852 0.09091 0.04777 +ICSI 0.34545 0.11111 0.21818 0.09873 +cc145f6aedc9fef0ce3537b579d950e937e81f92.json +UB1 0.44792 0.10526 0.21875 0.15536 +UB2 0.35417 0.15789 0.19792 0.13214 +LexRank 0.125 0.0 0.08333 0.02143 +TextRank 0.11458 0.0 0.04167 0.01964 +Luhn 0.125 0.0 0.08333 0.025 +ICSI 0.15625 0.0 0.09375 0.03036 +ebcee506c1877faa12d4862b0ffaeca09d7ea1f4.json +UB1 0.53191 0.21505 0.23404 0.20985 +UB2 0.53191 0.30108 0.24468 0.23175 +LexRank 0.3617 0.13978 0.24468 0.14234 +TextRank 0.20213 0.01075 0.12766 0.04745 +Luhn 0.17021 0.02151 0.10638 0.04927 +ICSI 0.28723 0.05376 0.14894 0.07482 +fee6189f027858ce311cf7cff9becefa9271e192.json +UB1 0.44444 0.15094 0.14815 0.14286 +UB2 0.46296 0.20755 0.18519 0.16883 +LexRank 0.16667 0.0566 0.12963 0.05519 +TextRank 0.11111 0.0 0.05556 0.01948 +Luhn 0.18519 0.0 0.12963 0.03896 +ICSI 0.27778 0.09434 0.18519 0.08766 +cf4f3543b522d807bd6c149fd633bbcc5af8debf.json +UB1 0.52174 0.2 0.32609 0.23462 +UB2 0.5 0.24444 0.45652 0.22692 +LexRank 0.19565 0.04444 0.1087 0.05 +TextRank 0.15217 0.04444 0.13043 0.04231 +Luhn 0.15217 0.04444 0.13043 0.04231 +ICSI 0.30435 0.08889 0.17391 0.07692 +c649ad4b5f04ed961b83b1aa6e4a7e1e2513821b.json +UB1 0.33871 0.09836 0.25806 0.09831 +UB2 0.33871 0.14754 0.19355 0.14326 +LexRank 0.1129 0.0 0.08065 0.02528 +TextRank 0.08065 0.0 0.03226 0.01404 +Luhn 0.17742 0.03279 0.09677 0.05618 +ICSI 0.08065 0.0 0.06452 0.01124 +cac0b54d03e178079a7ee6ca3659a7bcf59cdcbd.json +UB1 0.37778 0.18182 0.22222 0.13386 +UB2 0.31111 0.18182 0.22222 0.12205 +LexRank 0.31111 0.11364 0.24444 0.11811 +TextRank 0.15556 0.04545 0.13333 0.03543 +Luhn 0.26667 0.09091 0.15556 0.0748 +ICSI 0.26667 0.09091 0.13333 0.0748 +d85059eaa38133c9330b383e23b26b1fb026338a.json +UB1 0.41935 0.13333 0.32258 0.14706 +UB2 0.51613 0.23333 0.25806 0.22941 +LexRank 0.12903 0.06667 0.12903 0.04118 +TextRank 0.06452 0.0 0.06452 0.01176 +Luhn 0.12903 0.03333 0.09677 0.02941 +ICSI 0.19355 0.03333 0.12903 0.04118 +c4c57be6520da18d0b60820a097bd6a6f899724c.json +UB1 0.34783 0.13636 0.21739 0.09016 +UB2 0.30435 0.13636 0.21739 0.08197 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.04348 0.0 0.04348 0.0082 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.08696 0.0 0.08696 0.01639 +bb8001def8a071ee63809ccb118f1fe09dccba55.json +UB1 0.52727 0.22222 0.34545 0.24841 +UB2 0.54545 0.33333 0.36364 0.25796 +LexRank 0.18182 0.01852 0.10909 0.04459 +TextRank 0.03636 0.01852 0.03636 0.00955 +Luhn 0.32727 0.12963 0.2 0.12102 +ICSI 0.30909 0.09259 0.18182 0.08599 +f2b97a0c31d79a94ec7ffca36da9589e2b091175.json +UB1 0.74038 0.50485 0.39423 0.47368 +UB2 0.72115 0.51456 0.40385 0.47862 +LexRank 0.31731 0.09709 0.18269 0.11513 +TextRank 0.26923 0.03883 0.13462 0.07895 +Luhn 0.28846 0.05825 0.10577 0.09868 +ICSI 0.30769 0.07767 0.15385 0.09375 +ebbd91d023fd7ca4e03052798a1948c8f48e7b0f.json +UB1 0.46053 0.12 0.19737 0.14318 +UB2 0.40789 0.2 0.25 0.15682 +LexRank 0.14474 0.0 0.07895 0.025 +TextRank 0.25 0.04 0.09211 0.07045 +Luhn 0.25 0.04 0.11842 0.07273 +ICSI 0.23684 0.0 0.13158 0.05 +f5643d48c318d4ad3b30aced04c6e7f7b6b0f3fa.json +UB1 0.40323 0.13115 0.25806 0.17697 +UB2 0.33871 0.18033 0.25806 0.16573 +LexRank 0.17742 0.03279 0.12903 0.04494 +TextRank 0.22581 0.0 0.1129 0.04494 +Luhn 0.12903 0.0 0.08065 0.02809 +ICSI 0.22581 0.03279 0.14516 0.05618 +bb4c5a7a516db80c0167a19fe8b16d6c0b2a195c.json +UB1 0.51923 0.11765 0.15385 0.15203 +UB2 0.5 0.19608 0.19231 0.18581 +LexRank 0.13462 0.0 0.09615 0.02365 +TextRank 0.30769 0.03922 0.21154 0.08108 +Luhn 0.19231 0.01961 0.09615 0.0473 +ICSI 0.26923 0.01961 0.11538 0.06757 +dd3c308a18a9726e66132ee1b92ba33d99bbe3c7.json +UB1 0.66667 0.41463 0.38095 0.33898 +UB2 0.66667 0.41463 0.38095 0.33898 +LexRank 0.16667 0.0 0.11905 0.03814 +TextRank 0.14286 0.0 0.09524 0.03814 +Luhn 0.04762 0.0 0.04762 0.00847 +ICSI 0.11905 0.0 0.07143 0.02542 +dec1bdf7fece32326efa549050e5e0b26ae4f5f9.json +UB1 0.41463 0.15 0.34146 0.12609 +UB2 0.31707 0.175 0.29268 0.10435 +LexRank 0.07317 0.0 0.04878 0.01304 +TextRank 0.09756 0.0 0.07317 0.01739 +Luhn 0.04878 0.0 0.04878 0.0087 +ICSI 0.07317 0.0 0.04878 0.01304 +bca677b6ad380ac44ee0f1803101ff6ef463dd9e.json +UB1 0.61538 0.36842 0.46154 0.36697 +UB2 0.66667 0.44737 0.48718 0.41743 +LexRank 0.23077 0.05263 0.15385 0.05505 +TextRank 0.20513 0.05263 0.17949 0.05505 +Luhn 0.20513 0.05263 0.17949 0.05505 +ICSI 0.4359 0.23684 0.25641 0.20642 +da795cc4c0ef6b25d9fe28b9de4b45e52dd3a27e.json +UB1 0.71134 0.29167 0.24742 0.24558 +UB2 0.72165 0.375 0.25773 0.27032 +LexRank 0.20619 0.0 0.1134 0.06007 +TextRank 0.16495 0.02083 0.09278 0.0424 +Luhn 0.13402 0.01042 0.1134 0.02827 +ICSI 0.38144 0.11458 0.17526 0.11837 +fb920c50c87b31a65eb011c25e9108fae64259ea.json +UB1 0.62 0.22449 0.26 0.22183 +UB2 0.62 0.30612 0.38 0.29577 +LexRank 0.3 0.10204 0.24 0.14437 +TextRank 0.26 0.12245 0.22 0.14789 +Luhn 0.24 0.08163 0.16 0.08099 +ICSI 0.3 0.10204 0.2 0.14789 +efd054df1565cc13ce8e42ffa947b0bf3c310581.json +UB1 0.56897 0.31579 0.27586 0.23795 +UB2 0.48276 0.29825 0.39655 0.26205 +LexRank 0.22414 0.03509 0.15517 0.06024 +TextRank 0.17241 0.03509 0.13793 0.04518 +Luhn 0.17241 0.0 0.08621 0.04217 +ICSI 0.22414 0.03509 0.12069 0.05422 +c8071a5ba04979583d55224a40c12c799e9f20de.json +UB1 0.60494 0.275 0.32099 0.25957 +UB2 0.5679 0.3125 0.2716 0.26809 +LexRank 0.20988 0.0625 0.1358 0.07872 +TextRank 0.2963 0.0625 0.14815 0.10638 +Luhn 0.09877 0.0 0.07407 0.02766 +ICSI 0.40741 0.175 0.19753 0.17021 +ecc97be629d06876d02c21943da585de947ecb43.json +UB1 0.35294 0.06061 0.20588 0.09574 +UB2 0.35294 0.18182 0.17647 0.15957 +LexRank 0.32353 0.06061 0.17647 0.09043 +TextRank 0.20588 0.0303 0.11765 0.04787 +Luhn 0.20588 0.0303 0.11765 0.04787 +ICSI 0.14706 0.0303 0.08824 0.03723 +bd0fa97249c0e705d852f93b93a0869cfe1d1c4c.json +UB1 0.33333 0.08571 0.19444 0.1 +UB2 0.16667 0.08571 0.13889 0.08 +LexRank 0.08333 0.0 0.05556 0.01 +TextRank 0.08333 0.0 0.05556 0.01 +Luhn 0.05556 0.0 0.05556 0.01 +ICSI 0.16667 0.05714 0.13889 0.07 +ff5b2a7431e8e716f64489d5d7089eb0ae39cb8a.json +UB1 0.53488 0.2381 0.23256 0.2314 +UB2 0.4186 0.2619 0.23256 0.22314 +LexRank 0.2093 0.0 0.09302 0.04132 +TextRank 0.13953 0.0 0.06977 0.02479 +Luhn 0.11628 0.0 0.09302 0.02066 +ICSI 0.2093 0.0 0.09302 0.04132 +cc9a9c42e0bd5eff1e434055788cf7e03d51ab21.json +UB1 0.1875 0.0 0.125 0.05 +UB2 0.0 0.0 0.0 0.0 +LexRank 0.1875 0.0 0.0625 0.025 +TextRank 0.0625 0.0 0.0625 0.0125 +Luhn 0.1875 0.0 0.0625 0.025 +ICSI 0.1875 0.0 0.125 0.05 +ed7e781337480f4f6499e807f2de76df9f7d639b.json +UB1 0.46154 0.13158 0.23077 0.11927 +UB2 0.41026 0.23684 0.33333 0.1789 +LexRank 0.05128 0.0 0.05128 0.01376 +TextRank 0.02564 0.0 0.02564 0.00459 +Luhn 0.02564 0.0 0.02564 0.00459 +ICSI 0.05128 0.0 0.05128 0.00917 +c3fb79b4d236a5c3c473cb821eaa644281739d21.json +UB1 0.46218 0.11864 0.14286 0.13324 +UB2 0.43697 0.21186 0.17647 0.15903 +LexRank 0.31092 0.04237 0.14286 0.08453 +TextRank 0.19328 0.01695 0.09244 0.04298 +Luhn 0.23529 0.0339 0.09244 0.05444 +ICSI 0.36975 0.08475 0.15126 0.10172 +ef2bd577f11c2dd7b465a00686d7f12f45149bae.json +UB1 0.32432 0.05556 0.16216 0.07282 +UB2 0.13514 0.08333 0.13514 0.07282 +LexRank 0.10811 0.0 0.08108 0.01942 +TextRank 0.08108 0.0 0.05405 0.01456 +Luhn 0.08108 0.0 0.08108 0.01942 +ICSI 0.05405 0.0 0.05405 0.00971 +dd7b5ecbd5f9ab8a4c3041faffef1e5e4492a555.json +UB1 0.55 0.17722 0.2875 0.24569 +UB2 0.5625 0.29114 0.275 0.27155 +LexRank 0.1625 0.0 0.0875 0.03017 +TextRank 0.0875 0.0 0.05 0.01724 +Luhn 0.1875 0.03797 0.1 0.05819 +ICSI 0.4875 0.21519 0.3125 0.23707 +f1030c4e2ef3b079c8bcc4457181c45e16e6c27b.json +UB1 0.27273 0.14286 0.22727 0.08621 +UB2 0.31818 0.09524 0.22727 0.09483 +LexRank 0.04545 0.0 0.04545 0.00862 +TextRank 0.18182 0.04762 0.13636 0.0431 +Luhn 0.22727 0.14286 0.18182 0.09483 +ICSI 0.0 0.0 0.0 0.0 +ca65b58564f711b15e6080d2013730c608b2f81f.json +UB1 0.38889 0.14286 0.19444 0.155 +UB2 0.38889 0.14286 0.19444 0.155 +LexRank 0.02778 0.0 0.02778 0.005 +TextRank 0.13889 0.0 0.05556 0.025 +Luhn 0.13889 0.0 0.05556 0.025 +ICSI 0.08333 0.0 0.05556 0.015 +df40371fd19f6ed56eafe35b8dbab1a2e19f2b46.json +UB1 0.41176 0.12121 0.20588 0.11702 +UB2 0.29412 0.12121 0.11765 0.09574 +LexRank 0.11765 0.0 0.11765 0.03723 +TextRank 0.08824 0.0 0.02941 0.01064 +Luhn 0.08824 0.0 0.02941 0.01064 +ICSI 0.14706 0.0303 0.08824 0.03191 +df572bf74770032e661e75ad22a649a85a57663e.json +UB1 0.56061 0.18462 0.21212 0.17632 +UB2 0.5 0.24615 0.16667 0.19211 +LexRank 0.33333 0.04615 0.15152 0.08947 +TextRank 0.07576 0.01538 0.07576 0.01842 +Luhn 0.09091 0.01538 0.07576 0.01842 +ICSI 0.34848 0.06154 0.19697 0.11053 +bf8ca2442a767d6d4a0e986d901cf643770a07d2.json +UB1 0.63953 0.41176 0.2907 0.382 +UB2 0.61628 0.42353 0.2907 0.38 +LexRank 0.22093 0.02353 0.11628 0.062 +TextRank 0.23256 0.01176 0.12791 0.054 +Luhn 0.25581 0.01176 0.12791 0.064 +ICSI 0.37209 0.02353 0.17442 0.118 +d3363a87fa0742d24af2ccbc13b677a40e16a6a3.json +UB1 0.69231 0.26316 0.33333 0.27064 +UB2 0.46154 0.23684 0.20513 0.19266 +LexRank 0.10256 0.0 0.07692 0.02294 +TextRank 0.10256 0.0 0.07692 0.01376 +Luhn 0.10256 0.0 0.07692 0.01835 +ICSI 0.20513 0.0 0.07692 0.04587 +f625d8082ff9e1f66222868864d8e0cc37e72f64.json +UB1 0.64 0.40816 0.6 0.41549 +UB2 0.64 0.40816 0.6 0.41549 +LexRank 0.44 0.20408 0.34 0.21831 +TextRank 0.44 0.20408 0.34 0.21831 +Luhn 0.2 0.0 0.12 0.03521 +ICSI 0.44 0.16327 0.26 0.20423 +be862dbd2a91cd8ddc62a80c3c827acf614d007b.json +UB1 0.53333 0.18644 0.33333 0.22093 +UB2 0.48333 0.20339 0.31667 0.20058 +LexRank 0.23333 0.0339 0.18333 0.07849 +TextRank 0.2 0.0339 0.11667 0.05814 +Luhn 0.08333 0.0 0.05 0.01744 +ICSI 0.35 0.05085 0.18333 0.11047 +e22ce897c080df08b249589678bfd64d3ffd4a15.json +UB1 0.48649 0.25 0.45946 0.2767 +UB2 0.54054 0.36111 0.35135 0.34951 +LexRank 0.21622 0.02778 0.16216 0.05825 +TextRank 0.21622 0.0 0.13514 0.0534 +Luhn 0.21622 0.0 0.13514 0.0534 +ICSI 0.2973 0.13889 0.21622 0.13592 +c81920608eed7b924ad10be45383d3b8cc266391.json +UB1 0.46 0.2449 0.36 0.21127 +UB2 0.44 0.2449 0.36 0.20775 +LexRank 0.24 0.0 0.12 0.05986 +TextRank 0.28 0.06122 0.18 0.09507 +Luhn 0.22 0.08163 0.2 0.09859 +ICSI 0.38 0.16327 0.26 0.15141 +e77cd5479b3c3e423c714dc04390cb2ca1d3b019.json +UB1 0.34848 0.01538 0.15152 0.07368 +UB2 0.31818 0.09231 0.15152 0.08158 +LexRank 0.13636 0.0 0.06061 0.02368 +TextRank 0.13636 0.0 0.06061 0.03421 +Luhn 0.04545 0.0 0.0303 0.00789 +ICSI 0.21212 0.0 0.10606 0.04474 +ec17f68899fb152a9a62a9828122c14f1a9f4417.json +UB1 0.38571 0.08696 0.2 0.12376 +UB2 0.28571 0.10145 0.14286 0.09653 +LexRank 0.22857 0.07246 0.12857 0.06683 +TextRank 0.18571 0.0 0.08571 0.03465 +Luhn 0.3 0.08696 0.14286 0.08663 +ICSI 0.22857 0.08696 0.18571 0.07921 +fe3d696d127dcf6c968be5d49bbfe5dcd8162208.json +UB1 0.39286 0.11111 0.21429 0.125 +UB2 0.28571 0.18519 0.25 0.11184 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.28571 0.07407 0.17857 0.07237 +Luhn 0.28571 0.07407 0.17857 0.07237 +ICSI 0.21429 0.03704 0.14286 0.05921 +d193cc6d11462914ae85b2dc66eb6323bc8a0163.json +UB1 0.44186 0.21429 0.16279 0.18182 +UB2 0.44186 0.21429 0.16279 0.18182 +LexRank 0.09302 0.0 0.06977 0.01653 +TextRank 0.09302 0.0 0.06977 0.01653 +Luhn 0.06977 0.0 0.04651 0.0124 +ICSI 0.13953 0.0 0.11628 0.03306 +d63e008586897ec001727d8f3baa0789964a15d2.json +UB1 0.37705 0.08333 0.18033 0.09714 +UB2 0.36066 0.21667 0.2459 0.14857 +LexRank 0.09836 0.01667 0.04918 0.02 +TextRank 0.09836 0.03333 0.06557 0.02571 +Luhn 0.13115 0.03333 0.06557 0.02571 +ICSI 0.29508 0.1 0.16393 0.07429 +c1f33faa3f809d8616a88142ec8c2b2de86e00e8.json +UB1 0.39583 0.21277 0.14583 0.13235 +UB2 0.3125 0.21277 0.14583 0.12132 +LexRank 0.1875 0.04255 0.10417 0.04044 +TextRank 0.1875 0.04255 0.10417 0.04044 +Luhn 0.1875 0.04255 0.10417 0.04044 +ICSI 0.20833 0.04255 0.08333 0.04412 +dc89f3dccb7f4d46c4247630c208267f6f01e390.json +UB1 0.52239 0.09091 0.22388 0.13731 +UB2 0.46269 0.18182 0.22388 0.17358 +LexRank 0.16418 0.0 0.08955 0.03368 +TextRank 0.02985 0.0 0.02985 0.00518 +Luhn 0.02985 0.0 0.02985 0.00518 +ICSI 0.1791 0.01515 0.08955 0.03368 +d56d0ba2b65dd030d15cc05ed4a26fa24c6ef2ef.json +UB1 0.42857 0.14815 0.32143 0.18421 +UB2 0.32143 0.18519 0.32143 0.15132 +LexRank 0.10714 0.0 0.03571 0.01974 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.14286 0.0 0.07143 0.02632 +ICSI 0.10714 0.0 0.10714 0.01974 +cf4578b563a81d2f1d74462a412e223b48024ab2.json +UB1 0.36 0.08333 0.2 0.09701 +UB2 0.36 0.16667 0.16 0.11194 +LexRank 0.24 0.08333 0.2 0.06716 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.08 0.0 0.04 0.01493 +ICSI 0.2 0.08333 0.16 0.0597 +c2d2529bcf470f1420c2cd36e4df9948bda9d398.json +UB1 0.3871 0.23333 0.19355 0.18824 +UB2 0.3871 0.23333 0.19355 0.18824 +LexRank 0.06452 0.0 0.06452 0.01765 +TextRank 0.06452 0.0 0.03226 0.00588 +Luhn 0.03226 0.0 0.03226 0.00588 +ICSI 0.25806 0.13333 0.16129 0.1 +f99bd7c931a5538686ee9ac1b1aae2e60e2e3e4a.json +UB1 0.72414 0.60714 0.48276 0.5 +UB2 0.72414 0.60714 0.48276 0.5 +LexRank 0.06897 0.0 0.06897 0.01899 +TextRank 0.17241 0.03571 0.13793 0.0443 +Luhn 0.03448 0.0 0.03448 0.00633 +ICSI 0.06897 0.0 0.06897 0.01266 +e39b6e87902c00eb0b43fdb7971ea91a001ac7e1.json +UB1 0.40385 0.11765 0.23077 0.14865 +UB2 0.32692 0.15686 0.25 0.14189 +LexRank 0.17308 0.05882 0.11538 0.06081 +TextRank 0.19231 0.05882 0.13462 0.06757 +Luhn 0.13462 0.03922 0.09615 0.03041 +ICSI 0.09615 0.0 0.07692 0.02027 +c366aaee03c5cfb948d854992531377522eceff3.json +UB1 0.37662 0.11842 0.11688 0.11211 +UB2 0.28571 0.11842 0.11688 0.07848 +LexRank 0.20779 0.03947 0.11688 0.05157 +TextRank 0.07792 0.0 0.03896 0.0157 +Luhn 0.16883 0.02632 0.06494 0.03587 +ICSI 0.15584 0.01316 0.07792 0.02915 +de2c64cff7529dd638f0c5e0ef5d0ac57cc70d8b.json +UB1 0.35135 0.16667 0.10811 0.12621 +UB2 0.27027 0.11111 0.18919 0.07767 +LexRank 0.10811 0.0 0.08108 0.02427 +TextRank 0.13514 0.0 0.05405 0.02913 +Luhn 0.13514 0.0 0.05405 0.02913 +ICSI 0.2973 0.11111 0.27027 0.12136 +c7fcb6098423747134a99bf5de9a9b0d27f45c26.json +UB1 0.58108 0.21918 0.28378 0.25234 +UB2 0.51351 0.24658 0.22973 0.2243 +LexRank 0.31081 0.08219 0.16216 0.10514 +TextRank 0.33784 0.09589 0.2027 0.11682 +Luhn 0.40541 0.13699 0.28378 0.18458 +ICSI 0.31081 0.05479 0.18919 0.09579 +e157fe3ecbc721dfd59423b6bec10e5bd1626fe5.json +UB1 0.53704 0.30189 0.40741 0.30519 +UB2 0.51852 0.30189 0.46296 0.32143 +LexRank 0.18519 0.01887 0.11111 0.04221 +TextRank 0.12963 0.01887 0.07407 0.02922 +Luhn 0.12963 0.01887 0.07407 0.02922 +ICSI 0.31481 0.13208 0.24074 0.14935 +def6844542bd0688d578bb9074a2994f58a59341.json +UB1 0.58333 0.28571 0.30556 0.215 +UB2 0.52778 0.31429 0.27778 0.205 +LexRank 0.11111 0.0 0.08333 0.025 +TextRank 0.08333 0.0 0.08333 0.015 +Luhn 0.08333 0.0 0.05556 0.015 +ICSI 0.13889 0.0 0.08333 0.025 +faaf384577a05fa26903ff8d06ce6ac2b5d42898.json +UB1 0.6375 0.27848 0.325 0.26509 +UB2 0.5875 0.36709 0.3125 0.25862 +LexRank 0.2 0.05063 0.1625 0.06034 +TextRank 0.1125 0.0 0.075 0.02371 +Luhn 0.1125 0.0 0.075 0.02371 +ICSI 0.3125 0.11392 0.15 0.10129 +f46cf32e61a4a5b77a644601f61ca13088b7a989.json +UB1 0.42105 0.12 0.19737 0.13636 +UB2 0.42105 0.22667 0.21053 0.175 +LexRank 0.21053 0.02667 0.11842 0.04773 +TextRank 0.19737 0.0 0.10526 0.03409 +Luhn 0.19737 0.0 0.10526 0.03409 +ICSI 0.32895 0.10667 0.19737 0.10682 +e0bcc10d3b4fc519267a26934ef2d95defed6297.json +UB1 0.44 0.29167 0.36 0.25373 +UB2 0.44 0.29167 0.36 0.25373 +LexRank 0.4 0.25 0.28 0.18657 +TextRank 0.12 0.0 0.08 0.02239 +Luhn 0.36 0.25 0.36 0.18657 +ICSI 0.32 0.25 0.32 0.17164 +c09b2b6178115250c12385228a745cf04c2504ff.json +UB1 0.52381 0.21951 0.28571 0.25847 +UB2 0.52381 0.26829 0.28571 0.26271 +LexRank 0.21429 0.07317 0.19048 0.09746 +TextRank 0.09524 0.0 0.07143 0.01695 +Luhn 0.09524 0.0 0.04762 0.01695 +ICSI 0.28571 0.12195 0.21429 0.13559 +de21d1679490e599e4fdcb0734415ea09c0be639.json +UB1 0.52778 0.2 0.22222 0.21 +UB2 0.36111 0.22857 0.19444 0.19 +LexRank 0.02778 0.0 0.02778 0.005 +TextRank 0.11111 0.0 0.11111 0.02 +Luhn 0.05556 0.0 0.05556 0.01 +ICSI 0.11111 0.0 0.08333 0.02 +cfaec7b0cbf3193a948d3a18d99f0f54deae63ec.json +UB1 0.78947 0.58929 0.61404 0.58282 +UB2 0.7193 0.64286 0.7193 0.60429 +LexRank 0.22807 0.01786 0.10526 0.05521 +TextRank 0.38596 0.19643 0.17544 0.16564 +Luhn 0.36842 0.17857 0.15789 0.16258 +ICSI 0.49123 0.28571 0.38596 0.26687 +f4818d76a33e03cd78ea86a1fdc96aa22779589d.json +UB1 0.34247 0.06944 0.13699 0.09479 +UB2 0.30137 0.125 0.15068 0.12322 +LexRank 0.08219 0.0 0.05479 0.01422 +TextRank 0.08219 0.0 0.06849 0.01422 +Luhn 0.08219 0.0 0.06849 0.01422 +ICSI 0.23288 0.01389 0.10959 0.04739 +f6d3fdc63cb4c8d22afbadb4d2ef0f36d5aa58db.json +UB1 0.55844 0.27632 0.23377 0.26009 +UB2 0.5974 0.35526 0.20779 0.30269 +LexRank 0.19481 0.01316 0.06494 0.03587 +TextRank 0.22078 0.01316 0.12987 0.05605 +Luhn 0.19481 0.02632 0.11688 0.04484 +ICSI 0.28571 0.10526 0.18182 0.09865 +f51601b3dc356efc030c6116f34fb135d7498232.json +UB1 0.31429 0.05882 0.14286 0.08763 +UB2 0.22857 0.14706 0.2 0.09278 +LexRank 0.11429 0.0 0.08571 0.02577 +TextRank 0.14286 0.02941 0.08571 0.04124 +Luhn 0.05714 0.0 0.05714 0.01031 +ICSI 0.08571 0.0 0.05714 0.01546 +d8b66dc7a166e4820510eef268058827e965ebcf.json +UB1 0.45946 0.22222 0.37838 0.20388 +UB2 0.54054 0.44444 0.54054 0.34466 +LexRank 0.18919 0.02778 0.13514 0.03883 +TextRank 0.18919 0.0 0.10811 0.0534 +Luhn 0.18919 0.0 0.10811 0.04854 +ICSI 0.2973 0.0 0.13514 0.07767 +f11f727fa5cd29ac9f140b68bc4feeac93e10bc5.json +UB1 0.62264 0.34615 0.33962 0.34106 +UB2 0.60377 0.34615 0.33962 0.33775 +LexRank 0.24528 0.03846 0.18868 0.10265 +TextRank 0.03774 0.0 0.03774 0.00331 +Luhn 0.03774 0.0 0.01887 0.00662 +ICSI 0.0566 0.0 0.03774 0.00993 +dc926782f65c0d991d22de6ccc593f8f975a342b.json +UB1 0.42424 0.15625 0.24242 0.13736 +UB2 0.36364 0.25 0.30303 0.24176 +LexRank 0.09091 0.03125 0.06061 0.02198 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.09091 0.03125 0.06061 0.02198 +ICSI 0.18182 0.03125 0.15152 0.04396 +f12e731528628cf3065c37b9bbd0277ade0458c6.json +UB1 0.29032 0.03333 0.16129 0.09412 +UB2 0.29032 0.16667 0.29032 0.15882 +LexRank 0.09677 0.0 0.06452 0.02353 +TextRank 0.03226 0.0 0.03226 0.00588 +Luhn 0.09677 0.0 0.06452 0.01765 +ICSI 0.09677 0.0 0.06452 0.01765 +e7f9db3ac3883de9d697d5c841f50ea01b6a285a.json +UB1 0.52688 0.18478 0.19355 0.19188 +UB2 0.48387 0.27174 0.31183 0.23247 +LexRank 0.21505 0.0 0.08602 0.04059 +TextRank 0.11828 0.02174 0.07527 0.02768 +Luhn 0.11828 0.02174 0.07527 0.02768 +ICSI 0.22581 0.04348 0.10753 0.05535 +cb4dfb2109015485c463eeeb0c159bc52e17f789.json +UB1 0.47222 0.25714 0.36111 0.2 +UB2 0.41667 0.22857 0.25 0.16 +LexRank 0.11111 0.0 0.08333 0.02 +TextRank 0.16667 0.0 0.11111 0.03 +Luhn 0.16667 0.0 0.11111 0.03 +ICSI 0.16667 0.08571 0.11111 0.06 +c5e4323271957bac88bcbe070a5ccf00c6efeee7.json +UB1 0.71845 0.48039 0.34951 0.44518 +UB2 0.75728 0.51961 0.35922 0.46346 +LexRank 0.31068 0.04902 0.12621 0.07143 +TextRank 0.18447 0.0098 0.1165 0.03821 +Luhn 0.3301 0.09804 0.18447 0.09801 +ICSI 0.49515 0.26471 0.26214 0.24751 +e1e1696de96a9365ba1f92bca9047745ffab2c2a.json +UB1 0.46377 0.14706 0.24638 0.14322 +UB2 0.4058 0.22059 0.2029 0.14824 +LexRank 0.21739 0.08824 0.14493 0.06784 +TextRank 0.17391 0.04412 0.10145 0.05025 +Luhn 0.17391 0.04412 0.10145 0.05025 +ICSI 0.28986 0.08824 0.17391 0.0804 +c66106ffd08c1cfc8d6cd395743f401c16b079ad.json +UB1 0.36364 0.09302 0.20455 0.10887 +UB2 0.13636 0.04651 0.09091 0.03629 +LexRank 0.09091 0.0 0.09091 0.02016 +TextRank 0.06818 0.0 0.04545 0.0121 +Luhn 0.11364 0.0 0.06818 0.02419 +ICSI 0.06818 0.0 0.06818 0.0121 +c2cfa123e22fa70c25e7aace091f9ccb59039460.json +UB1 0.56897 0.29825 0.25862 0.25602 +UB2 0.55172 0.36842 0.25862 0.29217 +LexRank 0.36207 0.12281 0.15517 0.13554 +TextRank 0.41379 0.22807 0.2931 0.21084 +Luhn 0.32759 0.15789 0.22414 0.14458 +ICSI 0.41379 0.22807 0.31034 0.21687 +fcce17361dd49a7059e634047fcce7806b9369d5.json +UB1 0.30556 0.08571 0.19444 0.08 +UB2 0.27778 0.08571 0.19444 0.09 +LexRank 0.08333 0.0 0.08333 0.015 +TextRank 0.02778 0.0 0.02778 0.005 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.05556 0.0 0.05556 0.01 +c8a22595ad59f16fd45f650abd47470bef3777f2.json +UB1 0.31579 0.05556 0.26316 0.12245 +UB2 0.26316 0.11111 0.15789 0.07143 +LexRank 0.26316 0.05556 0.15789 0.07143 +TextRank 0.21053 0.0 0.15789 0.05102 +Luhn 0.21053 0.0 0.15789 0.06122 +ICSI 0.26316 0.0 0.21053 0.06122 +fc8cf5d7c49e7f856fd6bde3f36a2b8c17154d44.json +UB1 0.76923 0.60526 0.76923 0.62385 +UB2 0.76923 0.60526 0.76923 0.62385 +LexRank 0.02564 0.0 0.02564 0.00459 +TextRank 0.05128 0.0 0.05128 0.00917 +Luhn 0.05128 0.0 0.05128 0.00917 +ICSI 0.20513 0.05263 0.15385 0.05505 +f121f8b2f7c57bdcc9801415eaea286629100264.json +UB1 0.78571 0.63415 0.5 0.58898 +UB2 0.78571 0.63415 0.5 0.58898 +LexRank 0.21429 0.07317 0.16667 0.07627 +TextRank 0.2619 0.09756 0.21429 0.09322 +Luhn 0.47619 0.31707 0.28571 0.26271 +ICSI 0.2619 0.07317 0.19048 0.07627 +c50e89777f54426a59bc49abe22e19bfb3131c1d.json +UB1 0.39583 0.10638 0.14583 0.14338 +UB2 0.35417 0.14894 0.125 0.11029 +LexRank 0.14583 0.0 0.125 0.03309 +TextRank 0.14583 0.0 0.125 0.02941 +Luhn 0.14583 0.0 0.125 0.02941 +ICSI 0.14583 0.0 0.08333 0.04044 +c8cab9cdedaa9f2b564b52cb67ae21369d9554fc.json +UB1 0.38636 0.11628 0.22727 0.11694 +UB2 0.31818 0.16279 0.22727 0.1129 +LexRank 0.09091 0.02326 0.09091 0.02823 +TextRank 0.13636 0.02326 0.11364 0.03629 +Luhn 0.13636 0.02326 0.11364 0.03629 +ICSI 0.11364 0.02326 0.06818 0.02419 +c6a3ee520f5dc1217157155ecfa4b60420c67cf9.json +UB1 0.44737 0.10811 0.21053 0.20283 +UB2 0.36842 0.10811 0.31579 0.18868 +LexRank 0.10526 0.0 0.07895 0.01887 +TextRank 0.23684 0.02703 0.15789 0.07075 +Luhn 0.15789 0.02703 0.10526 0.04245 +ICSI 0.18421 0.02703 0.13158 0.04717 +caf1d87f6a638c6efab26ce21ff8c884431d8eaa.json +UB1 0.38889 0.09434 0.12963 0.12013 +UB2 0.2963 0.13208 0.14815 0.11364 +LexRank 0.16667 0.0 0.09259 0.03571 +TextRank 0.16667 0.0 0.09259 0.03571 +Luhn 0.14815 0.0 0.11111 0.02597 +ICSI 0.14815 0.01887 0.11111 0.03247 +c954d150345e008a4695a62e2543c3bb0139683e.json +UB1 0.43836 0.13889 0.20548 0.13507 +UB2 0.39726 0.20833 0.17808 0.13507 +LexRank 0.23288 0.02778 0.12329 0.05924 +TextRank 0.15068 0.02778 0.12329 0.03318 +Luhn 0.13699 0.01389 0.08219 0.02607 +ICSI 0.15068 0.0 0.06849 0.02844 +f8623fe3a71faf190bcb596f663347b463c60a89.json +UB1 0.4 0.23529 0.25714 0.16495 +UB2 0.4 0.23529 0.25714 0.16495 +LexRank 0.02857 0.0 0.02857 0.00515 +TextRank 0.02857 0.0 0.02857 0.00515 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.14286 0.0 0.11429 0.03608 +e7c6604039caae6e8fb7e20a689eedf77928dd8f.json +UB1 0.58621 0.36842 0.44828 0.34036 +UB2 0.58621 0.36842 0.44828 0.34036 +LexRank 0.41379 0.17544 0.24138 0.17771 +TextRank 0.12069 0.01754 0.10345 0.03012 +Luhn 0.2069 0.01754 0.12069 0.0512 +ICSI 0.27586 0.10526 0.17241 0.11446 +c9a2dabf971cdc469b6d4c3cb59b1be6a824cce3.json +UB1 0.42857 0.16667 0.2449 0.15468 +UB2 0.30612 0.1875 0.18367 0.13669 +LexRank 0.14286 0.0 0.10204 0.02518 +TextRank 0.14286 0.02083 0.08163 0.03237 +Luhn 0.22449 0.02083 0.12245 0.05396 +ICSI 0.12245 0.0 0.08163 0.01799 +c676fad45b64c9f671c478b47d3ab27a6a493423.json +UB1 0.36842 0.10811 0.18421 0.09906 +UB2 0.31579 0.13514 0.13158 0.10849 +LexRank 0.07895 0.0 0.07895 0.01415 +TextRank 0.02632 0.0 0.02632 0.00472 +Luhn 0.13158 0.0 0.07895 0.0283 +ICSI 0.10526 0.02703 0.07895 0.01887 +f03cddb8433ea643c2524ed2c9dda242f30579ee.json +UB1 0.6 0.2449 0.32 0.28521 +UB2 0.58 0.26531 0.28 0.26408 +LexRank 0.26 0.04082 0.12 0.0669 +TextRank 0.1 0.0 0.08 0.01761 +Luhn 0.24 0.04082 0.12 0.06338 +ICSI 0.42 0.10204 0.18 0.14789 +f139abf0a4e5dcd89fc66a2d87a1330f75519ba6.json +UB1 0.30435 0.13636 0.17391 0.11475 +UB2 0.34783 0.18182 0.21739 0.14754 +LexRank 0.08696 0.0 0.08696 0.01639 +TextRank 0.04348 0.0 0.04348 0.0082 +Luhn 0.04348 0.0 0.04348 0.0082 +ICSI 0.13043 0.04545 0.08696 0.03279 +e15c70b354d008187835f0b937fbf701349cafff.json +UB1 0.6129 0.45902 0.24194 0.38483 +UB2 0.59677 0.45902 0.24194 0.3736 +LexRank 0.27419 0.08197 0.1129 0.07584 +TextRank 0.33871 0.13115 0.22581 0.12079 +Luhn 0.17742 0.0 0.09677 0.03933 +ICSI 0.35484 0.16393 0.20968 0.13483 +da8ce37a6d96d9fb67d0400f8d615c61aeb81efa.json +UB1 0.48214 0.23636 0.16071 0.21563 +UB2 0.48214 0.27273 0.16071 0.21875 +LexRank 0.19643 0.0 0.07143 0.0375 +TextRank 0.08929 0.0 0.08929 0.01875 +Luhn 0.05357 0.0 0.03571 0.00937 +ICSI 0.17857 0.01818 0.125 0.04063 +c1c65f8a3af6da67a5a4cba4f5b7d71dba6474bb.json +UB1 0.51852 0.22642 0.24074 0.24026 +UB2 0.44444 0.28302 0.37037 0.26623 +LexRank 0.11111 0.0 0.07407 0.02922 +TextRank 0.11111 0.0 0.07407 0.01948 +Luhn 0.05556 0.0 0.05556 0.00974 +ICSI 0.16667 0.0 0.07407 0.03571 +fbdcd43bd2aaed92d112cf3782f49fd57058243f.json +UB1 0.36667 0.13793 0.26667 0.10976 +UB2 0.3 0.17241 0.2 0.10366 +LexRank 0.16667 0.0 0.13333 0.02439 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.23333 0.10345 0.16667 0.07927 +ICSI 0.3 0.10345 0.2 0.08537 +f2db1fd563006f0dd4d23dc9d59d61fa62aa568b.json +UB1 0.47368 0.21622 0.39474 0.24528 +UB2 0.47368 0.21622 0.39474 0.24528 +LexRank 0.10526 0.0 0.07895 0.02358 +TextRank 0.07895 0.0 0.05263 0.01415 +Luhn 0.07895 0.0 0.05263 0.01415 +ICSI 0.07895 0.0 0.07895 0.01887 +e2335326802e6bf47f795aee793c4727c93be885.json +UB1 0.33962 0.07692 0.13208 0.07616 +UB2 0.32075 0.13462 0.18868 0.10927 +LexRank 0.13208 0.0 0.09434 0.02649 +TextRank 0.15094 0.0 0.09434 0.03642 +Luhn 0.07547 0.0 0.0566 0.01325 +ICSI 0.26415 0.05769 0.15094 0.06954 +c11313851203c87526fd9045c7098a0407e26569.json +UB1 0.43243 0.17808 0.27027 0.17991 +UB2 0.45946 0.19178 0.27027 0.18925 +LexRank 0.16216 0.05479 0.12162 0.04439 +TextRank 0.18919 0.05479 0.12162 0.05607 +Luhn 0.13514 0.0 0.08108 0.03738 +ICSI 0.2027 0.0411 0.08108 0.04439 +ea570b76ce12b2030816da61a7ebfba22ed034e7.json +UB1 0.46552 0.07018 0.2069 0.15964 +UB2 0.34483 0.17544 0.2069 0.12952 +LexRank 0.18966 0.03509 0.10345 0.0512 +TextRank 0.2069 0.07018 0.10345 0.05422 +Luhn 0.2069 0.01754 0.10345 0.05723 +ICSI 0.24138 0.08772 0.15517 0.08133 +da14e024f8d11a794e170388475dd630978388bd.json +UB1 0.47222 0.17143 0.27778 0.175 +UB2 0.38889 0.22857 0.30556 0.195 +LexRank 0.38889 0.08571 0.22222 0.12 +TextRank 0.27778 0.05714 0.13889 0.08 +Luhn 0.16667 0.02857 0.11111 0.04 +ICSI 0.38889 0.02857 0.19444 0.11 +c1e5073fb0a2d99925523e8d04a5acb9da240483.json +UB1 0.54 0.18367 0.26 0.19718 +UB2 0.42 0.20408 0.28 0.14789 +LexRank 0.32 0.14286 0.2 0.09859 +TextRank 0.32 0.14286 0.2 0.09859 +Luhn 0.26 0.06122 0.14 0.08099 +ICSI 0.3 0.08163 0.18 0.09155 +e2e6890be145b0c9f4c0fc39aab602cb7530fc80.json +UB1 0.4 0.20588 0.17143 0.17526 +UB2 0.34286 0.20588 0.17143 0.15979 +LexRank 0.08571 0.0 0.05714 0.01546 +TextRank 0.11429 0.0 0.05714 0.02062 +Luhn 0.14286 0.02941 0.08571 0.03093 +ICSI 0.2 0.0 0.11429 0.04124 +ebcc5ee666a0bafcb349277f3e2bacb614dbaf9e.json +UB1 0.43182 0.18605 0.22727 0.16129 +UB2 0.38636 0.18605 0.22727 0.14516 +LexRank 0.15909 0.0 0.11364 0.03629 +TextRank 0.06818 0.0 0.06818 0.01613 +Luhn 0.04545 0.0 0.04545 0.0121 +ICSI 0.18182 0.02326 0.13636 0.04839 +fc6c9c1602e89703f628178657a3a3ef235f5a58.json +UB1 0.61702 0.3913 0.2766 0.32331 +UB2 0.57447 0.3913 0.23404 0.30075 +LexRank 0.14894 0.0 0.06383 0.02632 +TextRank 0.08511 0.0 0.08511 0.01504 +Luhn 0.08511 0.0 0.04255 0.01504 +ICSI 0.29787 0.08696 0.19149 0.1203 +d4cfa458f2626984cb3fd670521a20f528249801.json +UB1 0.39394 0.09375 0.27273 0.1044 +UB2 0.36364 0.21875 0.21212 0.18132 +LexRank 0.09091 0.0 0.0303 0.01648 +TextRank 0.09091 0.0 0.09091 0.02198 +Luhn 0.09091 0.0 0.09091 0.02198 +ICSI 0.18182 0.03125 0.09091 0.03297 +e3fb19fbe612f4cc46996f55647c55917fce1b4c.json +UB1 0.33333 0.06818 0.17778 0.10236 +UB2 0.31111 0.15909 0.24444 0.11024 +LexRank 0.22222 0.02273 0.15556 0.06299 +TextRank 0.13333 0.02273 0.08889 0.02756 +Luhn 0.13333 0.0 0.06667 0.02362 +ICSI 0.15556 0.04545 0.13333 0.04724 +c1cb559288daa68ae5e5469cf37671baccd19902.json +UB1 0.42857 0.07407 0.28571 0.16447 +UB2 0.28571 0.07407 0.14286 0.09868 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.14286 0.0 0.07143 0.02632 +Luhn 0.14286 0.0 0.07143 0.02632 +ICSI 0.07143 0.0 0.03571 0.01316 +de78f5ca444080d7c78eb877131965d6e38e75dd.json +UB1 0.5122 0.25 0.34146 0.25217 +UB2 0.46341 0.3 0.43902 0.26087 +LexRank 0.12195 0.0 0.09756 0.03043 +TextRank 0.04878 0.0 0.04878 0.0087 +Luhn 0.29268 0.075 0.17073 0.1087 +ICSI 0.2439 0.05 0.17073 0.06522 +c80b841ee8f922dc3cfa1e14e3f68ef7afffa7f5.json +UB1 0.51667 0.16949 0.18333 0.22674 +UB2 0.43333 0.25424 0.25 0.22384 +LexRank 0.13333 0.0339 0.08333 0.03779 +TextRank 0.05 0.0 0.03333 0.01163 +Luhn 0.15 0.0 0.1 0.03488 +ICSI 0.18333 0.0339 0.1 0.04651 +d87b0f204bd48ba1511a635ad5af02587fb9b62c.json +UB1 0.53846 0.36 0.5 0.32143 +UB2 0.53846 0.44 0.46154 0.40714 +LexRank 0.11538 0.0 0.11538 0.02143 +TextRank 0.03846 0.0 0.03846 0.00714 +Luhn 0.26923 0.16 0.26923 0.15 +ICSI 0.07692 0.0 0.03846 0.01429 +c8e9400f2a43fee0034116bb8c31fbc34acf592f.json +UB1 0.66667 0.51471 0.53623 0.47487 +UB2 0.66667 0.51471 0.53623 0.47487 +LexRank 0.18841 0.01471 0.10145 0.03518 +TextRank 0.02899 0.0 0.02899 0.00503 +Luhn 0.13043 0.0 0.07246 0.02513 +ICSI 0.24638 0.01471 0.13043 0.05528 +cd8842f27ec0de619ce3c4d167b49746da9606bc.json +UB1 0.4 0.09259 0.16364 0.10828 +UB2 0.34545 0.16667 0.21818 0.12739 +LexRank 0.12727 0.0 0.07273 0.02548 +TextRank 0.14545 0.0 0.07273 0.02229 +Luhn 0.14545 0.0 0.07273 0.02229 +ICSI 0.09091 0.01852 0.09091 0.01911 +ebe504a4f0d1428b8d9b62cd9b7b5002ae66cf62.json +UB1 0.68571 0.44118 0.25714 0.36598 +UB2 0.6 0.44118 0.22857 0.35052 +LexRank 0.05714 0.0 0.02857 0.01031 +TextRank 0.05714 0.0 0.02857 0.01031 +Luhn 0.05714 0.0 0.02857 0.01031 +ICSI 0.17143 0.02941 0.14286 0.03608 +e33bdf16154ad67fe8da6b03ee7264c57cbff281.json +UB1 0.44737 0.16 0.27632 0.17273 +UB2 0.34211 0.18667 0.26316 0.15682 +LexRank 0.10526 0.0 0.05263 0.02045 +TextRank 0.07895 0.0 0.06579 0.01591 +Luhn 0.09211 0.0 0.07895 0.01818 +ICSI 0.11842 0.0 0.07895 0.02273 +f02f116e35e252a8c5510cbc1a32d306c9f1fe39.json +UB1 0.6338 0.27143 0.28169 0.27805 +UB2 0.70423 0.45714 0.42254 0.41951 +LexRank 0.33803 0.02857 0.14085 0.08049 +TextRank 0.12676 0.01429 0.08451 0.03171 +Luhn 0.32394 0.07143 0.15493 0.09512 +ICSI 0.3662 0.1 0.21127 0.14878 +d86e3acea5926c505dd490659e357c793be90fe3.json +UB1 0.67797 0.22414 0.32203 0.26923 +UB2 0.52542 0.25862 0.35593 0.26036 +LexRank 0.25424 0.03448 0.15254 0.06213 +TextRank 0.20339 0.01724 0.11864 0.04734 +Luhn 0.23729 0.01724 0.13559 0.05621 +ICSI 0.35593 0.06897 0.16949 0.10059 +d9798d780b75560ab7f3c3e4c9b3502747be3ff4.json +UB1 0.45161 0.27869 0.40323 0.23876 +UB2 0.45161 0.27869 0.3871 0.25 +LexRank 0.30645 0.11475 0.24194 0.15169 +TextRank 0.09677 0.0 0.06452 0.01966 +Luhn 0.17742 0.03279 0.12903 0.05618 +ICSI 0.30645 0.08197 0.19355 0.11236 +eebcb56858b3dac522fee289b0448b270cb2947f.json +UB1 0.74286 0.58824 0.34286 0.53608 +UB2 0.74286 0.58824 0.34286 0.53608 +LexRank 0.45714 0.26471 0.31429 0.21134 +TextRank 0.45714 0.26471 0.31429 0.21134 +Luhn 0.51429 0.23529 0.37143 0.27835 +ICSI 0.74286 0.58824 0.34286 0.53608 +c591624c3ed0177b2964121f0a7dd225bb55e822.json +UB1 0.38182 0.09259 0.23636 0.11783 +UB2 0.38182 0.22222 0.30909 0.18153 +LexRank 0.23636 0.05556 0.18182 0.06369 +TextRank 0.2 0.01852 0.10909 0.03822 +Luhn 0.2 0.05556 0.16364 0.05414 +ICSI 0.27273 0.07407 0.18182 0.08917 +d117f79e67c2f9becb9620a74d7a91cc75074709.json +UB1 0.58182 0.37037 0.4 0.35032 +UB2 0.58182 0.37037 0.4 0.35032 +LexRank 0.45455 0.22222 0.23636 0.19427 +TextRank 0.2 0.07407 0.14545 0.07006 +Luhn 0.25455 0.05556 0.14545 0.06688 +ICSI 0.25455 0.07407 0.12727 0.08917 +c22c96feb76895d3d0bcb2729c3090edd9c42483.json +UB1 0.72826 0.42857 0.45652 0.43843 +UB2 0.68478 0.47253 0.45652 0.44216 +LexRank 0.25 0.03297 0.13043 0.06343 +TextRank 0.29348 0.06593 0.13043 0.08396 +Luhn 0.19565 0.02198 0.11957 0.04664 +ICSI 0.26087 0.06593 0.17391 0.07836 +bce7c5268bc9d7f8153b43ae3d8bfd8eae58d938.json +UB1 0.43182 0.13953 0.22727 0.14113 +UB2 0.34091 0.13953 0.20455 0.10887 +LexRank 0.06818 0.0 0.06818 0.0121 +TextRank 0.09091 0.0 0.09091 0.02823 +Luhn 0.09091 0.0 0.09091 0.02823 +ICSI 0.25 0.06977 0.18182 0.09274 +d26f04753c2eaacd8f456ff20ea5e3eab1729bf9.json +UB1 0.5 0.20339 0.26667 0.20058 +UB2 0.45 0.20339 0.26667 0.19186 +LexRank 0.15 0.01695 0.08333 0.02907 +TextRank 0.16667 0.0339 0.08333 0.03488 +Luhn 0.15 0.01695 0.1 0.03779 +ICSI 0.16667 0.0339 0.13333 0.04651 +c46d08c690b25663a73fd934729e6ae0245b1a0a.json +UB1 0.5 0.26761 0.20833 0.20673 +UB2 0.51389 0.29577 0.30556 0.20913 +LexRank 0.20833 0.04225 0.11111 0.05288 +TextRank 0.47222 0.22535 0.23611 0.18029 +Luhn 0.47222 0.22535 0.23611 0.18029 +ICSI 0.31944 0.04225 0.15278 0.07933 +c8797c0c9c8526b9c9f504235297052649e3d2ab.json +UB1 0.37931 0.14286 0.31034 0.11392 +UB2 0.37931 0.14286 0.31034 0.11392 +LexRank 0.03448 0.0 0.03448 0.00633 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.10345 0.0 0.10345 0.01266 +d97950873e2f17577847de267195368650037955.json +UB1 0.28571 0.15 0.2381 0.08182 +UB2 0.28571 0.15 0.28571 0.11818 +LexRank 0.14286 0.0 0.04762 0.02727 +TextRank 0.14286 0.0 0.04762 0.02727 +Luhn 0.14286 0.0 0.04762 0.02727 +ICSI 0.2381 0.05 0.14286 0.05455 +c67cfc9f840f76d43925d792fd9e07c42c3dba01.json +UB1 0.53659 0.175 0.21951 0.21304 +UB2 0.39024 0.175 0.2439 0.19565 +LexRank 0.02439 0.0 0.02439 0.00435 +TextRank 0.07317 0.0 0.04878 0.01739 +Luhn 0.07317 0.0 0.07317 0.01304 +ICSI 0.17073 0.0 0.07317 0.03043 +d07a957553e296a89d4a1e0fb54e47de2d25bb0f.json +UB1 0.55319 0.21739 0.19149 0.21429 +UB2 0.46809 0.23913 0.17021 0.20301 +LexRank 0.19149 0.04348 0.08511 0.04511 +TextRank 0.14894 0.0 0.10638 0.03008 +Luhn 0.14894 0.0 0.10638 0.03008 +ICSI 0.17021 0.04348 0.12766 0.04135 +d37b509f78f9d53a9b23ed1db11c95fd1656cfc1.json +UB1 0.58065 0.17391 0.19355 0.22509 +UB2 0.48387 0.23913 0.21505 0.21587 +LexRank 0.30108 0.05435 0.15054 0.09963 +TextRank 0.16129 0.0 0.10753 0.04613 +Luhn 0.24731 0.05435 0.13978 0.07749 +ICSI 0.34409 0.07609 0.15054 0.10517 +d7924dbaffae970b8107b1dfd12a35a0ad0629c2.json +UB1 0.70833 0.44681 0.39583 0.45956 +UB2 0.70833 0.44681 0.39583 0.45956 +LexRank 0.16667 0.02128 0.10417 0.03309 +TextRank 0.20833 0.08511 0.14583 0.08456 +Luhn 0.27083 0.06383 0.16667 0.08456 +ICSI 0.27083 0.10638 0.20833 0.09926 +f076165a33c9224388b364b2e2477020b06d3d4c.json +UB1 0.475 0.30769 0.4 0.24554 +UB2 0.475 0.33333 0.425 0.24554 +LexRank 0.1 0.0 0.075 0.02232 +TextRank 0.075 0.0 0.075 0.00893 +Luhn 0.2 0.12821 0.175 0.10268 +ICSI 0.175 0.05128 0.175 0.06696 +d51e13a2ca4d542ee4f10e0b527117870507eb76.json +UB1 0.59459 0.44444 0.45946 0.41262 +UB2 0.62162 0.47222 0.48649 0.44175 +LexRank 0.16216 0.02778 0.13514 0.03398 +TextRank 0.40541 0.25 0.32432 0.20388 +Luhn 0.16216 0.0 0.13514 0.03398 +ICSI 0.18919 0.05556 0.10811 0.0534 +ff122f4803fe3ffda7381f7d1937ee8ea7d0044b.json +UB1 0.33333 0.10345 0.33333 0.13415 +UB2 0.3 0.13793 0.26667 0.09756 +LexRank 0.03333 0.0 0.03333 0.0061 +TextRank 0.03333 0.0 0.03333 0.0061 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.06667 0.0 0.06667 0.0122 +c6ed94d8dd6014804c52cad73f0892525713efed.json +UB1 0.54545 0.06977 0.27273 0.20968 +UB2 0.43182 0.16279 0.31818 0.19758 +LexRank 0.20455 0.02326 0.13636 0.04435 +TextRank 0.18182 0.0 0.09091 0.03226 +Luhn 0.15909 0.02326 0.11364 0.04435 +ICSI 0.34091 0.06977 0.13636 0.1129 +f820b4785b615e6b5326545916d78e7414736cef.json +UB1 0.38333 0.01695 0.16667 0.09593 +UB2 0.31667 0.13559 0.2 0.11337 +LexRank 0.2 0.01695 0.13333 0.04942 +TextRank 0.15 0.0 0.13333 0.03488 +Luhn 0.05 0.0 0.05 0.00872 +ICSI 0.23333 0.0 0.11667 0.05814 +dc008406748c587865953be6e66d8c5487944e38.json +UB1 0.58537 0.35 0.39024 0.34348 +UB2 0.4878 0.375 0.43902 0.33478 +LexRank 0.19512 0.075 0.17073 0.06522 +TextRank 0.2439 0.1 0.17073 0.12174 +Luhn 0.07317 0.0 0.07317 0.01739 +ICSI 0.31707 0.075 0.17073 0.11739 +c0f131a094673577db996b7b8823ce4f606c9fff.json +UB1 0.87179 0.76316 0.46154 0.76147 +UB2 0.87179 0.76316 0.46154 0.76147 +LexRank 0.17949 0.07895 0.15385 0.07339 +TextRank 0.20513 0.02632 0.10256 0.05046 +Luhn 0.07692 0.0 0.05128 0.00917 +ICSI 0.23077 0.07895 0.17949 0.09174 +f7e7be95083e5b2f0f0a601f98fe1086da025c32.json +UB1 0.35135 0.11111 0.18919 0.12621 +UB2 0.2973 0.13889 0.24324 0.1068 +LexRank 0.13514 0.05556 0.10811 0.03883 +TextRank 0.13514 0.0 0.08108 0.02427 +Luhn 0.08108 0.0 0.05405 0.01456 +ICSI 0.13514 0.0 0.08108 0.02427 +c98e03da527e3332137ba2314c847f1ed26a2f1c.json +UB1 0.5 0.28571 0.44444 0.29 +UB2 0.47222 0.31429 0.33333 0.265 +LexRank 0.13889 0.0 0.08333 0.025 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05556 0.0 0.05556 0.01 +ICSI 0.16667 0.11429 0.11111 0.065 +c79eb5cad2090e38f91cbec271a088f783b1608a.json +UB1 0.35 0.15789 0.3 0.18269 +UB2 0.25 0.15789 0.25 0.13462 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +d2cecc4d14c53b1e4a335f60c5acf26c716bd106.json +UB1 0.28947 0.02703 0.13158 0.06604 +UB2 0.23684 0.08108 0.15789 0.07075 +LexRank 0.02632 0.0 0.02632 0.00472 +TextRank 0.07895 0.0 0.05263 0.01415 +Luhn 0.07895 0.0 0.05263 0.01415 +ICSI 0.13158 0.0 0.07895 0.02358 +cc2909e77f67ef580b1be927591a7e5875dfaa1b.json +UB1 0.34615 0.08 0.19231 0.09286 +UB2 0.23077 0.08 0.19231 0.06429 +LexRank 0.03846 0.0 0.03846 0.00714 +TextRank 0.07692 0.0 0.07692 0.01429 +Luhn 0.03846 0.0 0.03846 0.00714 +ICSI 0.11538 0.0 0.11538 0.02857 +dc61820a67c81391707735b9ffdd2e1daf67606b.json +UB1 0.38235 0.04478 0.19118 0.09949 +UB2 0.30882 0.1194 0.19118 0.08673 +LexRank 0.19118 0.0 0.08824 0.04082 +TextRank 0.11765 0.0 0.05882 0.02041 +Luhn 0.14706 0.04478 0.08824 0.04082 +ICSI 0.20588 0.01493 0.07353 0.04082 +cd94ad428fca327811c69350ea46d74c4142200c.json +UB1 0.42857 0.14583 0.20408 0.11871 +UB2 0.40816 0.22917 0.28571 0.15827 +LexRank 0.22449 0.0 0.14286 0.04317 +TextRank 0.30612 0.08333 0.18367 0.08993 +Luhn 0.20408 0.02083 0.14286 0.04317 +ICSI 0.32653 0.0625 0.14286 0.07554 +eb32ce903f93c511c014d9781e5faeb6b7ae0760.json +UB1 0.31579 0.11111 0.15789 0.09184 +UB2 0.31579 0.16667 0.21053 0.12245 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.05263 0.0 0.05263 0.0102 +Luhn 0.05263 0.0 0.05263 0.0102 +ICSI 0.21053 0.0 0.21053 0.07143 +da994ce07a3139a4baf91c7c80cab151a3689bae.json +UB1 0.55319 0.21739 0.2766 0.25564 +UB2 0.61702 0.26087 0.3617 0.30075 +LexRank 0.21277 0.06522 0.12766 0.07895 +TextRank 0.08511 0.0 0.08511 0.01504 +Luhn 0.06383 0.0 0.06383 0.01128 +ICSI 0.14894 0.06522 0.10638 0.04511 +d422edbde485686b176e78eef954c49c3de628aa.json +UB1 0.30556 0.05714 0.22222 0.095 +UB2 0.19444 0.05714 0.13889 0.05 +LexRank 0.16667 0.0 0.11111 0.035 +TextRank 0.02778 0.0 0.02778 0.005 +Luhn 0.02778 0.0 0.02778 0.005 +ICSI 0.08333 0.0 0.05556 0.01 +e933a0aeea28e8949f33648a6c49fd4e4bddf9b9.json +UB1 0.24138 0.07143 0.2069 0.06962 +UB2 0.24138 0.10714 0.13793 0.07595 +LexRank 0.17241 0.03571 0.13793 0.0443 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.10345 0.0 0.06897 0.02532 +ICSI 0.17241 0.07143 0.10345 0.05063 +faf97ac51223febdd0a45e2895ea4880d0a73ba1.json +UB1 0.41667 0.10638 0.20833 0.13971 +UB2 0.3125 0.19149 0.22917 0.15441 +LexRank 0.25 0.04255 0.14583 0.07721 +TextRank 0.125 0.02128 0.08333 0.02574 +Luhn 0.29167 0.06383 0.16667 0.08824 +ICSI 0.20833 0.02128 0.10417 0.04779 +edd391b3b73047f67c0082fcb4bc8c9d43b9d0ac.json +UB1 0.46939 0.125 0.22449 0.17986 +UB2 0.38776 0.1875 0.20408 0.15108 +LexRank 0.26531 0.08333 0.20408 0.08993 +TextRank 0.18367 0.08333 0.16327 0.07914 +Luhn 0.16327 0.04167 0.10204 0.05036 +ICSI 0.36735 0.125 0.30612 0.13309 +deb7e5fcd7cdcab0ce6ea614dd94d9770bc61bda.json +UB1 0.35556 0.06818 0.15556 0.1063 +UB2 0.26667 0.11364 0.17778 0.08661 +LexRank 0.22222 0.0 0.11111 0.05118 +TextRank 0.22222 0.02273 0.08889 0.05512 +Luhn 0.22222 0.06818 0.15556 0.06299 +ICSI 0.22222 0.06818 0.17778 0.06299 +d940134020934be7263eb86ee08db5cd7cb88b14.json +UB1 0.39062 0.09524 0.15625 0.10054 +UB2 0.32812 0.14286 0.20312 0.10326 +LexRank 0.21875 0.03175 0.10938 0.05163 +TextRank 0.15625 0.01587 0.10938 0.04076 +Luhn 0.15625 0.01587 0.10938 0.04076 +ICSI 0.3125 0.06349 0.17188 0.09239 +bd95fd702b3914e48c0679cb5b4468cd74585d97.json +UB1 0.38462 0.0 0.19231 0.10714 +UB2 0.23077 0.08 0.23077 0.12143 +LexRank 0.03846 0.0 0.03846 0.00714 +TextRank 0.19231 0.08 0.15385 0.05714 +Luhn 0.03846 0.0 0.03846 0.00714 +ICSI 0.15385 0.0 0.07692 0.02857 +e0dafc2138a3949e0b97536ceaef7481f3898ef2.json +UB1 0.53571 0.27711 0.33333 0.29303 +UB2 0.53571 0.27711 0.33333 0.29303 +LexRank 0.13095 0.0 0.07143 0.02254 +TextRank 0.11905 0.0 0.07143 0.02254 +Luhn 0.20238 0.0241 0.09524 0.04303 +ICSI 0.25 0.06024 0.16667 0.08402 +e792602dc52d2440c851a54037a1d32eb8dd98cd.json +UB1 0.43939 0.15385 0.22727 0.14474 +UB2 0.4697 0.21538 0.18182 0.17105 +LexRank 0.09091 0.01538 0.07576 0.01842 +TextRank 0.09091 0.01538 0.09091 0.02632 +Luhn 0.07576 0.0 0.06061 0.01316 +ICSI 0.09091 0.0 0.06061 0.01842 +da11d3e2e3e738fbdba927e5d31686b017f08a5d.json +UB1 0.525 0.15385 0.275 0.22768 +UB2 0.4 0.23077 0.325 0.17857 +LexRank 0.325 0.05128 0.125 0.09375 +TextRank 0.225 0.02564 0.15 0.0625 +Luhn 0.25 0.05128 0.125 0.0625 +ICSI 0.45 0.15385 0.275 0.20536 +ed9bcb4d2a02110a63e9530176af2992799f44d6.json +UB1 0.57143 0.26471 0.42857 0.27835 +UB2 0.54286 0.26471 0.42857 0.2732 +LexRank 0.14286 0.02941 0.08571 0.03093 +TextRank 0.11429 0.0 0.08571 0.02577 +Luhn 0.17143 0.0 0.11429 0.04639 +ICSI 0.14286 0.02941 0.11429 0.02577 +fe936746a4337c09a9d39605359c0f611b743a53.json +UB1 0.70588 0.43284 0.38235 0.42092 +UB2 0.69118 0.43284 0.38235 0.41837 +LexRank 0.20588 0.02985 0.13235 0.05102 +TextRank 0.32353 0.14925 0.17647 0.14031 +Luhn 0.36765 0.14925 0.23529 0.15561 +ICSI 0.23529 0.04478 0.16176 0.06633 +fd2195ad84588890b9cc4454c740c4c6a4b172c7.json +UB1 0.39474 0.16216 0.18421 0.10377 +UB2 0.31579 0.16216 0.21053 0.09906 +LexRank 0.23684 0.05405 0.15789 0.06604 +TextRank 0.23684 0.05405 0.15789 0.06604 +Luhn 0.23684 0.05405 0.15789 0.06604 +ICSI 0.21053 0.05405 0.10526 0.06132 +da8c076263277757ea5dbb5750dca4999f382119.json +UB1 0.41667 0.11864 0.2 0.15988 +UB2 0.41667 0.13559 0.23333 0.1686 +LexRank 0.18333 0.0339 0.13333 0.0407 +TextRank 0.16667 0.0339 0.11667 0.03488 +Luhn 0.16667 0.0339 0.08333 0.03779 +ICSI 0.28333 0.10169 0.2 0.10465 +d41154ad9834aa9751148544bc0c3ab6bc1f1516.json +UB1 0.0 0.0 0.0 0.0 +UB2 0.14286 0.07407 0.14286 0.05921 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.0 0.0 0.0 0.0 +fbbba1f8fb522e645cb387dd4f9e994fe6d4c6e1.json +UB1 0.53125 0.29032 0.34375 0.19318 +UB2 0.34375 0.19355 0.28125 0.13068 +LexRank 0.15625 0.0 0.09375 0.02841 +TextRank 0.125 0.0 0.09375 0.01705 +Luhn 0.0625 0.0 0.0625 0.01136 +ICSI 0.28125 0.19355 0.15625 0.11932 +bc9eeb3e5d95f611718c89bcb45c23892782a76b.json +UB1 0.42105 0.16667 0.15789 0.10204 +UB2 0.31579 0.16667 0.26316 0.10204 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.05263 0.0 0.05263 0.0 +ICSI 0.21053 0.11111 0.15789 0.06122 +da57eb277bddc9227f57c8c140df88c8df2e0e09.json +UB1 0.46154 0.12 0.38462 0.2 +UB2 0.38462 0.16 0.34615 0.15 +LexRank 0.03846 0.0 0.03846 0.00714 +TextRank 0.03846 0.0 0.03846 0.00714 +Luhn 0.11538 0.0 0.11538 0.02857 +ICSI 0.07692 0.0 0.07692 0.01429 +fedeb9a07f063ed9398cef39aec75e92526f5868.json +UB1 0.53488 0.21429 0.30233 0.22727 +UB2 0.44186 0.2381 0.37209 0.19421 +LexRank 0.11628 0.0 0.11628 0.02066 +TextRank 0.09302 0.0 0.06977 0.01653 +Luhn 0.2093 0.02381 0.11628 0.05785 +ICSI 0.25581 0.02381 0.13953 0.06612 +e229e578b8cce58f71c5c7d51426d5afaf9e6840.json +UB1 0.5 0.27907 0.18182 0.25 +UB2 0.45455 0.30233 0.18182 0.21371 +LexRank 0.22727 0.06977 0.15909 0.06048 +TextRank 0.29545 0.13953 0.25 0.12097 +Luhn 0.29545 0.06977 0.15909 0.08468 +ICSI 0.36364 0.13953 0.25 0.1371 +bb923ad23db2bb66a80730e4b5d5022a8a3c0303.json +UB1 0.5 0.17143 0.27778 0.165 +UB2 0.47222 0.34286 0.30556 0.25 +LexRank 0.19444 0.02857 0.16667 0.06 +TextRank 0.22222 0.08571 0.16667 0.075 +Luhn 0.25 0.02857 0.11111 0.07 +ICSI 0.33333 0.08571 0.19444 0.1 +cebd831d7bbe5939be2f0e39236720ade5b98699.json +UB1 0.51724 0.21429 0.27586 0.21519 +UB2 0.48276 0.21429 0.27586 0.20886 +LexRank 0.13793 0.0 0.06897 0.02532 +TextRank 0.06897 0.0 0.03448 0.01266 +Luhn 0.06897 0.0 0.03448 0.01266 +ICSI 0.34483 0.03571 0.17241 0.10759 +e2e3c6c96c9bfa8b5c29427b3817c4a04a75cb16.json +UB1 0.41772 0.12821 0.29114 0.13974 +UB2 0.31646 0.14103 0.24051 0.11135 +LexRank 0.12658 0.0 0.07595 0.02402 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.18987 0.01282 0.10127 0.05022 +dc0b67dfa0dbbcc8070ce176341673766c4a5256.json +UB1 0.45946 0.13889 0.24324 0.15534 +UB2 0.32432 0.19444 0.18919 0.13592 +LexRank 0.05405 0.0 0.02703 0.00971 +TextRank 0.05405 0.0 0.05405 0.00971 +Luhn 0.08108 0.0 0.05405 0.01456 +ICSI 0.21622 0.05556 0.10811 0.05825 +e3369b17dce99c7e47b96a5f587496f0dde583fd.json +UB1 0.56522 0.17647 0.31884 0.20101 +UB2 0.52174 0.25 0.31884 0.23367 +LexRank 0.17391 0.01471 0.10145 0.03769 +TextRank 0.05797 0.01471 0.05797 0.01256 +Luhn 0.21739 0.02941 0.11594 0.06281 +ICSI 0.26087 0.05882 0.10145 0.07286 +f12cd640656435f7816194aaf88673fe0ee33a0f.json +UB1 0.52174 0.08824 0.26087 0.16332 +UB2 0.42029 0.16176 0.23188 0.15829 +LexRank 0.17391 0.01471 0.07246 0.03769 +TextRank 0.14493 0.01471 0.10145 0.03518 +Luhn 0.23188 0.05882 0.13043 0.06533 +ICSI 0.36232 0.10294 0.17391 0.1206 +eb434628c1f395d99f7abdae4a762e4dd2d279cf.json +UB1 0.5625 0.2766 0.3125 0.24632 +UB2 0.52083 0.2766 0.29167 0.23162 +LexRank 0.125 0.0 0.08333 0.01838 +TextRank 0.14583 0.02128 0.10417 0.03309 +Luhn 0.125 0.0 0.08333 0.01838 +ICSI 0.1875 0.04255 0.10417 0.05515 +dd7eacd35e2d64ecbdedf58ce8b50aa9078f5daa.json +UB1 0.51064 0.28261 0.38298 0.2218 +UB2 0.51064 0.28261 0.38298 0.2218 +LexRank 0.21277 0.02174 0.10638 0.07143 +TextRank 0.17021 0.04348 0.14894 0.04511 +Luhn 0.14894 0.0 0.12766 0.03383 +ICSI 0.34043 0.04348 0.17021 0.09774 +be74b05af7be7c83ce4c8a1873b7caecf8517c51.json +UB1 0.5098 0.24 0.29412 0.23103 +UB2 0.47059 0.28 0.41176 0.26897 +LexRank 0.17647 0.04 0.07843 0.04828 +TextRank 0.17647 0.0 0.09804 0.04483 +Luhn 0.11765 0.0 0.07843 0.02759 +ICSI 0.27451 0.06 0.09804 0.07241 +e780d9899cb0d91fddefe627e74c05caa1977f8f.json +UB1 0.35897 0.02632 0.20513 0.07798 +UB2 0.28205 0.18421 0.25641 0.11009 +LexRank 0.17949 0.0 0.10256 0.02752 +TextRank 0.12821 0.02632 0.07692 0.02752 +Luhn 0.12821 0.02632 0.07692 0.02752 +ICSI 0.17949 0.0 0.12821 0.04128 +d6ccc3cfa6d1a515f8ee978fa77a57effcba41e7.json +UB1 0.47059 0.16 0.31373 0.18621 +UB2 0.4902 0.22 0.33333 0.21034 +LexRank 0.21569 0.0 0.09804 0.06897 +TextRank 0.13725 0.02 0.09804 0.03103 +Luhn 0.13725 0.02 0.09804 0.03103 +ICSI 0.29412 0.02 0.15686 0.08276 +df846892c54a5f3c75129e3a25a8cc345bee4056.json +UB1 0.66667 0.4125 0.35802 0.37447 +UB2 0.62963 0.4125 0.39506 0.3617 +LexRank 0.18519 0.0 0.08642 0.04255 +TextRank 0.22222 0.025 0.11111 0.06383 +Luhn 0.22222 0.025 0.1358 0.0617 +ICSI 0.32099 0.05 0.1358 0.07234 +deb75abe674bd7786d27ef59c4285618c7a2e926.json +UB1 0.73333 0.55932 0.51667 0.55814 +UB2 0.73333 0.55932 0.51667 0.55814 +LexRank 0.1 0.0 0.06667 0.01744 +TextRank 0.11667 0.0 0.08333 0.02035 +Luhn 0.13333 0.0 0.06667 0.02616 +ICSI 0.31667 0.05085 0.18333 0.07558 +d33aa974687600268369940931b0b130d29f88c0.json +UB1 0.52564 0.23377 0.38462 0.2323 +UB2 0.47436 0.24675 0.37179 0.22345 +LexRank 0.17949 0.0 0.08974 0.03097 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.26923 0.0 0.14103 0.05752 +ICSI 0.19231 0.03896 0.11538 0.04646 +d90bcff9ab6dbb1a89b21f2525b1613662a62d2e.json +UB1 0.40541 0.19444 0.35135 0.18447 +UB2 0.35135 0.22222 0.32432 0.18447 +LexRank 0.10811 0.0 0.08108 0.02427 +TextRank 0.18919 0.02778 0.13514 0.04854 +Luhn 0.08108 0.0 0.05405 0.01456 +ICSI 0.27027 0.08333 0.16216 0.10194 +e0c894f3cdd1b3761382354ccdce1a15824afd96.json +UB1 0.35135 0.08333 0.18919 0.09709 +UB2 0.24324 0.13889 0.18919 0.08252 +LexRank 0.05405 0.0 0.02703 0.00971 +TextRank 0.05405 0.0 0.02703 0.00971 +Luhn 0.02703 0.0 0.02703 0.00485 +ICSI 0.05405 0.0 0.02703 0.00971 +f83d2daf0ed114cf2b129d9d588601d81c1b4166.json +UB1 0.375 0.12903 0.15625 0.11364 +UB2 0.375 0.12903 0.15625 0.11364 +LexRank 0.25 0.09677 0.125 0.07955 +TextRank 0.125 0.06452 0.09375 0.03977 +Luhn 0.1875 0.06452 0.1875 0.06818 +ICSI 0.21875 0.06452 0.125 0.05114 +bd582c48f3648b4c8c9cf1b5518d5bf189a813d5.json +UB1 0.47917 0.12766 0.20833 0.14706 +UB2 0.45833 0.12766 0.20833 0.14706 +LexRank 0.25 0.06383 0.20833 0.08824 +TextRank 0.22917 0.04255 0.125 0.04412 +Luhn 0.0625 0.0 0.0625 0.01103 +ICSI 0.20833 0.06383 0.14583 0.06618 +c199d6c010fdb38ff3bca19d4e0d006239ca5f74.json +UB1 0.56522 0.31111 0.34783 0.33462 +UB2 0.52174 0.35556 0.30435 0.32692 +LexRank 0.32609 0.13333 0.21739 0.13462 +TextRank 0.13043 0.04444 0.13043 0.05385 +Luhn 0.13043 0.0 0.06522 0.02308 +ICSI 0.3913 0.15556 0.17391 0.16154 +f38379125a665c6704254070f92bb04d80bb2e25.json +UB1 0.42105 0.10811 0.34211 0.14151 +UB2 0.31579 0.16216 0.23684 0.13679 +LexRank 0.10526 0.05405 0.10526 0.03302 +TextRank 0.10526 0.0 0.10526 0.01887 +Luhn 0.18421 0.02703 0.13158 0.03302 +ICSI 0.18421 0.02703 0.13158 0.05189 +dc645f3c8d344422eb83a20dbc96a7df071ece91.json +UB1 0.60714 0.25455 0.28571 0.225 +UB2 0.53571 0.23636 0.30357 0.19687 +LexRank 0.30357 0.09091 0.17857 0.10625 +TextRank 0.14286 0.03636 0.10714 0.04375 +Luhn 0.17857 0.01818 0.10714 0.04375 +ICSI 0.42857 0.14545 0.23214 0.15 +e9b45a0badea86381f126e14a29cd6136595962b.json +UB1 0.51351 0.11111 0.18919 0.17961 +UB2 0.37838 0.25 0.27027 0.18447 +LexRank 0.05405 0.0 0.05405 0.00485 +TextRank 0.21622 0.05556 0.13514 0.05825 +Luhn 0.21622 0.05556 0.13514 0.05825 +ICSI 0.10811 0.0 0.08108 0.02427 +c1cf0e21d937534639f7149e9508f74c75c9fef5.json +UB1 0.59677 0.27869 0.33871 0.2809 +UB2 0.6129 0.31148 0.35484 0.27809 +LexRank 0.22581 0.03279 0.12903 0.08146 +TextRank 0.08065 0.0 0.03226 0.01124 +Luhn 0.1129 0.0 0.06452 0.02528 +ICSI 0.24194 0.06557 0.14516 0.07022 +e5cb11e311e74e4c06f9cf323de2b65094f93e68.json +UB1 0.26667 0.06897 0.23333 0.06707 +UB2 0.23333 0.06897 0.2 0.06098 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.06667 0.0 0.03333 0.0122 +Luhn 0.03333 0.0 0.03333 0.0061 +ICSI 0.16667 0.03448 0.13333 0.04268 +d93ff7eaa8142942e9ecf95cf23d0197925fc982.json +UB1 0.38462 0.18421 0.20513 0.17431 +UB2 0.41026 0.21053 0.20513 0.18807 +LexRank 0.17949 0.0 0.10256 0.05046 +TextRank 0.07692 0.0 0.07692 0.01376 +Luhn 0.02564 0.0 0.02564 0.00459 +ICSI 0.15385 0.05263 0.10256 0.0367 +d926c15ba9f5d2c425ce588ceb9220031fc579b9.json +UB1 0.59091 0.38095 0.45455 0.30172 +UB2 0.59091 0.38095 0.45455 0.30172 +LexRank 0.09091 0.0 0.09091 0.02586 +TextRank 0.04545 0.0 0.04545 0.00862 +Luhn 0.04545 0.0 0.04545 0.00862 +ICSI 0.04545 0.0 0.04545 0.00862 +c05e7f35596f07224c878c5c926c409fe725baa5.json +UB1 0.54237 0.27586 0.27119 0.26331 +UB2 0.54237 0.34483 0.27119 0.28402 +LexRank 0.20339 0.03448 0.11864 0.04142 +TextRank 0.16949 0.01724 0.11864 0.03254 +Luhn 0.13559 0.01724 0.08475 0.02663 +ICSI 0.22034 0.01724 0.0678 0.03846 +f512392de825ff84b58468e73b12715e616342a7.json +UB1 0.42308 0.17647 0.23077 0.14865 +UB2 0.34615 0.19608 0.23077 0.14189 +LexRank 0.17308 0.03922 0.11538 0.03378 +TextRank 0.23077 0.09804 0.13462 0.07095 +Luhn 0.15385 0.01961 0.09615 0.03041 +ICSI 0.21154 0.01961 0.13462 0.0473 +d9eb1ffd7b4aa1904ed2e0a0974ddb92dd4a4b70.json +UB1 0.53659 0.20988 0.29268 0.19748 +UB2 0.5122 0.30864 0.2439 0.23529 +LexRank 0.29268 0.06173 0.15854 0.09874 +TextRank 0.19512 0.02469 0.13415 0.04832 +Luhn 0.14634 0.01235 0.08537 0.03151 +ICSI 0.34146 0.08642 0.15854 0.11134 +bb652d046d81206c3a23b68388d1e409824bd624.json +UB1 0.45833 0.04255 0.16667 0.10294 +UB2 0.29167 0.14894 0.14583 0.08088 +LexRank 0.125 0.02128 0.0625 0.02206 +TextRank 0.02083 0.0 0.02083 0.00368 +Luhn 0.02083 0.0 0.02083 0.00368 +ICSI 0.08333 0.0 0.04167 0.01471 +eca432bb0a72bd1bfc90442240e9ddc458fc08d6.json +UB1 0.43478 0.09091 0.21739 0.13934 +UB2 0.26087 0.13636 0.21739 0.09836 +LexRank 0.08696 0.0 0.08696 0.0082 +TextRank 0.13043 0.0 0.13043 0.03279 +Luhn 0.08696 0.0 0.08696 0.0082 +ICSI 0.13043 0.0 0.08696 0.01639 +c61cff1ef068cdeb9016c791d49806d189fa6ff9.json +UB1 0.53571 0.22222 0.21429 0.17105 +UB2 0.42857 0.22222 0.28571 0.19079 +LexRank 0.03571 0.0 0.03571 0.00658 +TextRank 0.03571 0.0 0.03571 0.00658 +Luhn 0.07143 0.03704 0.07143 0.01974 +ICSI 0.03571 0.0 0.03571 0.00658 +ea88c7ef0fcf06f158ec348611bc907272214b18.json +UB1 0.43333 0.13793 0.36667 0.18293 +UB2 0.36667 0.13793 0.26667 0.12195 +LexRank 0.13333 0.0 0.13333 0.02439 +TextRank 0.13333 0.0 0.1 0.0122 +Luhn 0.13333 0.0 0.1 0.0122 +ICSI 0.16667 0.03448 0.16667 0.03049 +e4401b2ec1b264586178fbf48195c49ea89cc3a7.json +UB1 0.47826 0.2 0.17391 0.15 +UB2 0.52174 0.24444 0.26087 0.17308 +LexRank 0.30435 0.13333 0.26087 0.11923 +TextRank 0.04348 0.0 0.02174 0.00769 +Luhn 0.06522 0.0 0.04348 0.01154 +ICSI 0.36957 0.11111 0.13043 0.11538 +fc4883859e2e4f8200d03a1f2f5e9290ae390863.json +UB1 0.7551 0.48454 0.36735 0.44056 +UB2 0.73469 0.51546 0.31633 0.47203 +LexRank 0.5 0.2268 0.30612 0.2535 +TextRank 0.39796 0.18557 0.26531 0.22203 +Luhn 0.5 0.2268 0.30612 0.2535 +ICSI 0.54082 0.30928 0.28571 0.31119 +ef5453f7423b176d51b779ba818faf6e7e657151.json +UB1 0.44444 0.09091 0.17778 0.14567 +UB2 0.4 0.18182 0.2 0.1378 +LexRank 0.22222 0.0 0.13333 0.05906 +TextRank 0.06667 0.0 0.04444 0.01181 +Luhn 0.06667 0.0 0.04444 0.01181 +ICSI 0.08889 0.0 0.06667 0.02362 +cf2df68b376255984274e2454438154ad27909ea.json +UB1 0.57609 0.32967 0.25 0.30597 +UB2 0.53261 0.37363 0.21739 0.3209 +LexRank 0.30435 0.05495 0.17391 0.07836 +TextRank 0.15217 0.0 0.08696 0.02985 +Luhn 0.1413 0.03297 0.08696 0.03545 +ICSI 0.3587 0.0989 0.17391 0.11194 +fcf4df06765d2b2bdb6c04f5320de819e28ae835.json +UB1 0.40984 0.08333 0.27869 0.13143 +UB2 0.39344 0.16667 0.21311 0.16857 +LexRank 0.18033 0.0 0.06557 0.04286 +TextRank 0.13115 0.05 0.11475 0.05429 +Luhn 0.08197 0.0 0.06557 0.01429 +ICSI 0.19672 0.08333 0.14754 0.08857 +be3c4c19f63b3057e89b1762d232b46d023abb31.json +UB1 0.28125 0.06452 0.1875 0.07955 +UB2 0.28125 0.12903 0.21875 0.11364 +LexRank 0.25 0.03226 0.1875 0.0625 +TextRank 0.21875 0.0 0.15625 0.07386 +Luhn 0.28125 0.16129 0.28125 0.13636 +ICSI 0.21875 0.0 0.09375 0.05682 +ee07b6ed67c72526b57be08b31a48a8a201829ea.json +UB1 0.42857 0.23529 0.37143 0.20619 +UB2 0.54286 0.38235 0.51429 0.34021 +LexRank 0.25714 0.05882 0.14286 0.07732 +TextRank 0.11429 0.0 0.08571 0.02062 +Luhn 0.31429 0.08824 0.14286 0.10309 +ICSI 0.17143 0.11765 0.17143 0.08247 +d2b34a7c547d7259fca6bdd08f004ea239011000.json +UB1 0.42308 0.12 0.34615 0.16429 +UB2 0.34615 0.12 0.30769 0.15 +LexRank 0.11538 0.0 0.03846 0.02143 +TextRank 0.11538 0.0 0.07692 0.02143 +Luhn 0.26923 0.0 0.19231 0.05714 +ICSI 0.03846 0.0 0.03846 0.00714 +e183d410d58f91a6f0dd7010e13c88f5f41b457c.json +UB1 0.35484 0.13333 0.19355 0.14706 +UB2 0.32258 0.13333 0.16129 0.14118 +LexRank 0.09677 0.0 0.09677 0.01765 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.16129 0.03333 0.12903 0.05294 +ICSI 0.12903 0.0 0.06452 0.02353 +d766e0ebfb2df07c240490f1eb489747ee0ce6fc.json +UB1 0.55172 0.28571 0.48276 0.32278 +UB2 0.41379 0.25 0.37931 0.24684 +LexRank 0.17241 0.0 0.10345 0.02532 +TextRank 0.34483 0.25 0.34483 0.22785 +Luhn 0.13793 0.0 0.10345 0.0443 +ICSI 0.34483 0.25 0.34483 0.22785 +d0e223cf7077893f235eb662166b298b2388c5ca.json +UB1 0.58824 0.32836 0.20588 0.30102 +UB2 0.54412 0.34328 0.22059 0.30357 +LexRank 0.20588 0.0 0.11765 0.04337 +TextRank 0.14706 0.0 0.10294 0.03061 +Luhn 0.30882 0.0597 0.16176 0.09184 +ICSI 0.33824 0.08955 0.22059 0.13265 +f9e985d385690237ee2c639912bcdb02ac491e6f.json +UB1 0.65455 0.35185 0.58182 0.38854 +UB2 0.61818 0.42593 0.45455 0.36306 +LexRank 0.29091 0.09259 0.16364 0.09873 +TextRank 0.16364 0.01852 0.12727 0.03185 +Luhn 0.18182 0.01852 0.10909 0.0414 +ICSI 0.45455 0.11111 0.32727 0.1879 +f0b2d907b8040ce5c89035e1a510d90fac69d7fb.json +UB1 0.47059 0.24242 0.29412 0.17553 +UB2 0.38235 0.27273 0.32353 0.19149 +LexRank 0.14706 0.0 0.11765 0.03191 +TextRank 0.11765 0.0 0.08824 0.02128 +Luhn 0.11765 0.0 0.05882 0.02128 +ICSI 0.26471 0.06061 0.20588 0.10106 +caf4f9aac7281f6d00898e38591890af93e15b14.json +UB1 0.58667 0.31081 0.37333 0.29954 +UB2 0.56 0.35135 0.36 0.29493 +LexRank 0.29333 0.09459 0.16 0.11521 +TextRank 0.13333 0.02703 0.09333 0.04378 +Luhn 0.22667 0.04054 0.10667 0.06221 +ICSI 0.44 0.27027 0.36 0.23272 +e04a9af992824d6feaa607893ddc597f04745713.json +UB1 0.5 0.16 0.34615 0.22143 +UB2 0.42308 0.24 0.23077 0.19286 +LexRank 0.07692 0.0 0.07692 0.01429 +TextRank 0.11538 0.0 0.07692 0.02857 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.07692 0.0 0.07692 0.01429 +e9cda98870bf1c0db984c2a84999921ba87bc8be.json +UB1 0.34375 0.12903 0.21875 0.11932 +UB2 0.3125 0.16129 0.25 0.13068 +LexRank 0.125 0.06452 0.125 0.03977 +TextRank 0.03125 0.0 0.03125 0.00568 +Luhn 0.15625 0.0 0.0625 0.02841 +ICSI 0.21875 0.0 0.125 0.03977 +db977a3b955409c410d800cda745d10d1568bfcc.json +UB1 0.53333 0.2069 0.4 0.22561 +UB2 0.4 0.2069 0.33333 0.17683 +LexRank 0.1 0.0 0.06667 0.01829 +TextRank 0.1 0.0 0.06667 0.0122 +Luhn 0.03333 0.0 0.03333 0.0061 +ICSI 0.2 0.03448 0.13333 0.04268 +eea84ac6af7859b8094fcb45784cbfc38c05bb07.json +UB1 0.31579 0.10811 0.26316 0.09434 +UB2 0.23684 0.08108 0.21053 0.06604 +LexRank 0.18421 0.0 0.13158 0.03302 +TextRank 0.21053 0.02703 0.10526 0.04717 +Luhn 0.18421 0.05405 0.15789 0.05189 +ICSI 0.26316 0.05405 0.15789 0.06604 +f89aaf7adaeb1674eeabaa147f9a2e14e136fd8d.json +UB1 0.52174 0.26667 0.41304 0.26154 +UB2 0.5 0.26667 0.41304 0.25769 +LexRank 0.08696 0.0 0.04348 0.01538 +TextRank 0.04348 0.0 0.02174 0.00769 +Luhn 0.13043 0.02222 0.1087 0.02692 +ICSI 0.21739 0.02222 0.13043 0.04615 +c4c196e0ccc620185f49e041aba507b04db317ec.json +UB1 0.39024 0.05 0.14634 0.0913 +UB2 0.34146 0.125 0.12195 0.08696 +LexRank 0.12195 0.025 0.09756 0.02609 +TextRank 0.09756 0.0 0.07317 0.02174 +Luhn 0.07317 0.0 0.07317 0.01304 +ICSI 0.12195 0.0 0.04878 0.02174 +d489215c15d0594c96f055bd0bbdfeea8f872463.json +UB1 0.42857 0.07407 0.32143 0.16447 +UB2 0.35714 0.14815 0.32143 0.13816 +LexRank 0.10714 0.0 0.07143 0.01316 +TextRank 0.32143 0.07407 0.28571 0.125 +Luhn 0.32143 0.07407 0.28571 0.125 +ICSI 0.25 0.11111 0.25 0.10526 +d2b24c222f3763b1d21614fcb1199a772bd8c148.json +UB1 0.44068 0.15517 0.28814 0.18047 +UB2 0.28814 0.10345 0.20339 0.11243 +LexRank 0.15254 0.05172 0.11864 0.0503 +TextRank 0.18644 0.05172 0.13559 0.05621 +Luhn 0.08475 0.0 0.05085 0.01479 +ICSI 0.18644 0.06897 0.13559 0.07101 +f1a00f7d1bc4b33271cfbd7835b5bd75efc1a459.json +UB1 0.46154 0.16 0.30769 0.22143 +UB2 0.34615 0.16 0.23077 0.12857 +LexRank 0.11538 0.0 0.11538 0.02143 +TextRank 0.11538 0.0 0.11538 0.02857 +Luhn 0.07692 0.04 0.07692 0.02143 +ICSI 0.07692 0.0 0.07692 0.02143 +c63d75c7026a36c10a9517b420a1decaa516ce18.json +UB1 0.44444 0.21127 0.25 0.1851 +UB2 0.36111 0.22535 0.16667 0.16106 +LexRank 0.26389 0.07042 0.13889 0.08654 +TextRank 0.19444 0.07042 0.13889 0.07212 +Luhn 0.13889 0.0 0.06944 0.02404 +ICSI 0.36111 0.09859 0.18056 0.10817 +d0af26fc2d44b7a7c6c2e2506586cd835b744412.json +UB1 0.80488 0.62963 0.23171 0.58193 +UB2 0.81707 0.65432 0.23171 0.59034 +LexRank 0.35366 0.11111 0.20732 0.13235 +TextRank 0.39024 0.16049 0.28049 0.18908 +Luhn 0.39024 0.14815 0.21951 0.19118 +ICSI 0.45122 0.20988 0.20732 0.23319 +eac08d23362d06b6350a3ed7aeac8e21c3206a66.json +UB1 0.4 0.13793 0.16667 0.10366 +UB2 0.36667 0.13793 0.16667 0.09756 +LexRank 0.16667 0.0 0.1 0.03049 +TextRank 0.13333 0.0 0.1 0.03659 +Luhn 0.03333 0.0 0.03333 0.0061 +ICSI 0.06667 0.0 0.06667 0.0122 +cbd55748997662a3ed338a0d28e3de581822e54b.json +UB1 0.26471 0.06061 0.17647 0.05851 +UB2 0.23529 0.15152 0.11765 0.07979 +LexRank 0.14706 0.06061 0.08824 0.04255 +TextRank 0.14706 0.0303 0.05882 0.03191 +Luhn 0.05882 0.0 0.02941 0.01064 +ICSI 0.14706 0.0303 0.08824 0.03723 +e0a332e98c915f0ad1695b92c31f29c2f06df1e7.json +UB1 0.47222 0.17143 0.22222 0.175 +UB2 0.33333 0.2 0.22222 0.165 +LexRank 0.11111 0.0 0.08333 0.015 +TextRank 0.05556 0.0 0.05556 0.01 +Luhn 0.16667 0.05714 0.11111 0.06 +ICSI 0.16667 0.05714 0.11111 0.065 +c31f37fa0a2f4321f2d2887ba826eaaffc828799.json +UB1 0.60938 0.31746 0.21875 0.33152 +UB2 0.60938 0.31746 0.21875 0.33152 +LexRank 0.15625 0.0 0.10938 0.03261 +TextRank 0.28125 0.03175 0.15625 0.08424 +Luhn 0.25 0.01587 0.125 0.07065 +ICSI 0.26562 0.01587 0.14062 0.06793 +d8d3f15a3c12453d9014d5eb691fd69f9211f19b.json +UB1 0.43284 0.15152 0.19403 0.17358 +UB2 0.44776 0.27273 0.29851 0.24611 +LexRank 0.1194 0.0 0.04478 0.02073 +TextRank 0.16418 0.01515 0.07463 0.03368 +Luhn 0.22388 0.10606 0.1194 0.09845 +ICSI 0.1791 0.04545 0.10448 0.04663 +bfb27f9bbfa399cc777bfa265fc5bb35dc7b17fa.json +UB1 0.40625 0.12903 0.15625 0.11932 +UB2 0.34375 0.19355 0.1875 0.13068 +LexRank 0.09375 0.0 0.0625 0.01705 +TextRank 0.21875 0.0 0.0625 0.03977 +Luhn 0.03125 0.0 0.03125 0.00568 +ICSI 0.21875 0.0 0.15625 0.05682 +f68f03cd8115d60774a19bd440f0e6b9364e2a3a.json +UB1 0.17647 0.125 0.17647 0.06977 +UB2 0.17647 0.125 0.17647 0.06977 +LexRank 0.05882 0.0 0.05882 0.01163 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.05882 0.0 0.05882 0.01163 +c83fbcdec4eab78daf5f7170b59c72488a35a77e.json +UB1 0.50633 0.08974 0.20253 0.13537 +UB2 0.43038 0.16667 0.21519 0.14629 +LexRank 0.26582 0.02564 0.13924 0.07424 +TextRank 0.13924 0.01282 0.08861 0.0262 +Luhn 0.10127 0.0 0.06329 0.01965 +ICSI 0.26582 0.03846 0.13924 0.07424 +d0beb58e9058d6a4dcafc646d526e9fdb62757e6.json +UB1 0.42105 0.08108 0.36842 0.15094 +UB2 0.36842 0.18919 0.34211 0.13679 +LexRank 0.23684 0.05405 0.10526 0.06132 +TextRank 0.10526 0.0 0.07895 0.0283 +Luhn 0.13158 0.0 0.10526 0.02358 +ICSI 0.18421 0.08108 0.15789 0.06132 +d0c043f85f0a41395eaf794ba88a957c5b7e7d1f.json +UB1 0.42222 0.11364 0.13333 0.12992 +UB2 0.37778 0.18182 0.2 0.16535 +LexRank 0.17778 0.0 0.08889 0.0315 +TextRank 0.11111 0.0 0.06667 0.01969 +Luhn 0.11111 0.0 0.06667 0.01969 +ICSI 0.11111 0.0 0.08889 0.02756 +cc0d079c2f15b832b39252f284bda4ea77b49c65.json +UB1 0.30769 0.18421 0.23077 0.12844 +UB2 0.30769 0.18421 0.23077 0.12844 +LexRank 0.15385 0.0 0.07692 0.03211 +TextRank 0.17949 0.0 0.15385 0.0367 +Luhn 0.12821 0.0 0.12821 0.03211 +ICSI 0.17949 0.0 0.05128 0.03211 +dce4e745401101940f5c096baff8d050e8fdad29.json +UB1 0.47368 0.10667 0.18421 0.12955 +UB2 0.46053 0.17333 0.23684 0.16364 +LexRank 0.19737 0.01333 0.11842 0.04773 +TextRank 0.18421 0.0 0.11842 0.04318 +Luhn 0.18421 0.0 0.11842 0.04318 +ICSI 0.27632 0.01333 0.15789 0.07727 +f077674a726745514d9bcd1d8748c1cb2a8f6af3.json +UB1 0.69231 0.19608 0.26923 0.22973 +UB2 0.51923 0.33333 0.36538 0.28716 +LexRank 0.30769 0.07843 0.21154 0.09459 +TextRank 0.15385 0.0 0.07692 0.03716 +Luhn 0.11538 0.0 0.05769 0.03041 +ICSI 0.40385 0.13725 0.25 0.15878 +befc2101deafaec6bd5a92fb4ddb62adbc4ac733.json +UB1 0.32143 0.07407 0.21429 0.08553 +UB2 0.25 0.11111 0.21429 0.07895 +LexRank 0.17857 0.07407 0.14286 0.04605 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.07143 0.0 0.03571 0.01316 +ICSI 0.17857 0.07407 0.14286 0.04605 +f85967078c5810ec4b795bfab243c777a9ae071e.json +UB1 0.56522 0.26667 0.43478 0.25769 +UB2 0.52174 0.24444 0.36957 0.22692 +LexRank 0.17391 0.0 0.1087 0.03462 +TextRank 0.21739 0.06667 0.15217 0.07692 +Luhn 0.17391 0.0 0.08696 0.03462 +ICSI 0.13043 0.0 0.06522 0.02692 +f5e1f4ff0a6ba299a441ef0678ccee932bfb04fe.json +UB1 0.51351 0.21918 0.17568 0.17991 +UB2 0.51351 0.24658 0.21622 0.19159 +LexRank 0.27027 0.0411 0.16216 0.07477 +TextRank 0.18919 0.0137 0.10811 0.03738 +Luhn 0.17568 0.0137 0.09459 0.04439 +ICSI 0.2973 0.10959 0.14865 0.1028 +d8f3d0a6df203ac3926ff34e9e77b085ddf094d8.json +UB1 0.35135 0.13889 0.35135 0.14563 +UB2 0.2973 0.13889 0.2973 0.13107 +LexRank 0.08108 0.0 0.08108 0.00971 +TextRank 0.18919 0.08333 0.13514 0.06311 +Luhn 0.18919 0.08333 0.13514 0.06311 +ICSI 0.08108 0.0 0.08108 0.01456 +bd6f04bde0e3d441c4ac1a91d40bc83b22a33197.json +UB1 0.56 0.25 0.48 0.35821 +UB2 0.32 0.16667 0.28 0.15672 +LexRank 0.04 0.0 0.04 0.00746 +TextRank 0.16 0.04167 0.16 0.04478 +Luhn 0.12 0.0 0.12 0.02985 +ICSI 0.0 0.0 0.0 0.0 +ca4b6ac5793abe3d74dc5afb1ab2c152a6652628.json +UB1 0.48649 0.13889 0.16216 0.17476 +UB2 0.51351 0.33333 0.51351 0.2767 +LexRank 0.21622 0.02778 0.13514 0.07282 +TextRank 0.48649 0.19444 0.24324 0.16019 +Luhn 0.2973 0.08333 0.24324 0.13107 +ICSI 0.40541 0.11111 0.24324 0.1165 +fd3cbee218724fe9c79ff656b3995fb4f3b506e8.json +UB1 0.54 0.34694 0.34 0.28521 +UB2 0.6 0.38776 0.26 0.29225 +LexRank 0.2 0.02041 0.1 0.03873 +TextRank 0.14 0.0 0.06 0.02817 +Luhn 0.14 0.0 0.06 0.02817 +ICSI 0.52 0.30612 0.32 0.25 +e3585ad735b0ba5ae8ac759e55cc849986d249b3.json +UB1 0.56863 0.26 0.41176 0.26552 +UB2 0.54902 0.28 0.43137 0.25862 +LexRank 0.19608 0.04 0.11765 0.04138 +TextRank 0.35294 0.12 0.17647 0.14138 +Luhn 0.41176 0.16 0.33333 0.17241 +ICSI 0.45098 0.18 0.35294 0.2069 +bcec11bc6bbb7aec67a0ddf2c77a34edd5b56130.json +UB1 0.7 0.57895 0.55 0.50962 +UB2 0.7 0.57895 0.55 0.50962 +LexRank 0.2 0.05263 0.2 0.04808 +TextRank 0.25 0.10526 0.2 0.05769 +Luhn 0.25 0.10526 0.2 0.05769 +ICSI 0.05 0.0 0.05 0.00962 +e31f83b3f39b902e81ba6fab6c622e8ba22e8cb5.json +UB1 0.69048 0.5122 0.57143 0.52542 +UB2 0.71429 0.53659 0.59524 0.52966 +LexRank 0.42857 0.34146 0.40476 0.33475 +TextRank 0.2619 0.12195 0.19048 0.11864 +Luhn 0.30952 0.19512 0.28571 0.19068 +ICSI 0.66667 0.46341 0.52381 0.43644 +e3922358330c79946aa72b327392c2bcfaf62d44.json +UB1 0.32692 0.05882 0.13462 0.07432 +UB2 0.32692 0.13725 0.17308 0.11149 +LexRank 0.11538 0.0 0.07692 0.02703 +TextRank 0.13462 0.01961 0.07692 0.02703 +Luhn 0.05769 0.0 0.03846 0.01014 +ICSI 0.13462 0.0 0.09615 0.02703 +c620db49e4f868b8890e01230bfa1c0368c5f84e.json +UB1 0.58242 0.37778 0.45055 0.31509 +UB2 0.57143 0.37778 0.45055 0.31321 +LexRank 0.21978 0.01111 0.13187 0.05472 +TextRank 0.1978 0.01111 0.08791 0.0434 +Luhn 0.20879 0.01111 0.08791 0.04528 +ICSI 0.24176 0.03333 0.08791 0.0566 +d91cb78998a5c1dd85ec40e7c08117a09072a136.json +UB1 0.525 0.25641 0.475 0.29911 +UB2 0.525 0.25641 0.475 0.29911 +LexRank 0.25 0.05128 0.15 0.08036 +TextRank 0.05 0.0 0.05 0.00893 +Luhn 0.05 0.0 0.05 0.00893 +ICSI 0.1 0.02564 0.1 0.02232 +fabdea5baa87d4ef1c3b14b4c8fa40452e03a64c.json +UB1 0.56522 0.26471 0.34783 0.25377 +UB2 0.46377 0.26471 0.34783 0.19347 +LexRank 0.27536 0.10294 0.23188 0.1206 +TextRank 0.26087 0.07353 0.2029 0.10302 +Luhn 0.07246 0.0 0.04348 0.01759 +ICSI 0.30435 0.14706 0.27536 0.15327 +c0c9a3eca30a5f9a55471e48e76f4baa48a4bef5.json +UB1 0.51613 0.16667 0.35484 0.22353 +UB2 0.45161 0.23333 0.22581 0.2 +LexRank 0.22581 0.0 0.12903 0.05294 +TextRank 0.16129 0.0 0.12903 0.03529 +Luhn 0.09677 0.0 0.06452 0.01765 +ICSI 0.16129 0.0 0.12903 0.02941 +bef0ed3be71456b44721bcf11cc3f5667d67000e.json +UB1 0.47619 0.1 0.19048 0.15455 +UB2 0.28571 0.1 0.14286 0.09091 +LexRank 0.09524 0.0 0.04762 0.01818 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.04762 0.0 0.04762 0.00909 +ICSI 0.09524 0.0 0.09524 0.02727 +c54eabe508d130a74d41beaacfea2ba313730122.json +UB1 0.51613 0.16393 0.29032 0.16573 +UB2 0.40323 0.18033 0.22581 0.14888 +LexRank 0.17742 0.03279 0.12903 0.03933 +TextRank 0.16129 0.03279 0.06452 0.03371 +Luhn 0.14516 0.03279 0.06452 0.0309 +ICSI 0.32258 0.08197 0.1129 0.10393 +e392af1d770701fc32c39a6dc50e03a2c4bc5954.json +UB1 0.55224 0.19697 0.28358 0.18394 +UB2 0.47761 0.21212 0.22388 0.17358 +LexRank 0.25373 0.09091 0.10448 0.07513 +TextRank 0.22388 0.06061 0.1791 0.07513 +Luhn 0.19403 0.01515 0.08955 0.04404 +ICSI 0.32836 0.09091 0.13433 0.09585 +cffe691f818916f4d2fd82e410e843aae3affb45.json +UB1 0.56 0.29167 0.28 0.29104 +UB2 0.56 0.29167 0.28 0.29104 +LexRank 0.12 0.0 0.12 0.02239 +TextRank 0.2 0.0 0.12 0.04478 +Luhn 0.32 0.08333 0.2 0.10448 +ICSI 0.4 0.20833 0.28 0.19403 +bc7cf1700039b118292b63dd742a45ef72b69a56.json +UB1 0.4 0.11111 0.2 0.10191 +UB2 0.41818 0.2037 0.27273 0.18153 +LexRank 0.09091 0.0 0.05455 0.01592 +TextRank 0.05455 0.0 0.03636 0.00955 +Luhn 0.12727 0.0 0.05455 0.01911 +ICSI 0.23636 0.01852 0.12727 0.05414 +e6c2f31e5ee1852e8f8f5bab9139995cc4c8406f.json +UB1 0.44118 0.24242 0.29412 0.24468 +UB2 0.29412 0.24242 0.29412 0.21277 +LexRank 0.05882 0.0 0.02941 0.01064 +TextRank 0.11765 0.0 0.08824 0.02128 +Luhn 0.05882 0.0 0.02941 0.01064 +ICSI 0.14706 0.0 0.11765 0.03191 +f5796dcfa5cc0f470d1aee901f25e61d4ada70c2.json +UB1 0.52174 0.31111 0.3913 0.31154 +UB2 0.45652 0.31111 0.45652 0.28462 +LexRank 0.08696 0.02222 0.06522 0.01923 +TextRank 0.04348 0.0 0.04348 0.00769 +Luhn 0.1087 0.0 0.08696 0.02692 +ICSI 0.15217 0.0 0.1087 0.03462 +fbc8779c7e0e2d2cea51ca1143fb6b1138114856.json +UB1 0.5 0.13043 0.18571 0.16089 +UB2 0.41429 0.2029 0.15714 0.15099 +LexRank 0.24286 0.02899 0.14286 0.06931 +TextRank 0.17143 0.0 0.1 0.03713 +Luhn 0.15714 0.01449 0.07143 0.0297 +ICSI 0.21429 0.01449 0.11429 0.0495 +dc4f3785b698235bfd7c06ca6449305da9b96c2e.json +UB1 0.65152 0.41538 0.5303 0.42632 +UB2 0.66667 0.46154 0.56061 0.44737 +LexRank 0.18182 0.0 0.10606 0.04211 +TextRank 0.16667 0.0 0.12121 0.03421 +Luhn 0.36364 0.16923 0.24242 0.20263 +ICSI 0.28788 0.07692 0.13636 0.09737 +c46c2151d095be5acdb9a34f5eef5ead622550e7.json +UB1 0.74667 0.5 0.49333 0.48618 +UB2 0.81333 0.7027 0.70667 0.66129 +LexRank 0.18667 0.01351 0.09333 0.05991 +TextRank 0.16 0.0 0.12 0.03917 +Luhn 0.16 0.0 0.12 0.03917 +ICSI 0.44 0.21622 0.30667 0.23502 +f1e83e020cb90ca73a293f84cc5428fae1abb553.json +UB1 0.42593 0.09434 0.14815 0.0974 +UB2 0.38889 0.15094 0.11111 0.10714 +LexRank 0.12963 0.01887 0.09259 0.02922 +TextRank 0.07407 0.0 0.05556 0.01299 +Luhn 0.12963 0.0 0.09259 0.02922 +ICSI 0.2037 0.01887 0.09259 0.03896 +bdf8ec34cc3166f7acb4591c458fc813187ab3de.json +UB1 0.44286 0.17391 0.3 0.14604 +UB2 0.44286 0.17391 0.3 0.14604 +LexRank 0.07143 0.01449 0.05714 0.01733 +TextRank 0.21429 0.02899 0.15714 0.04703 +Luhn 0.18571 0.05797 0.12857 0.05693 +ICSI 0.21429 0.02899 0.17143 0.04703 +eba0564304861ab9a2f238f188baeec90a60ed79.json +UB1 0.34146 0.025 0.14634 0.07826 +UB2 0.29268 0.1 0.12195 0.07391 +LexRank 0.07317 0.0 0.04878 0.0087 +TextRank 0.12195 0.0 0.07317 0.02174 +Luhn 0.09756 0.0 0.07317 0.01739 +ICSI 0.14634 0.0 0.12195 0.03913 +bcadde81ded04bee669e5f7ed19d5fb1d17185dd.json +UB1 0.32258 0.1 0.22581 0.08824 +UB2 0.29032 0.16667 0.19355 0.1 +LexRank 0.16129 0.1 0.16129 0.05294 +TextRank 0.03226 0.0 0.03226 0.00588 +Luhn 0.06452 0.0 0.03226 0.01176 +ICSI 0.22581 0.03333 0.12903 0.04706 +c9fdb5fca3aeb781c81e73fd7a8574362fbe9ee9.json +UB1 0.73 0.47475 0.34 0.45719 +UB2 0.73 0.49495 0.33 0.45548 +LexRank 0.28 0.06061 0.14 0.0839 +TextRank 0.51 0.22222 0.34 0.25171 +Luhn 0.51 0.22222 0.34 0.25171 +ICSI 0.52 0.29293 0.22 0.29452 +cb95d9b986496c615c04cf3328af43162ccc206c.json +UB1 0.53968 0.27419 0.25397 0.25691 +UB2 0.55556 0.32258 0.26984 0.3011 +LexRank 0.19048 0.08065 0.15873 0.06077 +TextRank 0.09524 0.0 0.06349 0.01934 +Luhn 0.09524 0.0 0.06349 0.01934 +ICSI 0.28571 0.04839 0.15873 0.07182 +c2d2fa19b72f266310a76582ca87bd7a76a85ab1.json +UB1 0.44444 0.23077 0.33333 0.18493 +UB2 0.40741 0.23077 0.33333 0.17123 +LexRank 0.03704 0.0 0.03704 0.00685 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.03704 0.0 0.03704 0.00685 +ICSI 0.14815 0.0 0.07407 0.0274 +d71eb57a59aeb3d0ff9973875080de37aed80c9f.json +UB1 0.5 0.15556 0.21739 0.17692 +UB2 0.34783 0.2 0.19565 0.16154 +LexRank 0.1087 0.0 0.06522 0.03077 +TextRank 0.08696 0.0 0.08696 0.01538 +Luhn 0.04348 0.0 0.04348 0.00769 +ICSI 0.1087 0.0 0.08696 0.01923 +c8445a304a0fe5f4155baddfca77c40fb16b3f3e.json +UB1 0.61364 0.32184 0.40909 0.31641 +UB2 0.59091 0.4023 0.45455 0.34375 +LexRank 0.27273 0.04598 0.17045 0.08398 +TextRank 0.20455 0.01149 0.13636 0.05078 +Luhn 0.26136 0.02299 0.14773 0.07031 +ICSI 0.32955 0.04598 0.15909 0.0957 +ca10c77028c7b708a5f995e16f0c96681a9d044a.json +UB1 0.47826 0.22222 0.36957 0.23077 +UB2 0.45652 0.26667 0.28261 0.24231 +LexRank 0.13043 0.0 0.06522 0.02308 +TextRank 0.21739 0.0 0.13043 0.03846 +Luhn 0.15217 0.02222 0.13043 0.04231 +ICSI 0.17391 0.0 0.1087 0.03462 +d7402380ed7ac1f10e683734088f6f912356a16c.json +UB1 0.34375 0.06452 0.25 0.11364 +UB2 0.15625 0.09677 0.15625 0.05114 +LexRank 0.0625 0.0 0.0625 0.01136 +TextRank 0.0625 0.0 0.0625 0.01136 +Luhn 0.15625 0.09677 0.15625 0.08523 +ICSI 0.0625 0.0 0.0625 0.01136 +c6842dab1782313592b2870c6e5b257d0e6dbfaa.json +UB1 0.65957 0.3913 0.34043 0.35714 +UB2 0.68085 0.47826 0.46809 0.46241 +LexRank 0.17021 0.02174 0.10638 0.03759 +TextRank 0.17021 0.02174 0.10638 0.03759 +Luhn 0.17021 0.04348 0.10638 0.03383 +ICSI 0.34043 0.21739 0.29787 0.20301 +c3c15d23a9ddb3fdc4612232e2d9fbe61d314180.json +UB1 0.6729 0.41509 0.33645 0.38658 +UB2 0.6729 0.42453 0.33645 0.39297 +LexRank 0.24299 0.00943 0.11215 0.05911 +TextRank 0.15888 0.0 0.09346 0.03195 +Luhn 0.3271 0.07547 0.15888 0.10543 +ICSI 0.36449 0.06604 0.15888 0.09744 +f9dd2229200e943b50687f7a32c9613c0a1a92dd.json +UB1 0.58065 0.22826 0.29032 0.23432 +UB2 0.53763 0.27174 0.22581 0.22509 +LexRank 0.31183 0.05435 0.12903 0.07749 +TextRank 0.1828 0.02174 0.09677 0.0369 +Luhn 0.25806 0.02174 0.10753 0.05351 +ICSI 0.32258 0.05435 0.13978 0.0941 +fd54a05ec0b6adf29001fdf85ec093f73d68b9e4.json +UB1 0.44444 0.15385 0.18519 0.13699 +UB2 0.44444 0.15385 0.18519 0.13699 +LexRank 0.22222 0.07692 0.11111 0.06164 +TextRank 0.07407 0.0 0.07407 0.0137 +Luhn 0.07407 0.0 0.07407 0.0137 +ICSI 0.25926 0.07692 0.18519 0.06849 +f66ca64278c871455ce50dc0daa5f150255b9993.json +UB1 0.6044 0.37778 0.46154 0.35849 +UB2 0.54945 0.41111 0.48352 0.34906 +LexRank 0.17582 0.01111 0.08791 0.03962 +TextRank 0.12088 0.01111 0.07692 0.0283 +Luhn 0.18681 0.01111 0.0989 0.04906 +ICSI 0.37363 0.16667 0.21978 0.15094 +ce55fa1b38b33e8a1791c9449d35c33664f3ac16.json +UB1 0.78182 0.74074 0.76364 0.67834 +UB2 0.78182 0.74074 0.76364 0.67834 +LexRank 0.16364 0.0 0.09091 0.03503 +TextRank 0.16364 0.0 0.10909 0.03185 +Luhn 0.16364 0.0 0.10909 0.03185 +ICSI 0.21818 0.0 0.10909 0.04777 +c52f462560546e99eddb1aa40aa6b790ac1ae516.json +UB1 0.34375 0.09677 0.1875 0.10795 +UB2 0.28125 0.19355 0.1875 0.10795 +LexRank 0.03125 0.0 0.03125 0.00568 +TextRank 0.0625 0.0 0.03125 0.01136 +Luhn 0.0625 0.0 0.0625 0.01136 +ICSI 0.25 0.06452 0.15625 0.05682 +c8a0df846945cde0c66ee02cb0fdbd9796919576.json +UB1 0.425 0.07692 0.275 0.14286 +UB2 0.275 0.12821 0.2 0.10268 +LexRank 0.15 0.0 0.1 0.03571 +TextRank 0.225 0.02564 0.15 0.05357 +Luhn 0.1 0.0 0.075 0.01339 +ICSI 0.175 0.0 0.15 0.04018 +c2c189d84881e36c9198d19ca42353451665acb5.json +UB1 0.5 0.02222 0.19565 0.14231 +UB2 0.36957 0.15556 0.15217 0.12308 +LexRank 0.15217 0.0 0.08696 0.03077 +TextRank 0.17391 0.0 0.1087 0.04231 +Luhn 0.17391 0.0 0.1087 0.04231 +ICSI 0.26087 0.0 0.1087 0.06154 +faa730a8306b06307b3d652007510b2a1b7ec32f.json +UB1 0.36 0.125 0.28 0.13433 +UB2 0.36 0.125 0.28 0.13433 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.04 0.0 0.04 0.00746 +Luhn 0.08 0.0 0.04 0.01493 +ICSI 0.32 0.08333 0.16 0.10448 +c7f1152da1304716a06271ef1b19bec092264f03.json +UB1 0.5 0.16393 0.24194 0.19382 +UB2 0.43548 0.2459 0.22581 0.19382 +LexRank 0.14516 0.0 0.09677 0.03371 +TextRank 0.14516 0.04918 0.09677 0.03933 +Luhn 0.20968 0.01639 0.09677 0.05056 +ICSI 0.19355 0.04918 0.14516 0.05056 +ed6a75cb9e2184511ba823abf7e129a6ee50a5b0.json +UB1 0.38095 0.09756 0.2381 0.10593 +UB2 0.33333 0.09756 0.19048 0.09322 +LexRank 0.09524 0.0 0.04762 0.01695 +TextRank 0.09524 0.0 0.07143 0.01695 +Luhn 0.16667 0.02439 0.16667 0.04661 +ICSI 0.16667 0.02439 0.07143 0.0339 +d1c43ce6a894a7ab33da03712b8d94490ffe08cd.json +UB1 0.44643 0.10909 0.16071 0.13437 +UB2 0.39286 0.2 0.17857 0.15 +LexRank 0.17857 0.0 0.08929 0.03125 +TextRank 0.17857 0.01818 0.08929 0.03125 +Luhn 0.17857 0.0 0.08929 0.03125 +ICSI 0.28571 0.07273 0.16071 0.07812 +cf33f7fa4cd290ba0747ea7a66269037b941f8bf.json +UB1 0.50704 0.15714 0.32394 0.2 +UB2 0.49296 0.22857 0.33803 0.21951 +LexRank 0.29577 0.1 0.16901 0.10244 +TextRank 0.16901 0.02857 0.09859 0.04634 +Luhn 0.26761 0.07143 0.15493 0.09024 +ICSI 0.26761 0.07143 0.12676 0.09024 +d9b7215f5db05284b214d3c8a01b97822d5d7274.json +UB1 0.55769 0.31373 0.26923 0.22635 +UB2 0.53846 0.31373 0.32692 0.22973 +LexRank 0.11538 0.01961 0.07692 0.02365 +TextRank 0.07692 0.0 0.07692 0.01351 +Luhn 0.15385 0.01961 0.09615 0.03041 +ICSI 0.17308 0.0 0.09615 0.03378 +d4b9a825bc09d1dc5e8da45c630ac846f5c1d26e.json +UB1 0.48148 0.23077 0.44444 0.29452 +UB2 0.55556 0.34615 0.40741 0.33562 +LexRank 0.03704 0.0 0.03704 0.00685 +TextRank 0.11111 0.0 0.11111 0.0274 +Luhn 0.03704 0.0 0.03704 0.00685 +ICSI 0.03704 0.0 0.03704 0.00685 +c4fd1c74095de217213c2a4abd3555775f105048.json +UB1 0.54348 0.2 0.34783 0.21154 +UB2 0.54348 0.2 0.34783 0.21154 +LexRank 0.17391 0.02222 0.1087 0.04231 +TextRank 0.06522 0.0 0.04348 0.01154 +Luhn 0.06522 0.0 0.04348 0.01154 +ICSI 0.13043 0.0 0.06522 0.02692 +ef006c9a939e08784e32ac965f81a3132e55d151.json +UB1 0.40299 0.09091 0.23881 0.11917 +UB2 0.28358 0.10606 0.16418 0.07772 +LexRank 0.19403 0.04545 0.10448 0.0544 +TextRank 0.08955 0.0 0.07463 0.02332 +Luhn 0.14925 0.01515 0.10448 0.03109 +ICSI 0.1194 0.0 0.07463 0.02332 +dbe0db676e1959bb24c27adb407bdf5ea5be8044.json +UB1 0.53125 0.25806 0.28125 0.19886 +UB2 0.46875 0.25806 0.15625 0.17614 +LexRank 0.0625 0.0 0.0625 0.01136 +TextRank 0.0625 0.0 0.0625 0.01136 +Luhn 0.125 0.0 0.09375 0.02273 +ICSI 0.125 0.0 0.125 0.02273 +d865a097afa91a4d660db7ef7525df92bb3316e5.json +UB1 0.40476 0.09756 0.16667 0.12288 +UB2 0.30952 0.2439 0.2619 0.15678 +LexRank 0.2619 0.12195 0.19048 0.11864 +TextRank 0.16667 0.02439 0.11905 0.03814 +Luhn 0.21429 0.07317 0.11905 0.05932 +ICSI 0.2619 0.04878 0.16667 0.06356 +d65230b8fa30990ffcdc002d47e6ba045b283897.json +UB1 0.63043 0.4 0.5 0.36923 +UB2 0.6087 0.42222 0.47826 0.33846 +LexRank 0.34783 0.08889 0.19565 0.12308 +TextRank 0.36957 0.17778 0.26087 0.17692 +Luhn 0.30435 0.08889 0.19565 0.11154 +ICSI 0.43478 0.24444 0.30435 0.23846 +fcdc37ac6b21c82e5c483e77af00a749bfeeefc5.json +UB1 0.3913 0.06667 0.19565 0.11923 +UB2 0.32609 0.13333 0.26087 0.11538 +LexRank 0.02174 0.0 0.02174 0.00385 +TextRank 0.13043 0.0 0.06522 0.02692 +Luhn 0.13043 0.0 0.06522 0.02692 +ICSI 0.17391 0.0 0.08696 0.04231 +e91ae83a4986229d36535984dfa176a2a3847821.json +UB1 0.59016 0.28333 0.16393 0.23429 +UB2 0.57377 0.3 0.14754 0.23714 +LexRank 0.18033 0.05 0.11475 0.05143 +TextRank 0.13115 0.01667 0.08197 0.02857 +Luhn 0.08197 0.01667 0.06557 0.01714 +ICSI 0.22951 0.05 0.11475 0.06571 +fe2e0b96c9bcffcea9b19f64f78d1bcf4f4d41ed.json +UB1 0.45833 0.10638 0.22917 0.17647 +UB2 0.3125 0.12766 0.22917 0.10662 +LexRank 0.25 0.08511 0.14583 0.10294 +TextRank 0.22917 0.08511 0.16667 0.09926 +Luhn 0.16667 0.04255 0.10417 0.04779 +ICSI 0.22917 0.08511 0.16667 0.08456 +d59f79fba3f06d044cfd59968b3865be590fc75b.json +UB1 0.5 0.10127 0.175 0.1444 +UB2 0.425 0.13924 0.1375 0.14655 +LexRank 0.25 0.02532 0.1 0.07328 +TextRank 0.225 0.02532 0.0875 0.05388 +Luhn 0.1 0.0 0.0625 0.02155 +ICSI 0.275 0.02532 0.0875 0.06681 +c62b8aa189555ca03c767d159dc53eabe61456bd.json +UB1 0.4 0.18919 0.17333 0.16129 +UB2 0.45333 0.24324 0.25333 0.20737 +LexRank 0.17333 0.01351 0.10667 0.03917 +TextRank 0.16 0.04054 0.09333 0.04378 +Luhn 0.16 0.04054 0.09333 0.04378 +ICSI 0.2 0.05405 0.13333 0.0576 +bfd8cba9b312259c08908f6e93bcf5b95d4567a5.json +UB1 0.41176 0.15152 0.26471 0.17021 +UB2 0.35294 0.18182 0.26471 0.17553 +LexRank 0.17647 0.0 0.08824 0.03723 +TextRank 0.11765 0.0303 0.05882 0.0266 +Luhn 0.08824 0.0 0.05882 0.01064 +ICSI 0.17647 0.0 0.11765 0.03723 +d66904ab2dcb8ce594f44f00e5e139789062706d.json +UB1 0.43478 0.18182 0.26087 0.14754 +UB2 0.34783 0.18182 0.26087 0.12295 +LexRank 0.17391 0.04545 0.13043 0.04918 +TextRank 0.08696 0.0 0.04348 0.01639 +Luhn 0.08696 0.0 0.08696 0.01639 +ICSI 0.04348 0.0 0.04348 0.0082 +d6bd8f6a4e50c68088efeb2b6f230038ea0eea2e.json +UB1 0.64935 0.36842 0.33766 0.34081 +UB2 0.68831 0.47368 0.41558 0.43274 +LexRank 0.2987 0.10526 0.14286 0.10762 +TextRank 0.2987 0.14474 0.15584 0.13453 +Luhn 0.18182 0.02632 0.11688 0.04036 +ICSI 0.35065 0.09211 0.19481 0.13229 +d3806b2e7844ceef3cb402e348d1816cae6e9a47.json +UB1 0.59459 0.30556 0.35135 0.26214 +UB2 0.59459 0.30556 0.35135 0.26214 +LexRank 0.2973 0.13889 0.24324 0.14078 +TextRank 0.27027 0.02778 0.18919 0.06796 +Luhn 0.13514 0.0 0.10811 0.02427 +ICSI 0.2973 0.16667 0.21622 0.13107 +eff8787a1af6b336f09e224aae30ef966573947d.json +UB1 0.41667 0.22857 0.38889 0.235 +UB2 0.41667 0.22857 0.38889 0.235 +LexRank 0.08333 0.0 0.05556 0.02 +TextRank 0.11111 0.0 0.08333 0.02 +Luhn 0.05556 0.0 0.02778 0.01 +ICSI 0.08333 0.0 0.05556 0.02 +c0527c0a21344bb1a3d0a8905134073cb5d13ab3.json +UB1 0.52941 0.27273 0.35294 0.23404 +UB2 0.5 0.36364 0.41176 0.25 +LexRank 0.08824 0.0 0.05882 0.01596 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.05882 0.0 0.02941 0.01064 +ca520f3a4e9745fffcc62cef03b0d65c9e5cb5b6.json +UB1 0.64773 0.47126 0.25 0.4082 +UB2 0.625 0.47126 0.21591 0.44336 +LexRank 0.20455 0.0 0.09091 0.04492 +TextRank 0.18182 0.0 0.09091 0.03906 +Luhn 0.30682 0.17241 0.22727 0.16797 +ICSI 0.32955 0.05747 0.14773 0.08203 +f8a4cfcff6f24bf0c672b5c5c3b8809e9f3ce910.json +UB1 0.38776 0.14583 0.28571 0.15468 +UB2 0.34694 0.16667 0.26531 0.14748 +LexRank 0.18367 0.04167 0.12245 0.05396 +TextRank 0.10204 0.0 0.06122 0.01439 +Luhn 0.10204 0.0 0.06122 0.01439 +ICSI 0.16327 0.0 0.08163 0.03597 +e003f6f024dd84784725834afca6a67cedbfd295.json +UB1 0.45652 0.22222 0.30435 0.21154 +UB2 0.5 0.33333 0.28261 0.27692 +LexRank 0.1087 0.0 0.06522 0.01923 +TextRank 0.1087 0.0 0.08696 0.01923 +Luhn 0.13043 0.0 0.1087 0.02692 +ICSI 0.08696 0.0 0.06522 0.01923 +d385ec100603990feb47fbaa8cca816fe380fc39.json +UB1 0.61905 0.39024 0.45238 0.30508 +UB2 0.61905 0.39024 0.45238 0.30508 +LexRank 0.09524 0.02439 0.07143 0.02119 +TextRank 0.07143 0.0 0.04762 0.01271 +Luhn 0.07143 0.0 0.07143 0.01695 +ICSI 0.40476 0.21951 0.2619 0.18644 +cb830be0fd7dfeab9b1765e5f6ee7b70b2740a9a.json +UB1 0.39535 0.04762 0.23256 0.1405 +UB2 0.37209 0.09524 0.25581 0.13223 +LexRank 0.23256 0.0 0.13953 0.04959 +TextRank 0.18605 0.02381 0.11628 0.05785 +Luhn 0.18605 0.0 0.11628 0.04132 +ICSI 0.32558 0.02381 0.16279 0.08264 +d1d1db2e78070b87d89a5c3d98f946d508ee9908.json +UB1 0.54167 0.25532 0.375 0.20956 +UB2 0.52083 0.2766 0.375 0.21324 +LexRank 0.04167 0.0 0.04167 0.00735 +TextRank 0.125 0.02128 0.08333 0.04044 +Luhn 0.04167 0.0 0.04167 0.00368 +ICSI 0.0625 0.0 0.04167 0.01103 +f42d73097bf83763bf7d981ef8cbca57634491d3.json +UB1 0.54237 0.17241 0.23729 0.22485 +UB2 0.42373 0.18966 0.23729 0.16864 +LexRank 0.18644 0.01724 0.10169 0.04734 +TextRank 0.10169 0.0 0.05085 0.01775 +Luhn 0.10169 0.0 0.05085 0.01775 +ICSI 0.25424 0.0 0.08475 0.06805 +f656b38aa9060247e36a911fd6121784fd84b7a4.json +UB1 0.39394 0.15625 0.30303 0.14835 +UB2 0.36364 0.15625 0.33333 0.15934 +LexRank 0.12121 0.0 0.06061 0.02198 +TextRank 0.15152 0.0 0.09091 0.02747 +Luhn 0.18182 0.03125 0.18182 0.05495 +ICSI 0.09091 0.03125 0.06061 0.02198 +f75ade869f44d75c92d6f213cb895474c2ef97e5.json +UB1 0.62069 0.31579 0.31034 0.28012 +UB2 0.55172 0.31579 0.34483 0.28313 +LexRank 0.37931 0.14035 0.2931 0.1747 +TextRank 0.22414 0.05263 0.13793 0.08133 +Luhn 0.24138 0.05263 0.18966 0.08133 +ICSI 0.36207 0.21053 0.2069 0.17771 +d45649ab8e5c2286d6d4bf2f0e58962a9f2a1c66.json +UB1 0.34211 0.02703 0.26316 0.11321 +UB2 0.28947 0.08108 0.18421 0.09906 +LexRank 0.26316 0.02703 0.15789 0.09434 +TextRank 0.15789 0.0 0.07895 0.0283 +Luhn 0.07895 0.0 0.07895 0.02358 +ICSI 0.13158 0.0 0.07895 0.03302 +e000adb41f9dad5bdaaf79446c43028b5f6824b5.json +UB1 0.41667 0.22857 0.38889 0.205 +UB2 0.38889 0.25714 0.36111 0.195 +LexRank 0.08333 0.0 0.08333 0.015 +TextRank 0.11111 0.02857 0.08333 0.025 +Luhn 0.05556 0.0 0.02778 0.01 +ICSI 0.16667 0.02857 0.13889 0.035 +c167895678c6deb87102d6c5c447e750ab17b49e.json +UB1 0.57143 0.21951 0.40476 0.25847 +UB2 0.47619 0.21951 0.35714 0.19492 +LexRank 0.2381 0.02439 0.16667 0.07203 +TextRank 0.28571 0.02439 0.14286 0.0678 +Luhn 0.30952 0.02439 0.21429 0.08475 +ICSI 0.21429 0.0 0.11905 0.04237 +e13819de7c3741566a667a4b48ee60924ff1e315.json +UB1 0.3 0.10256 0.2 0.07143 +UB2 0.275 0.12821 0.25 0.08929 +LexRank 0.05 0.0 0.025 0.00893 +TextRank 0.05 0.0 0.05 0.00893 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.075 0.0 0.075 0.01339 +bd0f2ef2dc50f2a1c401a63b300a76588f579dc5.json +UB1 0.54054 0.38356 0.48649 0.37617 +UB2 0.51351 0.36986 0.37838 0.32477 +LexRank 0.17568 0.0274 0.08108 0.04673 +TextRank 0.14865 0.0137 0.06757 0.03972 +Luhn 0.18919 0.0 0.12162 0.05374 +ICSI 0.36486 0.09589 0.16216 0.11916 +d656f663d45eeebb9a5af0b86ed82ec9ed612176.json +UB1 0.43902 0.175 0.29268 0.15217 +UB2 0.39024 0.225 0.29268 0.18261 +LexRank 0.09756 0.0 0.07317 0.01739 +TextRank 0.12195 0.0 0.09756 0.02174 +Luhn 0.12195 0.0 0.09756 0.02174 +ICSI 0.09756 0.0 0.04878 0.02174 +c895ca910a34a878b2091183892317b3c4a43459.json +UB1 0.58537 0.375 0.29268 0.2913 +UB2 0.60976 0.4 0.34146 0.2913 +LexRank 0.17073 0.025 0.12195 0.04348 +TextRank 0.19512 0.0 0.12195 0.05217 +Luhn 0.19512 0.0 0.12195 0.05217 +ICSI 0.14634 0.0 0.12195 0.03043 +f4c100a34f062bf948e28fba9fa6bbe492d19df1.json +UB1 0.66667 0.39474 0.4359 0.40367 +UB2 0.61538 0.5 0.61538 0.44495 +LexRank 0.15385 0.0 0.07692 0.02752 +TextRank 0.23077 0.10526 0.20513 0.08257 +Luhn 0.15385 0.02632 0.10256 0.03211 +ICSI 0.51282 0.21053 0.41026 0.22477 +fa018b05f7e3782e4fe09dce41aff11e2aa90291.json +UB1 0.45652 0.11111 0.26087 0.15385 +UB2 0.41304 0.13333 0.19565 0.16538 +LexRank 0.21739 0.0 0.1087 0.05 +TextRank 0.15217 0.0 0.1087 0.03462 +Luhn 0.23913 0.0 0.13043 0.05769 +ICSI 0.23913 0.02222 0.1087 0.05385 +d468ab7cfc25693917f6f9b159fbefe400824f60.json +UB1 0.41071 0.07273 0.21429 0.15 +UB2 0.39286 0.14545 0.19643 0.175 +LexRank 0.14286 0.0 0.08929 0.02813 +TextRank 0.16071 0.0 0.08929 0.04063 +Luhn 0.17857 0.0 0.10714 0.04063 +ICSI 0.16071 0.0 0.07143 0.02813 +fcc2ee32c966673ad1194722fd4cb9e809d2d447.json +UB1 0.73864 0.52874 0.57955 0.51562 +UB2 0.72727 0.58621 0.47727 0.56836 +LexRank 0.31818 0.08046 0.13636 0.07422 +TextRank 0.20455 0.03448 0.125 0.04297 +Luhn 0.21591 0.02299 0.09091 0.04492 +ICSI 0.29545 0.05747 0.13636 0.0625 +de4fe957c51e5adc784c3f9abe6fae4e96ac00c2.json +UB1 0.82857 0.70588 0.68571 0.6701 +UB2 0.82857 0.70588 0.68571 0.6701 +LexRank 0.11429 0.0 0.08571 0.02577 +TextRank 0.17143 0.0 0.11429 0.03608 +Luhn 0.08571 0.0 0.05714 0.01031 +ICSI 0.14286 0.0 0.05714 0.02577 +e02bbb4135cc519249b9c9919fbca73dc1add079.json +UB1 0.73529 0.57576 0.64706 0.53191 +UB2 0.64706 0.57576 0.64706 0.51064 +LexRank 0.02941 0.0 0.02941 0.00532 +TextRank 0.08824 0.0 0.05882 0.01064 +Luhn 0.02941 0.0 0.02941 0.00532 +ICSI 0.20588 0.15152 0.17647 0.1117 +f821968ca98cc2634a863279725774813aa769cc.json +UB1 0.46429 0.16364 0.33929 0.17813 +UB2 0.46429 0.16364 0.33929 0.17813 +LexRank 0.125 0.0 0.08929 0.025 +TextRank 0.07143 0.0 0.05357 0.01562 +Luhn 0.125 0.0 0.07143 0.02187 +ICSI 0.19643 0.0 0.14286 0.04375 +fcf7806af9a56e66e86875084c3e947bff353f9b.json +UB1 0.33333 0.125 0.27273 0.1044 +UB2 0.30303 0.15625 0.27273 0.0989 +LexRank 0.0303 0.0 0.0303 0.00549 +TextRank 0.0303 0.0 0.0303 0.00549 +Luhn 0.0303 0.0 0.0303 0.00549 +ICSI 0.09091 0.0 0.06061 0.01099 +de9c419c2e72bf8be6a96f1138f209e6d5c07c1d.json +UB1 0.40741 0.03846 0.33333 0.13699 +UB2 0.25926 0.11538 0.22222 0.08904 +LexRank 0.0 0.0 0.0 0.0 +TextRank 0.0 0.0 0.0 0.0 +Luhn 0.0 0.0 0.0 0.0 +ICSI 0.11111 0.0 0.11111 0.02055 +cdc0e5c3dce431f1e8bfb790a132828ef27a0d51.json +UB1 0.66355 0.31132 0.30841 0.29393 +UB2 0.65421 0.41509 0.37383 0.35783 +LexRank 0.3271 0.0566 0.16822 0.10064 +TextRank 0.38318 0.07547 0.15888 0.1278 +Luhn 0.24299 0.03774 0.1215 0.05751 +ICSI 0.45794 0.11321 0.18692 0.15016 +cd759200827836438f656054ec7b5583959da666.json +UB1 0.53191 0.19565 0.23404 0.2406 +UB2 0.44681 0.19565 0.17021 0.20301 +LexRank 0.12766 0.02174 0.10638 0.03759 +TextRank 0.21277 0.08696 0.14894 0.09774 +Luhn 0.21277 0.08696 0.14894 0.09774 +ICSI 0.14894 0.02174 0.10638 0.03383 diff --git a/baselines/baseline2/test.py b/baselines/baseline2/test.py new file mode 100644 index 0000000..3a2fa2e --- /dev/null +++ b/baselines/baseline2/test.py @@ -0,0 +1,60 @@ +# coding: utf-8 + +# 事先将无监督方法在所有数据上都跑了一遍,记录纸record.txt中, +# 现在划分数据,使得在测试集上的水平接近于整体水平 + +import random +import os + +random.seed(13) +data_dir = '../../data/bbc_cont_1' +types = ['train', 'valid', 'test'] +split_num = [0, 1003, 1303, 1803] +blog_names = [] + + +# 加载无监督方法的结果 +def load_scores(): + scores = {} + with open('record.txt', 'r') as f: + for i in range(0, split_num[-1]): + cur_fn = f.readline().strip() + ub1 = [float(_) for _ in f.readline().split()[1:]] + ub2 = [float(_) for _ in f.readline().split()[1:]] + lexrank = [float(_) for _ in f.readline().split()[1:]] + textrank = [float(_) for _ in f.readline().split()[1:]] + luhn = [float(_) for _ in f.readline().split()[1:]] + icsi = [float(_) for _ in f.readline().split()[1:]] + scores[cur_fn] = [ub1, ub2, lexrank, textrank, luhn, icsi] + return scores + + +def main(): + scores = load_scores() + for t in types: + cur_dir = data_dir + '/' + t + '/' + fns = os.listdir(cur_dir) + fns.sort() + blog_names.extend(fns) + idx = range(0, split_num[-1]) + # random.shuffle(idx) + rst = [[.0, .0, .0, .0] for _ in range(0, 6)] + test_data = [blog_names[i] for i in idx[split_num[-2]: split_num[-1]]] + for fn in test_data: + cur_score = scores[fn] + for i in range(0, 6): + for j in range(0,4): + rst[i][j] += cur_score[i][j] + for i in range(0, 6): + for j in range(0, 4): + rst[i][j] /= len(test_data) + print('UB1', rst[0]) + print('UB2', rst[1]) + print('LexRank', rst[2]) + print('TextRank', rst[3]) + print('Luhn', rst[4]) + print('ICSI', rst[5]) + + +if __name__ == '__main__': + main() diff --git a/baselines/baseline_acl18/main.py b/baselines/baseline_acl18/main.py index ce30ff2..a26ff85 100644 --- a/baselines/baseline_acl18/main.py +++ b/baselines/baseline_acl18/main.py @@ -15,7 +15,7 @@ import sys import os, json, argparse, random -sys.path.append('../') +sys.path.append('../../') from myrouge.rouge import get_rouge_score parser = argparse.ArgumentParser(description='ACL18 Summarization') @@ -27,17 +27,17 @@ parser.add_argument('-teacher_forcing', type=float, default=0.0) parser.add_argument('-lr', type=float, default=1e-3) parser.add_argument('-max_norm', type=float, default=5.0) -parser.add_argument('-sent_dropout', type=float, default=0.0) -parser.add_argument('-doc_dropout', type=float, default=0.0) +parser.add_argument('-sent_dropout', type=float, default=0.3) +parser.add_argument('-doc_dropout', type=float, default=0.2) parser.add_argument('-sent_trunc', type=int, default=30) parser.add_argument('-alpha', type=float, default=20.0) -parser.add_argument('-epochs', type=int, default=10) +parser.add_argument('-epochs', type=int, default=8) parser.add_argument('-seed', type=int, default=1) -parser.add_argument('-embedding', type=str, default='../word2vec/embedding.npz') -parser.add_argument('-word2id', type=str, default='../word2vec/word2id.json') -parser.add_argument('-train_dir', type=str, default='../data/bbc_acl/train/') -parser.add_argument('-valid_dir', type=str, default='../data/bbc_acl/test/') -parser.add_argument('-test_dir', type=str, default='../data/bbc_acl/test/') +parser.add_argument('-embedding', type=str, default='../../word2vec/embedding.npz') +parser.add_argument('-word2id', type=str, default='../../word2vec/word2id.json') +parser.add_argument('-train_dir', type=str, default='../../data/bbc_acl/train/') +parser.add_argument('-valid_dir', type=str, default='../../data/bbc_acl/test/') +parser.add_argument('-test_dir', type=str, default='../../data/bbc_acl/test/') parser.add_argument('-valid_every', type=int, default=500) parser.add_argument('-load_model', type=str, default='') parser.add_argument('-sum_len', type=int, default=1) # 摘要长度为原摘要长度的倍数 @@ -103,7 +103,7 @@ def train(): cur_loss, r1, r2, rl, rsu = evaluate(net, vocab, val_data, True) if cur_loss < min_loss: min_loss = cur_loss - save_path = args.save_dir + 'RNN_GCN' + '_%d_%.4f_%.4f_%.4f_%.4f_%.4f' % ( + save_path = args.save_dir + 'ACL_18' + '_%d_%.4f_%.4f_%.4f_%.4f_%.4f' % ( cnt / args.valid_every, cur_loss, r1, r2, rl, rsu) net.save(save_path) print('Epoch: %2d Min_Val_Loss: %f Cur_Val_Loss: %f Rouge-1: %f Rouge-2: %f Rouge-l: %f Rouge-SU4: %f' % diff --git a/baselines/baseline_featureSVR/evaluate.py b/baselines/baseline_featureSVR/evaluate.py index a00b874..99c1541 100644 --- a/baselines/baseline_featureSVR/evaluate.py +++ b/baselines/baseline_featureSVR/evaluate.py @@ -4,11 +4,12 @@ import sys -sys.path.append('../') +sys.path.append('../../') import json import re import os import math +import numpy as np from myrouge.rouge import get_rouge_score from tqdm import tqdm @@ -18,11 +19,9 @@ test_pre = [] corpus = 'bbc' label_method = 'cont_1' -valid_dir = '../data/' + corpus + '_' + label_method + '/valid/' -test_dir = '../data/' + corpus + '_' + label_method + '/test/' -blog_trunc = 80 # live blog只保留前80个doc +valid_dir = '../../data/' + corpus + '_' + label_method + '/valid/' +test_dir = '../../data/' + corpus + '_' + label_method + '/test/' pre_dir = './data/' + corpus + '/' -candidate_num = 3 # 得分前15的句子作为候选 mmr = 0.75 @@ -33,8 +32,6 @@ def __init__(self, blog_json): self.docs = [] self.scores = [] for i, doc in enumerate(blog_json['documents']): - if i >= blog_trunc: - break self.docs.append(doc['text']) self.scores.append(doc['sent_label']) @@ -74,33 +71,19 @@ def rouge_1_f(hyp, ref): # 第二种re_rank方法,使用MMR去冗余策略 def re_rank(sents, scores, ref_len): - sents_num = len(sents) - sim = [sents_num * [.0] for _ in range(0, sents_num)] - for i in range(0, sents_num): - for j in range(i, sents_num): - if j == i: - sim[i][j] = 1.0 - else: - sim[i][j] = sim[j][i] = rouge_1_f(sents[i], sents[j]) - chosen = [] - candidates = range(0, sents_num) summary = '' + chosen = [] + cur_scores = [s for s in scores] cur_len = 0 - while len(candidates) != 0: - max_point = -1e20 - next = -1 - for i in candidates: - max_sim = .0 - for j in chosen: - max_sim = max(max_sim, sim[i][j]) - cur_point = mmr * scores[i] - (1 - mmr) * max_sim - if cur_point > max_point: - max_point = cur_point - next = i - chosen.append(next) - candidates.remove(next) - tmp = sents[next] - tmp = tmp.split() + while len(chosen) <= len(scores): + sorted_idx = np.array(cur_scores).argsort() + cur_idx = sorted_idx[-1] + for i in range(len(cur_scores)): + new_score = mmr * scores[i] - (1 - mmr) * rouge_1_f(sents[i], sents[cur_idx]) + cur_scores[i] = min(cur_scores[i], new_score) + cur_scores[cur_idx] = -1e20 + chosen.append(cur_idx) + tmp = sents[cur_idx].split() tmp_len = len(tmp) if cur_len + tmp_len > ref_len: summary += ' '.join(tmp[:ref_len - cur_len]) @@ -108,7 +91,7 @@ def re_rank(sents, scores, ref_len): else: summary += ' '.join(tmp) + ' ' cur_len += tmp_len - return summary + return summary.strip() def main(): @@ -127,7 +110,7 @@ def main(): with open(pre_dir + 'test_pre.txt', 'r') as f: for line in f.readlines(): test_pre.append(float(line)) - """ + print('Evaluating valid set...') r1, r2, rl, rsu = .0, .0, .0, .0 start = 0 @@ -151,7 +134,7 @@ def main(): rl = rl / blog_num rsu = rsu / blog_num print(r1, r2, rl, rsu) - """ + print('Evaluating test set...') r1, r2, rl, rsu = .0, .0, .0, .0 start = 0 diff --git a/baselines/baseline_featureSVR/features.py b/baselines/baseline_featureSVR/features.py index b8d6cc3..2dc654f 100644 --- a/baselines/baseline_featureSVR/features.py +++ b/baselines/baseline_featureSVR/features.py @@ -17,11 +17,10 @@ valid_data = [] test_data = [] corpus = 'bbc' -train_dir = '../data/' + corpus + '_cont_1/train/' -valid_dir = '../data/' + corpus + '_cont_1/valid/' -test_dir = '../data/' + corpus + '_cont_1/test/' +train_dir = '../../data/' + corpus + '_cont_1/train/' +valid_dir = '../../data/' + corpus + '_cont_1/valid/' +test_dir = '../../data/' + corpus + '_cont_1/test/' out_dir = './data/' + corpus + '/' -blog_trunc = 80 # live blog只保留前80个doc if os.path.exists(out_dir): os.system('rm -r ' + out_dir) os.mkdir(out_dir) @@ -35,8 +34,6 @@ def __init__(self, blog_json): self.docs = [] self.scores = [] for i, doc in enumerate(blog_json['documents']): - if i >= blog_trunc: - break self.docs.append(doc['text']) self.scores.append(doc['sent_label']) diff --git a/baselines/baseline_featureSVR/train.py b/baselines/baseline_featureSVR/train.py index 3167d21..ce5a719 100644 --- a/baselines/baseline_featureSVR/train.py +++ b/baselines/baseline_featureSVR/train.py @@ -4,14 +4,12 @@ import os import json -from sklearn import linear_model from sklearn.svm import LinearSVR corpus = 'bbc' label_method = 'cont_1' -train_label_dir = '../data/' + corpus + '_' + label_method + '/train/' -blog_trunc = 80 +train_label_dir = '../../data/' + corpus + '_' + label_method + '/train/' feature_dir = './data/' + corpus + '/' @@ -22,8 +20,6 @@ def __init__(self, blog_json): self.docs = [] self.scores = [] for i, doc in enumerate(blog_json['documents']): - if i >= blog_trunc: - break self.docs.append(doc['text']) self.scores.append(doc['sent_label']) diff --git a/baselines/baseline_gcn/main.py b/baselines/baseline_gcn/main.py index 11c714c..9c05458 100644 --- a/baselines/baseline_gcn/main.py +++ b/baselines/baseline_gcn/main.py @@ -15,25 +15,25 @@ import sys import os, json, argparse, random -sys.path.append('../') +sys.path.append('../../') from myrouge.rouge import get_rouge_score parser = argparse.ArgumentParser(description='Graph-based Summarization') -parser.add_argument('-save_dir', type=str, default='checkpoints3/') +parser.add_argument('-save_dir', type=str, default='checkpoints1/') parser.add_argument('-embed_dim', type=int, default=100) parser.add_argument('-embed_num', type=int, default=100) -parser.add_argument('-hidden_size', type=int, default=300) +parser.add_argument('-hidden_size', type=int, default=256) parser.add_argument('-gcn_size', type=int, default=3) parser.add_argument('-lr', type=float, default=1e-3) parser.add_argument('-max_norm', type=float, default=1.0) -parser.add_argument('-epochs', type=int, default=10) +parser.add_argument('-epochs', type=int, default=8) parser.add_argument('-seed', type=int, default=1) -parser.add_argument('-embedding', type=str, default='../word2vec/embedding.npz') -parser.add_argument('-word2id', type=str, default='../word2vec/word2id.json') -parser.add_argument('-train_dir', type=str, default='../data/bbc_graph_1/train/') -parser.add_argument('-valid_dir', type=str, default='../data/bbc_graph_1/test/') -parser.add_argument('-test_dir', type=str, default='../data/bbc_graph_1/test/') -parser.add_argument('-sent_trunc', type=int, default=20) +parser.add_argument('-embedding', type=str, default='../../word2vec/embedding.npz') +parser.add_argument('-word2id', type=str, default='../../word2vec/word2id.json') +parser.add_argument('-train_dir', type=str, default='../../data/bbc_graph_1/train/') +parser.add_argument('-valid_dir', type=str, default='../../data/bbc_graph_1/test/') +parser.add_argument('-test_dir', type=str, default='../../data/bbc_graph_1/test/') +parser.add_argument('-sent_trunc', type=int, default=25) parser.add_argument('-valid_every', type=int, default=500) parser.add_argument('-load_model', type=str, default='') parser.add_argument('-greedy', type=float, default=0.3) diff --git a/baselines/baseline_summarunner/main.py b/baselines/baseline_summarunner/main.py index f8170bf..3a20f5e 100644 --- a/baselines/baseline_summarunner/main.py +++ b/baselines/baseline_summarunner/main.py @@ -14,12 +14,12 @@ from RNN_RNN import RNN_RNN import os, json, argparse, random -sys.path.append('../') +sys.path.append('../../') from myrouge.rouge import get_rouge_score parser = argparse.ArgumentParser(description='SummaRuNNer') # model -parser.add_argument('-save_dir', type=str, default='checkpoints2/') +parser.add_argument('-save_dir', type=str, default='checkpoints1/') parser.add_argument('-embed_dim', type=int, default=100) parser.add_argument('-embed_num', type=int, default=100) parser.add_argument('-hidden_size', type=int, default=200) @@ -30,19 +30,19 @@ parser.add_argument('-lr', type=float, default=1e-3) parser.add_argument('-max_norm', type=float, default=5.0) parser.add_argument('-batch_size', type=int, default=5) -parser.add_argument('-epochs', type=int, default=10) +parser.add_argument('-epochs', type=int, default=8) parser.add_argument('-seed', type=int, default=1) -parser.add_argument('-embedding', type=str, default='../word2vec/embedding.npz') -parser.add_argument('-word2id', type=str, default='../word2vec/word2id.json') -parser.add_argument('-train_dir', type=str, default='../data/bbc_opt/train/') -parser.add_argument('-valid_dir', type=str, default='../data/bbc_opt/test/') +parser.add_argument('-embedding', type=str, default='../../word2vec/embedding.npz') +parser.add_argument('-word2id', type=str, default='../../word2vec/word2id.json') +parser.add_argument('-train_dir', type=str, default='../../data/bbc_opt/train/') +parser.add_argument('-valid_dir', type=str, default='../../data/bbc_opt/test/') parser.add_argument('-sent_trunc', type=int, default=20) parser.add_argument('-doc_trunc', type=int, default=10) parser.add_argument('-blog_trunc', type=int, default=80) parser.add_argument('-valid_every', type=int, default=100) # test parser.add_argument('-load_model', type=str, default='') -parser.add_argument('-test_dir', type=str, default='../data/bbc_opt/test/') +parser.add_argument('-test_dir', type=str, default='../../data/bbc_opt/test/') parser.add_argument('-ref', type=str, default='outputs/ref/') parser.add_argument('-hyp', type=str, default='outputs/hyp/') parser.add_argument('-sum_len', type=int, default=1) # 摘要长度为原摘要长度的倍数 @@ -90,33 +90,19 @@ def rouge_1_f(hyp, ref): # 得到预测分数后,使用MMR策略进行重新排序,以消除冗余 def re_rank(sents, scores, ref_len): - sents_num = len(sents) - sim = [sents_num * [.0] for _ in range(0, sents_num)] - for i in range(0, sents_num): - for j in range(i, sents_num): - if j == i: - sim[i][j] = 1.0 - else: - sim[i][j] = sim[j][i] = rouge_1_f(sents[i], sents[j]) - chosen = [] - candidates = range(0, sents_num) summary = '' + chosen = [] + cur_scores = [s for s in scores] cur_len = 0 - while len(candidates) != 0: - max_point = -1e20 - next = -1 - for i in candidates: - max_sim = .0 - for j in chosen: - max_sim = max(max_sim, sim[i][j]) - cur_point = args.mmr * scores[i] - (1.0 - args.mmr) * max_sim - if cur_point > max_point: - max_point = cur_point - next = i - chosen.append(next) - candidates.remove(next) - tmp = sents[next] - tmp = tmp.split() + while len(chosen) <= len(scores): + sorted_idx = np.array(cur_scores).argsort() + cur_idx = sorted_idx[-1] + for i in range(len(cur_scores)): + new_score = args.mmr * scores[i] - (1 - args.mmr) * rouge_1_f(sents[i], sents[cur_idx]) + cur_scores[i] = min(cur_scores[i], new_score) + cur_scores[cur_idx] = -1e20 + chosen.append(cur_idx) + tmp = sents[cur_idx].split() tmp_len = len(tmp) if cur_len + tmp_len > ref_len: summary += ' '.join(tmp[:ref_len - cur_len]) @@ -124,7 +110,7 @@ def re_rank(sents, scores, ref_len): else: summary += ' '.join(tmp) + ' ' cur_len += tmp_len - return summary + return summary.strip() # 在验证集或测试集上测loss, rouge值 diff --git a/main.py b/main.py index 706cd68..b888b9b 100644 --- a/main.py +++ b/main.py @@ -1,9 +1,7 @@ # coding:utf-8 import torch -import torch.nn as nn from torch.autograd import Variable from torch.nn.utils import clip_grad_norm_ -from torch.utils.data import DataLoader from myrouge.rouge import get_rouge_score from tqdm import tqdm import numpy as np @@ -15,40 +13,37 @@ parser = argparse.ArgumentParser(description='LiveBlogSum') # model paras -parser.add_argument('-model', type=str, default='Module6') +parser.add_argument('-model', type=str, default='Model3') parser.add_argument('-embed_frozen', type=bool, default=False) parser.add_argument('-embed_dim', type=int, default=100) parser.add_argument('-embed_num', type=int, default=100) -parser.add_argument('-hidden_size', type=int, default=200) -parser.add_argument('-pos_dim', type=int, default=10) +parser.add_argument('-hidden_size', type=int, default=256) +parser.add_argument('-pos_dim', type=int, default=50) +parser.add_argument('-pos_doc_size', type=int, default=20) # doc的相对位置个数 +parser.add_argument('-pos_sent_size', type=int, default=20) # sent的相对位置个数 parser.add_argument('-sum_len', type=int, default=1) parser.add_argument('-mmr', type=float, default=0.75) # train paras -parser.add_argument('-save_dir', type=str, default='checkpoints3/') +parser.add_argument('-save_dir', type=str, default='checkpoints2/') parser.add_argument('-lr', type=float, default=1e-3) parser.add_argument('-max_norm', type=float, default=5.0) -parser.add_argument('-batch_size', type=int, default=5) -parser.add_argument('-epochs', type=int, default=8) +parser.add_argument('-epochs', type=int, default=6) parser.add_argument('-seed', type=int, default=1) -parser.add_argument('-sent_trunc', type=int, default=20) -parser.add_argument('-doc_trunc', type=int, default=10) -parser.add_argument('-blog_trunc', type=int, default=80) -parser.add_argument('-srl_trunc', type=int, default=200) # 每篇blog的srl元组数 -parser.add_argument('-topic_trunc', type=int, default=10) # 每篇blog的话题数 -parser.add_argument('-topic_word_trunc', type=int, default=5) # 每个话题的word数目 -parser.add_argument('-valid_every', type=int, default=100) +parser.add_argument('-sent_trunc', type=int, default=25) +parser.add_argument('-valid_every', type=int, default=500) parser.add_argument('-load_model', type=str, default='') parser.add_argument('-test', action='store_true') parser.add_argument('-use_cuda', type=bool, default=False) -# data +# data paras parser.add_argument('-embedding', type=str, default='word2vec/embedding.npz') parser.add_argument('-word2id', type=str, default='word2vec/word2id.json') -parser.add_argument('-train_dir', type=str, default='data/bbc_srl_2/train/') -parser.add_argument('-valid_dir', type=str, default='data/bbc_srl_2/test/') -parser.add_argument('-test_dir', type=str, default='data/bbc_srl_2/test/') +parser.add_argument('-train_dir', type=str, default='data/bbc_srl_4/train/') +parser.add_argument('-valid_dir', type=str, default='data/bbc_srl_4/test/') +parser.add_argument('-test_dir', type=str, default='data/bbc_srl_4/test/') parser.add_argument('-ref', type=str, default='outputs/ref/') parser.add_argument('-hyp', type=str, default='outputs/hyp/') +# set random seed, for repeatability use_cuda = torch.cuda.is_available() args = parser.parse_args() if use_cuda: @@ -59,10 +54,6 @@ args.use_cuda = use_cuda -def my_collate(batch): - return {key: [d[key] for d in batch] for key in batch[0]} - - # 用rouge_1_f表示两个句子之间的相似度 def rouge_1_f(hyp, ref): hyp = re.sub(r'[^a-z]', ' ', hyp.lower()).strip().split() @@ -87,34 +78,20 @@ def rouge_1_f(hyp, ref): # 得到预测分数后,使用MMR策略进行重新排序,以消除冗余 -def re_rank(sents, scores, ref_len): - sents_num = len(sents) - sim = [sents_num * [.0] for _ in range(0, sents_num)] - for i in range(0, sents_num): - for j in range(i, sents_num): - if j == i: - sim[i][j] = 1.0 - else: - sim[i][j] = sim[j][i] = rouge_1_f(sents[i], sents[j]) - chosen = [] - candidates = range(0, sents_num) +def mmr(sents, scores, ref_len): summary = '' + chosen = [] + cur_scores = [s for s in scores] cur_len = 0 - while len(candidates) != 0: - max_point = -1e20 - next = -1 - for i in candidates: - max_sim = .0 - for j in chosen: - max_sim = max(max_sim, sim[i][j]) - cur_point = args.mmr * scores[i] - (1.0 - args.mmr) * max_sim - if cur_point > max_point: - max_point = cur_point - next = i - chosen.append(next) - candidates.remove(next) - tmp = sents[next] - tmp = tmp.split() + while len(chosen) <= len(scores): + sorted_idx = np.array(cur_scores).argsort() + cur_idx = sorted_idx[-1] + for i in range(len(cur_scores)): + new_score = args.mmr * scores[i] - (1 - args.mmr) * rouge_1_f(sents[i], sents[cur_idx]) + cur_scores[i] = min(cur_scores[i], new_score) + cur_scores[cur_idx] = -1e20 + chosen.append(cur_idx) + tmp = sents[cur_idx].split() tmp_len = len(tmp) if cur_len + tmp_len > ref_len: summary += ' '.join(tmp[:ref_len - cur_len]) @@ -122,71 +99,52 @@ def re_rank(sents, scores, ref_len): else: summary += ' '.join(tmp) + ' ' cur_len += tmp_len - return summary + return summary.strip() # 在验证集或测试集上测loss, rouge值 -def evaluate(net, vocab, data_iter, train_next): # train_next指明接下来是否要继续训练 +def evaluate(net, my_loss, vocab, data_iter, train_next): # train_next指明接下来是否要继续训练 net.eval() - criterion = nn.MSELoss() - loss, r1, r2, rl, rsu = .0, .0, .0, .0, .0 # rouge-1,rouge-2,rouge-l,都使用recall值(长度限定为原摘要长度) - batch_num = .0 - blog_num = .0 - for i, batch in enumerate(tqdm(data_iter)): - # 计算loss - features, targets, events, event_weights, sents_content, summaries, doc_nums, doc_lens = vocab.make_features( - batch, args) - features, targets, events, event_weights = Variable(features), Variable(targets.float()), Variable( - events), Variable(event_weights.float()) + my_loss.eval() + loss, r1, r2, rl, rsu = .0, .0, .0, .0, .0 + blog_num = float(len(data_iter)) + for i, blog in enumerate(tqdm(data_iter)): + sents, sent_targets, doc_lens, doc_targets, events, event_targets, event_tfs, event_lens, event_sent_lens, sents_content, summary = vocab.make_tensors(blog, args) + # sents, sent_targets, doc_targets, events, event_targets, event_tfs = Variable(sents), Variable(sent_targets.float()), Variable(doc_targets.float()), Variable(events), Variable(event_targets.float()), Variable(event_tfs.float()) if use_cuda: - features = features.cuda() - targets = targets.cuda() + sents = sents.cuda() + sent_targets = sent_targets.cuda() + doc_targets = doc_targets.cuda() events = events.cuda() - event_weights = event_weights.cuda() - probs = net(features, doc_nums, doc_lens, events, event_weights) - batch_num += 1 - doc_nums_sum = np.array(doc_nums).sum() - loss += criterion(probs[doc_nums_sum:], targets[doc_nums_sum:]).data.item() - probs = probs[doc_nums_sum:] # 删除probs前半部分对doc的预测 - probs_start = 0 # 当前blog对应的probs起始下标 - doc_lens_start = 0 # 当前blog对应的doc_lens起始下标 - sents_start = 0 # 当前blog对应的sents_content起始下标 - for i in range(0, args.batch_size): - sents_num = 0 - for j in range(doc_lens_start, doc_lens_start + doc_nums[i]): - sents_num += doc_lens[j] - cur_probs = probs[probs_start:probs_start + sents_num] - cur_sents = sents_content[sents_start: sents_start + sents_num] - probs_start = probs_start + sents_num - doc_lens_start = doc_lens_start + doc_nums[i] - sents_start = sents_start + sents_num - if use_cuda: - cur_probs = cur_probs.cpu() - cur_probs = list(cur_probs.detach().numpy()) - sorted_index = list(np.argsort(cur_probs)) # cur_probs顺序排序后对应的下标 - sorted_index.reverse() - ref = summaries[i].strip() - ref_len = len(ref.split()) - hyp = re_rank(cur_sents, cur_probs, ref_len) - score = get_rouge_score(hyp, ref) - r1 += score['ROUGE-1']['r'] - r2 += score['ROUGE-2']['r'] - rl += score['ROUGE-L']['r'] - rsu += score['ROUGE-SU4']['r'] - blog_num += 1 - - loss = loss / batch_num + event_targets = event_targets.cuda() + event_tfs = event_tfs.cuda() + # sent_probs, doc_probs = net(sents, doc_lens) + sent_probs, doc_probs, event_probs = net(sents, doc_lens, events, event_lens, event_sent_lens, event_tfs) + # loss += my_loss(sent_probs, doc_probs, sent_targets, doc_targets).data.item() + loss += my_loss(sent_probs, doc_probs, event_probs, sent_targets, doc_targets, event_targets).data.item() + probs = sent_probs.tolist() + ref = summary.strip() + ref_len = len(ref.split()) + hyp = mmr(sents_content, probs, ref_len) + score = get_rouge_score(hyp, ref) + r1 += score['ROUGE-1']['r'] + r2 += score['ROUGE-2']['r'] + rl += score['ROUGE-L']['r'] + rsu += score['ROUGE-SU4']['r'] + + loss = loss / blog_num r1 = r1 / blog_num r2 = r2 / blog_num rl = rl / blog_num rsu = rsu / blog_num if train_next: # 接下来要继续训练,将网络设成'train'状态 net.train() + my_loss.train() return loss, r1, r2, rl, rsu def train(): - print('Loading vocab, train and val dataset...') + print('Loading vocab, train and valid dataset...') embed = torch.Tensor(np.load(args.embedding)['embedding']) args.embed_num = embed.size(0) args.embed_dim = embed.size(1) @@ -195,70 +153,59 @@ def train(): vocab = utils.Vocab(embed, word2id) train_data = [] - for fn in os.listdir(args.train_dir): + fns = os.listdir(args.train_dir) + fns.sort() + for fn in fns: f = open(args.train_dir + fn, 'r') train_data.append(json.load(f)) f.close() - train_dataset = utils.Dataset(train_data) val_data = [] - for fn in os.listdir(args.valid_dir): + fns = os.listdir(args.valid_dir) + fns.sort() + for fn in fns: f = open(args.valid_dir + fn, 'r') val_data.append(json.load(f)) f.close() - val_dataset = utils.Dataset(val_data) net = getattr(model, args.model)(args, embed) - my_loss = getattr(model, 'myLoss')() + my_loss = getattr(model, 'myLoss2')() if use_cuda: net.cuda() my_loss.cuda() - - train_iter = DataLoader(dataset=train_dataset, - batch_size=args.batch_size, - shuffle=False, - collate_fn=my_collate) - - val_iter = DataLoader(dataset=val_dataset, - batch_size=args.batch_size, - shuffle=False, - collate_fn=my_collate) optimizer = torch.optim.Adam(net.parameters(), lr=args.lr) net.train() - min_loss = float('inf') for epoch in range(1, args.epochs + 1): - for i, batch in enumerate(train_iter): - features, targets, events, event_weights, _1, _2, doc_nums, doc_lens = vocab.make_features(batch, args) - features, targets, events, event_weights = Variable(features), Variable(targets.float()), Variable( - events), Variable(event_weights.float()) + for i, blog in enumerate(train_data): + sents, sent_targets, doc_lens, doc_targets, events, event_targets, event_tfs, event_lens, event_sent_lens, _1, _2, = vocab.make_tensors(blog, args) + # sents, sent_targets, doc_targets, events, event_targets, event_tfs = Variable(sents), Variable(sent_targets.float()), Variable(doc_targets.float()), Variable(events), Variable(event_targets.float()), Variable(event_tfs.float()) if use_cuda: - features = features.cuda() - targets = targets.cuda() + sents = sents.cuda() + sent_targets = sent_targets.cuda() + doc_targets = doc_targets.cuda() events = events.cuda() - event_weights = event_weights.cuda() - probs = net(features, doc_nums, doc_lens, events, event_weights) - doc_num = np.array(doc_nums).sum() - loss = my_loss(probs, targets, doc_num) + event_targets = event_targets.cuda() + event_tfs = event_tfs.cuda() + # sent_probs, doc_probs = net(sents, doc_lens) + sent_probs, doc_probs, event_probs = net(sents, doc_lens, events, event_lens, event_sent_lens, event_tfs) + # loss = my_loss(sent_probs, doc_probs, sent_targets, doc_targets) + loss = my_loss(sent_probs, doc_probs, event_probs, sent_targets, doc_targets, event_targets) optimizer.zero_grad() loss.backward() clip_grad_norm_(net.parameters(), args.max_norm) optimizer.step() + print('EPOCH [%d/%d]: BATCH_ID=[%d/%d] loss=%f' % (epoch, args.epochs, i, len(train_data), loss)) - print('EPOCH [%d/%d]: BATCH_ID=[%d/%d] loss=%f' % ( - epoch, args.epochs, i, len(train_iter), loss)) - - cnt = (epoch - 1) * len(train_iter) + i + cnt = (epoch - 1) * len(train_data) + i if cnt % args.valid_every == 0: print('Begin valid... Epoch %d, Batch %d' % (epoch, i)) - cur_loss, r1, r2, rl, rsu = evaluate(net, vocab, val_iter, True) - if cur_loss < min_loss: - min_loss = cur_loss + cur_loss, r1, r2, rl, rsu = evaluate(net, my_loss, vocab, val_data, True) save_path = args.save_dir + args.model + '_%d_%.4f_%.4f_%.4f_%.4f_%.4f' % ( cnt / args.valid_every, cur_loss, r1, r2, rl, rsu) net.save(save_path) - print('Epoch: %2d Min_Val_Loss: %f Cur_Val_Loss: %f Rouge-1: %f Rouge-2: %f Rouge-l: %f Rouge-SU4: %f' % - (epoch, min_loss, cur_loss, r1, r2, rl, rsu)) + print('Epoch: %2d Cur_Val_Loss: %f Rouge-1: %f Rouge-2: %f Rouge-l: %f Rouge-SU4: %f' % + (epoch, cur_loss, r1, r2, rl, rsu)) def test(): @@ -271,15 +218,13 @@ def test(): vocab = utils.Vocab(embed, word2id) test_data = [] - for fn in os.listdir(args.test_dir): + fns = os.listdir(args.test_dir) + fns.sort() + for fn in fns: f = open(args.test_dir + fn, 'r') test_data.append(json.load(f)) f.close() - test_dataset = utils.Dataset(test_data) - test_iter = DataLoader(dataset=test_dataset, - batch_size=args.batch_size, - shuffle=False, - collate_fn=my_collate) + print('Loading model...') if use_cuda: checkpoint = torch.load(args.save_dir + args.load_model) @@ -287,12 +232,15 @@ def test(): checkpoint = torch.load(args.save_dir + args.load_model, map_location=lambda storage, loc: storage) net = getattr(model, checkpoint['args'].model)(checkpoint['args']) net.load_state_dict(checkpoint['model']) + my_loss = getattr(model, 'myLoss2')() if use_cuda: net.cuda() + my_loss.cuda() net.eval() + my_loss.eval() print('Begin test...') - test_loss, r1, r2, rl, rsu = evaluate(net, vocab, test_iter, False) + test_loss, r1, r2, rl, rsu = evaluate(net, my_loss, vocab, test_data, False) print('Test_Loss: %f Rouge-1: %f Rouge-2: %f Rouge-l: %f Rouge-SU4: %f' % (test_loss, r1, r2, rl, rsu)) diff --git a/model/Model1.py b/model/Model1.py new file mode 100644 index 0000000..6d4ca80 --- /dev/null +++ b/model/Model1.py @@ -0,0 +1,143 @@ +# coding:utf-8 + +# 完整的层次式encoder,word => sent => doc => live blog +# 同时预测doc分数和sent分数,不考虑SRL信息 + +import torch +import torch.nn as nn +import torch.nn.functional as F + +use_cuda = torch.cuda.is_available() + + +class Model1(nn.Module): + def __init__(self, args, embed=None): + super(Model1, self).__init__() + self.model_name = 'Model1' + self.args = args + V = args.embed_num + D = args.embed_dim + self.H = args.hidden_size + + self.embed = nn.Embedding(V, D, padding_idx=0) + if embed is not None: + self.embed.weight.data.copy_(embed) + + self.word_RNN = nn.GRU( + input_size=D, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + self.sent_RNN = nn.GRU( + input_size=2 * self.H, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + self.doc_RNN = nn.GRU( + input_size=2 * self.H, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + # 预测doc标签时,考虑doc内容,doc与blog相关度,doc相对位置 + self.doc_content = nn.Linear(2 * self.H, 1, bias=False) + self.doc_salience = nn.Bilinear(2 * self.H, 2 * self.H, 1, bias=False) + self.doc_pos_embed = nn.Embedding(self.args.pos_doc_size, self.args.pos_dim) + self.doc_pos = nn.Linear(self.args.pos_dim, 1, bias=False) + self.doc_bias = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + + # 预测sent标签时,考虑sent内容,sent与所在doc及blog相关性,sent所在doc的位置,sent在doc中的位置 + self.sent_content = nn.Linear(2 * self.H, 1, bias=False) + self.sent_salience = nn.Bilinear(2 * self.H, 4 * self.H, 1, bias=False) + self.sent_doc_pos = nn.Linear(self.args.pos_dim, 1, bias=False) + self.sent_pos_embed = nn.Embedding(self.args.pos_sent_size, self.args.pos_dim) + self.sent_pos = nn.Linear(self.args.pos_dim, 1, bias=False) + self.sent_bias = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + + def max_pool1d(self, x, seq_lens): + out = [] + for index, t in enumerate(x): + if seq_lens[index] == 0: + if use_cuda: + out.append(torch.zeros(1, 2 * self.H, 1).cuda()) + else: + out.append(torch.zeros(1, 2 * self.H, 1)) + else: + t = t[:seq_lens[index], :] + t = torch.t(t).unsqueeze(0) + out.append(F.max_pool1d(t, t.size(2))) + + out = torch.cat(out).squeeze(2) + return out + + def forward(self, x, doc_lens): # x: total_sent_num * word_num + sent_lens = torch.sum(torch.sign(x), dim=1).data + if self.args.embed_frozen: + x = self.embed(x).detach() # total_sent_num * word_num * D + else: + x = self.embed(x) + x, hn = self.word_RNN(x) # total_sent_num * word_num * (2*H) + sent_vec = self.max_pool1d(x, sent_lens) # total_sent_num * (2*H) + + docs = self.split(sent_vec, doc_lens) + doc_vec = [] + for i, doc in enumerate(docs): + tmp_h, hn = self.sent_RNN(doc.unsqueeze(0)) + doc_vec.append(self.max_pool1d(tmp_h, [doc_lens[i]]).squeeze(0)) + doc_vec = torch.cat(doc_vec).view(len(doc_lens), -1) # total_doc_num * (2*H) + + x = doc_vec.unsqueeze(0) # 1 * total_doc_num * (2*H) + x, hn = self.doc_RNN(x) # 1 * total_doc_num * (2*H) + blog_vec = self.max_pool1d(x, [x.size(1)]).squeeze(0) # (2*H) + + # 预测doc标签 + doc_num = float(len(doc_lens)) + doc_probs = [] + for i, doc in enumerate(doc_vec): + doc_content = self.doc_content(doc) + doc_salience = self.doc_salience(doc, blog_vec) + doc_index = torch.LongTensor([[int(i * self.args.pos_doc_size / doc_num)]]) + if use_cuda: + doc_index = doc_index.cuda() + doc_pos = self.doc_pos(self.doc_pos_embed(doc_index).squeeze(0)) + doc_pre = doc_content + doc_salience + doc_pos + self.doc_bias + doc_probs.append(doc_pre) + + # 预测sent标签 + sent_probs = [] + sent_idx = 0 + for i in range(0, len(doc_lens)): + context = torch.cat((blog_vec, doc_vec[i])) + for j in range(0, doc_lens[i]): + sent_content = self.sent_content(sent_vec[sent_idx]) + sent_salience = self.sent_salience(sent_vec[sent_idx], context) + sent_doc_index = torch.LongTensor([[int(i * self.args.pos_doc_size / doc_num)]]) + sent_index = torch.LongTensor([[int(j * self.args.pos_sent_size / doc_lens[i])]]) + if use_cuda: + sent_doc_index = sent_doc_index.cuda() + sent_index = sent_index.cuda() + sent_doc_pos = self.sent_doc_pos(self.doc_pos_embed(sent_doc_index).squeeze(0)) + sent_pos = self.sent_pos(self.sent_pos_embed(sent_index).squeeze(0)) + sent_pre = sent_content + sent_salience + sent_doc_pos + sent_pos + self.sent_bias + sent_probs.append(sent_pre) + sent_idx += 1 + + return torch.cat(sent_probs).squeeze(), torch.cat(doc_probs).squeeze() + + def split(self, vecs, seq_lens): + rst = [] + start = 0 + for seq_len in seq_lens: + rst.append(vecs[start: start + seq_len]) + start += seq_len + assert start == len(vecs) + return rst + + def save(self, dir): + checkpoint = {'model': self.state_dict(), 'args': self.args} + torch.save(checkpoint, dir) diff --git a/model/Model2.py b/model/Model2.py new file mode 100644 index 0000000..ec37462 --- /dev/null +++ b/model/Model2.py @@ -0,0 +1,182 @@ +# coding:utf-8 + +# 层次式encoder + SRL信息 +# 同时预测sent分数和doc分数 + +import torch +import torch.nn as nn +import torch.nn.functional as F + +use_cuda = torch.cuda.is_available() + + +class Model2(nn.Module): + def __init__(self, args, embed=None): + super(Model2, self).__init__() + self.model_name = 'Model2' + self.args = args + V = args.embed_num + D = args.embed_dim + self.H = args.hidden_size + + self.embed = nn.Embedding(V, D, padding_idx=0) + if embed is not None: + self.embed.weight.data.copy_(embed) + + self.word_RNN = nn.GRU( + input_size=D, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + self.sent_RNN = nn.GRU( + input_size=2 * self.H, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + self.doc_RNN = nn.GRU( + input_size=2 * self.H, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + # 使用RNN表示events + self.event_RNN = nn.GRU( + input_size=D, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + # 预测doc标签时,考虑doc内容,doc与blog相关度,doc相对位置 + self.doc_content = nn.Linear(2 * self.H, 1, bias=False) + self.doc_salience = nn.Bilinear(2 * self.H, 2 * self.H, 1, bias=False) + self.doc_pos_embed = nn.Embedding(self.args.pos_doc_size, self.args.pos_dim) + self.doc_pos = nn.Linear(self.args.pos_dim, 1, bias=False) + self.doc_bias = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + + # 预测sent标签时,考虑sent内容,sent与所在doc及blog相关性,sent所在doc的位置,sent在doc中的位置,sent的SRL信息 + self.sent_pre = nn.Linear(4 * self.H, 2 * self.H) + self.sent_content = nn.Linear(2 * self.H, 1, bias=False) + self.sent_salience = nn.Bilinear(2 * self.H, 4 * self.H, 1, bias=False) + self.sent_doc_pos = nn.Linear(self.args.pos_dim, 1, bias=False) + self.sent_pos_embed = nn.Embedding(self.args.pos_sent_size, self.args.pos_dim) + self.sent_pos = nn.Linear(self.args.pos_dim, 1, bias=False) + self.event_zero = nn.Parameter(torch.FloatTensor(2 * self.H).uniform_(-0.1, 0.1)) + self.event_rel = nn.Bilinear(2 * self.H, 2 * self.H, 1) + # self.event_1 = nn.Linear(2 * self.H, 1, bias=False) + # self.event_2 = nn.Bilinear(2 * self.H, 4 * self.H, 1, bias=False) + # self.event_para = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + self.sent_bias = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + + def max_pool1d(self, x, seq_lens): + out = [] + for index, t in enumerate(x): + if seq_lens[index] == 0: + if use_cuda: + out.append(torch.zeros(1, 2 * self.H, 1).cuda()) + else: + out.append(torch.zeros(1, 2 * self.H, 1)) + else: + t = t[:seq_lens[index], :] + t = torch.t(t).unsqueeze(0) + out.append(F.max_pool1d(t, t.size(2))) + + out = torch.cat(out).squeeze(2) + return out + + def forward(self, x, doc_lens, events, event_doc_lens, event_scores): # x: total_sent_num * word_num + sent_lens = torch.sum(torch.sign(x), dim=1).data + if self.args.embed_frozen: + x = self.embed(x).detach() # total_sent_num * word_num * D + else: + x = self.embed(x) + x, hn = self.word_RNN(x) # total_sent_num * word_num * (2*H) + sent_vec = self.max_pool1d(x, sent_lens) # total_sent_num * (2*H) + + docs = self.split(sent_vec, doc_lens) + doc_vec = [] + for i, doc in enumerate(docs): + tmp_h, hn = self.sent_RNN(doc.unsqueeze(0)) + doc_vec.append(self.max_pool1d(tmp_h, [doc_lens[i]]).squeeze(0)) + doc_vec = torch.cat(doc_vec).view(len(doc_lens), -1) # total_doc_num * (2*H) + + x = doc_vec.unsqueeze(0) # 1 * total_doc_num * (2*H) + x, hn = self.doc_RNN(x) # 1 * total_doc_num * (2*H) + blog_vec = self.max_pool1d(x, [x.size(1)]).squeeze(0) # (2*H) + + event_lens = [4] * events.size(0) + if self.args.embed_frozen: + events = self.embed(events).detach() + else: + events = self.embed(events) + events, hn = self.event_RNN(events) + event_vec = self.max_pool1d(events, event_lens) + + # 预测doc标签 + doc_probs = [] + doc_num = float(len(doc_lens)) + for i, doc in enumerate(doc_vec): + doc_content = self.doc_content(doc) + doc_salience = self.doc_salience(doc, blog_vec) + doc_index = torch.LongTensor([[int(i * self.args.pos_doc_size / doc_num)]]) + if use_cuda: + doc_index = doc_index.cuda() + doc_pos = self.doc_pos(self.doc_pos_embed(doc_index).squeeze(0)) + doc_pre = doc_content + doc_salience + doc_pos + self.doc_bias + doc_probs.append(doc_pre) + + # 预测sent标签 + sent_probs = [] + sent_idx = 0 + event_start = 0 + for i in range(0, len(doc_lens)): + context = torch.cat((blog_vec, doc_vec[i])) + cur_event_vec = event_vec[event_start: event_start + event_doc_lens[i]] + cur_event_score = event_scores[event_start: event_start + event_doc_lens[i]] + event_start += event_doc_lens[i] + for j in range(0, doc_lens[i]): + if len(cur_event_vec) == 0: + # event_rel = self.event_zero + event_context = self.event_zero + else: + event_sim = self.event_rel( + sent_vec[sent_idx].repeat(cur_event_vec.size(0)).view(cur_event_vec.size(0), -1), + cur_event_vec).squeeze(1) + event_weight = F.softmax(F.mul(cur_event_score, event_sim), dim=0).unsqueeze(0) + event_context = torch.mm(event_weight, cur_event_vec).squeeze(0) + # event_rel = self.event_para * torch.dot(event_sim, cur_event_score) + # event_1 = self.event_1(event_context) + # event_2 = self.event_2(event_context, context) + cur_sent = self.sent_pre(torch.cat((sent_vec[sent_idx], event_context))) + sent_content = self.sent_content(cur_sent) + sent_salience = self.sent_salience(cur_sent, context) + sent_doc_index = torch.LongTensor([[int(i * self.args.pos_doc_size / doc_num)]]) + sent_index = torch.LongTensor([[int(j * self.args.pos_sent_size / doc_lens[i])]]) + if use_cuda: + sent_doc_index = sent_doc_index.cuda() + sent_index = sent_index.cuda() + sent_doc_pos = self.sent_doc_pos(self.doc_pos_embed(sent_doc_index).squeeze(0)) + sent_pos = self.sent_pos(self.sent_pos_embed(sent_index).squeeze(0)) + sent_pre = sent_content + sent_salience + sent_doc_pos + sent_pos + self.sent_bias + sent_probs.append(sent_pre) + sent_idx += 1 + + return torch.cat(sent_probs).squeeze(), torch.cat(doc_probs).squeeze() + + def split(self, vecs, seq_lens): + rst = [] + start = 0 + for seq_len in seq_lens: + rst.append(vecs[start: start + seq_len]) + start += seq_len + assert start == len(vecs) + return rst + + def save(self, dir): + checkpoint = {'model': self.state_dict(), 'args': self.args} + torch.save(checkpoint, dir) diff --git a/model/Model3.py b/model/Model3.py new file mode 100644 index 0000000..14c3ece --- /dev/null +++ b/model/Model3.py @@ -0,0 +1,238 @@ +# coding:utf-8 + +# 层次式encoder + SRL attention +# 同时预测sent分数,doc分数和event分数 + +import torch +import torch.nn as nn +import torch.nn.functional as F + +use_cuda = torch.cuda.is_available() + + +class Model3(nn.Module): + def __init__(self, args, embed=None): + super(Model3, self).__init__() + self.model_name = 'Model3' + self.args = args + self.V = args.embed_num + self.D = args.embed_dim + self.H = args.hidden_size + self.P = args.pos_dim + + # word embedding层 + self.embed = nn.Embedding(self.V, self.D, padding_idx=0) + if embed is not None: + self.embed.weight.data.copy_(embed) + + self.word_RNN = nn.GRU( + input_size=self.D, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + self.sent_RNN = nn.GRU( + input_size=2 * self.H, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + self.doc_RNN = nn.GRU( + input_size=2 * self.H, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + self.event_RNN = nn.GRU( + input_size=self.D, + hidden_size=self.H, + batch_first=True, + bidirectional=True + ) + + # position embedding,将sent、doc相对位置映射成一个位置向量 + self.doc_pos_embed = nn.Embedding(self.args.pos_doc_size, self.P) + self.sent_pos_embed = nn.Embedding(self.args.pos_sent_size, self.P) + + # event预测层,考虑SRL内容,SRL与所在sent、doc、blog的相关性,SRL所在位置,SRL的TF值 + self.event_content = nn.Linear(2 * self.H, 1, bias=False) + self.event_salience = nn.Bilinear(2 * self.H, 6 * self.H, 1, bias=False) + self.event_sent_pos = nn.Linear(self.P, 1, bias=False) + self.event_doc_pos = nn.Linear(self.P, 1, bias=False) + self.event_tf = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + self.event_bias = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + + # doc预测层,考虑doc内容,doc与blog相关度,doc相对位置 + self.doc_content = nn.Linear(2 * self.H, 1, bias=False) + self.doc_salience = nn.Bilinear(2 * self.H, 2 * self.H, 1, bias=False) + self.doc_pos = nn.Linear(self.P, 1, bias=False) + self.doc_bias = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + + # sent预测层,考虑sent内容,sent与所在doc及blog相关性,sent所在doc的位置,sent在doc中的位置,sent的SRL信息 + self.sent_content = nn.Linear(2 * self.H, 1, bias=False) + self.sent_salience = nn.Bilinear(2 * self.H, 4 * self.H, 1, bias=False) + self.sent_doc_pos = nn.Linear(self.P, 1, bias=False) + self.sent_pos = nn.Linear(self.P, 1, bias=False) + self.event_rel = nn.Bilinear(2 * self.H, 2 * self.H, 1) # 计算句子和event相关性 + self.event_para = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + self.event_zero = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + self.sent_bias = nn.Parameter(torch.FloatTensor(1).uniform_(-0.1, 0.1)) + + def max_pool1d(self, x, seq_lens): + out = [] + for index, t in enumerate(x): + if seq_lens[index] == 0: + if use_cuda: + out.append(torch.zeros(1, 2 * self.H, 1).cuda()) + else: + out.append(torch.zeros(1, 2 * self.H, 1)) + else: + t = t[:seq_lens[index], :] + t = torch.t(t).unsqueeze(0) + out.append(F.max_pool1d(t, t.size(2))) + + out = torch.cat(out).squeeze(2) + return out + + def forward(self, x, doc_lens, events, event_doc_lens, event_sent_lens, event_tfs): + + # word => sent + sent_lens = torch.sum(torch.sign(x), dim=1).data + if self.args.embed_frozen: + x = self.embed(x).detach() # total_sent_num * word_num * D + else: + x = self.embed(x) + x, hn = self.word_RNN(x) # total_sent_num * word_num * (2*H) + sent_vec = self.max_pool1d(x, sent_lens) # total_sent_num * (2*H) + + # sent => doc + docs = self.seq_split(sent_vec, doc_lens) + doc_vec = [] + for i, doc in enumerate(docs): + tmp_h, hn = self.sent_RNN(doc.unsqueeze(0)) + doc_vec.append(self.max_pool1d(tmp_h, [doc_lens[i]]).squeeze(0)) + doc_vec = torch.cat(doc_vec).view(len(doc_lens), -1) # total_doc_num * (2*H) + + # doc => blog + x = doc_vec.unsqueeze(0) # 1 * total_doc_num * (2*H) + x, hn = self.doc_RNN(x) # 1 * total_doc_num * (2*H) + blog_vec = self.max_pool1d(x, [x.size(1)]).squeeze(0) # (2*H) + + # SRL(event) presentation + event_lens = [4] * events.size(0) + if self.args.embed_frozen: + events = self.embed(events).detach() + else: + events = self.embed(events) + events, hn = self.event_RNN(events) + event_vec = self.max_pool1d(events, event_lens) + + doc_num = float(len(doc_lens)) + + # event predictor + event_doc_idx = [0] * len(event_vec) # event位于哪个doc中 + event_sent_abs_idx = [0] * len(event_vec) # event位于总体的第几句话中 + event_sent_idx = [0] * len(event_vec) # event位于该doc的第几句话中 + event_doc_sum = self.seq_accumulate(event_doc_lens) + event_sent_sum = self.seq_accumulate(event_sent_lens) + event_doc_sent_sum = self.seq_accumulate(doc_lens) + for i in range(0, len(event_doc_sum)): + left = 0 if i == 0 else event_doc_sum[i - 1] + right = event_doc_sum[i] + for j in range(left, right): + event_doc_idx[j] = i + for i in range(0, len(event_sent_sum)): + left = 0 if i == 0 else event_sent_sum[i - 1] + right = event_sent_sum[i] + for j in range(left, right): + event_sent_idx[j] = i + event_sent_abs_idx[j] = i + if event_doc_idx[j] > 0: + event_sent_idx[j] -= event_doc_sent_sum[event_doc_idx[j] - 1] + event_probs = [] + for i, event in enumerate(event_vec): + event_content = self.event_content(event) + event_salience = self.event_salience(event, torch.cat((sent_vec[event_sent_abs_idx[i]], doc_vec[event_doc_idx[i]], blog_vec))) + sent_index = torch.LongTensor([[int(event_sent_idx[i] * self.args.pos_doc_size / doc_lens[event_doc_idx[i]])]]) + doc_index = torch.LongTensor([[int(event_doc_idx[i] * self.args.pos_doc_size / doc_num)]]) + if use_cuda: + sent_index = sent_index.cuda() + doc_index = doc_index.cuda() + event_sent_pos = self.event_sent_pos(self.sent_pos_embed(sent_index).squeeze(0)) + event_doc_pos = self.event_doc_pos(self.doc_pos_embed(doc_index).squeeze(0)) + event_tf = self.event_tf * event_tfs[i] + event_pre = event_content + event_salience + event_sent_pos + event_doc_pos + event_tf + self.event_bias + event_probs.append(event_pre) + event_probs = torch.cat(event_probs).squeeze() + + # 预测doc标签 + doc_probs = [] + for i, doc in enumerate(doc_vec): + doc_content = self.doc_content(doc) + doc_salience = self.doc_salience(doc, blog_vec) + doc_index = torch.LongTensor([[int(i * self.args.pos_doc_size / doc_num)]]) + if use_cuda: + doc_index = doc_index.cuda() + doc_pos = self.doc_pos(self.doc_pos_embed(doc_index).squeeze(0)) + doc_pre = doc_content + doc_salience + doc_pos + self.doc_bias + doc_probs.append(doc_pre) + + # 预测sent标签 + sent_probs = [] + sent_idx = 0 + event_start = 0 + for i in range(0, len(doc_lens)): + context = torch.cat((blog_vec, doc_vec[i])) + cur_event_vec = event_vec[event_start: event_start + event_doc_lens[i]] + cur_event_prob = event_probs[event_start: event_start + event_doc_lens[i]] + event_start += event_doc_lens[i] + for j in range(0, doc_lens[i]): + # 计算当前句子和所在doc的所有event的相似度 + if len(cur_event_vec) == 0: + event_rel = self.event_zero + else: + event_sim = self.event_rel( + sent_vec[sent_idx].repeat(cur_event_vec.size(0)).view(cur_event_vec.size(0), -1), + cur_event_vec).squeeze(1) + event_rel = self.event_para * torch.dot(event_sim, cur_event_prob) + cur_sent = sent_vec[sent_idx] + sent_content = self.sent_content(cur_sent) + sent_salience = self.sent_salience(cur_sent, context) + sent_doc_index = torch.LongTensor([[int(i * self.args.pos_doc_size / doc_num)]]) + sent_index = torch.LongTensor([[int(j * self.args.pos_sent_size / doc_lens[i])]]) + if use_cuda: + sent_doc_index = sent_doc_index.cuda() + sent_index = sent_index.cuda() + sent_doc_pos = self.sent_doc_pos(self.doc_pos_embed(sent_doc_index).squeeze(0)) + sent_pos = self.sent_pos(self.sent_pos_embed(sent_index).squeeze(0)) + sent_pre = sent_content + sent_salience + sent_doc_pos + sent_pos + event_rel + self.sent_bias + sent_probs.append(sent_pre) + sent_idx += 1 + return torch.cat(sent_probs).squeeze(), torch.cat(doc_probs).squeeze(), event_probs + + @staticmethod + def seq_split(vecs, seq_lens): + rst = [] + start = 0 + for seq_len in seq_lens: + rst.append(vecs[start: start + seq_len]) + start += seq_len + assert start == len(vecs) + return rst + + @staticmethod + def seq_accumulate(seq): + rst = [0] * len(seq) + for i in range(0, len(seq)): + if i == 0: + rst[i] = seq[i] + else: + rst[i] = seq[i] + rst[i - 1] + return rst + + def save(self, dir): + checkpoint = {'model': self.state_dict(), 'args': self.args} + torch.save(checkpoint, dir) diff --git a/model/__init__.py b/model/__init__.py new file mode 100644 index 0000000..6aea654 --- /dev/null +++ b/model/__init__.py @@ -0,0 +1,5 @@ +from .Model1 import Model1 +from .Model2 import Model2 +from .Model3 import Model3 +from .myLoss1 import myLoss1 +from .myLoss2 import myLoss2 diff --git a/model/myLoss1.py b/model/myLoss1.py new file mode 100644 index 0000000..f4769a5 --- /dev/null +++ b/model/myLoss1.py @@ -0,0 +1,23 @@ +# coding: utf-8 + +# 自定义loss函数,是两种loss(sent, doc)的组合 + +import torch +import torch.nn as nn +import torch.nn.functional as F + +use_cuda = torch.cuda.is_available() + + +class myLoss1(nn.Module): + def __init__(self, alpha=1.0): + super(myLoss1, self).__init__() + self.alpha = alpha + # self.beta = nn.Parameter(torch.Tensor([beta])) + + def forward(self, sent_probs, doc_probs, sent_targets, doc_targets): + loss_1 = F.mse_loss(sent_probs, sent_targets) + loss_2 = F.mse_loss(doc_probs, doc_targets) + norm = 1.0 + self.alpha + loss = (loss_1 + self.alpha * loss_2) / norm + return loss diff --git a/model/myLoss2.py b/model/myLoss2.py new file mode 100644 index 0000000..a0be303 --- /dev/null +++ b/model/myLoss2.py @@ -0,0 +1,24 @@ +# coding: utf-8 + +# 自定义loss函数,是三种loss(sent, doc, event)的组合 + +import torch +import torch.nn as nn +import torch.nn.functional as F + +use_cuda = torch.cuda.is_available() + +class myLoss2(nn.Module): + def __init__(self, alpha=1.0, beta=0.5): + super(myLoss2, self).__init__() + self.alpha = alpha + self.beta = beta + # self.beta = nn.Parameter(torch.Tensor([beta])) + + def forward(self, sent_probs, doc_probs, event_probs, sent_targets, doc_targets, event_targets): + loss_1 = F.mse_loss(sent_probs, sent_targets) + loss_2 = F.mse_loss(doc_probs, doc_targets) + loss_3 = F.mse_loss(event_probs, event_targets) + norm = 1.0 + self.alpha + self.beta + loss = (loss_1 + self.alpha * loss_2 + self.beta * loss_3) / norm + return loss diff --git a/test.py b/test.py index 3e3f0e2..0ff061d 100644 --- a/test.py +++ b/test.py @@ -7,7 +7,7 @@ word2id_f = './word2vec/word2id.json' word2id = {} -data_dir = './data/bbc_label/' +data_dir = './data/bbc_new/' types = ['train', 'valid', 'test'] diff --git a/utils/Dataset.py b/utils/Dataset.py deleted file mode 100644 index d4b9eae..0000000 --- a/utils/Dataset.py +++ /dev/null @@ -1,50 +0,0 @@ -import csv -import torch -import torch.utils.data as data -from torch.autograd import Variable -from .Vocab import Vocab -import numpy as np - - -class Dataset(data.Dataset): - def __init__(self, examples): - super(Dataset, self).__init__() - # data: {'sents':xxxx,'labels':'xxxx', 'summaries':[1,0]} - self.examples = examples - self.training = False - - def train(self): - self.training = True - return self - - def test(self): - self.training = False - return self - - def shuffle(self, words): - np.random.shuffle(words) - return ' '.join(words) - - def dropout(self, words, p=0.3): - l = len(words) - drop_index = np.random.choice(l, int(l * p)) - keep_words = [words[i] for i in range(l) if i not in drop_index] - return ' '.join(keep_words) - - def __getitem__(self, idx): - ex = self.examples[idx] - return ex - # words = ex['sents'].split() - # guess = np.random.random() - - # if self.training: - # if guess > 0.5: - # sents = self.dropout(words,p=0.3) - # else: - # sents = self.shuffle(words) - # else: - # sents = ex['sents'] - # return {'id':ex['id'],'sents':sents,'labels':ex['labels']} - - def __len__(self): - return len(self.examples) diff --git a/utils/Vocab.py b/utils/Vocab.py index 1a48320..7a80626 100644 --- a/utils/Vocab.py +++ b/utils/Vocab.py @@ -1,10 +1,8 @@ -# coding=utf-8 +# coding:utf-8 import torch -import numpy as np -import math -class Vocab(): +class Vocab: def __init__(self, embed, word2id): self.embed = embed self.word2id = word2id @@ -27,47 +25,25 @@ def w2i(self, w): else: return self.UNK_IDX - def make_features(self, batch, args): - # sent_trunc: 每个句子的词数截取到sent_trunc,不足补全 - # doc_trunc: 每个文档的句子数截取到doc_trunc,不补全 - # blog_trunc: 每个live blog的文档数截取到blog_trunc,不补全 - sent_trunc = args.sent_trunc - doc_trunc = args.doc_trunc - blog_trunc = args.blog_trunc - srl_trunc = args.srl_trunc - topic_word_trunc = args.topic_word_trunc + # Return input and target tensors for training and blog content info for evaluation. + def make_tensors(self, blog, args): + summary = ' '.join(blog['summary']) - summarys = [] - for s in batch["summary"]: - summarys.append(' '.join(s)) - doc_nums = [] # 每个live blog含有多少文档 - doc_targets = [] # 各文档的标签 - for i, d in enumerate(batch["documents"]): - if len(d) > blog_trunc: - batch["documents"][i] = d[:blog_trunc] - doc_nums.append(len(batch["documents"][i])) - for td in batch["documents"][i]: - target = td["doc_label"] - doc_targets.append(target) + doc_targets = [] + for doc in blog['documents']: + doc_targets.append(doc['doc_label']) - sents = [] # 存储所有句子 - sents_target = [] # 存储所有句子label - sents_content = [] # 存储所有的句子内容,与sents_target等长,便于之后计算rouge值 - doc_lens = [] # 存储每篇文档包含的句子数 - for d in batch["documents"]: - for td in d: - cur_sent_num = len(td["text"]) - if cur_sent_num > doc_trunc: - sents.extend(td["text"][:doc_trunc]) - sents_target.extend(td["sent_label"][:doc_trunc]) - sents_content.extend(td["text"][:doc_trunc]) - doc_lens.append(doc_trunc) - else: - sents.extend(td["text"]) - sents_target.extend(td["sent_label"]) - sents_content.extend(td["text"]) - doc_lens.append(cur_sent_num) + sents = [] + sents_target = [] + sents_content = [] + doc_lens = [] + for doc in blog['documents']: + sents.extend(doc['text']) + sents_target.extend(doc['sent_label']) + sents_content.extend(doc['text']) + doc_lens.append(len(doc['text'])) # 将每个句子的单词数固定到sent_trunc,超过截断,不足补全 + sent_trunc = args.sent_trunc for i, sent in enumerate(sents): sent = sent.split() cur_sent_len = len(sent) @@ -78,62 +54,33 @@ def make_features(self, batch, args): sent = [self.w2i(_) for _ in sent] sents[i] = sent sents = torch.LongTensor(sents) - targets = doc_targets + sents_target - targets = torch.FloatTensor(targets) + sents_target = torch.FloatTensor(sents_target) + doc_targets = torch.FloatTensor(doc_targets) events = [] # 存储所有events,即SRL四元组 - event_weights = [] # 存储各events权重 - for d in batch["events"]: - cur_events = [] - cur_weights = [] - for td in d: - cur_events.append(td["tuple"]) - cur_weights.append(td["score"]) - if len(cur_events) == srl_trunc: - break - if len(cur_events) < srl_trunc: - cur_events += (srl_trunc - len(cur_events)) * ["-\t-\t-\t-"] - cur_weights += (srl_trunc - len(cur_weights)) * [.0] - cur_weights_sum = np.array(cur_weights).sum() - cur_weights = [_ / cur_weights_sum for _ in cur_weights] - events.extend(cur_events) - event_weights.extend(cur_weights) + event_targets = [] # 存储各events得分,该得分和摘要events计算而得 + event_tfs = [] # 存储各events TF值 + event_lens = [] # 存储每个doc包含的events数目 + event_sent_lens = [] # 存储每个句子包含的events数目 + + for doc in blog['documents']: + cur_len = 0 + for sent_events in doc['events']: + cur_len += len(sent_events) + event_sent_lens.append(len(sent_events)) + for event in sent_events: + events.append(event['tuple']) + event_targets.append(event['score']) + event_tfs.append(event['tf']) + event_lens.append(cur_len) for i, event in enumerate(events): event = event.replace('-', self.PAD_TOKEN) event = event.strip().split('\t') - new_event = [] - for w in event: - if w != self.PAD_TOKEN: - new_event.append(w) - new_event += (4 - len(new_event)) * [self.PAD_TOKEN] - assert len(new_event) == 4 - event = [self.w2i(_) for _ in new_event] + event = [self.w2i(_) for _ in event] events[i] = event + events = torch.LongTensor(events) - event_weights = torch.FloatTensor(event_weights) - return sents, targets, events, event_weights, sents_content, summarys, doc_nums, doc_lens + event_targets = torch.FloatTensor(event_targets) + event_tfs = torch.FloatTensor(event_tfs) - topics = [] # 存储所有topics,每个topic存储对应的前几个词 - topic_word_weights = [] # 存储每个word在各topic中的权重 - topic_scores = [] # 存储各个话题的得分 - for d in batch["topics"]: # d中存储了一篇blog的所有话题 - for td in d: - content = td["words"] - score = td["score"] - cur_topic = [] - cur_word_weights = [] - for tup in content[0: topic_word_trunc]: - cur_topic.append(tup[0]) - cur_word_weights.append(tup[1]) - cur_word_weight_sum = np.array(cur_word_weights).sum() - if math.fabs(cur_word_weight_sum) > 1e-5: - cur_word_weights = [w / cur_word_weight_sum for w in cur_word_weights] # 进行归一化 - topics.append(cur_topic) - topic_word_weights.append(cur_word_weights) - topic_scores.append(score) - for i, topic in enumerate(topics): - topics[i] = [self.w2i(_) for _ in topic] - topics = torch.LongTensor(topics) - topic_word_weights = torch.FloatTensor(topic_word_weights) - topic_scores = torch.FloatTensor(topic_scores) - return sents, targets, events, event_weights, topics, topic_word_weights, topic_scores, sents_content, summarys, doc_nums, doc_lens + return sents, sents_target, doc_lens, doc_targets, events, event_targets, event_tfs, event_lens, event_sent_lens, sents_content, summary diff --git a/utils/__init__.py b/utils/__init__.py index 018e768..9ee3fe4 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1,2 +1 @@ -from .Dataset import Dataset from .Vocab import Vocab