{
“cells”: [
{
“cell_type”: “markdown”,
“id”: “57b58c35”,
“metadata”: {},
“source”: [
“## Quality assurance of prediction results\n”,
“\n”,
“In the previous tutorial, we looked at various ways to visualise the results of our model. \n”,
“\n”,
“These are useful for quality assurance purposes because they allow us to understand how our model works and verify that it is doing something sensible. They can also be useful to identify examples where the model is not performing as expected. \n”,
“\n”,
“In addition to these spot checks, Splink also has functions to perform more formal accuracy analysis. These functions allow you to understand the likely prevalence of false positives and false negatives in your linkage models.\n”,
“\n”,
“They rely on the existence of a sample of labelled (ground truth) matches, which may have been produced (for example) by human beings. For the accuracy analysis to be unbiased, the sample should be representative of the overall dataset.”
]
},
{
“cell_type”: “code”,
“execution_count”: 2,
“id”: “fb29d421”,
“metadata”: {},
“outputs”: [
{
“name”: “stderr”,
“output_type”: “stream”,
“text”: [
“\n”,
” – WARNING –\n”,
“You have called predict(), but there are some parameter estimates which have neither been estimated or specified in your settings dictionary. To produce predictions the following untrained trained parameters will use default values.\n”,
“Comparison: ‘email’:\n”,
” m values not fully trained\n”
]
}
],
“source”: [
“# Rerun our predictions to we’re ready to view the charts\n”,
“from splink.duckdb.linker import DuckDBLinker\n”,
“import pandas as pd \n”,
“import altair as alt\n”,
“alt.renderers.enable(‘mimetype’)\n”,
“\n”,
“df = pd.read_csv(“../data/fake_1000.csv”)\n”,
“linker = DuckDBLinker(df)\n”,
“linker.load_model(“../demo_settings/saved_model_from_demo.json”)\n”,
“df_predictions = linker.predict(threshold_match_probability=0.2)”
]
},
{
“cell_type”: “markdown”,
“id”: “7b0dedd9”,
“metadata”: {},
“source”: [
“## Load in labels\n”,
“\n”,
“The labels file contains a list of pairwise comparisons which represent matches and non-matches.\n”,
“\n”,
“The required format of the labels file is described here.”
]
},
{
“cell_type”: “code”,
“execution_count”: 3,
“id”: “bbfdc70c”,
“metadata”: {},
“outputs”: [],
“source”: [
“df_labels = pd.read_csv(“../data/fake_1000_labels.csv”)\n”,
“df_labels.head(5)\n”,
“labels_table = linker.register_labels_table(df_labels)”
]
},
{
“cell_type”: “markdown”,
“id”: “81e4396d”,
“metadata”: {},
“source”: [
“## Receiver operating characteristic curve\n”,
“\n”,
“A ROC chart shows how the number of false positives and false negatives varies depending on the match threshold chosen. The match threshold is the match weight chosen as a cutoff for which pairwise comparisons to accept as matches.\n”,
“\n”
]
},
{
“cell_type”: “code”,
“execution_count”: 4,
“id”: “01dd7eec”,
“metadata”: {},
“outputs”: [
{
“data”: {
“application/vnd.vegalite.v5+json”: {
“$schema”: “https://vega.github.io/schema/vega-lite/v5.9.3.json”,
“config”: {
“view”: {
“continuousHeight”: 300,
“continuousWidth”: 300
}
},
“data”: {
“name”: “data-a06e697dc67ce3fc8c89804613387d44”
},
“datasets”: {
“data-a06e697dc67ce3fc8c89804613387d44”: [
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.12260536398467432,
“fn”: 0,
“fn_rate”: 0,
“fp”: 1145,
“fp_rate”: 1,
“match_probability”: 1.0970745903601051e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.06530611962080002,
“recall”: 1,
“row_count”: 1225,
“tn”: 0,
“tn_rate”: 0,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -26.44176312501961
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.1271860095389507,
“fn”: 0,
“fn_rate”: 0,
“fp”: 1098,
“fp_rate”: 0.9589519500732422,
“match_probability”: 2.3595259605557447e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.06791171431541443,
“recall”: 1,
“row_count”: 1225,
“tn”: 47,
“tn_rate”: 0.04104803502559662,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -25.33692768032252
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.13900955690703737,
“fn”: 0,
“fn_rate”: 0,
“fp”: 991,
“fp_rate”: 0.8655021786689758,
“match_probability”: 4.609993996622695e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.07469654828310013,
“recall”: 1,
“row_count”: 1225,
“tn”: 154,
“tn_rate”: 0.13449782133102417,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -24.370659820688473
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.14466546112115733,
“fn”: 0,
“fn_rate”: 0,
“fp”: 946,
“fp_rate”: 0.8262009024620056,
“match_probability”: 4.613979717890432e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.07797271013259888,
“recall”: 1,
“row_count”: 1225,
“tn”: 199,
“tn_rate”: 0.17379912734031677,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -24.36941303029024
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.14883720930232558,
“fn”: 0,
“fn_rate”: 0,
“fp”: 915,
“fp_rate”: 0.7991266250610352,
“match_probability”: 6.217111244825231e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.08040200918912888,
“recall”: 1,
“row_count”: 1225,
“tn”: 230,
“tn_rate”: 0.20087336003780365,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -23.939180275679686
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.14995313964386128,
“fn”: 0,
“fn_rate”: 0,
“fp”: 907,
“fp_rate”: 0.7921397089958191,
“match_probability”: 9.914913870853073e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.08105369657278061,
“recall”: 1,
“row_count”: 1225,
“tn”: 238,
“tn_rate”: 0.20786026120185852,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -23.265824375991386
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.15384615384615385,
“fn”: 0,
“fn_rate”: 0,
“fp”: 880,
“fp_rate”: 0.7685589790344238,
“match_probability”: 9.923486133856795e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.0833333358168602,
“recall”: 1,
“row_count”: 1225,
“tn”: 265,
“tn_rate”: 0.23144105076789856,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -23.264577585593152
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.1654601861427094,
“fn”: 0,
“fn_rate”: 0,
“fp”: 807,
“fp_rate”: 0.704803466796875,
“match_probability”: 1.9388304670955502e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09019165486097336,
“recall”: 1,
“row_count”: 1225,
“tn”: 338,
“tn_rate”: 0.2951965034008026,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -22.298309725959104
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.17075773745997866,
“fn”: 0,
“fn_rate”: 0,
“fp”: 777,
“fp_rate”: 0.6786026358604431,
“match_probability”: 2.6147374783150674e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09334889054298401,
“recall”: 1,
“row_count”: 1225,
“tn”: 368,
“tn_rate”: 0.3213973939418793,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -21.866830180950316
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.17185821697099893,
“fn”: 0,
“fn_rate”: 0,
“fp”: 771,
“fp_rate”: 0.6733624339103699,
“match_probability”: 4.1699259991212243e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09400705248117447,
“recall”: 1,
“row_count”: 1225,
“tn”: 374,
“tn_rate”: 0.3266375660896301,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -21.193474281262016
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.17486338797814208,
“fn”: 0,
“fn_rate”: 0,
“fp”: 755,
“fp_rate”: 0.6593886613845825,
“match_probability”: 5.737469745427848e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09580838680267334,
“recall”: 1,
“row_count”: 1225,
“tn”: 390,
“tn_rate”: 0.34061136841773987,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -20.733081195478675
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.1853997682502897,
“fn”: 0,
“fn_rate”: 0,
“fp”: 703,
“fp_rate”: 0.6139737963676453,
“match_probability”: 9.889899065324464e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.10217113792896271,
“recall”: 1,
“row_count”: 1225,
“tn”: 442,
“tn_rate”: 0.38602620363235474,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -19.947539440247656
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.19347037484885127,
“fn”: 0,
“fn_rate”: 0,
“fp”: 667,
“fp_rate”: 0.5825327634811401,
“match_probability”: 1.2339817332413448e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.10709504783153534,
“recall”: 1,
“row_count”: 1225,
“tn”: 478,
“tn_rate”: 0.41746723651885986,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -19.628245750781588
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.20969855832241152,
“fn”: 0,
“fn_rate”: 0,
“fp”: 603,
“fp_rate”: 0.5266375541687012,
“match_probability”: 1.3164288598876683e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.11713030934333801,
“recall”: 1,
“row_count”: 1225,
“tn”: 542,
“tn_rate”: 0.47336244583129883,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -19.534937110192267
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2102496714848883,
“fn”: 0,
“fn_rate”: 0,
“fp”: 601,
“fp_rate”: 0.5248908400535583,
“match_probability”: 2.1270611437086084e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.11747430264949799,
“recall”: 1,
“row_count”: 1225,
“tn”: 544,
“tn_rate”: 0.47510915994644165,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.84270399555057
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2247191011235955,
“fn”: 0,
“fn_rate”: 0,
“fp”: 552,
“fp_rate”: 0.4820960760116577,
“match_probability”: 2.410925715620064e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1265822798013687,
“recall”: 1,
“row_count”: 1225,
“tn”: 593,
“tn_rate”: 0.5179039239883423,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.661977891147544
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.23845007451564829,
“fn”: 0,
“fn_rate”: 0,
“fp”: 511,
“fp_rate”: 0.44628819823265076,
“match_probability”: 2.4130101554615983e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.13536378741264343,
“recall”: 1,
“row_count”: 1225,
“tn”: 634,
“tn_rate”: 0.5537117719650269,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.660731100749306
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.24279210925644917,
“fn”: 0,
“fn_rate”: 0,
“fp”: 499,
“fp_rate”: 0.43580785393714905,
“match_probability”: 3.2514100952943022e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.13816925883293152,
“recall”: 1,
“row_count”: 1225,
“tn”: 646,
“tn_rate”: 0.5641921162605286,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.230498346138756
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2457757296466974,
“fn”: 0,
“fn_rate”: 0,
“fp”: 491,
“fp_rate”: 0.42882096767425537,
“match_probability”: 3.2517895276949123e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.14010508358478546,
“recall”: 1,
“row_count”: 1225,
“tn”: 654,
“tn_rate”: 0.5711790323257446,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.23032999607878
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.24806201550387597,
“fn”: 0,
“fn_rate”: 0,
“fp”: 485,
“fp_rate”: 0.4235807955265045,
“match_probability”: 4.155800611737638e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.14159291982650757,
“recall”: 1,
“row_count”: 1225,
“tn”: 660,
“tn_rate”: 0.5764192342758179,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.876436135916524
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.26229508196721313,
“fn”: 0,
“fn_rate”: 0,
“fp”: 450,
“fp_rate”: 0.3930130898952484,
“match_probability”: 4.159393630462497e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.15094339847564697,
“recall”: 1,
“row_count”: 1225,
“tn”: 695,
“tn_rate”: 0.6069868803024292,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.875189345518287
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.26622296173044924,
“fn”: 0,
“fn_rate”: 0,
“fp”: 441,
“fp_rate”: 0.3851528465747833,
“match_probability”: 5.185268307642189e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1535508632659912,
“recall”: 1,
“row_count”: 1225,
“tn”: 704,
“tn_rate”: 0.6148471832275391,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.557142446450456
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.272572402044293,
“fn”: 0,
“fn_rate”: 0,
“fp”: 427,
“fp_rate”: 0.3729257583618164,
“match_probability”: 5.189751378094057e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1577909290790558,
“recall”: 1,
“row_count”: 1225,
“tn”: 718,
“tn_rate”: 0.6270742416381836,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.55589565605222
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.28776978417266186,
“fn”: 0,
“fn_rate”: 0,
“fp”: 396,
“fp_rate”: 0.3458515405654907,
“match_probability”: 5.604570790440636e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.16806723177433014,
“recall”: 1,
“row_count”: 1225,
“tn”: 749,
“tn_rate”: 0.6541484594345093,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.444956590907736
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2909090909090909,
“fn”: 0,
“fn_rate”: 0,
“fp”: 390,
“fp_rate”: 0.34061136841773987,
“match_probability”: 6.9937388599298e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1702127605676651,
“recall”: 1,
“row_count”: 1225,
“tn”: 755,
“tn_rate”: 0.6593886613845825,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.125494551381692
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.29357798165137616,
“fn”: 0,
“fn_rate”: 0,
“fp”: 385,
“fp_rate”: 0.3362445533275604,
“match_probability”: 8.938018204926952e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.17204301059246063,
“recall”: 1,
“row_count”: 1225,
“tn”: 760,
“tn_rate”: 0.663755476474762,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -16.771600691219437
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.33472803347280333,
“fn”: 0,
“fn_rate”: 0,
“fp”: 318,
“fp_rate”: 0.27772924304008484,
“match_probability”: 8.945745792475534e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.2010050266981125,
“recall”: 1,
“row_count”: 1225,
“tn”: 827,
“tn_rate”: 0.7222707271575928,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -16.7703539008212
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3470715835140998,
“fn”: 0,
“fn_rate”: 0,
“fp”: 301,
“fp_rate”: 0.2628820836544037,
“match_probability”: 1.013958109019518e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2099737524986267,
“recall”: 1,
“row_count”: 1225,
“tn”: 844,
“tn_rate”: 0.7371178865432739,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -16.589627796418174
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3524229074889868,
“fn”: 0,
“fn_rate”: 0,
“fp”: 294,
“fp_rate”: 0.2567685544490814,
“match_probability”: 1.7477868075897466e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2139037400484085,
“recall”: 1,
“row_count”: 1225,
“tn”: 851,
“tn_rate”: 0.7432314157485962,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.804086041187153
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.36281179138321995,
“fn”: 0,
“fn_rate”: 0,
“fp”: 281,
“fp_rate”: 0.2454148530960083,
“match_probability”: 2.180738317462202e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22160664200782776,
“recall”: 1,
“row_count”: 1225,
“tn”: 864,
“tn_rate”: 0.7545851469039917,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.484792351721085
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3686635944700461,
“fn”: 0,
“fn_rate”: 0,
“fp”: 274,
“fp_rate”: 0.23930130898952484,
“match_probability”: 2.3550426891535606e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2259887009859085,
“recall”: 1,
“row_count”: 1225,
“tn”: 871,
“tn_rate”: 0.760698676109314,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.373853286576601
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.37037037037037035,
“fn”: 0,
“fn_rate”: 0,
“fp”: 272,
“fp_rate”: 0.23755457997322083,
“match_probability”: 2.3570787705290104e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22727273404598236,
“recall”: 1,
“row_count”: 1225,
“tn”: 873,
“tn_rate”: 0.7624453902244568,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.372606496178365
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.37122969837587005,
“fn”: 0,
“fn_rate”: 0,
“fp”: 271,
“fp_rate”: 0.23668122291564941,
“match_probability”: 2.9387585463129283e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22792023420333862,
“recall”: 1,
“row_count”: 1225,
“tn”: 874,
“tn_rate”: 0.7633187770843506,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.054391247050557
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.37209302325581395,
“fn”: 0,
“fn_rate”: 0,
“fp”: 270,
“fp_rate”: 0.235807865858078,
“match_probability”: 2.9412992716308515e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22857142984867096,
“recall”: 1,
“row_count”: 1225,
“tn”: 875,
“tn_rate”: 0.7641921639442444,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.053144456652323
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3747072599531616,
“fn”: 0,
“fn_rate”: 0,
“fp”: 267,
“fp_rate”: 0.23318777978420258,
“match_probability”: 3.758965427606845e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.23054754734039307,
“recall”: 1,
“row_count”: 1225,
“tn”: 878,
“tn_rate”: 0.7668122053146362,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -14.699250596490065
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3883495145631068,
“fn”: 0,
“fn_rate”: 0,
“fp”: 252,
“fp_rate”: 0.22008733451366425,
“match_probability”: 5.171950066035876e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2409638613462448,
“recall”: 1,
“row_count”: 1225,
“tn”: 893,
“tn_rate”: 0.7799126505851746,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -14.238857510706726
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4289544235924933,
“fn”: 0,
“fn_rate”: 0,
“fp”: 213,
“fp_rate”: 0.1860262006521225,
“match_probability”: 5.5174895863278984e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.27303755283355713,
“recall”: 1,
“row_count”: 1225,
“tn”: 932,
“tn_rate”: 0.8139737844467163,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -14.145548870117404
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43010752688172044,
“fn”: 0,
“fn_rate”: 0,
“fp”: 212,
“fp_rate”: 0.1851528435945511,
“match_probability”: 9.12177495266012e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.27397260069847107,
“recall”: 1,
“row_count”: 1225,
“tn”: 933,
“tn_rate”: 0.8148471713066101,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.420194291771473
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43243243243243246,
“fn”: 0,
“fn_rate”: 0,
“fp”: 210,
“fp_rate”: 0.18340611457824707,
“match_probability”: 9.903883833168822e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.27586206793785095,
“recall”: 1,
“row_count”: 1225,
“tn”: 935,
“tn_rate”: 0.8165938854217529,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.301503191847232
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43360433604336046,
“fn”: 0,
“fn_rate”: 0,
“fp”: 209,
“fp_rate”: 0.18253275752067566,
“match_probability”: 0.0001112287574510287,
“n”: 1145,
“p”: 80,
“precision”: 0.27681660652160645,
“recall”: 1,
“row_count”: 1225,
“tn”: 936,
“tn_rate”: 0.8174672722816467,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.134022066009639
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.49230769230769234,
“fn”: 0,
“fn_rate”: 0,
“fp”: 165,
“fp_rate”: 0.14410480856895447,
“match_probability”: 0.00011374928644903227,
“n”: 1145,
“p”: 80,
“precision”: 0.3265306055545807,
“recall”: 1,
“row_count”: 1225,
“tn”: 980,
“tn_rate”: 0.8558952212333679,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.101690769391588
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4953560371517028,
“fn”: 0,
“fn_rate”: 0,
“fp”: 163,
“fp_rate”: 0.14235807955265045,
“match_probability”: 0.0001235840811694169,
“n”: 1145,
“p”: 80,
“precision”: 0.3292181193828583,
“recall”: 1,
“row_count”: 1225,
“tn”: 982,
“tn_rate”: 0.8576419353485107,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.982041152321187
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4968944099378882,
“fn”: 0,
“fn_rate”: 0,
“fp”: 162,
“fp_rate”: 0.14148472249507904,
“match_probability”: 0.00017762195604111922,
“n”: 1145,
“p”: 80,
“precision”: 0.3305785059928894,
“recall”: 1,
“row_count”: 1225,
“tn”: 983,
“tn_rate”: 0.8585152626037598,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.458646176676085
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4984423676012461,
“fn”: 0,
“fn_rate”: 0,
“fp”: 161,
“fp_rate”: 0.14061135053634644,
“match_probability”: 0.00021729344453817065,
“n”: 1145,
“p”: 80,
“precision”: 0.33195021748542786,
“recall”: 1,
“row_count”: 1225,
“tn”: 984,
“tn_rate”: 0.8593886494636536,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.167754206375593
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5947955390334573,
“fn”: 0,
“fn_rate”: 0,
“fp”: 109,
“fp_rate”: 0.09519650787115097,
“match_probability”: 0.00021748127185195417,
“n”: 1145,
“p”: 80,
“precision”: 0.42328041791915894,
“recall”: 1,
“row_count”: 1225,
“tn”: 1036,
“tn_rate”: 0.9048035144805908,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.166507415977357
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6037735849056604,
“fn”: 0,
“fn_rate”: 0,
“fp”: 105,
“fp_rate”: 0.09170305728912354,
“match_probability”: 0.00024482495073726933,
“n”: 1145,
“p”: 80,
“precision”: 0.4324324429035187,
“recall”: 1,
“row_count”: 1225,
“tn”: 1040,
“tn_rate”: 0.9082969427108765,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.995608534296265
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6083650190114068,
“fn”: 0,
“fn_rate”: 0,
“fp”: 103,
“fp_rate”: 0.08995632827281952,
“match_probability”: 0.0002625590131734858,
“n”: 1145,
“p”: 80,
“precision”: 0.437158465385437,
“recall”: 1,
“row_count”: 1225,
“tn”: 1042,
“tn_rate”: 0.9100436568260193,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.894691815613207
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6153846153846154,
“fn”: 0,
“fn_rate”: 0,
“fp”: 100,
“fp_rate”: 0.08733624219894409,
“match_probability”: 0.0002930232038817894,
“n”: 1145,
“p”: 80,
“precision”: 0.4444444477558136,
“recall”: 1,
“row_count”: 1225,
“tn”: 1045,
“tn_rate”: 0.9126637578010559,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.736274661366805
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6177606177606177,
“fn”: 0,
“fn_rate”: 0,
“fp”: 99,
“fp_rate”: 0.08646288514137268,
“match_probability”: 0.00029305738913465223,
“n”: 1145,
“p”: 80,
“precision”: 0.44692736864089966,
“recall”: 1,
“row_count”: 1225,
“tn”: 1046,
“tn_rate”: 0.9135371446609497,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.736106311306829
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6299212598425197,
“fn”: 0,
“fn_rate”: 0,
“fp”: 94,
“fp_rate”: 0.08209607005119324,
“match_probability”: 0.0004672256234558191,
“n”: 1145,
“p”: 80,
“precision”: 0.4597701132297516,
“recall”: 1,
“row_count”: 1225,
“tn”: 1051,
“tn_rate”: 0.9179039597511292,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.062918761678503
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7511737089201878,
“fn”: 0,
“fn_rate”: 0,
“fp”: 53,
“fp_rate”: 0.04628821089863777,
“match_probability”: 0.0004676293897855565,
“n”: 1145,
“p”: 80,
“precision”: 0.6015037298202515,
“recall”: 1,
“row_count”: 1225,
“tn”: 1092,
“tn_rate”: 0.9537118077278137,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.06167197128027
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7766990291262136,
“fn”: 0,
“fn_rate”: 0,
“fp”: 46,
“fp_rate”: 0.04017467424273491,
“match_probability”: 0.0004782223679025744,
“n”: 1145,
“p”: 80,
“precision”: 0.6349206566810608,
“recall”: 1,
“row_count”: 1225,
“tn”: 1099,
“tn_rate”: 0.959825336933136,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.029340674662219
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7804878048780488,
“fn”: 0,
“fn_rate”: 0,
“fp”: 45,
“fp_rate”: 0.0393013097345829,
“match_probability”: 0.0005365001824672376,
“n”: 1145,
“p”: 80,
“precision”: 0.6399999856948853,
“recall”: 1,
“row_count”: 1225,
“tn”: 1100,
“tn_rate”: 0.960698664188385,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -10.863359504043311
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7745098039215687,
“fn”: 1,
“fn_rate”: 0.012500000186264515,
“fp”: 45,
“fp_rate”: 0.0393013097345829,
“match_probability”: 0.000630078776508268,
“n”: 1145,
“p”: 80,
“precision”: 0.6370967626571655,
“recall”: 0.987500011920929,
“row_count”: 1225,
“tn”: 1100,
“tn_rate”: 0.960698664188385,
“tp”: 79,
“tp_rate”: 0.987500011920929,
“truth_threshold”: -10.631270866609741
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7761194029850746,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 43,
“fp_rate”: 0.03755458444356918,
“match_probability”: 0.0009132375259182005,
“n”: 1145,
“p”: 80,
“precision”: 0.64462810754776,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1102,
“tn_rate”: 0.9624454379081726,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -10.095404111646223
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7878787878787878,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 40,
“fp_rate”: 0.034934498369693756,
“match_probability”: 0.0010057482579951408,
“n”: 1145,
“p”: 80,
“precision”: 0.6610169410705566,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1105,
“tn_rate”: 0.9650654792785645,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.956063327336162
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7959183673469388,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 38,
“fp_rate”: 0.03318777307868004,
“match_probability”: 0.0010279679235095877,
“n”: 1145,
“p”: 80,
“precision”: 0.6724137663841248,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1107,
“tn_rate”: 0.966812252998352,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.92450522996513
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8041237113402062,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 36,
“fp_rate”: 0.03144104778766632,
“match_probability”: 0.001230152436143478,
“n”: 1145,
“p”: 80,
“precision”: 0.6842105388641357,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1109,
“tn_rate”: 0.9685589671134949,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.66517135703567
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8167539267015707,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 33,
“fp_rate”: 0.028820959851145744,
“match_probability”: 0.0012302958160745666,
“n”: 1145,
“p”: 80,
“precision”: 0.7027027010917664,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1112,
“tn_rate”: 0.9711790680885315,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.665003006975695
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8324324324324325,
“fn”: 3,
“fn_rate”: 0.03750000149011612,
“fp”: 28,
“fp_rate”: 0.0244541484862566,
“match_probability”: 0.0019620776764117027,
“n”: 1145,
“p”: 80,
“precision”: 0.7333333492279053,
“recall”: 0.9624999761581421,
“row_count”: 1225,
“tn”: 1117,
“tn_rate”: 0.9755458235740662,
“tp”: 77,
“tp_rate”: 0.9624999761581421,
“truth_threshold”: -8.990568666949134
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8651685393258427,
“fn”: 3,
“fn_rate”: 0.03750000149011612,
“fp”: 21,
“fp_rate”: 0.018340611830353737,
“match_probability”: 0.0026423098061360215,
“n”: 1145,
“p”: 80,
“precision”: 0.7857142686843872,
“recall”: 0.9624999761581421,
“row_count”: 1225,
“tn”: 1124,
“tn_rate”: 0.9816594123840332,
“tp”: 77,
“tp_rate”: 0.9624999761581421,
“truth_threshold”: -8.560167562278608
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9156626506024096,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 10,
“fp_rate”: 0.008733624592423439,
“match_probability”: 0.0026445882601587108,
“n”: 1145,
“p”: 80,
“precision”: 0.8837209343910217,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1135,
“tn_rate”: 0.9912663698196411,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -8.558920771880372
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9212121212121213,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 9,
“fp_rate”: 0.00786026194691658,
“match_probability”: 0.005221616141575074,
“n”: 1145,
“p”: 80,
“precision”: 0.8941176533699036,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1136,
“tn_rate”: 0.9921397566795349,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -7.573734944253683
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.926829268292683,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 8,
“fp_rate”: 0.006986899767071009,
“match_probability”: 0.006168101653159832,
“n”: 1145,
“p”: 80,
“precision”: 0.9047619104385376,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1137,
“tn_rate”: 0.9930130839347839,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -7.332031495879385
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9440993788819876,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 5,
“fp_rate”: 0.0043668122962117195,
“match_probability”: 0.006932271445874234,
“n”: 1145,
“p”: 80,
“precision”: 0.9382715821266174,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1140,
“tn_rate”: 0.9956331849098206,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -7.162420157635773
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9308176100628931,
“fn”: 6,
“fn_rate”: 0.07500000298023224,
“fp”: 5,
“fp_rate”: 0.0043668122962117195,
“match_probability”: 0.007905300834090159,
“n”: 1145,
“p”: 80,
“precision”: 0.9367088675498962,
“recall”: 0.925000011920929,
“row_count”: 1225,
“tn”: 1140,
“tn_rate”: 0.9956331849098206,
“tp”: 74,
“tp_rate”: 0.925000011920929,
“truth_threshold”: -6.9715136626222325
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9240506329113924,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 5,
“fp_rate”: 0.0043668122962117195,
“match_probability”: 0.011019454209438206,
“n”: 1145,
“p”: 80,
“precision”: 0.9358974099159241,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1140,
“tn_rate”: 0.9956331849098206,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -6.487817467549237
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9299363057324841,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 4,
“fp_rate”: 0.0034934498835355043,
“match_probability”: 0.02158081204992207,
“n”: 1145,
“p”: 80,
“precision”: 0.948051929473877,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1141,
“tn_rate”: 0.9965065717697144,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -5.502631639922549
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9358974358974359,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 3,
“fp_rate”: 0.0026200872380286455,
“match_probability”: 0.023127827543987463,
“n”: 1145,
“p”: 80,
“precision”: 0.9605262875556946,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1142,
“tn_rate”: 0.9973798990249634,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -5.400468130841257
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9419354838709677,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 2,
“fp_rate”: 0.0017467249417677522,
“match_probability”: 0.0332974812028764,
“n”: 1145,
“p”: 80,
“precision”: 0.9733333587646484,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1143,
“tn_rate”: 0.9982532858848572,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -4.859587047207046
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.948051948051948,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 1,
“fp_rate”: 0.0008733624708838761,
“match_probability”: 0.05870331488495838,
“n”: 1145,
“p”: 80,
“precision”: 0.9864864945411682,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1144,
“tn_rate”: 0.9991266131401062,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -4.003135636832664
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9411764705882353,
“fn”: 8,
“fn_rate”: 0.10000000149011612,
“fp”: 1,
“fp_rate”: 0.0008733624708838761,
“match_probability”: 0.0848898441900921,
“n”: 1145,
“p”: 80,
“precision”: 0.9863013625144958,
“recall”: 0.8999999761581421,
“row_count”: 1225,
“tn”: 1144,
“tn_rate”: 0.9991266131401062,
“tp”: 72,
“tp_rate”: 0.8999999761581421,
“truth_threshold”: -3.43028154519318
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9473684210526315,
“fn”: 8,
“fn_rate”: 0.10000000149011612,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.14811700142046944,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8999999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 72,
“tp_rate”: 0.8999999761581421,
“truth_threshold”: -2.5239180498330835
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9333333333333333,
“fn”: 10,
“fn_rate”: 0.125,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.1993605549730907,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.875,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 70,
“tp_rate”: 0.875,
“truth_threshold”: -2.0057727049896563
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9261744966442953,
“fn”: 11,
“fn_rate”: 0.13750000298023224,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.26112994029130765,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.862500011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 69,
“tp_rate”: 0.862500011920929,
“truth_threshold”: -1.5005527874927418
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.918918918918919,
“fn”: 12,
“fn_rate”: 0.15000000596046448,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.2953936057066029,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8500000238418579,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 68,
“tp_rate”: 0.8500000238418579,
“truth_threshold”: -1.254178970459649
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9115646258503401,
“fn”: 13,
“fn_rate”: 0.16249999403953552,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.30420383736772966,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8374999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 67,
“tp_rate”: 0.8374999761581421,
“truth_threshold”: -1.1936263704101118
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9041095890410958,
“fn”: 14,
“fn_rate”: 0.17499999701976776,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.42737692814554235,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.824999988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 66,
“tp_rate”: 0.824999988079071,
“truth_threshold”: -0.4220767733771095
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.896551724137931,
“fn”: 15,
“fn_rate”: 0.1875,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.5519033532360711,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8125,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 65,
“tp_rate”: 0.8125,
“truth_threshold”: 0.3006057206059389
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8888888888888888,
“fn”: 16,
“fn_rate”: 0.20000000298023224,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.8723759803772896,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.800000011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 64,
“tp_rate”: 0.800000011920929,
“truth_threshold”: 2.7730501692782785
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8811188811188811,
“fn”: 17,
“fn_rate”: 0.21250000596046448,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9142192476652152,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.7875000238418579,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 63,
“tp_rate”: 0.7875000238418579,
“truth_threshold”: 3.4138143190696444
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8652482269503546,
“fn”: 19,
“fn_rate”: 0.23749999701976776,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9557861173279867,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.762499988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 61,
“tp_rate”: 0.762499988079071,
“truth_threshold”: 4.4341164765657055
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8571428571428571,
“fn”: 20,
“fn_rate”: 0.25,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9645864965344157,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.75,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 60,
“tp_rate”: 0.75,
“truth_threshold”: 4.767539131589998
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8405797101449275,
“fn”: 22,
“fn_rate”: 0.2750000059604645,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9684451866143052,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.7250000238418579,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 58,
“tp_rate”: 0.7250000238418579,
“truth_threshold”: 4.939738399041853
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8235294117647058,
“fn”: 24,
“fn_rate”: 0.30000001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9692051377521285,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.699999988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 56,
“tp_rate”: 0.699999988079071,
“truth_threshold”: 4.976040472724046
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8148148148148148,
“fn”: 25,
“fn_rate”: 0.3125,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9832162822015872,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.6875,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 55,
“tp_rate”: 0.6875,
“truth_threshold”: 5.872374576287086
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8059701492537313,
“fn”: 26,
“fn_rate”: 0.32499998807907104,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9850764583387661,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.675000011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 54,
“tp_rate”: 0.675000011920929,
“truth_threshold”: 6.044573843738942
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7878787878787878,
“fn”: 28,
“fn_rate”: 0.3499999940395355,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9878622357526349,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.6499999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 52,
“tp_rate”: 0.6499999761581421,
“truth_threshold”: 6.346735252448553
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7786259541984732,
“fn”: 29,
“fn_rate”: 0.36250001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9910179222087045,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.637499988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 51,
“tp_rate”: 0.637499988079071,
“truth_threshold”: 6.785718121097146
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7401574803149606,
“fn”: 33,
“fn_rate”: 0.4124999940395355,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9947187583517655,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.5874999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 47,
“tp_rate”: 0.5874999761581421,
“truth_threshold”: 7.557267718130148
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7301587301587301,
“fn”: 34,
“fn_rate”: 0.42500001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9950259857384809,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.574999988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 46,
“tp_rate”: 0.574999988079071,
“truth_threshold”: 7.644179748761141
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.72,
“fn”: 35,
“fn_rate”: 0.4375,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9952358231673181,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.5625,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 45,
“tp_rate”: 0.5625,
“truth_threshold”: 7.70666764255523
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7096774193548387,
“fn”: 36,
“fn_rate”: 0.44999998807907104,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9969032615582838,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.550000011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 44,
“tp_rate”: 0.550000011920929,
“truth_threshold”: 8.330560169061997
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6776859504132231,
“fn”: 39,
“fn_rate”: 0.48750001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9972424746970352,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.512499988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 41,
“tp_rate”: 0.512499988079071,
“truth_threshold”: 8.498426397389116
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6666666666666666,
“fn”: 40,
“fn_rate”: 0.5,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9981064117342551,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.5,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 40,
“tp_rate”: 0.5,
“truth_threshold”: 9.041927153403975
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6554621848739496,
“fn”: 41,
“fn_rate”: 0.512499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9988324650137483,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.48750001192092896,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 39,
“tp_rate”: 0.48750001192092896,
“truth_threshold”: 9.740633121408642
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6440677966101694,
“fn”: 42,
“fn_rate”: 0.5249999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9994787721708078,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.4749999940395355,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 38,
“tp_rate”: 0.4749999940395355,
“truth_threshold”: 10.90504609693117
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6324786324786325,
“fn”: 43,
“fn_rate”: 0.5375000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9995017946999388,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.4625000059604645,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 37,
“tp_rate”: 0.4625000059604645,
“truth_threshold”: 10.970253072635769
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6206896551724138,
“fn”: 44,
“fn_rate”: 0.550000011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9995258817121194,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.44999998807907104,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 36,
“tp_rate”: 0.44999998807907104,
“truth_threshold”: 11.041781166896174
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.584070796460177,
“fn”: 47,
“fn_rate”: 0.5874999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9995578236166905,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.4124999940395355,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 33,
“tp_rate”: 0.4124999940395355,
“truth_threshold”: 11.142452340087624
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5454545454545454,
“fn”: 50,
“fn_rate”: 0.625,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9996140562667976,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.375,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 30,
“tp_rate”: 0.375,
“truth_threshold”: 11.338764940878066
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5321100917431193,
“fn”: 51,
“fn_rate”: 0.637499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9996630811797715,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.36250001192092896,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 29,
“tp_rate”: 0.36250001192092896,
“truth_threshold”: 11.534825207124333
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5046728971962616,
“fn”: 53,
“fn_rate”: 0.6625000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9997977668544322,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.3375000059604645,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 27,
“tp_rate”: 0.3375000059604645,
“truth_threshold”: 12.2714011181233
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.49056603773584906,
“fn”: 54,
“fn_rate”: 0.675000011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999820516275079,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.32499998807907104,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 26,
“tp_rate”: 0.32499998807907104,
“truth_threshold”: 12.443600385575156
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.47619047619047616,
“fn”: 55,
“fn_rate”: 0.6875,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998369642079589,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.3125,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 25,
“tp_rate”: 0.3125,
“truth_threshold”: 12.582288428352102
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.46153846153846156,
“fn”: 56,
“fn_rate”: 0.699999988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998449920168438,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.30000001192092896,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 24,
“tp_rate”: 0.30000001192092896,
“truth_threshold”: 12.65514621447883
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43137254901960786,
“fn”: 58,
“fn_rate”: 0.7250000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998520890681417,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.2750000059604645,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 22,
“tp_rate”: 0.2750000059604645,
“truth_threshold”: 12.722770289758667
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4158415841584158,
“fn”: 59,
“fn_rate”: 0.737500011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998610923461233,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.26249998807907104,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 21,
“tp_rate”: 0.26249998807907104,
“truth_threshold”: 12.813385869564604
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4,
“fn”: 60,
“fn_rate”: 0.75,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999323624771768,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.25,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 20,
“tp_rate”: 0.25,
“truth_threshold”: 13.851719067794344
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3838383838383838,
“fn”: 61,
“fn_rate”: 0.762499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999399720027822,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.23749999701976776,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 19,
“tp_rate”: 0.23749999701976776,
“truth_threshold”: 14.023918335246199
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3673469387755102,
“fn”: 62,
“fn_rate”: 0.7749999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999755226761624,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.22499999403953552,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 18,
“tp_rate”: 0.22499999403953552,
“truth_threshold”: 15.318159327225505
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.35051546391752575,
“fn”: 63,
“fn_rate”: 0.7875000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999981031560779,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.21250000596046448,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 17,
“tp_rate”: 0.21250000596046448,
“truth_threshold”: 15.686012134062487
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2978723404255319,
“fn”: 66,
“fn_rate”: 0.824999988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999988858319547,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.17499999701976776,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 14,
“tp_rate”: 0.17499999701976776,
“truth_threshold”: 16.453657555557786
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.27956989247311825,
“fn”: 67,
“fn_rate”: 0.8374999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999905100247786,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.16249999403953552,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 13,
“tp_rate”: 0.16249999403953552,
“truth_threshold”: 16.68515055777507
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2608695652173913,
“fn”: 68,
“fn_rate”: 0.8500000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999994276807205,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.15000000596046448,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 12,
“tp_rate”: 0.15000000596046448,
“truth_threshold”: 17.414740105266343
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.24175824175824176,
“fn”: 69,
“fn_rate”: 0.862500011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999981851751295,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.13750000298023224,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 11,
“tp_rate”: 0.13750000298023224,
“truth_threshold”: 19.07173561535223
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.20224719101123595,
“fn”: 71,
“fn_rate”: 0.887499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999984157825186,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.11249999701976776,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 9,
“tp_rate”: 0.11249999701976776,
“truth_threshold”: 19.2677958815985
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.18181818181818182,
“fn”: 72,
“fn_rate”: 0.8999999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999985940245613,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.10000000149011612,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 8,
“tp_rate”: 0.10000000149011612,
“truth_threshold”: 19.439995149050354
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.16091954022988506,
“fn”: 73,
“fn_rate”: 0.9125000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999986644842926,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.08749999850988388,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 7,
“tp_rate”: 0.08749999850988388,
“truth_threshold”: 19.51416969863159
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.13953488372093023,
“fn”: 74,
“fn_rate”: 0.925000011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999991561863727,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.07500000298023224,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 6,
“tp_rate”: 0.07500000298023224,
“truth_threshold”: 20.17657106004932
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.11764705882352941,
“fn”: 75,
“fn_rate”: 0.9375,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999992886543447,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.0625,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 5,
“tp_rate”: 0.0625,
“truth_threshold”: 20.42294487708241
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.09523809523809523,
“fn”: 76,
“fn_rate”: 0.949999988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999996797546244,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.05000000074505806,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 4,
“tp_rate”: 0.05000000074505806,
“truth_threshold”: 21.574318464692155
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.07228915662650602,
“fn”: 77,
“fn_rate”: 0.9624999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999999937578966,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.03750000149011612,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 3,
“tp_rate”: 0.03750000149011612,
“truth_threshold”: 23.93339241447461
}
]
},
“encoding”: {
“tooltip”: [
{
“field”: “truth_threshold”,
“format”: “.4f”,
“type”: “quantitative”
},
{
“field”: “match_probability”,
“format”: “.4%”,
“type”: “quantitative”
},
{
“field”: “fp_rate”,
“format”: “.4f”,
“title”: “FP_rate”,
“type”: “quantitative”
},
{
“field”: “tp_rate”,
“format”: “.4f”,
“title”: “TP_rate”,
“type”: “quantitative”
},
{
“field”: “tp”,
“format”: “,.0f”,
“title”: “TP”,
“type”: “quantitative”
},
{
“field”: “tn”,
“format”: “,.0f”,
“title”: “TN”,
“type”: “quantitative”
},
{
“field”: “fp”,
“format”: “,.0f”,
“title”: “FP”,
“type”: “quantitative”
},
{
“field”: “fn”,
“format”: “,.0f”,
“title”: “FN”,
“type”: “quantitative”
},
{
“field”: “precision”,
“format”: “.4f”,
“type”: “quantitative”
},
{
“field”: “recall”,
“format”: “.4f”,
“type”: “quantitative”
},
{
“field”: “f1”,
“format”: “.4f”,
“title”: “F1”,
“type”: “quantitative”
}
],
“x”: {
“field”: “fp_rate”,
“sort”: [
“truth_threshold”
],
“title”: “False Positive Rate amongst clerically reviewed records”,
“type”: “quantitative”
},
“y”: {
“field”: “tp_rate”,
“sort”: [
“truth_threshold”
],
“title”: “True Positive Rate amongst clerically reviewed records”,
“type”: “quantitative”
}
},
“height”: 400,
“mark”: {
“clip”: true,
“point”: true,
“type”: “line”
},
“params”: [
{
“bind”: “scales”,
“name”: “mouse_zoom”,
“select”: {
“encodings”: [
“x”
],
“type”: “interval”
}
}
],
“title”: “Receiver operating characteristic curve”,
“width”: 400
},
“text/plain”: [
“\n”,
“\n”,
“If you see this message, it means the renderer has not been properly enabled\n”,
“for the frontend that you are using. For more information, see\n”,
“https://altair-viz.github.io/user_guide/display_frontends.html#troubleshooting\n”
]
},
“execution_count”: 4,
“metadata”: {},
“output_type”: “execute_result”
}
],
“source”: [
“linker.roc_chart_from_labels_table(labels_table)”
]
},
{
“cell_type”: “markdown”,
“id”: “9f749c3c”,
“metadata”: {},
“source”: [
“### Precision-recall chart\n”,
“\n”,
“An alternative representation of truth space is called a precision recall curve.\n”,
“\n”,
“This can be plotted as follows:”
]
},
{
“cell_type”: “code”,
“execution_count”: 5,
“id”: “18d25327”,
“metadata”: {},
“outputs”: [
{
“data”: {
“application/vnd.vegalite.v5+json”: {
“$schema”: “https://vega.github.io/schema/vega-lite/v5.9.3.json”,
“config”: {
“view”: {
“continuousHeight”: 300,
“continuousWidth”: 300
}
},
“data”: {
“name”: “data-a06e697dc67ce3fc8c89804613387d44”
},
“datasets”: {
“data-a06e697dc67ce3fc8c89804613387d44”: [
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.12260536398467432,
“fn”: 0,
“fn_rate”: 0,
“fp”: 1145,
“fp_rate”: 1,
“match_probability”: 1.0970745903601051e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.06530611962080002,
“recall”: 1,
“row_count”: 1225,
“tn”: 0,
“tn_rate”: 0,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -26.44176312501961
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.1271860095389507,
“fn”: 0,
“fn_rate”: 0,
“fp”: 1098,
“fp_rate”: 0.9589519500732422,
“match_probability”: 2.3595259605557447e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.06791171431541443,
“recall”: 1,
“row_count”: 1225,
“tn”: 47,
“tn_rate”: 0.04104803502559662,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -25.33692768032252
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.13900955690703737,
“fn”: 0,
“fn_rate”: 0,
“fp”: 991,
“fp_rate”: 0.8655021786689758,
“match_probability”: 4.609993996622695e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.07469654828310013,
“recall”: 1,
“row_count”: 1225,
“tn”: 154,
“tn_rate”: 0.13449782133102417,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -24.370659820688473
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.14466546112115733,
“fn”: 0,
“fn_rate”: 0,
“fp”: 946,
“fp_rate”: 0.8262009024620056,
“match_probability”: 4.613979717890432e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.07797271013259888,
“recall”: 1,
“row_count”: 1225,
“tn”: 199,
“tn_rate”: 0.17379912734031677,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -24.36941303029024
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.14883720930232558,
“fn”: 0,
“fn_rate”: 0,
“fp”: 915,
“fp_rate”: 0.7991266250610352,
“match_probability”: 6.217111244825231e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.08040200918912888,
“recall”: 1,
“row_count”: 1225,
“tn”: 230,
“tn_rate”: 0.20087336003780365,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -23.939180275679686
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.14995313964386128,
“fn”: 0,
“fn_rate”: 0,
“fp”: 907,
“fp_rate”: 0.7921397089958191,
“match_probability”: 9.914913870853073e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.08105369657278061,
“recall”: 1,
“row_count”: 1225,
“tn”: 238,
“tn_rate”: 0.20786026120185852,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -23.265824375991386
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.15384615384615385,
“fn”: 0,
“fn_rate”: 0,
“fp”: 880,
“fp_rate”: 0.7685589790344238,
“match_probability”: 9.923486133856795e-08,
“n”: 1145,
“p”: 80,
“precision”: 0.0833333358168602,
“recall”: 1,
“row_count”: 1225,
“tn”: 265,
“tn_rate”: 0.23144105076789856,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -23.264577585593152
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.1654601861427094,
“fn”: 0,
“fn_rate”: 0,
“fp”: 807,
“fp_rate”: 0.704803466796875,
“match_probability”: 1.9388304670955502e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09019165486097336,
“recall”: 1,
“row_count”: 1225,
“tn”: 338,
“tn_rate”: 0.2951965034008026,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -22.298309725959104
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.17075773745997866,
“fn”: 0,
“fn_rate”: 0,
“fp”: 777,
“fp_rate”: 0.6786026358604431,
“match_probability”: 2.6147374783150674e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09334889054298401,
“recall”: 1,
“row_count”: 1225,
“tn”: 368,
“tn_rate”: 0.3213973939418793,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -21.866830180950316
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.17185821697099893,
“fn”: 0,
“fn_rate”: 0,
“fp”: 771,
“fp_rate”: 0.6733624339103699,
“match_probability”: 4.1699259991212243e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09400705248117447,
“recall”: 1,
“row_count”: 1225,
“tn”: 374,
“tn_rate”: 0.3266375660896301,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -21.193474281262016
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.17486338797814208,
“fn”: 0,
“fn_rate”: 0,
“fp”: 755,
“fp_rate”: 0.6593886613845825,
“match_probability”: 5.737469745427848e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.09580838680267334,
“recall”: 1,
“row_count”: 1225,
“tn”: 390,
“tn_rate”: 0.34061136841773987,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -20.733081195478675
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.1853997682502897,
“fn”: 0,
“fn_rate”: 0,
“fp”: 703,
“fp_rate”: 0.6139737963676453,
“match_probability”: 9.889899065324464e-07,
“n”: 1145,
“p”: 80,
“precision”: 0.10217113792896271,
“recall”: 1,
“row_count”: 1225,
“tn”: 442,
“tn_rate”: 0.38602620363235474,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -19.947539440247656
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.19347037484885127,
“fn”: 0,
“fn_rate”: 0,
“fp”: 667,
“fp_rate”: 0.5825327634811401,
“match_probability”: 1.2339817332413448e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.10709504783153534,
“recall”: 1,
“row_count”: 1225,
“tn”: 478,
“tn_rate”: 0.41746723651885986,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -19.628245750781588
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.20969855832241152,
“fn”: 0,
“fn_rate”: 0,
“fp”: 603,
“fp_rate”: 0.5266375541687012,
“match_probability”: 1.3164288598876683e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.11713030934333801,
“recall”: 1,
“row_count”: 1225,
“tn”: 542,
“tn_rate”: 0.47336244583129883,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -19.534937110192267
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2102496714848883,
“fn”: 0,
“fn_rate”: 0,
“fp”: 601,
“fp_rate”: 0.5248908400535583,
“match_probability”: 2.1270611437086084e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.11747430264949799,
“recall”: 1,
“row_count”: 1225,
“tn”: 544,
“tn_rate”: 0.47510915994644165,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.84270399555057
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2247191011235955,
“fn”: 0,
“fn_rate”: 0,
“fp”: 552,
“fp_rate”: 0.4820960760116577,
“match_probability”: 2.410925715620064e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1265822798013687,
“recall”: 1,
“row_count”: 1225,
“tn”: 593,
“tn_rate”: 0.5179039239883423,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.661977891147544
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.23845007451564829,
“fn”: 0,
“fn_rate”: 0,
“fp”: 511,
“fp_rate”: 0.44628819823265076,
“match_probability”: 2.4130101554615983e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.13536378741264343,
“recall”: 1,
“row_count”: 1225,
“tn”: 634,
“tn_rate”: 0.5537117719650269,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.660731100749306
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.24279210925644917,
“fn”: 0,
“fn_rate”: 0,
“fp”: 499,
“fp_rate”: 0.43580785393714905,
“match_probability”: 3.2514100952943022e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.13816925883293152,
“recall”: 1,
“row_count”: 1225,
“tn”: 646,
“tn_rate”: 0.5641921162605286,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.230498346138756
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2457757296466974,
“fn”: 0,
“fn_rate”: 0,
“fp”: 491,
“fp_rate”: 0.42882096767425537,
“match_probability”: 3.2517895276949123e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.14010508358478546,
“recall”: 1,
“row_count”: 1225,
“tn”: 654,
“tn_rate”: 0.5711790323257446,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -18.23032999607878
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.24806201550387597,
“fn”: 0,
“fn_rate”: 0,
“fp”: 485,
“fp_rate”: 0.4235807955265045,
“match_probability”: 4.155800611737638e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.14159291982650757,
“recall”: 1,
“row_count”: 1225,
“tn”: 660,
“tn_rate”: 0.5764192342758179,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.876436135916524
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.26229508196721313,
“fn”: 0,
“fn_rate”: 0,
“fp”: 450,
“fp_rate”: 0.3930130898952484,
“match_probability”: 4.159393630462497e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.15094339847564697,
“recall”: 1,
“row_count”: 1225,
“tn”: 695,
“tn_rate”: 0.6069868803024292,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.875189345518287
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.26622296173044924,
“fn”: 0,
“fn_rate”: 0,
“fp”: 441,
“fp_rate”: 0.3851528465747833,
“match_probability”: 5.185268307642189e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1535508632659912,
“recall”: 1,
“row_count”: 1225,
“tn”: 704,
“tn_rate”: 0.6148471832275391,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.557142446450456
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.272572402044293,
“fn”: 0,
“fn_rate”: 0,
“fp”: 427,
“fp_rate”: 0.3729257583618164,
“match_probability”: 5.189751378094057e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1577909290790558,
“recall”: 1,
“row_count”: 1225,
“tn”: 718,
“tn_rate”: 0.6270742416381836,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.55589565605222
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.28776978417266186,
“fn”: 0,
“fn_rate”: 0,
“fp”: 396,
“fp_rate”: 0.3458515405654907,
“match_probability”: 5.604570790440636e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.16806723177433014,
“recall”: 1,
“row_count”: 1225,
“tn”: 749,
“tn_rate”: 0.6541484594345093,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.444956590907736
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2909090909090909,
“fn”: 0,
“fn_rate”: 0,
“fp”: 390,
“fp_rate”: 0.34061136841773987,
“match_probability”: 6.9937388599298e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.1702127605676651,
“recall”: 1,
“row_count”: 1225,
“tn”: 755,
“tn_rate”: 0.6593886613845825,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -17.125494551381692
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.29357798165137616,
“fn”: 0,
“fn_rate”: 0,
“fp”: 385,
“fp_rate”: 0.3362445533275604,
“match_probability”: 8.938018204926952e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.17204301059246063,
“recall”: 1,
“row_count”: 1225,
“tn”: 760,
“tn_rate”: 0.663755476474762,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -16.771600691219437
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.33472803347280333,
“fn”: 0,
“fn_rate”: 0,
“fp”: 318,
“fp_rate”: 0.27772924304008484,
“match_probability”: 8.945745792475534e-06,
“n”: 1145,
“p”: 80,
“precision”: 0.2010050266981125,
“recall”: 1,
“row_count”: 1225,
“tn”: 827,
“tn_rate”: 0.7222707271575928,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -16.7703539008212
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3470715835140998,
“fn”: 0,
“fn_rate”: 0,
“fp”: 301,
“fp_rate”: 0.2628820836544037,
“match_probability”: 1.013958109019518e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2099737524986267,
“recall”: 1,
“row_count”: 1225,
“tn”: 844,
“tn_rate”: 0.7371178865432739,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -16.589627796418174
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3524229074889868,
“fn”: 0,
“fn_rate”: 0,
“fp”: 294,
“fp_rate”: 0.2567685544490814,
“match_probability”: 1.7477868075897466e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2139037400484085,
“recall”: 1,
“row_count”: 1225,
“tn”: 851,
“tn_rate”: 0.7432314157485962,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.804086041187153
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.36281179138321995,
“fn”: 0,
“fn_rate”: 0,
“fp”: 281,
“fp_rate”: 0.2454148530960083,
“match_probability”: 2.180738317462202e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22160664200782776,
“recall”: 1,
“row_count”: 1225,
“tn”: 864,
“tn_rate”: 0.7545851469039917,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.484792351721085
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3686635944700461,
“fn”: 0,
“fn_rate”: 0,
“fp”: 274,
“fp_rate”: 0.23930130898952484,
“match_probability”: 2.3550426891535606e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2259887009859085,
“recall”: 1,
“row_count”: 1225,
“tn”: 871,
“tn_rate”: 0.760698676109314,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.373853286576601
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.37037037037037035,
“fn”: 0,
“fn_rate”: 0,
“fp”: 272,
“fp_rate”: 0.23755457997322083,
“match_probability”: 2.3570787705290104e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22727273404598236,
“recall”: 1,
“row_count”: 1225,
“tn”: 873,
“tn_rate”: 0.7624453902244568,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.372606496178365
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.37122969837587005,
“fn”: 0,
“fn_rate”: 0,
“fp”: 271,
“fp_rate”: 0.23668122291564941,
“match_probability”: 2.9387585463129283e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22792023420333862,
“recall”: 1,
“row_count”: 1225,
“tn”: 874,
“tn_rate”: 0.7633187770843506,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.054391247050557
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.37209302325581395,
“fn”: 0,
“fn_rate”: 0,
“fp”: 270,
“fp_rate”: 0.235807865858078,
“match_probability”: 2.9412992716308515e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.22857142984867096,
“recall”: 1,
“row_count”: 1225,
“tn”: 875,
“tn_rate”: 0.7641921639442444,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -15.053144456652323
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3747072599531616,
“fn”: 0,
“fn_rate”: 0,
“fp”: 267,
“fp_rate”: 0.23318777978420258,
“match_probability”: 3.758965427606845e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.23054754734039307,
“recall”: 1,
“row_count”: 1225,
“tn”: 878,
“tn_rate”: 0.7668122053146362,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -14.699250596490065
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3883495145631068,
“fn”: 0,
“fn_rate”: 0,
“fp”: 252,
“fp_rate”: 0.22008733451366425,
“match_probability”: 5.171950066035876e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.2409638613462448,
“recall”: 1,
“row_count”: 1225,
“tn”: 893,
“tn_rate”: 0.7799126505851746,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -14.238857510706726
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4289544235924933,
“fn”: 0,
“fn_rate”: 0,
“fp”: 213,
“fp_rate”: 0.1860262006521225,
“match_probability”: 5.5174895863278984e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.27303755283355713,
“recall”: 1,
“row_count”: 1225,
“tn”: 932,
“tn_rate”: 0.8139737844467163,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -14.145548870117404
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43010752688172044,
“fn”: 0,
“fn_rate”: 0,
“fp”: 212,
“fp_rate”: 0.1851528435945511,
“match_probability”: 9.12177495266012e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.27397260069847107,
“recall”: 1,
“row_count”: 1225,
“tn”: 933,
“tn_rate”: 0.8148471713066101,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.420194291771473
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43243243243243246,
“fn”: 0,
“fn_rate”: 0,
“fp”: 210,
“fp_rate”: 0.18340611457824707,
“match_probability”: 9.903883833168822e-05,
“n”: 1145,
“p”: 80,
“precision”: 0.27586206793785095,
“recall”: 1,
“row_count”: 1225,
“tn”: 935,
“tn_rate”: 0.8165938854217529,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.301503191847232
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43360433604336046,
“fn”: 0,
“fn_rate”: 0,
“fp”: 209,
“fp_rate”: 0.18253275752067566,
“match_probability”: 0.0001112287574510287,
“n”: 1145,
“p”: 80,
“precision”: 0.27681660652160645,
“recall”: 1,
“row_count”: 1225,
“tn”: 936,
“tn_rate”: 0.8174672722816467,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.134022066009639
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.49230769230769234,
“fn”: 0,
“fn_rate”: 0,
“fp”: 165,
“fp_rate”: 0.14410480856895447,
“match_probability”: 0.00011374928644903227,
“n”: 1145,
“p”: 80,
“precision”: 0.3265306055545807,
“recall”: 1,
“row_count”: 1225,
“tn”: 980,
“tn_rate”: 0.8558952212333679,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -13.101690769391588
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4953560371517028,
“fn”: 0,
“fn_rate”: 0,
“fp”: 163,
“fp_rate”: 0.14235807955265045,
“match_probability”: 0.0001235840811694169,
“n”: 1145,
“p”: 80,
“precision”: 0.3292181193828583,
“recall”: 1,
“row_count”: 1225,
“tn”: 982,
“tn_rate”: 0.8576419353485107,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.982041152321187
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4968944099378882,
“fn”: 0,
“fn_rate”: 0,
“fp”: 162,
“fp_rate”: 0.14148472249507904,
“match_probability”: 0.00017762195604111922,
“n”: 1145,
“p”: 80,
“precision”: 0.3305785059928894,
“recall”: 1,
“row_count”: 1225,
“tn”: 983,
“tn_rate”: 0.8585152626037598,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.458646176676085
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4984423676012461,
“fn”: 0,
“fn_rate”: 0,
“fp”: 161,
“fp_rate”: 0.14061135053634644,
“match_probability”: 0.00021729344453817065,
“n”: 1145,
“p”: 80,
“precision”: 0.33195021748542786,
“recall”: 1,
“row_count”: 1225,
“tn”: 984,
“tn_rate”: 0.8593886494636536,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.167754206375593
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5947955390334573,
“fn”: 0,
“fn_rate”: 0,
“fp”: 109,
“fp_rate”: 0.09519650787115097,
“match_probability”: 0.00021748127185195417,
“n”: 1145,
“p”: 80,
“precision”: 0.42328041791915894,
“recall”: 1,
“row_count”: 1225,
“tn”: 1036,
“tn_rate”: 0.9048035144805908,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -12.166507415977357
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6037735849056604,
“fn”: 0,
“fn_rate”: 0,
“fp”: 105,
“fp_rate”: 0.09170305728912354,
“match_probability”: 0.00024482495073726933,
“n”: 1145,
“p”: 80,
“precision”: 0.4324324429035187,
“recall”: 1,
“row_count”: 1225,
“tn”: 1040,
“tn_rate”: 0.9082969427108765,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.995608534296265
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6083650190114068,
“fn”: 0,
“fn_rate”: 0,
“fp”: 103,
“fp_rate”: 0.08995632827281952,
“match_probability”: 0.0002625590131734858,
“n”: 1145,
“p”: 80,
“precision”: 0.437158465385437,
“recall”: 1,
“row_count”: 1225,
“tn”: 1042,
“tn_rate”: 0.9100436568260193,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.894691815613207
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6153846153846154,
“fn”: 0,
“fn_rate”: 0,
“fp”: 100,
“fp_rate”: 0.08733624219894409,
“match_probability”: 0.0002930232038817894,
“n”: 1145,
“p”: 80,
“precision”: 0.4444444477558136,
“recall”: 1,
“row_count”: 1225,
“tn”: 1045,
“tn_rate”: 0.9126637578010559,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.736274661366805
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6177606177606177,
“fn”: 0,
“fn_rate”: 0,
“fp”: 99,
“fp_rate”: 0.08646288514137268,
“match_probability”: 0.00029305738913465223,
“n”: 1145,
“p”: 80,
“precision”: 0.44692736864089966,
“recall”: 1,
“row_count”: 1225,
“tn”: 1046,
“tn_rate”: 0.9135371446609497,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.736106311306829
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6299212598425197,
“fn”: 0,
“fn_rate”: 0,
“fp”: 94,
“fp_rate”: 0.08209607005119324,
“match_probability”: 0.0004672256234558191,
“n”: 1145,
“p”: 80,
“precision”: 0.4597701132297516,
“recall”: 1,
“row_count”: 1225,
“tn”: 1051,
“tn_rate”: 0.9179039597511292,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.062918761678503
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7511737089201878,
“fn”: 0,
“fn_rate”: 0,
“fp”: 53,
“fp_rate”: 0.04628821089863777,
“match_probability”: 0.0004676293897855565,
“n”: 1145,
“p”: 80,
“precision”: 0.6015037298202515,
“recall”: 1,
“row_count”: 1225,
“tn”: 1092,
“tn_rate”: 0.9537118077278137,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.06167197128027
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7766990291262136,
“fn”: 0,
“fn_rate”: 0,
“fp”: 46,
“fp_rate”: 0.04017467424273491,
“match_probability”: 0.0004782223679025744,
“n”: 1145,
“p”: 80,
“precision”: 0.6349206566810608,
“recall”: 1,
“row_count”: 1225,
“tn”: 1099,
“tn_rate”: 0.959825336933136,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -11.029340674662219
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7804878048780488,
“fn”: 0,
“fn_rate”: 0,
“fp”: 45,
“fp_rate”: 0.0393013097345829,
“match_probability”: 0.0005365001824672376,
“n”: 1145,
“p”: 80,
“precision”: 0.6399999856948853,
“recall”: 1,
“row_count”: 1225,
“tn”: 1100,
“tn_rate”: 0.960698664188385,
“tp”: 80,
“tp_rate”: 1,
“truth_threshold”: -10.863359504043311
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7745098039215687,
“fn”: 1,
“fn_rate”: 0.012500000186264515,
“fp”: 45,
“fp_rate”: 0.0393013097345829,
“match_probability”: 0.000630078776508268,
“n”: 1145,
“p”: 80,
“precision”: 0.6370967626571655,
“recall”: 0.987500011920929,
“row_count”: 1225,
“tn”: 1100,
“tn_rate”: 0.960698664188385,
“tp”: 79,
“tp_rate”: 0.987500011920929,
“truth_threshold”: -10.631270866609741
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7761194029850746,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 43,
“fp_rate”: 0.03755458444356918,
“match_probability”: 0.0009132375259182005,
“n”: 1145,
“p”: 80,
“precision”: 0.64462810754776,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1102,
“tn_rate”: 0.9624454379081726,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -10.095404111646223
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7878787878787878,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 40,
“fp_rate”: 0.034934498369693756,
“match_probability”: 0.0010057482579951408,
“n”: 1145,
“p”: 80,
“precision”: 0.6610169410705566,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1105,
“tn_rate”: 0.9650654792785645,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.956063327336162
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7959183673469388,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 38,
“fp_rate”: 0.03318777307868004,
“match_probability”: 0.0010279679235095877,
“n”: 1145,
“p”: 80,
“precision”: 0.6724137663841248,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1107,
“tn_rate”: 0.966812252998352,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.92450522996513
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8041237113402062,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 36,
“fp_rate”: 0.03144104778766632,
“match_probability”: 0.001230152436143478,
“n”: 1145,
“p”: 80,
“precision”: 0.6842105388641357,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1109,
“tn_rate”: 0.9685589671134949,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.66517135703567
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8167539267015707,
“fn”: 2,
“fn_rate”: 0.02500000037252903,
“fp”: 33,
“fp_rate”: 0.028820959851145744,
“match_probability”: 0.0012302958160745666,
“n”: 1145,
“p”: 80,
“precision”: 0.7027027010917664,
“recall”: 0.9750000238418579,
“row_count”: 1225,
“tn”: 1112,
“tn_rate”: 0.9711790680885315,
“tp”: 78,
“tp_rate”: 0.9750000238418579,
“truth_threshold”: -9.665003006975695
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8324324324324325,
“fn”: 3,
“fn_rate”: 0.03750000149011612,
“fp”: 28,
“fp_rate”: 0.0244541484862566,
“match_probability”: 0.0019620776764117027,
“n”: 1145,
“p”: 80,
“precision”: 0.7333333492279053,
“recall”: 0.9624999761581421,
“row_count”: 1225,
“tn”: 1117,
“tn_rate”: 0.9755458235740662,
“tp”: 77,
“tp_rate”: 0.9624999761581421,
“truth_threshold”: -8.990568666949134
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8651685393258427,
“fn”: 3,
“fn_rate”: 0.03750000149011612,
“fp”: 21,
“fp_rate”: 0.018340611830353737,
“match_probability”: 0.0026423098061360215,
“n”: 1145,
“p”: 80,
“precision”: 0.7857142686843872,
“recall”: 0.9624999761581421,
“row_count”: 1225,
“tn”: 1124,
“tn_rate”: 0.9816594123840332,
“tp”: 77,
“tp_rate”: 0.9624999761581421,
“truth_threshold”: -8.560167562278608
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9156626506024096,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 10,
“fp_rate”: 0.008733624592423439,
“match_probability”: 0.0026445882601587108,
“n”: 1145,
“p”: 80,
“precision”: 0.8837209343910217,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1135,
“tn_rate”: 0.9912663698196411,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -8.558920771880372
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9212121212121213,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 9,
“fp_rate”: 0.00786026194691658,
“match_probability”: 0.005221616141575074,
“n”: 1145,
“p”: 80,
“precision”: 0.8941176533699036,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1136,
“tn_rate”: 0.9921397566795349,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -7.573734944253683
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.926829268292683,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 8,
“fp_rate”: 0.006986899767071009,
“match_probability”: 0.006168101653159832,
“n”: 1145,
“p”: 80,
“precision”: 0.9047619104385376,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1137,
“tn_rate”: 0.9930130839347839,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -7.332031495879385
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9440993788819876,
“fn”: 4,
“fn_rate”: 0.05000000074505806,
“fp”: 5,
“fp_rate”: 0.0043668122962117195,
“match_probability”: 0.006932271445874234,
“n”: 1145,
“p”: 80,
“precision”: 0.9382715821266174,
“recall”: 0.949999988079071,
“row_count”: 1225,
“tn”: 1140,
“tn_rate”: 0.9956331849098206,
“tp”: 76,
“tp_rate”: 0.949999988079071,
“truth_threshold”: -7.162420157635773
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9308176100628931,
“fn”: 6,
“fn_rate”: 0.07500000298023224,
“fp”: 5,
“fp_rate”: 0.0043668122962117195,
“match_probability”: 0.007905300834090159,
“n”: 1145,
“p”: 80,
“precision”: 0.9367088675498962,
“recall”: 0.925000011920929,
“row_count”: 1225,
“tn”: 1140,
“tn_rate”: 0.9956331849098206,
“tp”: 74,
“tp_rate”: 0.925000011920929,
“truth_threshold”: -6.9715136626222325
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9240506329113924,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 5,
“fp_rate”: 0.0043668122962117195,
“match_probability”: 0.011019454209438206,
“n”: 1145,
“p”: 80,
“precision”: 0.9358974099159241,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1140,
“tn_rate”: 0.9956331849098206,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -6.487817467549237
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9299363057324841,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 4,
“fp_rate”: 0.0034934498835355043,
“match_probability”: 0.02158081204992207,
“n”: 1145,
“p”: 80,
“precision”: 0.948051929473877,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1141,
“tn_rate”: 0.9965065717697144,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -5.502631639922549
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9358974358974359,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 3,
“fp_rate”: 0.0026200872380286455,
“match_probability”: 0.023127827543987463,
“n”: 1145,
“p”: 80,
“precision”: 0.9605262875556946,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1142,
“tn_rate”: 0.9973798990249634,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -5.400468130841257
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9419354838709677,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 2,
“fp_rate”: 0.0017467249417677522,
“match_probability”: 0.0332974812028764,
“n”: 1145,
“p”: 80,
“precision”: 0.9733333587646484,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1143,
“tn_rate”: 0.9982532858848572,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -4.859587047207046
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.948051948051948,
“fn”: 7,
“fn_rate”: 0.08749999850988388,
“fp”: 1,
“fp_rate”: 0.0008733624708838761,
“match_probability”: 0.05870331488495838,
“n”: 1145,
“p”: 80,
“precision”: 0.9864864945411682,
“recall”: 0.9125000238418579,
“row_count”: 1225,
“tn”: 1144,
“tn_rate”: 0.9991266131401062,
“tp”: 73,
“tp_rate”: 0.9125000238418579,
“truth_threshold”: -4.003135636832664
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9411764705882353,
“fn”: 8,
“fn_rate”: 0.10000000149011612,
“fp”: 1,
“fp_rate”: 0.0008733624708838761,
“match_probability”: 0.0848898441900921,
“n”: 1145,
“p”: 80,
“precision”: 0.9863013625144958,
“recall”: 0.8999999761581421,
“row_count”: 1225,
“tn”: 1144,
“tn_rate”: 0.9991266131401062,
“tp”: 72,
“tp_rate”: 0.8999999761581421,
“truth_threshold”: -3.43028154519318
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9473684210526315,
“fn”: 8,
“fn_rate”: 0.10000000149011612,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.14811700142046944,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8999999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 72,
“tp_rate”: 0.8999999761581421,
“truth_threshold”: -2.5239180498330835
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9333333333333333,
“fn”: 10,
“fn_rate”: 0.125,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.1993605549730907,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.875,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 70,
“tp_rate”: 0.875,
“truth_threshold”: -2.0057727049896563
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9261744966442953,
“fn”: 11,
“fn_rate”: 0.13750000298023224,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.26112994029130765,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.862500011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 69,
“tp_rate”: 0.862500011920929,
“truth_threshold”: -1.5005527874927418
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.918918918918919,
“fn”: 12,
“fn_rate”: 0.15000000596046448,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.2953936057066029,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8500000238418579,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 68,
“tp_rate”: 0.8500000238418579,
“truth_threshold”: -1.254178970459649
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9115646258503401,
“fn”: 13,
“fn_rate”: 0.16249999403953552,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.30420383736772966,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8374999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 67,
“tp_rate”: 0.8374999761581421,
“truth_threshold”: -1.1936263704101118
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.9041095890410958,
“fn”: 14,
“fn_rate”: 0.17499999701976776,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.42737692814554235,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.824999988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 66,
“tp_rate”: 0.824999988079071,
“truth_threshold”: -0.4220767733771095
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.896551724137931,
“fn”: 15,
“fn_rate”: 0.1875,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.5519033532360711,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.8125,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 65,
“tp_rate”: 0.8125,
“truth_threshold”: 0.3006057206059389
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8888888888888888,
“fn”: 16,
“fn_rate”: 0.20000000298023224,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.8723759803772896,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.800000011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 64,
“tp_rate”: 0.800000011920929,
“truth_threshold”: 2.7730501692782785
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8811188811188811,
“fn”: 17,
“fn_rate”: 0.21250000596046448,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9142192476652152,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.7875000238418579,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 63,
“tp_rate”: 0.7875000238418579,
“truth_threshold”: 3.4138143190696444
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8652482269503546,
“fn”: 19,
“fn_rate”: 0.23749999701976776,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9557861173279867,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.762499988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 61,
“tp_rate”: 0.762499988079071,
“truth_threshold”: 4.4341164765657055
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8571428571428571,
“fn”: 20,
“fn_rate”: 0.25,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9645864965344157,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.75,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 60,
“tp_rate”: 0.75,
“truth_threshold”: 4.767539131589998
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8405797101449275,
“fn”: 22,
“fn_rate”: 0.2750000059604645,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9684451866143052,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.7250000238418579,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 58,
“tp_rate”: 0.7250000238418579,
“truth_threshold”: 4.939738399041853
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8235294117647058,
“fn”: 24,
“fn_rate”: 0.30000001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9692051377521285,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.699999988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 56,
“tp_rate”: 0.699999988079071,
“truth_threshold”: 4.976040472724046
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8148148148148148,
“fn”: 25,
“fn_rate”: 0.3125,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9832162822015872,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.6875,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 55,
“tp_rate”: 0.6875,
“truth_threshold”: 5.872374576287086
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.8059701492537313,
“fn”: 26,
“fn_rate”: 0.32499998807907104,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9850764583387661,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.675000011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 54,
“tp_rate”: 0.675000011920929,
“truth_threshold”: 6.044573843738942
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7878787878787878,
“fn”: 28,
“fn_rate”: 0.3499999940395355,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9878622357526349,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.6499999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 52,
“tp_rate”: 0.6499999761581421,
“truth_threshold”: 6.346735252448553
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7786259541984732,
“fn”: 29,
“fn_rate”: 0.36250001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9910179222087045,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.637499988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 51,
“tp_rate”: 0.637499988079071,
“truth_threshold”: 6.785718121097146
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7401574803149606,
“fn”: 33,
“fn_rate”: 0.4124999940395355,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9947187583517655,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.5874999761581421,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 47,
“tp_rate”: 0.5874999761581421,
“truth_threshold”: 7.557267718130148
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7301587301587301,
“fn”: 34,
“fn_rate”: 0.42500001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9950259857384809,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.574999988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 46,
“tp_rate”: 0.574999988079071,
“truth_threshold”: 7.644179748761141
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.72,
“fn”: 35,
“fn_rate”: 0.4375,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9952358231673181,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.5625,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 45,
“tp_rate”: 0.5625,
“truth_threshold”: 7.70666764255523
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.7096774193548387,
“fn”: 36,
“fn_rate”: 0.44999998807907104,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9969032615582838,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.550000011920929,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 44,
“tp_rate”: 0.550000011920929,
“truth_threshold”: 8.330560169061997
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6776859504132231,
“fn”: 39,
“fn_rate”: 0.48750001192092896,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9972424746970352,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.512499988079071,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 41,
“tp_rate”: 0.512499988079071,
“truth_threshold”: 8.498426397389116
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6666666666666666,
“fn”: 40,
“fn_rate”: 0.5,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9981064117342551,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.5,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 40,
“tp_rate”: 0.5,
“truth_threshold”: 9.041927153403975
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6554621848739496,
“fn”: 41,
“fn_rate”: 0.512499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9988324650137483,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.48750001192092896,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 39,
“tp_rate”: 0.48750001192092896,
“truth_threshold”: 9.740633121408642
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6440677966101694,
“fn”: 42,
“fn_rate”: 0.5249999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9994787721708078,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.4749999940395355,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 38,
“tp_rate”: 0.4749999940395355,
“truth_threshold”: 10.90504609693117
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6324786324786325,
“fn”: 43,
“fn_rate”: 0.5375000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9995017946999388,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.4625000059604645,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 37,
“tp_rate”: 0.4625000059604645,
“truth_threshold”: 10.970253072635769
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.6206896551724138,
“fn”: 44,
“fn_rate”: 0.550000011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9995258817121194,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.44999998807907104,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 36,
“tp_rate”: 0.44999998807907104,
“truth_threshold”: 11.041781166896174
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.584070796460177,
“fn”: 47,
“fn_rate”: 0.5874999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9995578236166905,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.4124999940395355,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 33,
“tp_rate”: 0.4124999940395355,
“truth_threshold”: 11.142452340087624
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5454545454545454,
“fn”: 50,
“fn_rate”: 0.625,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9996140562667976,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.375,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 30,
“tp_rate”: 0.375,
“truth_threshold”: 11.338764940878066
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5321100917431193,
“fn”: 51,
“fn_rate”: 0.637499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9996630811797715,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.36250001192092896,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 29,
“tp_rate”: 0.36250001192092896,
“truth_threshold”: 11.534825207124333
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.5046728971962616,
“fn”: 53,
“fn_rate”: 0.6625000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9997977668544322,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.3375000059604645,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 27,
“tp_rate”: 0.3375000059604645,
“truth_threshold”: 12.2714011181233
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.49056603773584906,
“fn”: 54,
“fn_rate”: 0.675000011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999820516275079,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.32499998807907104,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 26,
“tp_rate”: 0.32499998807907104,
“truth_threshold”: 12.443600385575156
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.47619047619047616,
“fn”: 55,
“fn_rate”: 0.6875,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998369642079589,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.3125,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 25,
“tp_rate”: 0.3125,
“truth_threshold”: 12.582288428352102
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.46153846153846156,
“fn”: 56,
“fn_rate”: 0.699999988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998449920168438,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.30000001192092896,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 24,
“tp_rate”: 0.30000001192092896,
“truth_threshold”: 12.65514621447883
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.43137254901960786,
“fn”: 58,
“fn_rate”: 0.7250000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998520890681417,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.2750000059604645,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 22,
“tp_rate”: 0.2750000059604645,
“truth_threshold”: 12.722770289758667
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4158415841584158,
“fn”: 59,
“fn_rate”: 0.737500011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9998610923461233,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.26249998807907104,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 21,
“tp_rate”: 0.26249998807907104,
“truth_threshold”: 12.813385869564604
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.4,
“fn”: 60,
“fn_rate”: 0.75,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999323624771768,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.25,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 20,
“tp_rate”: 0.25,
“truth_threshold”: 13.851719067794344
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3838383838383838,
“fn”: 61,
“fn_rate”: 0.762499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999399720027822,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.23749999701976776,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 19,
“tp_rate”: 0.23749999701976776,
“truth_threshold”: 14.023918335246199
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.3673469387755102,
“fn”: 62,
“fn_rate”: 0.7749999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999755226761624,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.22499999403953552,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 18,
“tp_rate”: 0.22499999403953552,
“truth_threshold”: 15.318159327225505
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.35051546391752575,
“fn”: 63,
“fn_rate”: 0.7875000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999981031560779,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.21250000596046448,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 17,
“tp_rate”: 0.21250000596046448,
“truth_threshold”: 15.686012134062487
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2978723404255319,
“fn”: 66,
“fn_rate”: 0.824999988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999988858319547,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.17499999701976776,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 14,
“tp_rate”: 0.17499999701976776,
“truth_threshold”: 16.453657555557786
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.27956989247311825,
“fn”: 67,
“fn_rate”: 0.8374999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999905100247786,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.16249999403953552,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 13,
“tp_rate”: 0.16249999403953552,
“truth_threshold”: 16.68515055777507
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.2608695652173913,
“fn”: 68,
“fn_rate”: 0.8500000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999994276807205,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.15000000596046448,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 12,
“tp_rate”: 0.15000000596046448,
“truth_threshold”: 17.414740105266343
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.24175824175824176,
“fn”: 69,
“fn_rate”: 0.862500011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999981851751295,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.13750000298023224,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 11,
“tp_rate”: 0.13750000298023224,
“truth_threshold”: 19.07173561535223
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.20224719101123595,
“fn”: 71,
“fn_rate”: 0.887499988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999984157825186,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.11249999701976776,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 9,
“tp_rate”: 0.11249999701976776,
“truth_threshold”: 19.2677958815985
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.18181818181818182,
“fn”: 72,
“fn_rate”: 0.8999999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999985940245613,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.10000000149011612,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 8,
“tp_rate”: 0.10000000149011612,
“truth_threshold”: 19.439995149050354
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.16091954022988506,
“fn”: 73,
“fn_rate”: 0.9125000238418579,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999986644842926,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.08749999850988388,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 7,
“tp_rate”: 0.08749999850988388,
“truth_threshold”: 19.51416969863159
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.13953488372093023,
“fn”: 74,
“fn_rate”: 0.925000011920929,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999991561863727,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.07500000298023224,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 6,
“tp_rate”: 0.07500000298023224,
“truth_threshold”: 20.17657106004932
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.11764705882352941,
“fn”: 75,
“fn_rate”: 0.9375,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999992886543447,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.0625,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 5,
“tp_rate”: 0.0625,
“truth_threshold”: 20.42294487708241
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.09523809523809523,
“fn”: 76,
“fn_rate”: 0.949999988079071,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.9999996797546244,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.05000000074505806,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 4,
“tp_rate”: 0.05000000074505806,
“truth_threshold”: 21.574318464692155
},
{
“N_rate”: 0.9346938729286194,
“P_rate”: 0.0653061224489796,
“f1”: 0.07228915662650602,
“fn”: 77,
“fn_rate”: 0.9624999761581421,
“fp”: 0,
“fp_rate”: 0,
“match_probability”: 0.999999937578966,
“n”: 1145,
“p”: 80,
“precision”: 1,
“recall”: 0.03750000149011612,
“row_count”: 1225,
“tn”: 1145,
“tn_rate”: 1,
“tp”: 3,
“tp_rate”: 0.03750000149011612,
“truth_threshold”: 23.93339241447461
}
]
},
“encoding”: {
“tooltip”: [
{
“field”: “truth_threshold”,
“format”: “.4f”,
“type”: “quantitative”
},
{
“field”: “match_probability”,
“format”: “.4%”,
“type”: “quantitative”
},
{
“field”: “fp_rate”,
“format”: “.4f”,
“title”: “FP_rate”,
“type”: “quantitative”
},
{
“field”: “tp_rate”,
“format”: “.4f”,
“title”: “TP_rate”,
“type”: “quantitative”
},
{
“field”: “tp”,
“format”: “,.0f”,
“title”: “TP”,
“type”: “quantitative”
},
{
“field”: “tn”,
“format”: “,.0f”,
“title”: “TN”,
“type”: “quantitative”
},
{
“field”: “fp”,
“format”: “,.0f”,
“title”: “FP”,
“type”: “quantitative”
},
{
“field”: “fn”,
“format”: “,.0f”,
“title”: “FN”,
“type”: “quantitative”
},
{
“field”: “precision”,
“format”: “.4f”,
“type”: “quantitative”
},
{
“field”: “recall”,
“format”: “.4f”,
“type”: “quantitative”
},
{
“field”: “f1”,
“format”: “.4f”,
“title”: “F1”,
“type”: “quantitative”
}
],
“x”: {
“field”: “recall”,
“sort”: [
“-recall”
],
“title”: “Recall”,
“type”: “quantitative”
},
“y”: {
“field”: “precision”,
“sort”: [
“-precision”
],
“title”: “Precision”,
“type”: “quantitative”
}
},
“height”: 400,
“mark”: {
“clip”: true,
“point”: true,
“type”: “line”
},
“params”: [
{
“bind”: “scales”,
“name”: “mouse_zoom”,
“select”: {
“encodings”: [
“x”,
“y”
],
“type”: “interval”
}
}
],
“title”: “Precision-recall curve”,
“width”: 400
},
“text/plain”: [
“\n”,
“\n”,
“If you see this message, it means the renderer has not been properly enabled\n”,
“for the frontend that you are using. For more information, see\n”,
“https://altair-viz.github.io/user_guide/display_frontends.html#troubleshooting\n”
]
},
“execution_count”: 5,
“metadata”: {},
“output_type”: “execute_result”
}
],
“source”: [
“linker.precision_recall_chart_from_labels_table(labels_table)”
]
},
{
“cell_type”: “markdown”,
“id”: “12e6ba74”,
“metadata”: {},
“source”: [
“## Truth table\n”,
“\n”,
“Finally, Splink can also report the underlying table used to construct the ROC and precision recall curves.”
]
},
{
“cell_type”: “code”,
“execution_count”: 6,
“id”: “f7c283ba”,
“metadata”: {},
“outputs”: [
{
“data”: {
“text/html”: [
“
\n”,
“\n”,
“\n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
” \n”,
“
| truth_threshold | match_probability | row_count | p | n | tp | tn | fp | fn | P_rate | N_rate | tp_rate | tn_rate | fp_rate | fn_rate | precision | recall | f1 |
---|
0 | -26.441763 | 1.097075e-08 | 1225.0 | 80.0 | 1145.0 | 80.0 | 0.0 | 1145.0 | 0.0 | 0.065306 | 0.934694 | 1.0 | 0.000000 | 1.000000 | 0.0 | 0.065306 | 1.0 | 0.122605 |
---|
1 | -25.336928 | 2.359526e-08 | 1225.0 | 80.0 | 1145.0 | 80.0 | 47.0 | 1098.0 | 0.0 | 0.065306 | 0.934694 | 1.0 | 0.041048 | 0.958952 | 0.0 | 0.067912 | 1.0 | 0.127186 |
---|
2 | -24.370660 | 4.609994e-08 | 1225.0 | 80.0 | 1145.0 | 80.0 | 154.0 | 991.0 | 0.0 | 0.065306 | 0.934694 | 1.0 | 0.134498 | 0.865502 | 0.0 | 0.074697 | 1.0 | 0.139010 |
---|
3 | -24.369413 | 4.613980e-08 | 1225.0 | 80.0 | 1145.0 | 80.0 | 199.0 | 946.0 | 0.0 | 0.065306 | 0.934694 | 1.0 | 0.173799 | 0.826201 | 0.0 | 0.077973 | 1.0 | 0.144665 |
---|
4 | -23.939180 | 6.217111e-08 | 1225.0 | 80.0 | 1145.0 | 80.0 | 230.0 | 915.0 | 0.0 | 0.065306 | 0.934694 | 1.0 | 0.200873 | 0.799127 | 0.0 | 0.080402 | 1.0 | 0.148837 |
---|
\n”,
“
”
],
“text/plain”: [
” truth_threshold match_probability row_count p n tp tn \n”,
“0 -26.441763 1.097075e-08 1225.0 80.0 1145.0 80.0 0.0 \n”,
“1 -25.336928 2.359526e-08 1225.0 80.0 1145.0 80.0 47.0 \n”,
“2 -24.370660 4.609994e-08 1225.0 80.0 1145.0 80.0 154.0 \n”,
“3 -24.369413 4.613980e-08 1225.0 80.0 1145.0 80.0 199.0 \n”,
“4 -23.939180 6.217111e-08 1225.0 80.0 1145.0 80.0 230.0 \n”,
“\n”,
” fp fn P_rate N_rate tp_rate tn_rate fp_rate fn_rate \n”,
“0 1145.0 0.0 0.065306 0.934694 1.0 0.000000 1.000000 0.0 \n”,
“1 1098.0 0.0 0.065306 0.934694 1.0 0.041048 0.958952 0.0 \n”,
“2 991.0 0.0 0.065306 0.934694 1.0 0.134498 0.865502 0.0 \n”,
“3 946.0 0.0 0.065306 0.934694 1.0 0.173799 0.826201 0.0 \n”,
“4 915.0 0.0 0.065306 0.934694 1.0 0.200873 0.799127 0.0 \n”,
“\n”,
” precision recall f1 \n”,
“0 0.065306 1.0 0.122605 \n”,
“1 0.067912 1.0 0.127186 \n”,
“2 0.074697 1.0 0.139010 \n”,
“3 0.077973 1.0 0.144665 \n”,
“4 0.080402 1.0 0.148837 ”
]
},
“execution_count”: 6,
“metadata”: {},
“output_type”: “execute_result”
}
],
“source”: [
“roc_table = linker.truth_space_table_from_labels_table(labels_table)\n”,
“roc_table.as_pandas_dataframe(limit=5)”
]
}
],
“metadata”: {
“kernelspec”: {
“display_name”: “Python 3 (ipykernel)”,
“language”: “python”,
“name”: “python3”
},
“language_info”: {
“codemirror_mode”: {
“name”: “ipython”,
“version”: 3
},
“file_extension”: “.py”,
“mimetype”: “text/x-python”,
“name”: “python”,
“nbconvert_exporter”: “python”,
“pygments_lexer”: “ipython3”,
“version”: “3.9.2”
}
},
“nbformat”: 4,
“nbformat_minor”: 5
}