diff --git "a/src/Similarity.ipynb" "b/src/Similarity.ipynb" new file mode 100644--- /dev/null +++ "b/src/Similarity.ipynb" @@ -0,0 +1,2846 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "c:\\Users\\ZZ029K826\\Documents\\GitHub\\LLM_Intent_Recognition\\.venv\\Lib\\site-packages\\sentence_transformers\\cross_encoder\\CrossEncoder.py:11: TqdmExperimentalWarning: Using `tqdm.autonotebook.tqdm` in notebook mode. Use `tqdm.tqdm` instead to force console mode (e.g. in jupyter console)\n", + " from tqdm.autonotebook import tqdm, trange\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "from sentence_transformers import SentenceTransformer, util\n", + "\n", + "#ignore warinings \n", + "import warnings\n", + "warnings.filterwarnings(\"ignore\")\n", + "\n", + "def filter_similar_sentences(model: SentenceTransformer, df: pd.DataFrame) -> pd.DataFrame:\n", + " # Calculate embeddings for each utterance\n", + " embeddings = model.encode(df['utterance'].tolist(), convert_to_tensor=True)\n", + " \n", + " # Calculate cosine similarity matrix\n", + " cosine_scores = util.pytorch_cos_sim(embeddings, embeddings)\n", + " \n", + " # Keep track of sentences to keep\n", + " to_keep = set()\n", + " \n", + " for i in range(len(df)):\n", + " if i not in to_keep:\n", + " to_keep.add(i)\n", + " for j in range(i + 1, len(df)):\n", + " if cosine_scores[i][j] < 0.5:\n", + " print(f\"Similarity between '{df.iloc[i]['utterance']}' and '{df.iloc[j]['utterance']}' is {cosine_scores[i][j]:.2f}\")\n", + " to_keep.add(j)\n", + " print()\n", + " print(f\"Kept {len(to_keep)} out of {len(df)} sentences\")\n", + " print(to_keep)\n", + "\n", + "\n", + " # Filter the dataframe to keep only the selected sentences\n", + " filtered_df = df.iloc[list(to_keep)].reset_index(drop=True)\n", + " \n", + " return filtered_df\n", + "\n", + " \n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "def filter_similar_sentences_transformers(model: SentenceTransformer, df: pd.DataFrame, intent_values: list , threshold: float = 0.5) -> pd.DataFrame:\n", + " # Calculate embeddings for each utterance\n", + "\n", + " intents_df = df.copy()[df['intent'].isin(intent_values)].reset_index(drop=True)\n", + " utterances_list = intents_df['utterance'].tolist()\n", + " embeddings = model.encode(utterances_list, convert_to_tensor=True)\n", + " \n", + " # Calculate cosine similarity matrix\n", + " similarities = model.similarity(embeddings, embeddings)\n", + " too_similar_df = pd.DataFrame(columns=['utterance', 'intent'])\n", + " too_similar_rows = []\n", + " \n", + " # Keep track of sentences to keep\n", + " indexes_to_keep = intents_df.copy().index.values.tolist()\n", + " print(f'Indexes: {indexes_to_keep}')\n", + " for i in range(len(indexes_to_keep)):\n", + " for j in range(i + 1, len(indexes_to_keep)):\n", + " if similarities[i][j] >= threshold:\n", + " print(f\"Similarity between '{intents_df.iloc[i]['utterance']}' and '{intents_df.iloc[j]['utterance']: <50}' is {similarities[i][j]:.2f}'\")\n", + " if j in indexes_to_keep:\n", + " # append the intents_df.iloc[j] row to too_similar_df df\n", + " too_similar_rows.append(intents_df.iloc[j])\n", + "\n", + "\n", + " print(f\"Removing '{intents_df.iloc[j]['utterance']}'\")\n", + " #print('J', j) \n", + " #print(f'Indexes: {indexes_to_keep}')\n", + " indexes_to_keep.remove(j)\n", + " \n", + " # Filter the dataframe to keep only the selected sentences\n", + " filtered_df = intents_df.iloc[indexes_to_keep].reset_index(drop=True)\n", + "\n", + " # Create a new dataframe with the removed sentences\n", + " too_similar_df = pd.DataFrame(too_similar_rows).reset_index(drop=True)\n", + " \n", + " return filtered_df, too_similar_df\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Filter Intent Real dataframe !!!" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Length of the dataframe: 752\n", + "\n", + "Indexes: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751]\n", + "Similarity between 'cat platesc' and 'ce am de plata ' is 0.91'\n", + "Removing 'ce am de plata'\n", + "Similarity between 'cat platesc' and 'Situatia platii facturii. ' is 0.74'\n", + "Removing 'Situatia platii facturii.'\n", + "Similarity between 'cat platesc' and 'cat am de plata pe factura ' is 0.73'\n", + "Removing 'cat am de plata pe factura'\n", + "Similarity between 'cat platesc' and 'Am nevoiw se facture ' is 0.73'\n", + "Removing 'Am nevoiw se facture'\n", + "Similarity between 'cat platesc' and 'Am o Factura pt nr de platit ' is 0.81'\n", + "Removing 'Am o Factura pt nr de platit'\n", + "Similarity between 'cat platesc' and 'cat am avut de plata la factura ' is 0.70'\n", + "Removing 'cat am avut de plata la factura'\n", + "Similarity between 'cat platesc' and 'cat am de plata ' is 0.87'\n", + "Removing 'cat am de plata'\n", + "Similarity between 'cat platesc' and 'cat am de plata pe factura ' is 0.73'\n", + "Removing 'cat am de plata pe factura'\n", + "Similarity between 'cat platesc' and 'cat am de plata pe fix ' is 0.87'\n", + "Removing 'cat am de plata pe fix'\n", + "Similarity between 'cat platesc' and 'cat am de platit ' is 0.93'\n", + "Removing 'cat am de platit'\n", + "Similarity between 'cat platesc' and 'cat am factura de plata ' is 0.75'\n", + "Removing 'cat am factura de plata'\n", + "Similarity between 'cat platesc' and 'cat de plata ' is 0.75'\n", + "Removing 'cat de plata'\n", + "Similarity between 'cat platesc' and 'Cat este de platit ' is 0.87'\n", + "Removing 'Cat este de platit'\n", + "Similarity between 'cat platesc' and 'cat platesc ' is 1.00'\n", + "Removing 'cat platesc'\n", + "Similarity between 'cat platesc' and 'cat platesc factura ' is 0.82'\n", + "Removing 'cat platesc factura'\n", + "Similarity between 'cat platesc' and 'cat trebuie sa platesc la upc ' is 0.77'\n", + "Removing 'cat trebuie sa platesc la upc'\n", + "Similarity between 'cat platesc' and 'ce am de plata ' is 0.91'\n", + "Removing 'ce am de plata'\n", + "Similarity between 'cat platesc' and 'Ce suma de plata am ' is 0.77'\n", + "Removing 'Ce suma de plata am'\n", + "Similarity between 'cat platesc' and 'Cit am de plata ' is 0.92'\n", + "Removing 'Cit am de plata'\n", + "Similarity between 'cat platesc' and 'Detalii plata ' is 0.76'\n", + "Removing 'Detalii plata'\n", + "Similarity between 'cat platesc' and 'factura platesc cost ' is 0.80'\n", + "Removing 'factura platesc cost'\n", + "Similarity between 'cat platesc' and 'imi puteti spune va rog cat am de plata ' is 0.80'\n", + "Removing 'imi puteti spune va rog cat am de plata'\n", + "Similarity between 'cat platesc' and 'Informatii de plata ' is 0.71'\n", + "Removing 'Informatii de plata'\n", + "Similarity between 'cat platesc' and 'nu mai stiu cat trebuie sa platesc ' is 0.72'\n", + "Removing 'nu mai stiu cat trebuie sa platesc'\n", + "Similarity between 'cat platesc' and 'Numar de factura pentru plata ' is 0.72'\n", + "Removing 'Numar de factura pentru plata'\n", + "Similarity between 'cat platesc' and 'Platesc mai mult cat trebuie ' is 0.81'\n", + "Removing 'Platesc mai mult cat trebuie'\n", + "Similarity between 'cat platesc' and 'Situatia platii facturii. ' is 0.74'\n", + "Removing 'Situatia platii facturii.'\n", + "Similarity between 'cat platesc' and 'Spuneti mi si mie ,am de plata la dumneavoastra ' is 0.87'\n", + "Removing 'Spuneti mi si mie ,am de plata la dumneavoastra'\n", + "Similarity between 'cat platesc' and 'Spuneti mi si mie ,am de plata la dumneavoastra Eu stiu ca am platit!' is 0.79'\n", + "Removing 'Spuneti mi si mie ,am de plata la dumneavoastra Eu stiu ca am platit!'\n", + "Similarity between 'cat platesc' and 'suma de plata pentru contul ' is 0.71'\n", + "Removing 'suma de plata pentru contul'\n", + "Similarity between 'cat platesc' and 'Suma plata ' is 0.87'\n", + "Removing 'Suma plata'\n", + "Similarity between 'cat platesc' and 'Total plata facturi ' is 0.71'\n", + "Removing 'Total plata facturi'\n", + "Similarity between 'cat platesc' and 'Trebuie sa platesc ceva ' is 0.79'\n", + "Removing 'Trebuie sa platesc ceva'\n", + "Similarity between 'cat platesc' and 'Vreau costul facturi ' is 0.72'\n", + "Removing 'Vreau costul facturi'\n", + "Similarity between 'cat platesc' and 'vreau factuta ' is 0.77'\n", + "Removing 'vreau factuta'\n", + "Similarity between 'cat platesc' and 'Vreau sa fiu lamurit cu plata facturilor ' is 0.72'\n", + "Removing 'Vreau sa fiu lamurit cu plata facturilor'\n", + "Similarity between 'cat platesc' and 'Vreau sa imi spuneti cat mai am de plata la dvs. ' is 0.79'\n", + "Removing 'Vreau sa imi spuneti cat mai am de plata la dvs.'\n", + "Similarity between 'cat platesc' and 'Vreau sa stiu cit am pe FACTURA de plata ' is 0.71'\n", + "Removing 'Vreau sa stiu cit am pe FACTURA de plata'\n", + "Similarity between 'cat platesc' and 'vreau sa vad ce platesc ' is 0.81'\n", + "Removing 'vreau sa vad ce platesc'\n", + "Similarity between 'ce cost are factura' and 'Situatia platii facturii. ' is 0.78'\n", + "Similarity between 'ce cost are factura' and 'date despre factura ' is 0.80'\n", + "Removing 'date despre factura'\n", + "Similarity between 'ce cost are factura' and 'Aflare datorie factura ' is 0.72'\n", + "Removing 'Aflare datorie factura'\n", + "Similarity between 'ce cost are factura' and 'detalii la factura ' is 0.75'\n", + "Removing 'detalii la factura'\n", + "Similarity between 'ce cost are factura' and 'cat am de plata pe factura ' is 0.82'\n", + "Similarity between 'ce cost are factura' and 'Aflare datorie factura ' is 0.72'\n", + "Removing 'Aflare datorie factura'\n", + "Similarity between 'ce cost are factura' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.74'\n", + "Removing 'as dori sa stiu cum stau cu plata facturilor'\n", + "Similarity between 'ce cost are factura' and 'As dori stiu din ce se compune factura ' is 0.80'\n", + "Removing 'As dori stiu din ce se compune factura'\n", + "Similarity between 'ce cost are factura' and 'as vrea sa stiu factura de plata ' is 0.72'\n", + "Removing 'as vrea sa stiu factura de plata'\n", + "Similarity between 'ce cost are factura' and 'Care e soldul facturii mele ' is 0.74'\n", + "Removing 'Care e soldul facturii mele'\n", + "Similarity between 'ce cost are factura' and 'cat am avut de plata la factura ' is 0.73'\n", + "Similarity between 'ce cost are factura' and 'Cat am de plata la factura ' is 0.82'\n", + "Removing 'Cat am de plata la factura'\n", + "Similarity between 'ce cost are factura' and 'cat am de plata pe factura ' is 0.82'\n", + "Similarity between 'ce cost are factura' and 'cat am factura de plata ' is 0.76'\n", + "Similarity between 'ce cost are factura' and 'cat am factura? ' is 0.78'\n", + "Removing 'cat am factura?'\n", + "Similarity between 'ce cost are factura' and 'Cat este de platit ' is 0.71'\n", + "Similarity between 'ce cost are factura' and 'cat platesc factura ' is 0.84'\n", + "Similarity between 'ce cost are factura' and 'ce cost are factura ' is 1.00'\n", + "Removing 'ce cost are factura'\n", + "Similarity between 'ce cost are factura' and 'ce reprezinta aceasta factura ' is 0.86'\n", + "Removing 'ce reprezinta aceasta factura'\n", + "Similarity between 'ce cost are factura' and 'Ce se intampla cu factura? ' is 0.82'\n", + "Removing 'Ce se intampla cu factura?'\n", + "Similarity between 'ce cost are factura' and 'Cost factura ' is 0.91'\n", + "Removing 'Cost factura'\n", + "Similarity between 'ce cost are factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.72'\n", + "Removing 'Cum pot afla ce factura trebuie sa mai achit'\n", + "Similarity between 'ce cost are factura' and 'date despre factura ' is 0.80'\n", + "Removing 'date despre factura'\n", + "Similarity between 'ce cost are factura' and 'datele facturii ' is 0.75'\n", + "Removing 'datele facturii'\n", + "Similarity between 'ce cost are factura' and 'desfasurator factura ' is 0.74'\n", + "Removing 'desfasurator factura'\n", + "Similarity between 'ce cost are factura' and 'desfasurator la factura ' is 0.75'\n", + "Removing 'desfasurator la factura'\n", + "Similarity between 'ce cost are factura' and 'detalii factura ' is 0.72'\n", + "Removing 'detalii factura'\n", + "Similarity between 'ce cost are factura' and 'Doresc sa stiu daca e platita factura din ' is 0.76'\n", + "Removing 'Doresc sa stiu daca e platita factura din'\n", + "Similarity between 'ce cost are factura' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Removing 'Eu vreau sa stiu despre factura'\n", + "Similarity between 'ce cost are factura' and 'Explicare factura ' is 0.72'\n", + "Removing 'Explicare factura'\n", + "Similarity between 'ce cost are factura' and 'factura ' is 0.74'\n", + "Removing 'factura'\n", + "Similarity between 'ce cost are factura' and 'factura pentru acest numar ' is 0.76'\n", + "Removing 'factura pentru acest numar'\n", + "Similarity between 'ce cost are factura' and 'factura platesc cost ' is 0.81'\n", + "Similarity between 'ce cost are factura' and 'in legatura cu facturi ' is 0.78'\n", + "Removing 'in legatura cu facturi'\n", + "Similarity between 'ce cost are factura' and 'in legatura cu o factura ' is 0.84'\n", + "Removing 'in legatura cu o factura'\n", + "Similarity between 'ce cost are factura' and 'Informatie despre factura ' is 0.81'\n", + "Removing 'Informatie despre factura'\n", + "Similarity between 'ce cost are factura' and 'informatii factura ' is 0.76'\n", + "Removing 'informatii factura'\n", + "Similarity between 'ce cost are factura' and 'Numar de factura pentru plata ' is 0.79'\n", + "Similarity between 'ce cost are factura' and 'numarul de factura sa platesc factura ' is 0.71'\n", + "Removing 'numarul de factura sa platesc factura'\n", + "Similarity between 'ce cost are factura' and 'Probleme factura ' is 0.72'\n", + "Removing 'Probleme factura'\n", + "Similarity between 'ce cost are factura' and 's dori niste detalii legate de costurile facturii ' is 0.78'\n", + "Removing 's dori niste detalii legate de costurile facturii'\n", + "Similarity between 'ce cost are factura' and 'Situatia platii facturii. ' is 0.78'\n", + "Similarity between 'ce cost are factura' and 'suma de plata pentru contul ' is 0.72'\n", + "Similarity between 'ce cost are factura' and 'Trebuie sa vorbeasc in legatura de o factura ' is 0.70'\n", + "Removing 'Trebuie sa vorbeasc in legatura de o factura'\n", + "Similarity between 'ce cost are factura' and 'Unde este factura ' is 0.76'\n", + "Removing 'Unde este factura'\n", + "Similarity between 'ce cost are factura' and 'Valoarea facturii ' is 0.83'\n", + "Removing 'Valoarea facturii'\n", + "Similarity between 'ce cost are factura' and 'Valorea facturii curente ' is 0.75'\n", + "Removing 'Valorea facturii curente'\n", + "Similarity between 'ce cost are factura' and 'verificare plata factura ' is 0.72'\n", + "Removing 'verificare plata factura'\n", + "Similarity between 'ce cost are factura' and 'Vreau costul facturi ' is 0.78'\n", + "Similarity between 'ce am de plata' and 'cat am de plata pe factura ' is 0.74'\n", + "Similarity between 'ce am de plata' and 'Am nevoiw se facture ' is 0.73'\n", + "Similarity between 'ce am de plata' and 'Am o Factura pt nr de platit ' is 0.86'\n", + "Similarity between 'ce am de plata' and 'cat am avut de plata la factura ' is 0.75'\n", + "Similarity between 'ce am de plata' and 'cat am de plata ' is 0.92'\n", + "Similarity between 'ce am de plata' and 'cat am de plata pe factura ' is 0.74'\n", + "Similarity between 'ce am de plata' and 'cat am de plata pe fix ' is 0.89'\n", + "Similarity between 'ce am de plata' and 'cat am de platit ' is 0.92'\n", + "Similarity between 'ce am de plata' and 'cat am factura de plata ' is 0.79'\n", + "Similarity between 'ce am de plata' and 'cat de plata ' is 0.71'\n", + "Similarity between 'ce am de plata' and 'Cat este de platit ' is 0.78'\n", + "Similarity between 'ce am de plata' and 'cat platesc ' is 0.91'\n", + "Similarity between 'ce am de plata' and 'cat platesc factura ' is 0.75'\n", + "Similarity between 'ce am de plata' and 'cat trebuie sa platesc la upc ' is 0.72'\n", + "Similarity between 'ce am de plata' and 'ce am de plata ' is 1.00'\n", + "Similarity between 'ce am de plata' and 'ce costuri am pana acum? ' is 0.71'\n", + "Removing 'ce costuri am pana acum?'\n", + "Similarity between 'ce am de plata' and 'Ce suma de plata am ' is 0.88'\n", + "Similarity between 'ce am de plata' and 'Cit am de plata ' is 0.96'\n", + "Similarity between 'ce am de plata' and 'Dc imi vine mult de plata ' is 0.73'\n", + "Removing 'Dc imi vine mult de plata'\n", + "Similarity between 'ce am de plata' and 'De ce am suma asta de plata ' is 0.71'\n", + "Removing 'De ce am suma asta de plata'\n", + "Similarity between 'ce am de plata' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'ce am de plata' and 'imi puteti spune va rog cat am de plata ' is 0.78'\n", + "Similarity between 'ce am de plata' and 'Nr factura sa o pot plati ' is 0.71'\n", + "Removing 'Nr factura sa o pot plati'\n", + "Similarity between 'ce am de plata' and 'nu mai stiu cat trebuie sa platesc ' is 0.74'\n", + "Similarity between 'ce am de plata' and 'Platesc mai mult cat trebuie ' is 0.77'\n", + "Similarity between 'ce am de plata' and 'Spuneti mi si mie ,am de plata la dumneavoastra ' is 0.87'\n", + "Similarity between 'ce am de plata' and 'Spuneti mi si mie ,am de plata la dumneavoastra Eu stiu ca am platit!' is 0.77'\n", + "Similarity between 'ce am de plata' and 'Suma plata ' is 0.77'\n", + "Similarity between 'ce am de plata' and 'Trebuie sa platesc ceva ' is 0.80'\n", + "Similarity between 'soldul la zi' and 'soldul la zi ' is 1.00'\n", + "Removing 'soldul la zi'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'As dori sa stiu cat am de plata la numarul de telefon' is 0.86'\n", + "Removing 'As dori sa stiu cat am de plata la numarul de telefon'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'As dori sa stiu cat este de plata pt un nr de telefon' is 0.91'\n", + "Removing 'As dori sa stiu cat este de plata pt un nr de telefon'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.78'\n", + "Removing 'As dori sa stiu cat este factura pe nr de tel'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'Ce suma este de platit pentru telefon cu numarul ' is 1.00'\n", + "Removing 'Ce suma este de platit pentru telefon cu numarul'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.72'\n", + "Removing 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.84'\n", + "Removing 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'factura pentru numarul de telefon ' is 0.79'\n", + "Removing 'factura pentru numarul de telefon'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'Te rog ptr nr de telefon cat este factura ' is 0.75'\n", + "Removing 'Te rog ptr nr de telefon cat este factura'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'Va rog sa-mi spuneti suma de plata pt abonamentul cui numarul de telefon' is 0.81'\n", + "Removing 'Va rog sa-mi spuneti suma de plata pt abonamentul cui numarul de telefon'\n", + "Similarity between 'Situatia platii facturii.' and 'date despre factura ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'Neclara factura ' is 0.72'\n", + "Removing 'Neclara factura'\n", + "Similarity between 'Situatia platii facturii.' and 'Aflare datorie factura ' is 0.73'\n", + "Similarity between 'Situatia platii facturii.' and 'detalii la factura ' is 0.70'\n", + "Similarity between 'Situatia platii facturii.' and 'cat am de plata pe factura ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'Aflare datorie factura ' is 0.73'\n", + "Similarity between 'Situatia platii facturii.' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'cat am avut de plata la factura ' is 0.71'\n", + "Similarity between 'Situatia platii facturii.' and 'cat am de plata pe factura ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'cat am factura de plata ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'cat platesc ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'cat platesc factura ' is 0.82'\n", + "Similarity between 'Situatia platii facturii.' and 'ce cost are factura ' is 0.78'\n", + "Similarity between 'Situatia platii facturii.' and 'Cost factura ' is 0.82'\n", + "Similarity between 'Situatia platii facturii.' and 'date despre factura ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'date factura ' is 0.71'\n", + "Removing 'date factura'\n", + "Similarity between 'Situatia platii facturii.' and 'datele facturii ' is 0.74'\n", + "Similarity between 'Situatia platii facturii.' and 'desfasurator factura ' is 0.76'\n", + "Similarity between 'Situatia platii facturii.' and 'desfasurator la factura ' is 0.79'\n", + "Similarity between 'Situatia platii facturii.' and 'Detalii plata ' is 0.75'\n", + "Similarity between 'Situatia platii facturii.' and 'factura ' is 0.70'\n", + "Similarity between 'Situatia platii facturii.' and 'factura pentru acest numar ' is 0.71'\n", + "Similarity between 'Situatia platii facturii.' and 'factura platesc cost ' is 0.88'\n", + "Similarity between 'Situatia platii facturii.' and 'in legatura cu facturi ' is 0.75'\n", + "Similarity between 'Situatia platii facturii.' and 'in legatura cu o factura ' is 0.75'\n", + "Similarity between 'Situatia platii facturii.' and 'Informatie despre factura ' is 0.72'\n", + "Similarity between 'Situatia platii facturii.' and 'informatii factura ' is 0.71'\n", + "Similarity between 'Situatia platii facturii.' and 'Neclara factura ' is 0.72'\n", + "Removing 'Neclara factura'\n", + "Similarity between 'Situatia platii facturii.' and 'Numar de factura pentru plata ' is 0.82'\n", + "Similarity between 'Situatia platii facturii.' and 'numarul de factura sa platesc factura ' is 0.80'\n", + "Similarity between 'Situatia platii facturii.' and 'Rezolvarea unei probleme in legatura cu plata facturii' is 0.80'\n", + "Removing 'Rezolvarea unei probleme in legatura cu plata facturii'\n", + "Similarity between 'Situatia platii facturii.' and 's dori niste detalii legate de costurile facturii ' is 0.72'\n", + "Similarity between 'Situatia platii facturii.' and 'sa-mi trimiteti valoare facturii ' is 0.74'\n", + "Removing 'sa-mi trimiteti valoare facturii'\n", + "Similarity between 'Situatia platii facturii.' and 'sa-mi vad starea platilor facturilor ' is 0.77'\n", + "Removing 'sa-mi vad starea platilor facturilor'\n", + "Similarity between 'Situatia platii facturii.' and 'Situatia platii facturii. ' is 1.00'\n", + "Similarity between 'Situatia platii facturii.' and 'suma de plata pentru contul ' is 0.79'\n", + "Similarity between 'Situatia platii facturii.' and 'Suma plata ' is 0.77'\n", + "Similarity between 'Situatia platii facturii.' and 'Total plata factura curenta ' is 0.70'\n", + "Removing 'Total plata factura curenta'\n", + "Similarity between 'Situatia platii facturii.' and 'Total plata facturi ' is 0.77'\n", + "Similarity between 'date despre factura' and 'Neclara factura ' is 0.80'\n", + "Similarity between 'date despre factura' and 'Aflare datorie factura ' is 0.72'\n", + "Similarity between 'date despre factura' and 'Recalculare factura ' is 0.74'\n", + "Removing 'Recalculare factura'\n", + "Similarity between 'date despre factura' and 'doresc sa stiu ce include factura mea ' is 0.74'\n", + "Removing 'doresc sa stiu ce include factura mea'\n", + "Similarity between 'date despre factura' and 'detalii la factura ' is 0.91'\n", + "Similarity between 'date despre factura' and 'cat am de plata pe factura ' is 0.73'\n", + "Similarity between 'date despre factura' and 'Aa dori informatii despre factura pe acest nr ' is 0.76'\n", + "Removing 'Aa dori informatii despre factura pe acest nr'\n", + "Similarity between 'date despre factura' and 'Aflare datorie factura ' is 0.72'\n", + "Similarity between 'date despre factura' and 'Am nevoie de detalierea unei facturi ' is 0.77'\n", + "Removing 'Am nevoie de detalierea unei facturi'\n", + "Similarity between 'date despre factura' and 'Am o intrebare despre factura mea ' is 0.73'\n", + "Removing 'Am o intrebare despre factura mea'\n", + "Similarity between 'date despre factura' and 'as dori datele despre factura desfasuratorul ' is 0.78'\n", + "Removing 'as dori datele despre factura desfasuratorul'\n", + "Similarity between 'date despre factura' and 'As dori detalii legate de factura ' is 0.82'\n", + "Removing 'As dori detalii legate de factura'\n", + "Similarity between 'date despre factura' and 'As dori niste informatii in legatura cu factura numarului' is 0.73'\n", + "Removing 'As dori niste informatii in legatura cu factura numarului'\n", + "Similarity between 'date despre factura' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.73'\n", + "Similarity between 'date despre factura' and 'As dori stiu din ce se compune factura ' is 0.79'\n", + "Similarity between 'date despre factura' and 'As vrea sa primesc mai multe detalii despre factura' is 0.70'\n", + "Removing 'As vrea sa primesc mai multe detalii despre factura'\n", + "Similarity between 'date despre factura' and 'as vrea sa stiu factura de plata ' is 0.74'\n", + "Similarity between 'date despre factura' and 'bill info ' is 0.81'\n", + "Removing 'bill info'\n", + "Similarity between 'date despre factura' and 'cat am avut de plata la factura ' is 0.70'\n", + "Similarity between 'date despre factura' and 'Cat am de plata la factura ' is 0.71'\n", + "Similarity between 'date despre factura' and 'cat am de plata pe factura ' is 0.73'\n", + "Similarity between 'date despre factura' and 'cat am factura de plata ' is 0.73'\n", + "Similarity between 'date despre factura' and 'cat am factura? ' is 0.73'\n", + "Similarity between 'date despre factura' and 'cat platesc factura ' is 0.72'\n", + "Similarity between 'date despre factura' and 'ce cost are factura ' is 0.80'\n", + "Similarity between 'date despre factura' and 'ce reprezinta aceasta factura ' is 0.74'\n", + "Similarity between 'date despre factura' and 'Ce se intampla cu factura? ' is 0.76'\n", + "Similarity between 'date despre factura' and 'Cost factura ' is 0.83'\n", + "Similarity between 'date despre factura' and 'Cum aflu datele facturii ' is 0.76'\n", + "Removing 'Cum aflu datele facturii'\n", + "Similarity between 'date despre factura' and 'Cum pot primi factura detailata ' is 0.72'\n", + "Removing 'Cum pot primi factura detailata'\n", + "Similarity between 'date despre factura' and 'Cum vad factura detaliata ' is 0.77'\n", + "Removing 'Cum vad factura detaliata'\n", + "Similarity between 'date despre factura' and 'date despre factura ' is 1.00'\n", + "Similarity between 'date despre factura' and 'date despre factura mea ' is 0.86'\n", + "Removing 'date despre factura mea'\n", + "Similarity between 'date despre factura' and 'date factura ' is 0.85'\n", + "Similarity between 'date despre factura' and 'datele facturii ' is 0.97'\n", + "Similarity between 'date despre factura' and 'datele facturii mele ' is 0.80'\n", + "Removing 'datele facturii mele'\n", + "Similarity between 'date despre factura' and 'desfasurator factura ' is 0.83'\n", + "Similarity between 'date despre factura' and 'desfasurator la factura ' is 0.83'\n", + "Similarity between 'date despre factura' and 'Detalii extraoptiuni facturi ' is 0.81'\n", + "Removing 'Detalii extraoptiuni facturi'\n", + "Similarity between 'date despre factura' and 'detalii factura ' is 0.89'\n", + "Similarity between 'date despre factura' and 'doresc factura ' is 0.72'\n", + "Removing 'doresc factura'\n", + "Similarity between 'date despre factura' and 'doresc sa stiu ce include factura mea ' is 0.74'\n", + "Removing 'doresc sa stiu ce include factura mea'\n", + "Similarity between 'date despre factura' and 'Eu vreau sa stiu despre factura ' is 0.77'\n", + "Similarity between 'date despre factura' and 'Eu vreau sa vad factura ' is 0.74'\n", + "Removing 'Eu vreau sa vad factura'\n", + "Similarity between 'date despre factura' and 'Explicare factura ' is 0.75'\n", + "Similarity between 'date despre factura' and 'factura ' is 0.88'\n", + "Similarity between 'date despre factura' and 'factura info ' is 0.75'\n", + "Removing 'factura info'\n", + "Similarity between 'date despre factura' and 'factura informatii ' is 0.82'\n", + "Removing 'factura informatii'\n", + "Similarity between 'date despre factura' and 'factura pentru acest numar ' is 0.82'\n", + "Similarity between 'date despre factura' and 'in legatura cu facturi ' is 0.87'\n", + "Similarity between 'date despre factura' and 'in legatura cu o factura ' is 0.92'\n", + "Similarity between 'date despre factura' and 'info factura ' is 0.79'\n", + "Removing 'info factura'\n", + "Similarity between 'date despre factura' and 'Informatie despre factura ' is 0.98'\n", + "Similarity between 'date despre factura' and 'informatii factur ' is 0.89'\n", + "Removing 'informatii factur'\n", + "Similarity between 'date despre factura' and 'informatii factura ' is 0.96'\n", + "Similarity between 'date despre factura' and 'Ma intereseaza detalii despre o factura ' is 0.77'\n", + "Removing 'Ma intereseaza detalii despre o factura'\n", + "Similarity between 'date despre factura' and 'Neclara factura ' is 0.80'\n", + "Similarity between 'date despre factura' and 'Numar de factura pentru plata ' is 0.83'\n", + "Similarity between 'date despre factura' and 'numarul de factura sa platesc factura ' is 0.71'\n", + "Similarity between 'date despre factura' and 'Recalculare factura ' is 0.74'\n", + "Removing 'Recalculare factura'\n", + "Similarity between 'date despre factura' and 's dori niste detalii legate de costurile facturii ' is 0.79'\n", + "Similarity between 'date despre factura' and 'sa verific achitarea facturii ' is 0.74'\n", + "Removing 'sa verific achitarea facturii'\n", + "Similarity between 'date despre factura' and 'sa-mi trimiteti valoare facturii ' is 0.72'\n", + "Similarity between 'date despre factura' and 'sa-mi vad starea platilor facturilor ' is 0.76'\n", + "Similarity between 'date despre factura' and 'Se poate factura ' is 0.76'\n", + "Removing 'Se poate factura'\n", + "Similarity between 'date despre factura' and 'Situatia platii facturii. ' is 0.74'\n", + "Similarity between 'date despre factura' and 'suma de plata pentru contul ' is 0.72'\n", + "Similarity between 'date despre factura' and 'Te rog trimite aici factura mea de plata ' is 0.72'\n", + "Removing 'Te rog trimite aici factura mea de plata'\n", + "Similarity between 'date despre factura' and 'Trebuie sa vorbeasc in legatura de o factura ' is 0.75'\n", + "Similarity between 'date despre factura' and 'Unde este factura ' is 0.73'\n", + "Similarity between 'date despre factura' and 'unde imi pot vedea factura ' is 0.75'\n", + "Removing 'unde imi pot vedea factura'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'Am nelamuriri asupra ultimei facturi. ' is 0.76'\n", + "Removing 'Am nelamuriri asupra ultimei facturi.'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'Am nevoie de ultima factura neachitata ' is 0.74'\n", + "Removing 'Am nevoie de ultima factura neachitata'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'Cand mi s-a emis ultima factura ' is 0.74'\n", + "Removing 'Cand mi s-a emis ultima factura'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'Cum platesc ultima factura, neavand seria ultimei facturi' is 1.00'\n", + "Removing 'Cum platesc ultima factura, neavand seria ultimei facturi'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'daca ultima factura este platita ' is 0.74'\n", + "Removing 'daca ultima factura este platita'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'Doresc ultima factura pt a o putea plati ' is 0.71'\n", + "Removing 'Doresc ultima factura pt a o putea plati'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'As dori informatii despre fact mele. ' is 0.72'\n", + "Removing 'As dori informatii despre fact mele.'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'Cum aflu datele facturii ' is 0.81'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'cum as putea sa imi aflu datele facturii ' is 0.87'\n", + "Removing 'cum as putea sa imi aflu datele facturii'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'Cum pot afla detalii despre facturile mele ' is 1.00'\n", + "Removing 'Cum pot afla detalii despre facturile mele'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'Cum pot avea factura ea detaliata ' is 0.73'\n", + "Removing 'Cum pot avea factura ea detaliata'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'Cum pot intra in posesia facturii ' is 0.77'\n", + "Removing 'Cum pot intra in posesia facturii'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'Factura detaliata' and 'Apeluri detaliate ' is 0.79'\n", + "Removing 'Apeluri detaliate'\n", + "Similarity between 'Factura detaliata' and 'Detali facutra ' is 0.83'\n", + "Removing 'Detali facutra'\n", + "Similarity between 'Factura detaliata' and 'Detalii facrura ' is 0.92'\n", + "Removing 'Detalii facrura'\n", + "Similarity between 'Factura detaliata' and 'Factura detaliata ' is 1.00'\n", + "Removing 'Factura detaliata'\n", + "Similarity between 'Factura detaliata' and 'Facture detaliata ' is 0.93'\n", + "Removing 'Facture detaliata'\n", + "Similarity between 'Factura detaliata' and 'Facura detaliata ' is 0.73'\n", + "Removing 'Facura detaliata'\n", + "Similarity between 'Factura detaliata' and 'Facuta detaliata ' is 0.94'\n", + "Removing 'Facuta detaliata'\n", + "Similarity between 'Factura detaliata' and 'Informatii despre facuta ' is 0.72'\n", + "Removing 'Informatii despre facuta'\n", + "Similarity between 'Neclara factura' and 'Aflare datorie factura ' is 0.75'\n", + "Similarity between 'Neclara factura' and 'Recalculare factura ' is 0.77'\n", + "Similarity between 'Neclara factura' and 'detalii la factura ' is 0.77'\n", + "Similarity between 'Neclara factura' and 'Aflare datorie factura ' is 0.75'\n", + "Similarity between 'Neclara factura' and 'Am nevoiw se facture ' is 0.77'\n", + "Similarity between 'Neclara factura' and 'as dori factura! ' is 0.73'\n", + "Removing 'as dori factura!'\n", + "Similarity between 'Neclara factura' and 'As dori o factura detaliata pt ' is 0.70'\n", + "Removing 'As dori o factura detaliata pt '\n", + "Similarity between 'Neclara factura' and 'As vrea factura detaliata ' is 0.70'\n", + "Removing 'As vrea factura detaliata'\n", + "Similarity between 'Neclara factura' and 'Cost factura ' is 0.80'\n", + "Similarity between 'Neclara factura' and 'Cum vad factura detaliata ' is 0.71'\n", + "Similarity between 'Neclara factura' and 'date despre factura ' is 0.80'\n", + "Similarity between 'Neclara factura' and 'date despre factura mea ' is 0.70'\n", + "Similarity between 'Neclara factura' and 'date factura ' is 0.85'\n", + "Similarity between 'Neclara factura' and 'datele facturii ' is 0.77'\n", + "Similarity between 'Neclara factura' and 'desfasurator factura ' is 0.80'\n", + "Similarity between 'Neclara factura' and 'desfasurator la factura ' is 0.79'\n", + "Similarity between 'Neclara factura' and 'Detalii extraoptiuni facturi ' is 0.71'\n", + "Similarity between 'Neclara factura' and 'detalii factura ' is 0.80'\n", + "Similarity between 'Neclara factura' and 'doresc factura ' is 0.74'\n", + "Similarity between 'Neclara factura' and 'factura ' is 0.90'\n", + "Similarity between 'Neclara factura' and 'factura info ' is 0.76'\n", + "Similarity between 'Neclara factura' and 'factura informatii ' is 0.74'\n", + "Similarity between 'Neclara factura' and 'factura pentru acest numar ' is 0.74'\n", + "Similarity between 'Neclara factura' and 'factura platesc cost ' is 0.71'\n", + "Similarity between 'Neclara factura' and 'in legatura cu facturi ' is 0.74'\n", + "Similarity between 'Neclara factura' and 'in legatura cu o factura ' is 0.83'\n", + "Similarity between 'Neclara factura' and 'info factura ' is 0.76'\n", + "Similarity between 'Neclara factura' and 'Informatie despre factura ' is 0.79'\n", + "Similarity between 'Neclara factura' and 'informatii factur ' is 0.77'\n", + "Similarity between 'Neclara factura' and 'informatii factura ' is 0.82'\n", + "Similarity between 'Neclara factura' and 'Neclara factura ' is 1.00'\n", + "Similarity between 'Neclara factura' and 'Numar de factura pentru plata ' is 0.78'\n", + "Similarity between 'Neclara factura' and 'Recalculare factura ' is 0.77'\n", + "Similarity between 'Neclara factura' and 'Se poate factura ' is 0.73'\n", + "Similarity between 'Nelamurire la factura trecuta' and 'Am nelamuriri asupra ultimei facturi. ' is 0.71'\n", + "Similarity between 'Nelamurire la factura trecuta' and 'am o eroare in ultima factura primita ' is 0.74'\n", + "Removing 'am o eroare in ultima factura primita'\n", + "Similarity between 'Nelamurire la factura trecuta' and 'Eroare factura ' is 0.71'\n", + "Removing 'Eroare factura'\n", + "Similarity between 'Nelamurire la factura trecuta' and 'Nelamurire la factura trecuta ' is 1.00'\n", + "Removing 'Nelamurire la factura trecuta'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'Nu inteleg de ce e asa mare factura ' is 0.75'\n", + "Removing 'Nu inteleg de ce e asa mare factura'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'Nu inteleg de ce am atat de platit ' is 0.96'\n", + "Removing 'Nu inteleg de ce am atat de platit'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'De ce platesc mai multa ' is 0.71'\n", + "Removing 'De ce platesc mai multa'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'De ce am un cost asa de mare ' is 0.72'\n", + "Removing 'De ce am un cost asa de mare'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'am si eu o nedumerire de ce platesc factura cu atatia lei' is 0.72'\n", + "Removing 'am si eu o nedumerire de ce platesc factura cu atatia lei'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'de ce am atat de plata ' is 0.84'\n", + "Removing 'de ce am atat de plata'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'De ce am suma asta de plata ' is 0.81'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'De ce platesc asa multa ' is 0.80'\n", + "Removing 'De ce platesc asa multa'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'De ce platesc atat de multa ' is 0.80'\n", + "Removing 'De ce platesc atat de multa'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'De ce platesc mai multa ' is 0.71'\n", + "Removing 'De ce platesc mai multa'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'Imi poti da detalii , de ce am atat de multi bani de achitat ?' is 0.71'\n", + "Removing 'Imi poti da detalii , de ce am atat de multi bani de achitat ?'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'Nu inteleg de ce am atat de plata ' is 1.00'\n", + "Removing 'Nu inteleg de ce am atat de plata'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'Nu inteleg de ce am atat de platit ' is 0.96'\n", + "Removing 'Nu inteleg de ce am atat de platit'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'Nu inteleg de ce e asa mare factura ' is 0.75'\n", + "Removing 'Nu inteleg de ce e asa mare factura'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'Nu inteleg de ce este asa mare factura ' is 0.75'\n", + "Removing 'Nu inteleg de ce este asa mare factura'\n", + "Similarity between 'Nu inteleg de ce am atat de plata' and 'nu mai stiu cat trebuie sa platesc ' is 0.76'\n", + "Similarity between 'Probleme costuri' and 'Probleme costuri ' is 1.00'\n", + "Removing 'Probleme costuri'\n", + "Similarity between 'Probleme costuri' and 'Probleme factura ' is 0.73'\n", + "Similarity between 'Problema cu soldul facturi' and 'Care are probleme cu facturile ' is 0.79'\n", + "Removing 'Care are probleme cu facturile'\n", + "Similarity between 'Problema cu soldul facturi' and 'in legatura cu facturi ' is 0.77'\n", + "Similarity between 'Problema cu soldul facturi' and 'Problema cu soldul facturi ' is 1.00'\n", + "Removing 'Problema cu soldul facturi'\n", + "Similarity between 'Problema cu soldul facturi' and 'Probleme factura ' is 0.70'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'Nu inteleg de ce am atat de platit ' is 0.73'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'de ce e factura mai mare ' is 0.81'\n", + "Removing 'de ce e factura mai mare'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'de ce e factura asa mare ' is 0.86'\n", + "Removing 'de ce e factura asa mare'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'am si eu o nedumerire de ce platesc factura cu atatia lei' is 0.76'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'de ce e factura asa mare ' is 0.86'\n", + "Removing 'de ce e factura asa mare'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'de ce e factura mai mare ' is 0.81'\n", + "Removing 'de ce e factura mai mare'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'De ce mi-a venit factura mai marea ' is 0.74'\n", + "Removing 'De ce mi-a venit factura mai marea'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'Nu inteleg de ce am atat de plata ' is 0.75'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'Nu inteleg de ce am atat de platit ' is 0.73'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'Nu inteleg de ce e asa mare factura ' is 1.00'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'Nu inteleg de ce este asa mare factura ' is 1.00'\n", + "Similarity between 'Nu inteleg de ce e asa mare factura' and 'Nu inteleg factura ' is 0.72'\n", + "Removing 'Nu inteleg factura'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce tot intru pe cost ' is 0.72'\n", + "Removing 'De ce tot intru pe cost'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce platesc mai multa ' is 0.76'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce platesc foarte mult la abonament ' is 0.71'\n", + "Removing 'De ce platesc foarte mult la abonament'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce am un cost asa de mare ' is 0.75'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'am si eu o nedumerire de ce platesc factura cu atatia lei' is 0.72'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'de ce am atat de plata ' is 0.82'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce am suma asta de plata ' is 0.79'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce platesc asa multa ' is 0.85'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce platesc atat de multa ' is 0.85'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce platesc foarte mult la abonament ' is 0.71'\n", + "Removing 'De ce platesc foarte mult la abonament'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce platesc mai multa ' is 0.76'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'De ce tot intru pe cost ' is 0.72'\n", + "Removing 'De ce tot intru pe cost'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'Nu inteleg de ce am atat de plata ' is 0.96'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'Nu inteleg de ce am atat de platit ' is 1.00'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'Nu inteleg de ce e asa mare factura ' is 0.73'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'Nu inteleg de ce este asa mare factura ' is 0.72'\n", + "Similarity between 'Nu inteleg de ce am atat de platit' and 'nu mai stiu cat trebuie sa platesc ' is 0.80'\n", + "Similarity between 'Aflare datorie factura' and 'Recalculare factura ' is 0.71'\n", + "Similarity between 'Aflare datorie factura' and 'cat am de plata pe factura ' is 0.70'\n", + "Similarity between 'Aflare datorie factura' and 'Aflare datorie factura ' is 1.00'\n", + "Similarity between 'Aflare datorie factura' and 'Am nevoiw se facture ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'cat am de plata pe factura ' is 0.70'\n", + "Similarity between 'Aflare datorie factura' and 'cat am factura de plata ' is 0.71'\n", + "Similarity between 'Aflare datorie factura' and 'cat platesc factura ' is 0.74'\n", + "Similarity between 'Aflare datorie factura' and 'ce cost are factura ' is 0.72'\n", + "Similarity between 'Aflare datorie factura' and 'Cost factura ' is 0.78'\n", + "Similarity between 'Aflare datorie factura' and 'date despre factura ' is 0.72'\n", + "Similarity between 'Aflare datorie factura' and 'datele facturii ' is 0.71'\n", + "Similarity between 'Aflare datorie factura' and 'Datorii ' is 0.79'\n", + "Removing 'Datorii'\n", + "Similarity between 'Aflare datorie factura' and 'desfasurator factura ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'desfasurator la factura ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'factura ' is 0.74'\n", + "Similarity between 'Aflare datorie factura' and 'factura platesc cost ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'in legatura cu facturi ' is 0.78'\n", + "Similarity between 'Aflare datorie factura' and 'in legatura cu o factura ' is 0.78'\n", + "Similarity between 'Aflare datorie factura' and 'Informatie despre factura ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'informatii factur ' is 0.72'\n", + "Similarity between 'Aflare datorie factura' and 'Neclara factura ' is 0.75'\n", + "Similarity between 'Aflare datorie factura' and 'Numar de factura pentru plata ' is 0.78'\n", + "Similarity between 'Aflare datorie factura' and 'numarul de factura sa platesc factura ' is 0.72'\n", + "Similarity between 'am ceva de achitat' and 'am ceva de achitat ' is 1.00'\n", + "Removing 'am ceva de achitat'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'Care are probleme cu facturile ' is 0.74'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'cum as putea sa imi aflu datele facturii ' is 0.72'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'Nu am acces la detaliile facturii,ma poti ajuta? ' is 0.81'\n", + "Removing 'Nu am acces la detaliile facturii,ma poti ajuta?'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'Nu am factura ' is 0.73'\n", + "Removing 'Nu am factura'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'Nu am factura pt a putea platii ' is 0.75'\n", + "Removing 'Nu am factura pt a putea platii'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'nu am seria facturii. ' is 0.79'\n", + "Removing 'nu am seria facturii.'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'Nu apare factura in cont ' is 0.82'\n", + "Removing 'Nu apare factura in cont'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'Nu inteleg factura ' is 0.79'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'nu pot vedea datele facturii curente ' is 1.00'\n", + "Removing 'nu pot vedea datele facturii curente'\n", + "Similarity between 'nu pot vedea datele facturii curente' and 'nu stiu unde sa vad cate facturi platite am ' is 0.76'\n", + "Removing 'nu stiu unde sa vad cate facturi platite am'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'Aa dori informatii despre factura pe acest nr ' is 0.77'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'Am nevoiw se facture ' is 0.74'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'As dori o factura detaliata pe nr ' is 0.85'\n", + "Removing 'As dori o factura detaliata pe nr'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'As dori o factura detaliata pt ' is 0.72'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'As vrea factura detaliata ' is 0.72'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'detalii factura ' is 0.72'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'Doresc Factura detaliata ptr nr ' is 0.77'\n", + "Removing 'Doresc Factura detaliata ptr nr'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'factura ' is 0.70'\n", + "Similarity between 'Vreau detalii factur pt nr' and 'factura info ' is 0.71'\n", + "Similarity between 'Prima factura' and 'date factura ' is 0.73'\n", + "Similarity between 'Prima factura' and 'factura ' is 0.72'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' is 0.78'\n", + "Removing 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'As dori niste informatii in legatura cu factura numarului' is 0.71'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'As dori sa stiu cat am de plata la numarul de telefon' is 0.73'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.74'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' is 0.74'\n", + "Removing 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.75'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'factura pentru numarul de telefon ' is 0.73'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'Ma intereseaza detalii de la o factura de telefon ' is 0.81'\n", + "Removing 'Ma intereseaza detalii de la o factura de telefon'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'Ma poti ajuta cu factura pe numarul de telefon ' is 1.00'\n", + "Removing 'Ma poti ajuta cu factura pe numarul de telefon'\n", + "Similarity between 'Ma poti ajuta cu factura pe numarul de telefon' and 'Mai am un nr de telefon si ma intereseaza factura ' is 0.78'\n", + "Removing 'Mai am un nr de telefon si ma intereseaza factura'\n", + "Similarity between 'Suma de plata internet si tv' and 'Am o problema cu factura Tv si internet ' is 0.74'\n", + "Removing 'Am o problema cu factura Tv si internet'\n", + "Similarity between 'Suma de plata internet si tv' and 'Cat am de plata la internet ' is 0.74'\n", + "Removing 'Cat am de plata la internet'\n", + "Similarity between 'Suma de plata internet si tv' and 'Cat am de plata la internet si tv ' is 0.89'\n", + "Removing 'Cat am de plata la internet si tv'\n", + "Similarity between 'Suma de plata internet si tv' and 'Factura curenta pentru servicii fixe TV si internet' is 0.73'\n", + "Removing 'Factura curenta pentru servicii fixe TV si internet'\n", + "Similarity between 'Suma de plata internet si tv' and 'Factura televiziune si internet ' is 0.85'\n", + "Removing 'Factura televiziune si internet'\n", + "Similarity between 'Suma de plata internet si tv' and 'Factura tv net ' is 0.73'\n", + "Removing 'Factura tv net'\n", + "Similarity between 'Suma de plata internet si tv' and 'Factura tv si internet ' is 0.87'\n", + "Removing 'Factura tv si internet'\n", + "Similarity between 'Suma de plata internet si tv' and 'Informatii factura televiziune si intelernet ' is 0.70'\n", + "Removing 'Informatii factura televiziune si intelernet'\n", + "Similarity between 'Suma de plata internet si tv' and 'Nu gasesc factura pentru serviciile de televiziune si internet.' is 0.71'\n", + "Removing 'Nu gasesc factura pentru serviciile de televiziune si internet.'\n", + "Similarity between 'Doresc factura Vodafone pe numarul meu de telefon' and 'Am nevoie de factura Vodafone ' is 0.88'\n", + "Removing 'Am nevoie de factura Vodafone'\n", + "Similarity between 'Doresc factura Vodafone pe numarul meu de telefon' and 'As dorii sa stiu cat am de plata la Vodafone ' is 0.73'\n", + "Removing 'As dorii sa stiu cat am de plata la Vodafone'\n", + "Similarity between 'Doresc factura Vodafone pe numarul meu de telefon' and 'As vrea sa stiu daca pot vizualiza factura Vodafone pentru telefon. Nu o gasesc nicaieri in nu vodafone' is 0.71'\n", + "Removing 'As vrea sa stiu daca pot vizualiza factura Vodafone pentru telefon. Nu o gasesc nicaieri in nu vodafone'\n", + "Similarity between 'Doresc factura Vodafone pe numarul meu de telefon' and 'dami factura Vodafone la numarul asta de twlefon ' is 0.81'\n", + "Removing 'dami factura Vodafone la numarul asta de twlefon'\n", + "Similarity between 'Doresc factura Vodafone pe numarul meu de telefon' and 'Doresc factura tv Vodafone ' is 0.78'\n", + "Removing 'Doresc factura tv Vodafone'\n", + "Similarity between 'Doresc factura Vodafone pe numarul meu de telefon' and 'Doresc factura Vodafone fix ' is 0.77'\n", + "Removing 'Doresc factura Vodafone fix'\n", + "Similarity between 'Doresc factura Vodafone pe numarul meu de telefon' and 'Doresc factura Vodafone pe numarul meu de telefon ' is 1.00'\n", + "Removing 'Doresc factura Vodafone pe numarul meu de telefon'\n", + "Similarity between 'cat platesc abonamentul?' and 'cat am de plata pe factura ' is 0.73'\n", + "Similarity between 'cat platesc abonamentul?' and 'Cat am de plata la factura ' is 0.74'\n", + "Similarity between 'cat platesc abonamentul?' and 'cat am de plata pe factura ' is 0.73'\n", + "Similarity between 'cat platesc abonamentul?' and 'Cat am de platit la abonamentul cu nr.de tf. ' is 0.79'\n", + "Removing 'Cat am de platit la abonamentul cu nr.de tf.'\n", + "Similarity between 'cat platesc abonamentul?' and 'cat am factura de plata ' is 0.72'\n", + "Similarity between 'cat platesc abonamentul?' and 'cat am factura? ' is 0.72'\n", + "Similarity between 'cat platesc abonamentul?' and 'cat platesc abonamentul? ' is 1.00'\n", + "Removing 'cat platesc abonamentul?'\n", + "Similarity between 'cat platesc abonamentul?' and 'cat platesc factura ' is 0.73'\n", + "Similarity between 'cat platesc abonamentul?' and 'cum as putea primi factura de abonament aici ' is 0.84'\n", + "Removing 'cum as putea primi factura de abonament aici'\n", + "Similarity between 'cat platesc abonamentul?' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.83'\n", + "Removing 'Eu doresc sa stiu daca sa platit factura de abonament'\n", + "Similarity between 'cat platesc abonamentul?' and 'factura abonament ' is 0.74'\n", + "Removing 'factura abonament'\n", + "Similarity between 'Recalculare factura' and 'detalii la factura ' is 0.72'\n", + "Similarity between 'Recalculare factura' and 'Detaliere factura ' is 0.77'\n", + "Removing 'Detaliere factura'\n", + "Similarity between 'Recalculare factura' and 'Aflare datorie factura ' is 0.71'\n", + "Similarity between 'Recalculare factura' and 'Am nevoie de detalierea unei facturi ' is 0.73'\n", + "Similarity between 'Recalculare factura' and 'Am nevoiw se facture ' is 0.74'\n", + "Similarity between 'Recalculare factura' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.70'\n", + "Similarity between 'Recalculare factura' and 'cat platesc factura ' is 0.71'\n", + "Similarity between 'Recalculare factura' and 'Cost factura ' is 0.73'\n", + "Similarity between 'Recalculare factura' and 'date despre factura ' is 0.74'\n", + "Similarity between 'Recalculare factura' and 'date factura ' is 0.78'\n", + "Similarity between 'Recalculare factura' and 'datele facturii ' is 0.72'\n", + "Similarity between 'Recalculare factura' and 'desfasurator factura ' is 0.79'\n", + "Similarity between 'Recalculare factura' and 'desfasurator la factura ' is 0.79'\n", + "Similarity between 'Recalculare factura' and 'Detaliere factura ' is 0.77'\n", + "Removing 'Detaliere factura'\n", + "Similarity between 'Recalculare factura' and 'Detalii extraoptiuni facturi ' is 0.77'\n", + "Similarity between 'Recalculare factura' and 'detalii factura ' is 0.72'\n", + "Similarity between 'Recalculare factura' and 'factura ' is 0.76'\n", + "Similarity between 'Recalculare factura' and 'in legatura cu o factura ' is 0.73'\n", + "Similarity between 'Recalculare factura' and 'Informatie despre factura ' is 0.72'\n", + "Similarity between 'Recalculare factura' and 'informatii factura ' is 0.73'\n", + "Similarity between 'Recalculare factura' and 'Neclara factura ' is 0.77'\n", + "Similarity between 'Puteti sa-mi explicati de ce mi-a crescut factura de la' and 'De ce am platit suplimentar la factura ' is 0.71'\n", + "Removing 'De ce am platit suplimentar la factura'\n", + "Similarity between 'Puteti sa-mi explicati de ce mi-a crescut factura de la' and 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu' is 0.70'\n", + "Removing 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu'\n", + "Similarity between 'Puteti sa-mi explicati de ce mi-a crescut factura de la' and 'As vrea sa discutam in legatura cu o marire de factura' is 0.78'\n", + "Removing 'As vrea sa discutam in legatura cu o marire de factura'\n", + "Similarity between 'Puteti sa-mi explicati de ce mi-a crescut factura de la' and 'De ce mi-a venit factura mai marea ' is 0.78'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cat am de plata pe factura ' is 0.80'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Aa dori informatii despre factura pe acest nr ' is 0.74'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Am nevoidsa imi trimiteti factura de ' is 0.74'\n", + "Removing 'Am nevoidsa imi trimiteti factura de'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Am nevoie de detalierea unei facturi ' is 0.84'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'am nevoie de informati in legatura cu o plata ' is 0.71'\n", + "Removing 'am nevoie de informati in legatura cu o plata'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Am o factura de plata si nu stiu pe ce cont de email este' is 0.72'\n", + "Removing 'Am o factura de plata si nu stiu pe ce cont de email este'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Am o intrebare despre factura mea ' is 0.89'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Am o problems cu privire la factura mea ' is 0.71'\n", + "Removing 'Am o problems cu privire la factura mea'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'as dori datele despre factura desfasuratorul ' is 0.76'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As dori detalii legate de factura ' is 0.80'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'as dori factura! ' is 0.77'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As dori informatii despre fact mele. ' is 0.72'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As dori niste informatii in legatura cu factura numarului' is 0.76'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.72'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.87'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As dori stiu din ce se compune factura ' is 0.88'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As dori si eu detaliile facturii ' is 0.73'\n", + "Removing 'As dori si eu detaliile facturii'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As vrea sa primesc mai multe detalii despre factura' is 0.75'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.78'\n", + "Removing 'As vrea sa stiu daca am o factura neplatita in acest moment'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'as vrea sa stiu factura de plata ' is 0.86'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'As vrea sa stiu si eu de ce am primit factura incarcata' is 0.71'\n", + "Removing 'As vrea sa stiu si eu de ce am primit factura incarcata'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Care e soldul facturii mele ' is 0.85'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Care este soldul contului meu ' is 0.76'\n", + "Removing 'Care este soldul contului meu'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cat am avut de plata la factura ' is 0.77'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Cat am de plata la factura ' is 0.80'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cat am de plata pe factura ' is 0.80'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cat am factura de plata ' is 0.81'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cat am factura? ' is 0.84'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cat platesc factura ' is 0.71'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'ce reprezinta aceasta factura ' is 0.75'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Ce se intampla cu factura? ' is 0.76'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Cum aflu datele facturii ' is 0.73'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cum as putea primi factura de abonament aici ' is 0.70'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'cum as putea sa imi aflu datele facturii ' is 0.82'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.80'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Cum pot afla detalii despre facturile mele ' is 0.71'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Cum pot avea factura ea detaliata ' is 0.77'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Cum pot primi factura detailata ' is 0.77'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Cum pot regasi factura din ' is 0.79'\n", + "Removing 'Cum pot regasi factura din'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.71'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'date despre factura ' is 0.74'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'date despre factura mea ' is 0.85'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'datele facturii ' is 0.71'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'datele facturii mele ' is 0.79'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'doresc factura ' is 0.80'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.73'\n", + "Removing 'Doresc sa primesc informatii despre ultima factura emisa'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'doresc sa stiu ce include factura mea ' is 1.00'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Doresc sa stiu daca e platita factura din ' is 0.85'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.75'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Eu vreau sa stiu despre factura ' is 0.89'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Eu vreau sa vad factura ' is 0.80'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'in legatura cu facturi ' is 0.70'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'in legatura cu o factura ' is 0.73'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Informatie despre factura ' is 0.76'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'informatii factura ' is 0.72'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Ma ajutati va rog cu factura aia.odata! ' is 0.72'\n", + "Removing 'Ma ajutati va rog cu factura aia.odata!'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'm-a interesa factura ' is 0.76'\n", + "Removing 'm-a interesa factura'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Ma intereseaza detalii de la o factura de telefon ' is 0.72'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Ma intereseaza detalii despre o factura ' is 0.84'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Mai am un nr de telefon si ma intereseaza factura ' is 0.77'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Nu am acces la detaliile facturii,ma poti ajuta? ' is 0.71'\n", + "Similarity between 'Doresc sa mi se comunice de ce figurez cu debite' and 'As dorii sa stiu cat datorez ! ' is 0.73'\n", + "Removing 'As dorii sa stiu cat datorez !'\n", + "Similarity between 'Doresc sa mi se comunice de ce figurez cu debite' and 'As vrea sa stiu si eu de ce am primit factura incarcata' is 0.75'\n", + "Similarity between 'Doresc sa mi se comunice de ce figurez cu debite' and 'Cum pot vedea ce datorii am ' is 0.76'\n", + "Removing 'Cum pot vedea ce datorii am'\n", + "Similarity between 'Doresc sa mi se comunice de ce figurez cu debite' and 'Doresc sa mi se comunice de ce figurez cu debite ' is 1.00'\n", + "Removing 'Doresc sa mi se comunice de ce figurez cu debite'\n", + "Similarity between 'Din ce provine costul suplimentar' and 'De ce am platit suplimentar la factura ' is 0.75'\n", + "Similarity between 'Din ce provine costul suplimentar' and 'cat cost suplimentar am ' is 0.80'\n", + "Removing 'cat cost suplimentar am'\n", + "Similarity between 'Din ce provine costul suplimentar' and 'cost suplimentar ' is 0.86'\n", + "Removing 'cost suplimentar'\n", + "Similarity between 'Din ce provine costul suplimentar' and 'Cum pot afla ce a cauzat costul suplimentar ' is 0.82'\n", + "Removing 'Cum pot afla ce a cauzat costul suplimentar'\n", + "Similarity between 'Din ce provine costul suplimentar' and 'De ce am cost suplimentat ' is 0.81'\n", + "Removing 'De ce am cost suplimentat'\n", + "Similarity between 'Din ce provine costul suplimentar' and 'De ce platesc extraobtiuni ' is 0.82'\n", + "Removing 'De ce platesc extraobtiuni'\n", + "Similarity between 'Din ce provine costul suplimentar' and 'Din ce provine costul suplimentara ' is 1.00'\n", + "Removing 'Din ce provine costul suplimentara'\n", + "Similarity between 'Diferenta factura Vodafone Fix' and 'Detalii factura Vodafone fix ' is 0.78'\n", + "Removing 'Detalii factura Vodafone fix'\n", + "Similarity between 'Diferenta factura Vodafone Fix' and 'Diferenta factura Vodafone Fix ' is 1.00'\n", + "Removing 'Diferenta factura Vodafone Fix'\n", + "Similarity between 'Diferenta factura Vodafone Fix' and 'Doresc factura Vodafone fix ' is 0.73'\n", + "Similarity between 'Diferenta de plata factura cu data de astazi' and 'Diferenta de plata factura cu data de astazi ' is 1.00'\n", + "Removing 'Diferenta de plata factura cu data de astazi'\n", + "Similarity between 'detalii la factura' and 'Aa dori informatii despre factura pe acest nr ' is 0.76'\n", + "Similarity between 'detalii la factura' and 'Am nevoie de detalierea unei facturi ' is 0.78'\n", + "Similarity between 'detalii la factura' and 'as dori datele despre factura desfasuratorul ' is 0.77'\n", + "Similarity between 'detalii la factura' and 'As dori detalii legate de factura ' is 0.90'\n", + "Similarity between 'detalii la factura' and 'As dori niste informatii in legatura cu factura numarului' is 0.73'\n", + "Similarity between 'detalii la factura' and 'As dori o factura detaliata pt ' is 0.71'\n", + "Similarity between 'detalii la factura' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.72'\n", + "Similarity between 'detalii la factura' and 'As dori stiu din ce se compune factura ' is 0.78'\n", + "Similarity between 'detalii la factura' and 'As dori si eu detaliile facturii ' is 0.78'\n", + "Similarity between 'detalii la factura' and 'As vrea factura detaliata ' is 0.74'\n", + "Similarity between 'detalii la factura' and 'As vrea sa primesc mai multe detalii despre factura' is 0.80'\n", + "Similarity between 'detalii la factura' and 'as vrea sa stiu factura de plata ' is 0.74'\n", + "Similarity between 'detalii la factura' and 'bill info ' is 0.83'\n", + "Similarity between 'detalii la factura' and 'ce cost are factura ' is 0.75'\n", + "Similarity between 'detalii la factura' and 'ce reprezinta aceasta factura ' is 0.70'\n", + "Similarity between 'detalii la factura' and 'Cost factura ' is 0.79'\n", + "Similarity between 'detalii la factura' and 'Cum pot primi factura detailata ' is 0.77'\n", + "Similarity between 'detalii la factura' and 'Cum vad factura detaliata ' is 0.84'\n", + "Similarity between 'detalii la factura' and 'date despre factura ' is 0.91'\n", + "Similarity between 'detalii la factura' and 'date despre factura mea ' is 0.76'\n", + "Similarity between 'detalii la factura' and 'date factura ' is 0.81'\n", + "Similarity between 'detalii la factura' and 'datele facturii ' is 0.88'\n", + "Similarity between 'detalii la factura' and 'desfasurator factura ' is 0.79'\n", + "Similarity between 'detalii la factura' and 'desfasurator la factura ' is 0.80'\n", + "Similarity between 'detalii la factura' and 'Detalii extraoptiuni facturi ' is 0.83'\n", + "Similarity between 'detalii la factura' and 'detalii factura ' is 0.97'\n", + "Similarity between 'detalii la factura' and 'Detalii factura upc ' is 0.72'\n", + "Removing 'Detalii factura upc'\n", + "Similarity between 'detalii la factura' and 'Detalii plata ' is 0.76'\n", + "Similarity between 'detalii la factura' and 'Doresc factura detaliata emisa pe ' is 0.71'\n", + "Removing 'Doresc factura detaliata emisa pe'\n", + "Similarity between 'detalii la factura' and 'Eu vreau sa stiu despre factura ' is 0.77'\n", + "Similarity between 'detalii la factura' and 'Eu vreau sa vad factura ' is 0.74'\n", + "Similarity between 'detalii la factura' and 'Explicare factura ' is 0.80'\n", + "Similarity between 'detalii la factura' and 'factura ' is 0.84'\n", + "Similarity between 'detalii la factura' and 'factura info ' is 0.75'\n", + "Similarity between 'detalii la factura' and 'factura informatii ' is 0.76'\n", + "Similarity between 'detalii la factura' and 'factura pentru acest numar ' is 0.78'\n", + "Similarity between 'detalii la factura' and 'in legatura cu facturi ' is 0.78'\n", + "Similarity between 'detalii la factura' and 'in legatura cu o factura ' is 0.87'\n", + "Similarity between 'detalii la factura' and 'info factura ' is 0.77'\n", + "Similarity between 'detalii la factura' and 'Informatie despre factura ' is 0.91'\n", + "Similarity between 'detalii la factura' and 'informatii factur ' is 0.79'\n", + "Similarity between 'detalii la factura' and 'informatii factura ' is 0.91'\n", + "Similarity between 'detalii la factura' and 'Ma intereseaza detalii despre o factura ' is 0.82'\n", + "Similarity between 'Detaliere factura' and 'Detaliere factura ' is 1.00'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce platesc mai multa ' is 0.79'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce platesc foarte mult la abonament ' is 0.76'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce am un cost asa de mare ' is 0.82'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce am platit suplimentar la factura ' is 0.70'\n", + "Similarity between 'De ce tot intru pe cost' and 'de ce am atat de plata ' is 0.80'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce am cost suplimentat ' is 0.71'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce am suma asta de plata ' is 0.81'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce imi apare factura cost cu ' is 0.85'\n", + "Removing 'De ce imi apare factura cost cu'\n", + "Similarity between 'De ce tot intru pe cost' and 'de ce ma-ti facturat atat de multa ' is 0.77'\n", + "Removing 'de ce ma-ti facturat atat de multa'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce mi-a venit factura mai marea ' is 0.71'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce platesc asa multa ' is 0.83'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce platesc atat de multa ' is 0.83'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce platesc extraobtiuni ' is 0.74'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce platesc foarte mult la abonament ' is 0.76'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce platesc mai multa ' is 0.79'\n", + "Similarity between 'De ce tot intru pe cost' and 'De ce tot intru pe cost ' is 1.00'\n", + "Similarity between 'De ce sunt taxat pentru net si minute' and 'De ce sunt taxat pentru net si minute ' is 1.00'\n", + "Removing 'De ce sunt taxat pentru net si minute'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce platesc foarte mult la abonament ' is 0.78'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce am un cost asa de mare ' is 0.82'\n", + "Similarity between 'De ce platesc mai multa' and 'de ce e factura mai mare ' is 0.73'\n", + "Similarity between 'De ce platesc mai multa' and 'de ce am atat de plata ' is 0.87'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce am cost suplimentat ' is 0.72'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce am suma asta de plata ' is 0.84'\n", + "Similarity between 'De ce platesc mai multa' and 'de ce e factura mai mare ' is 0.73'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce imi apare factura cost cu ' is 0.70'\n", + "Similarity between 'De ce platesc mai multa' and 'de ce ma-ti facturat atat de multa ' is 0.76'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce mi-a venit factura mai marea ' is 0.76'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce platesc asa multa ' is 0.93'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce platesc atat de multa ' is 0.93'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce platesc extraobtiuni ' is 0.73'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce platesc foarte mult la abonament ' is 0.78'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce platesc mai multa ' is 1.00'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce tot intru pe cost ' is 0.79'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce trebuie sa mai platesc 3 lei ca am facut plata' is 0.72'\n", + "Removing 'De ce trebuie sa mai platesc 3 lei ca am facut plata'\n", + "Similarity between 'De ce platesc mai multa' and 'Imi poti da detalii , de ce am atat de multi bani de achitat ?' is 0.74'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce am un cost asa de mare ' is 0.80'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'de ce e factura asa mare ' is 0.73'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'de ce am atat de plata ' is 0.83'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce am suma asta de plata ' is 0.81'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'de ce e factura asa mare ' is 0.73'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce imi apare factura cost cu ' is 0.73'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'de ce ma-ti facturat atat de multa ' is 0.75'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce mi-a venit factura mai marea ' is 0.73'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce platesc asa multa ' is 0.85'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce platesc atat de multa ' is 0.85'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce platesc foarte mult la abonament ' is 1.00'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce platesc mai multa ' is 0.78'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce tot intru pe cost ' is 0.76'\n", + "Similarity between 'De ce am un cost asa de mare' and 'de ce e factura mai mare ' is 0.76'\n", + "Similarity between 'De ce am un cost asa de mare' and 'de ce e factura asa mare ' is 0.81'\n", + "Similarity between 'De ce am un cost asa de mare' and 'de ce am atat de plata ' is 0.86'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce am suma asta de plata ' is 0.81'\n", + "Similarity between 'De ce am un cost asa de mare' and 'de ce e factura asa mare ' is 0.81'\n", + "Similarity between 'De ce am un cost asa de mare' and 'de ce e factura mai mare ' is 0.76'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce imi apare factura cost cu ' is 0.72'\n", + "Similarity between 'De ce am un cost asa de mare' and 'de ce ma-ti facturat atat de multa ' is 0.78'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce mi-a venit factura mai marea ' is 0.80'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce platesc asa multa ' is 0.89'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce platesc atat de multa ' is 0.90'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce platesc foarte mult la abonament ' is 0.80'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce platesc mai multa ' is 0.82'\n", + "Similarity between 'De ce am un cost asa de mare' and 'De ce tot intru pe cost ' is 0.82'\n", + "Similarity between 'De ce am un cost asa de mare' and 'Imi poti da detalii , de ce am atat de multi bani de achitat ?' is 0.75'\n", + "Similarity between 'cat am de plata pe factura' and 'Aflare datorie factura ' is 0.70'\n", + "Similarity between 'cat am de plata pe factura' and 'Am nevoie de detalierea unei facturi ' is 0.76'\n", + "Similarity between 'cat am de plata pe factura' and 'Am o intrebare despre factura mea ' is 0.79'\n", + "Similarity between 'cat am de plata pe factura' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.84'\n", + "Similarity between 'cat am de plata pe factura' and 'As dori stiu din ce se compune factura ' is 0.79'\n", + "Similarity between 'cat am de plata pe factura' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'as vrea sa stiu factura de plata ' is 0.79'\n", + "Similarity between 'cat am de plata pe factura' and 'Care e soldul facturii mele ' is 0.83'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am avut de plata la factura ' is 0.94'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am de plata ' is 0.80'\n", + "Similarity between 'cat am de plata pe factura' and 'Cat am de plata la factura ' is 0.98'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am de plata pe factura ' is 1.00'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am de plata pe fix ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am de platit ' is 0.76'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am factura de plata ' is 0.96'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am factura? ' is 0.89'\n", + "Similarity between 'cat am de plata pe factura' and 'Cat este de platit ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'cat platesc ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'cat platesc abonamentul? ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'cat platesc factura ' is 0.95'\n", + "Similarity between 'cat am de plata pe factura' and 'ce am de plata ' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'ce cost are factura ' is 0.82'\n", + "Similarity between 'cat am de plata pe factura' and 'ce reprezinta aceasta factura ' is 0.79'\n", + "Similarity between 'cat am de plata pe factura' and 'Ce se intampla cu factura? ' is 0.78'\n", + "Similarity between 'cat am de plata pe factura' and 'Ce suma de plata am ' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'Cit am de plata ' is 0.75'\n", + "Similarity between 'cat am de plata pe factura' and 'Cost factura ' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'cum as putea sa imi aflu datele facturii ' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.82'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot avea factura ea detaliata ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot primi factura detailata ' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot regasi factura din ' is 0.78'\n", + "Similarity between 'cat am de plata pe factura' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'date despre factura ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'date despre factura mea ' is 0.78'\n", + "Similarity between 'cat am de plata pe factura' and 'datele facturii ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'datele facturii mele ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'desfasurator la factura ' is 0.70'\n", + "Similarity between 'cat am de plata pe factura' and 'doresc factura ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'doresc sa stiu ce include factura mea ' is 0.80'\n", + "Similarity between 'cat am de plata pe factura' and 'Doresc sa stiu daca e platita factura din ' is 0.82'\n", + "Similarity between 'cat am de plata pe factura' and 'Eu vreau sa stiu despre factura ' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'factura platesc cost ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'imi poti spune cit am factura luna asta ' is 0.75'\n", + "Removing 'imi poti spune cit am factura luna asta'\n", + "Similarity between 'cat am de plata pe factura' and 'imi puteti spune daca am platit factura luna aceasta' is 0.74'\n", + "Removing 'imi puteti spune daca am platit factura luna aceasta'\n", + "Similarity between 'cat am de plata pe factura' and 'imi puteti spune va rog cat am de plata ' is 0.80'\n", + "Similarity between 'cat am de plata pe factura' and 'in legatura cu facturi ' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'in legatura cu o factura ' is 0.76'\n", + "Similarity between 'cat am de plata pe factura' and 'Informatie despre factura ' is 0.74'\n", + "Similarity between 'de ce e factura mai mare' and 'de ce e factura asa mare ' is 0.94'\n", + "Similarity between 'de ce e factura mai mare' and 'de ce e factura asa mare ' is 0.94'\n", + "Similarity between 'de ce e factura mai mare' and 'de ce e factura mai mare ' is 1.00'\n", + "Similarity between 'de ce e factura mai mare' and 'De ce este asa mare ' is 0.79'\n", + "Removing 'De ce este asa mare'\n", + "Similarity between 'de ce e factura mai mare' and 'De ce mi-a venit factura mai marea ' is 0.90'\n", + "Similarity between 'de ce e factura mai mare' and 'De ce platesc mai multa ' is 0.73'\n", + "Similarity between 'de ce e factura mai mare' and 'de ce suma este mai mare decit abonamentu ' is 0.80'\n", + "Removing 'de ce suma este mai mare decit abonamentu'\n", + "Similarity between 'de ce e factura mai mare' and 'factura mare ' is 0.72'\n", + "Removing 'factura mare'\n", + "Similarity between 'de ce e factura asa mare' and 'A venit o factura foarte mare ' is 0.71'\n", + "Removing 'A venit o factura foarte mare'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce am atat de plata ' is 0.70'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce e factura asa mare ' is 1.00'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce e factura mai mare ' is 0.94'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce este asa mare ' is 0.77'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce ma-ti facturat atat de multa ' is 0.74'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce mi-a venit factura mai marea ' is 0.85'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce platesc asa multa ' is 0.73'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce platesc atat de multa ' is 0.75'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce platesc foarte mult la abonament ' is 0.73'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce suma este mai mare decit abonamentu ' is 0.71'\n", + "Similarity between 'de ce e factura asa mare' and 'factura mare ' is 0.74'\n", + "Similarity between 'Doresc un istoric al facturilor platite' and 'Ma intereseaza detalii despre costul ultimei facturi' is 0.73'\n", + "Removing 'Ma intereseaza detalii despre costul ultimei facturi'\n", + "Similarity between 'Doresc un istoric al facturilor platite' and 'Am nevoie de detalierea unei facturi ' is 0.72'\n", + "Similarity between 'Doresc un istoric al facturilor platite' and 'am nevoie de informati in legatura cu o plata ' is 0.71'\n", + "Similarity between 'Doresc un istoric al facturilor platite' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.73'\n", + "Similarity between 'Doresc un istoric al facturilor platite' and 'as vrea sa stiu factura de plata ' is 0.73'\n", + "Similarity between 'Doresc un istoric al facturilor platite' and 'Doresc un istoric al facturilor platite ' is 1.00'\n", + "Removing 'Doresc un istoric al facturilor platite'\n", + "Similarity between 'Eu am optat pentru un abonament de 5 euro si platesc 15euro,de ce' and 'Eu am optat pentru un abonament de 5 euro si platesc 15euro,de ce' is 1.00'\n", + "Removing 'Eu am optat pentru un abonament de 5 euro si platesc 15euro,de ce'\n", + "Similarity between 'Facatura mea nu este corecta' and 'Facatura mea nu este corecta ' is 1.00'\n", + "Removing 'Facatura mea nu este corecta'\n", + "Similarity between 'Factura abonamentului mobil este mai mare decat ar trebui' and 'Factura abonamentului mobil este mai mare decat ar trebui' is 1.00'\n", + "Removing 'Factura abonamentului mobil este mai mare decat ar trebui'\n", + "Similarity between 'Factura a venit marita' and 'Factura a venit marita ' is 1.00'\n", + "Removing 'Factura a venit marita'\n", + "Similarity between 'Factura a venit marita' and 'Factura mea la telefon vine marita ' is 0.72'\n", + "Removing 'Factura mea la telefon vine marita'\n", + "Similarity between 'Factura este eronata' and 'Factura gresita ' is 0.71'\n", + "Removing 'Factura gresita'\n", + "Similarity between 'Factura este eronata' and 'Factura este eronata ' is 1.00'\n", + "Removing 'Factura este eronata'\n", + "Similarity between 'Factura exagerat de mare!' and 'factura e prea mare ' is 0.71'\n", + "Removing 'factura e prea mare'\n", + "Similarity between 'Factura exagerat de mare!' and 'Factura exagerat de mare! ' is 1.00'\n", + "Removing 'Factura exagerat de mare!'\n", + "Similarity between 'Factura exagerat de mare!' and 'factura prea mare ' is 0.73'\n", + "Removing 'factura prea mare'\n", + "Similarity between 'factura prea mare, vreau sa stiu ce s-a intamplat' and 'factura prea mare ' is 0.70'\n", + "Similarity between 'factura prea mare, vreau sa stiu ce s-a intamplat' and 'factura prea mare, vreau sa stiu ce s-a intamplat ' is 1.00'\n", + "Removing 'factura prea mare, vreau sa stiu ce s-a intamplat'\n", + "Similarity between 'Factura gresita' and 'Factura este eronata ' is 0.71'\n", + "Similarity between 'Factura gresita' and 'Factura neconforma ' is 0.77'\n", + "Removing 'Factura neconforma'\n", + "Similarity between 'In legatura cu ultima factura.' and 'Ma intereseaza detalii despre costul ultimei facturi' is 0.76'\n", + "Similarity between 'In legatura cu ultima factura.' and 'aa dori sa aflu ultima factura ' is 0.79'\n", + "Removing 'aa dori sa aflu ultima factura'\n", + "Similarity between 'In legatura cu ultima factura.' and 'Am nelamuriri asupra ultimei facturi. ' is 0.77'\n", + "Similarity between 'In legatura cu ultima factura.' and 'Am nevoie de ultima factura neachitata ' is 0.72'\n", + "Similarity between 'In legatura cu ultima factura.' and 'As dori detalii despre ultima factura.E platita sau nu?' is 0.75'\n", + "Removing 'As dori detalii despre ultima factura.E platita sau nu?'\n", + "Similarity between 'In legatura cu ultima factura.' and 'Cand mi s-a emis ultima factura ' is 0.78'\n", + "Similarity between 'In legatura cu ultima factura.' and 'daca ultima factura este platita ' is 0.79'\n", + "Similarity between 'In legatura cu ultima factura.' and 'Doresc datele de pe ultima factura ' is 0.79'\n", + "Removing 'Doresc datele de pe ultima factura'\n", + "Similarity between 'In legatura cu ultima factura.' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.78'\n", + "Similarity between 'In legatura cu ultima factura.' and 'factura ' is 0.70'\n", + "Similarity between 'In legatura cu ultima factura.' and 'in legatura cu o factura ' is 0.71'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'aa dori sa aflu ultima factura ' is 0.76'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'Am nelamuriri asupra ultimei facturi. ' is 0.81'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'Am nevoie de detalierea unei facturi ' is 0.76'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'am nevoie de informati in legatura cu o plata ' is 0.73'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'as dori datele despre factura desfasuratorul ' is 0.73'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'As dori detalii despre ultima factura.E platita sau nu?' is 0.75'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'As dori detalii legate de factura ' is 0.75'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.77'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'As dori si eu detaliile facturii ' is 0.74'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'As vrea sa primesc mai multe detalii despre factura' is 0.71'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'as vrea sa stiu factura de plata ' is 0.75'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'Doresc datele de pe ultima factura ' is 0.78'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.79'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'Doresc sa stiu daca e platita factura din ' is 0.71'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'Doresc un istoric al facturilor platite ' is 0.73'\n", + "Similarity between 'Ma intereseaza detalii despre costul ultimei facturi' and 'Eu vreau sa stiu despre factura ' is 0.73'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'Am fost taxat suplimentar ' is 0.72'\n", + "Removing 'Am fost taxat suplimentar'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu' is 0.74'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'cat cost suplimentar am ' is 0.73'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'De ce am cost suplimentat ' is 0.87'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'De ce am suma asta de plata ' is 0.74'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'De ce imi apare factura cost cu ' is 0.75'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'de ce ma-ti facturat atat de multa ' is 0.74'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'De ce mi-a venit factura mai marea ' is 0.74'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'De ce platesc extraobtiuni ' is 0.78'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'De ce tot intru pe cost ' is 0.70'\n", + "Similarity between 'De ce am platit suplimentar la factura' and 'Din ce provine costul suplimentara ' is 0.75'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'Aa dori informatii despre factura pe acest nr ' is 0.71'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'Am cerut o factura detaliata emisa pe numarul ' is 0.74'\n", + "Removing 'Am cerut o factura detaliata emisa pe numarul '\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'As dori factura detaliata pentru abonamentul cu numarul' is 0.74'\n", + "Removing 'As dori factura detaliata pentru abonamentul cu numarul'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'As dori niste informatii in legatura cu factura numarului' is 0.78'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'As dori o factura detaliata pe nr ' is 0.70'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'As dori sa stiu cat am de plata la numarul de telefon' is 0.73'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'As dori sa stiu cat este de plata pt un nr de telefon' is 0.75'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.86'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' is 0.82'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'Cum pot avea factura ea detaliata ' is 0.74'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'Cum pot primi factura detailata ' is 0.72'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.76'\n", + "Similarity between 'spune-mi te rog daca pot sa vad o factura detaliata pe un Nr de telefon' and 'factura pentru numarul de telefon ' is 0.70'\n", + "Similarity between 'A venit o factura foarte mare' and 'Am primit factura la abonament. si ii prea mult ' is 0.73'\n", + "Removing 'Am primit factura la abonament. si ii prea mult'\n", + "Similarity between 'A venit o factura foarte mare' and 'de ce e factura asa mare ' is 0.71'\n", + "Similarity between 'A venit o factura foarte mare' and 'factura e prea mare ' is 0.77'\n", + "Similarity between 'A venit o factura foarte mare' and 'factura mare ' is 0.92'\n", + "Similarity between 'A venit o factura foarte mare' and 'factura prea mare ' is 0.79'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'as dori datele despre factura desfasuratorul ' is 0.75'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As dori detalii legate de factura ' is 0.83'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'as dori factura! ' is 0.70'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As dori niste informatii in legatura cu factura numarului' is 0.86'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As dori o factura detaliata pe nr ' is 0.78'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.73'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As dori stiu din ce se compune factura ' is 0.81'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As dori si eu detaliile facturii ' is 0.71'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.71'\n", + "Removing 'As dorii o factura mai in detaliu pentru acest numar'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'As vrea sa primesc mai multe detalii despre factura' is 0.78'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'as vrea sa stiu factura de plata ' is 0.78'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'ce reprezinta aceasta factura ' is 0.72'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'date despre factura ' is 0.76'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'detalii factura ' is 0.74'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'doresc sa stiu ce include factura mea ' is 0.74'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'Doresc sa stiu daca e platita factura din ' is 0.74'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'Eu vreau sa stiu despre factura ' is 0.80'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'Eu vreau sa vad factura ' is 0.73'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'factura ' is 0.70'\n", + "Similarity between 'Aa dori informatii despre factura pe acest nr' and 'factura pentru acest numar ' is 0.76'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'Am nevoie de detalierea unei facturi ' is 0.70'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'Am nevoie de ultima factura neachitata ' is 0.78'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'As dori detalii despre ultima factura.E platita sau nu?' is 0.76'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'as dori factura! ' is 0.71'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'As dori sa imi dai ultima factura la telefonul acesta' is 0.81'\n", + "Removing 'As dori sa imi dai ultima factura la telefonul acesta'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'as vrea sa stiu factura de plata ' is 0.71'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'Cand mi s-a emis ultima factura ' is 0.74'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'daca ultima factura este platita ' is 0.76'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'Doresc datele de pe ultima factura ' is 0.88'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'doresc factura ' is 0.74'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'Doresc sa aflu facturile restante ' is 0.75'\n", + "Removing 'Doresc sa aflu facturile restante'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.86'\n", + "Similarity between 'aa dori sa aflu ultima factura' and 'Doresc ultima factura pt a o putea plati ' is 0.82'\n", + "Similarity between 'Aflare datorie factura' and 'Am nevoiw se facture ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'cat am de plata pe factura ' is 0.70'\n", + "Similarity between 'Aflare datorie factura' and 'cat am factura de plata ' is 0.71'\n", + "Similarity between 'Aflare datorie factura' and 'cat platesc factura ' is 0.74'\n", + "Similarity between 'Aflare datorie factura' and 'ce cost are factura ' is 0.72'\n", + "Similarity between 'Aflare datorie factura' and 'Cost factura ' is 0.78'\n", + "Similarity between 'Aflare datorie factura' and 'date despre factura ' is 0.72'\n", + "Similarity between 'Aflare datorie factura' and 'datele facturii ' is 0.71'\n", + "Similarity between 'Aflare datorie factura' and 'Datorii ' is 0.79'\n", + "Similarity between 'Aflare datorie factura' and 'desfasurator factura ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'desfasurator la factura ' is 0.73'\n", + "Similarity between 'Aflare datorie factura' and 'factura ' is 0.74'\n", + "Similarity between 'Aflare datorie factura' and 'factura platesc cost ' is 0.73'\n", + "Similarity between 'am abonament la tv la dumneavoastra si nu mai pot plati cu codul de bare imi puteti trimite ms cu plata pe tel' and 'Cat am de plata la vodafone fix si tv ' is 0.71'\n", + "Removing 'Cat am de plata la vodafone fix si tv'\n", + "Similarity between 'am abonament la tv la dumneavoastra si nu mai pot plati cu codul de bare imi puteti trimite ms cu plata pe tel' and 'doresc factura tv client. Pana acuma nu am putut-o accesa.' is 0.74'\n", + "Removing 'doresc factura tv client. Pana acuma nu am putut-o accesa.'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'Am nelamuriri asupra ultimei facturi. ' is 0.75'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'Am o intrebare despre factura mea ' is 0.74'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'am o problema cu factura ' is 0.84'\n", + "Removing 'am o problema cu factura'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'Am o problema cu factura emisa ' is 0.74'\n", + "Removing 'Am o problema cu factura emisa'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'Am o problema de costuri aditionale la factura ' is 0.73'\n", + "Removing 'Am o problema de costuri aditionale la factura'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'Am o problems cu privire la factura mea ' is 0.84'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'Am si eu o problema legata de factura ' is 0.82'\n", + "Removing 'Am si eu o problema legata de factura'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'As dori detalii legate de factura ' is 0.75'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'As dori stiu din ce se compune factura ' is 0.70'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'As vrea sa primesc mai multe detalii despre factura' is 0.72'\n", + "Similarity between 'Am cateva neclaritati legate de factura' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Am nevoidsa imi trimiteti factura de ' is 0.70'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Am nevoie de detalierea unei facturi ' is 0.80'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'as dori datele despre factura desfasuratorul ' is 0.73'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'As dori factura detaliata pentru abonamentul cu numarul' is 0.82'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'As dori o factura detaliata pe nr ' is 0.78'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'As dori o factura detaliata pentru abonamentul acesta' is 0.77'\n", + "Removing 'As dori o factura detaliata pentru abonamentul acesta'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'As dori o factura detaliata pt ' is 0.82'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'As dori sa primesc factura detaliata ' is 0.81'\n", + "Removing 'As dori sa primesc factura detaliata'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.73'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'As vrea factura detaliata ' is 0.80'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Cum pot avea factura ea detaliata ' is 0.75'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Cum pot primi factura detailata ' is 0.77'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Cum vad factura detaliata ' is 0.73'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'doresc factura ' is 0.72'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Doresc factura cu desfasurator! ' is 0.72'\n", + "Removing 'Doresc factura cu desfasurator!'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Doresc factura detaliata emisa pe ' is 0.85'\n", + "Similarity between 'Am cerut o factura detaliata emisa pe numarul ' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.72'\n", + "Similarity between 'Am codu de abonat si nu am primit factura' and 'am de platit un rest de factuta si nu o gasesc on aplicatie' is 0.71'\n", + "Removing 'am de platit un rest de factuta si nu o gasesc on aplicatie'\n", + "Similarity between 'Am codu de abonat si nu am primit factura' and 'Am nevoidsa imi trimiteti factura de ' is 0.79'\n", + "Similarity between 'Am codu de abonat si nu am primit factura' and 'Am o factura de plata si nu stiu pe ce cont de email este' is 0.71'\n", + "Similarity between 'Am codu de abonat si nu am primit factura' and 'bun , problema este alta mie nu mi-au venit nicio factura' is 0.75'\n", + "Removing 'bun , problema este alta mie nu mi-au venit nicio factura'\n", + "Similarity between 'Am codu de abonat si nu am primit factura' and 'De ce nu imi apare factura de abonament ' is 0.71'\n", + "Removing 'De ce nu imi apare factura de abonament'\n", + "Similarity between 'am costuri extra pe abonament' and 'Am fost taxat suplimentar ' is 0.78'\n", + "Similarity between 'am costuri extra pe abonament' and 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu' is 0.79'\n", + "Similarity between 'am costuri extra pe abonament' and 'cat cost suplimentar am ' is 0.74'\n", + "Similarity between 'am costuri extra pe abonament' and 'cost suplimentar ' is 0.71'\n", + "Similarity between 'am costuri extra pe abonament' and 'Deceam suprataxa la abonament ' is 0.73'\n", + "Removing 'Deceam suprataxa la abonament'\n", + "Similarity between 'Am de platit factura Vodafone dar nu am primit-o' and 'As vrea sa stiu daca pot vizualiza factura Vodafone pentru telefon. Nu o gasesc nicaieri in nu vodafone' is 0.71'\n", + "Similarity between 'am de platit un rest de factuta si nu o gasesc on aplicatie' and 'Am o factura de plata si nu stiu pe ce cont de email este' is 0.70'\n", + "Similarity between 'am de platit un rest de factuta si nu o gasesc on aplicatie' and 'Doresc sa platesc factura, dar nu stiu codul de client si nr.facturii pentru adresa' is 0.75'\n", + "Removing 'Doresc sa platesc factura, dar nu stiu codul de client si nr.facturii pentru adresa'\n", + "Similarity between 'Am debite la Vodafone?' and 'Am nevoie de factura Vodafone ' is 0.76'\n", + "Similarity between 'Am debite la Vodafone?' and 'As dorii sa stiu cat am de plata la Vodafone ' is 0.76'\n", + "Similarity between 'Am debite la Vodafone?' and 'Factura la Vodafone ' is 0.73'\n", + "Removing 'Factura la Vodafone'\n", + "Similarity between 'Am factura mai mare ca luna trecuta' and 'Factura pe acest nr va rog este mai mare ca luna trecuta' is 0.73'\n", + "Removing 'Factura pe acest nr va rog este mai mare ca luna trecuta'\n", + "Similarity between 'Am fost taxat suplimentar' and 'cat cost suplimentar am ' is 0.77'\n", + "Similarity between 'Am fost taxat suplimentar' and 'cost suplimentar ' is 0.71'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'Am nevoie de ultima factura neachitata ' is 0.72'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'am o eroare in ultima factura primita ' is 0.73'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'am o factura recenta pe care nu stiu daca am achitat-o' is 0.74'\n", + "Removing 'am o factura recenta pe care nu stiu daca am achitat-o'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'am o problema cu factura ' is 0.76'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'Am o problems cu privire la factura mea ' is 0.74'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'Am si eu o problema legata de factura ' is 0.76'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'As dori detalii despre ultima factura.E platita sau nu?' is 0.73'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'Cum platesc ultima factura, neavand seria ultimei facturi' is 0.76'\n", + "Similarity between 'Am nelamuriri asupra ultimei facturi.' and 'Doresc datele de pe ultima factura ' is 0.71'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'Am nevoie de detalierea unei facturi ' is 0.72'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'Am o factura de plata si nu stiu pe ce cont de email este' is 0.71'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'Am o intrebare despre factura mea ' is 0.72'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'as dori factura! ' is 0.71'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'Asta incerc sa spun ca nu mai am factura ' is 0.74'\n", + "Removing 'Asta incerc sa spun ca nu mai am factura'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'Ati putea sa-mi retrimiteti factura prin mesaje ' is 0.75'\n", + "Removing 'Ati putea sa-mi retrimiteti factura prin mesaje'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'Cand mi s-a emis ultima factura ' is 0.70'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'Cum pot regasi factura din ' is 0.70'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'date despre factura mea ' is 0.71'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'De ce nu mai primesc factura ' is 0.72'\n", + "Removing 'De ce nu mai primesc factura'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'doresc factura ' is 0.75'\n", + "Similarity between 'Am nevoidsa imi trimiteti factura de' and 'doresc sa stiu ce include factura mea ' is 0.74'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'am nevoie de informati in legatura cu o plata ' is 0.78'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Am nevoiw se facture ' is 0.75'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Am o intrebare despre factura mea ' is 0.79'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'am o problema cu factura ' is 0.72'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Am primit astazi mesaj pentru a-mi verifica costurile suplimentare la factura ce se va emite luna aceasta.' is 0.71'\n", + "Removing 'Am primit astazi mesaj pentru a-mi verifica costurile suplimentare la factura ce se va emite luna aceasta.'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Am si eu o problema legata de factura ' is 0.72'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'as dori datele despre factura desfasuratorul ' is 0.79'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As dori detalii legate de factura ' is 0.84'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'as dori factura! ' is 0.80'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As dori o factura detaliata pentru abonamentul acesta' is 0.74'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As dori o factura detaliata pt ' is 0.81'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As dori sa primesc factura detaliata ' is 0.81'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.83'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As dori stiu din ce se compune factura ' is 0.80'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As dori si eu detaliile facturii ' is 0.82'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.76'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As vrea factura detaliata ' is 0.84'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'As vrea sa primesc mai multe detalii despre factura' is 0.78'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'as vrea sa stiu factura de plata ' is 0.84'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'cat am avut de plata la factura ' is 0.76'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Cat am de plata la factura ' is 0.76'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'cat am de plata pe factura ' is 0.76'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'cat am factura de plata ' is 0.80'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'cat am factura? ' is 0.75'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'cat platesc factura ' is 0.75'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'cum as putea sa imi aflu datele facturii ' is 0.72'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.77'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Cum pot avea factura ea detaliata ' is 0.79'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Cum pot primi factura detailata ' is 0.83'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Cum pot regasi factura din ' is 0.73'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Cum vad factura detaliata ' is 0.79'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'date despre factura ' is 0.77'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'date despre factura mea ' is 0.82'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'date factura ' is 0.77'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'datele facturii ' is 0.75'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'datele facturii mele ' is 0.78'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'desfasurator factura ' is 0.70'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Detalii extraoptiuni facturi ' is 0.75'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'detalii factura ' is 0.77'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Doresc datele de pe ultima factura ' is 0.76'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'doresc factura ' is 0.86'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Doresc factura cu desfasurator! ' is 0.79'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Doresc factura detaliata emisa pe ' is 0.85'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Doresc sa aflu facturile restante ' is 0.72'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.75'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'doresc sa stiu ce include factura mea ' is 0.84'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Doresc sa stiu daca e platita factura din ' is 0.73'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Doresc un istoric al facturilor platite ' is 0.72'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Eu vreau sa stiu despre factura ' is 0.86'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Eu vreau sa vad factura ' is 0.84'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'Explicare factura ' is 0.70'\n", + "Similarity between 'Am nevoie de detalierea unei facturi' and 'factura ' is 0.71'\n", + "Similarity between 'Am nevoie de factura Vodafone' and 'As dorii sa stiu cat am de plata la Vodafone ' is 0.75'\n", + "Similarity between 'Am nevoie de factura Vodafone' and 'dami factura Vodafone la numarul asta de twlefon ' is 0.81'\n", + "Similarity between 'Am nevoie de factura Vodafone' and 'Detalii factura Vodafone fix ' is 0.72'\n", + "Similarity between 'Am nevoie de factura Vodafone' and 'Doresc factura tv Vodafone ' is 0.82'\n", + "Similarity between 'Am nevoie de factura Vodafone' and 'Doresc factura Vodafone fix ' is 0.81'\n", + "Similarity between 'Am nevoie de factura Vodafone' and 'Doresc factura Vodafone pe numarul meu de telefon ' is 0.88'\n", + "Similarity between 'Am nevoie de factura Vodafone' and 'Factura la Vodafone ' is 0.76'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'Am o Factura pt nr de platit ' is 0.74'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'as dori datele despre factura desfasuratorul ' is 0.74'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'As dori detalii legate de factura ' is 0.71'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.76'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'as vrea sa stiu factura de plata ' is 0.81'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'cat am factura de plata ' is 0.71'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'Detalii plata ' is 0.78'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'Doresc sa stiu daca e platita factura din ' is 0.70'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'Doresc un istoric al facturilor platite ' is 0.71'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'Eu vreau sa stiu despre factura ' is 0.73'\n", + "Similarity between 'am nevoie de informati in legatura cu o plata' and 'Eu vreau sa vad factura ' is 0.71'\n", + "Similarity between 'Am nevoie de ultima factura neachitata' and 'am o eroare in ultima factura primita ' is 0.72'\n", + "Similarity between 'Am nevoie de ultima factura neachitata' and 'am vreo factura neachitata ' is 0.78'\n", + "Removing 'am vreo factura neachitata'\n", + "Similarity between 'Am nevoie de ultima factura neachitata' and 'Cand mi s-a emis ultima factura ' is 0.75'\n", + "Similarity between 'Am nevoie de ultima factura neachitata' and 'Cum platesc ultima factura, neavand seria ultimei facturi' is 0.74'\n", + "Similarity between 'Am nevoie de ultima factura neachitata' and 'Doresc datele de pe ultima factura ' is 0.78'\n", + "Similarity between 'Am nevoie de ultima factura neachitata' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.72'\n", + "Similarity between 'Am nevoie de ultima factura neachitata' and 'Doresc ultima factura pt a o putea plati ' is 0.73'\n", + "Similarity between 'Am nevoiw se facture' and 'Am o Factura pt nr de platit ' is 0.79'\n", + "Similarity between 'Am nevoiw se facture' and 'as dori factura! ' is 0.76'\n", + "Similarity between 'Am nevoiw se facture' and 'as vrea sa stiu factura de plata ' is 0.73'\n", + "Similarity between 'Am nevoiw se facture' and 'cat am de platit ' is 0.74'\n", + "Similarity between 'Am nevoiw se facture' and 'cat am factura de plata ' is 0.75'\n", + "Similarity between 'Am nevoiw se facture' and 'cat platesc ' is 0.73'\n", + "Similarity between 'Am nevoiw se facture' and 'cat platesc factura ' is 0.72'\n", + "Similarity between 'Am nevoiw se facture' and 'ce am de plata ' is 0.73'\n", + "Similarity between 'Am nevoiw se facture' and 'date factura ' is 0.79'\n", + "Similarity between 'Am nevoiw se facture' and 'desfasurator factura ' is 0.79'\n", + "Similarity between 'Am nevoiw se facture' and 'desfasurator la factura ' is 0.79'\n", + "Similarity between 'Am nevoiw se facture' and 'Detalii plata ' is 0.73'\n", + "Similarity between 'Am nevoiw se facture' and 'doresc factura ' is 0.79'\n", + "Similarity between 'Am nevoiw se facture' and 'Doresc factura cu desfasurator! ' is 0.75'\n", + "Similarity between 'Am nevoiw se facture' and 'Eu vreau sa vad factura ' is 0.73'\n", + "Similarity between 'Am nevoiw se facture' and 'Facrura ' is 0.72'\n", + "Removing 'Facrura'\n", + "Similarity between 'Am nevoiw se facture' and 'factura ' is 0.80'\n", + "Similarity between 'Am nevoiw se facture' and 'Factura iti cer ' is 0.71'\n", + "Removing 'Factura iti cer'\n", + "Similarity between 'Am nevoiw se facture' and 'factura pentru acest numar ' is 0.70'\n", + "Similarity between 'am o eroare in ultima factura primita' and 'Am primit factura gresit ' is 0.82'\n", + "Removing 'Am primit factura gresit'\n", + "Similarity between 'am o eroare in ultima factura primita' and 'am primit o factura gresita ' is 0.82'\n", + "Removing 'am primit o factura gresita'\n", + "Similarity between 'am o eroare in ultima factura primita' and 'am vreo factura neachitata ' is 0.73'\n", + "Similarity between 'am o eroare in ultima factura primita' and 'Eroare factura ' is 0.71'\n", + "Similarity between 'Am o factura care nu corespunde contractului meu' and 'Am o problema, nu mai gasesc ultima factura la servicii tv si pe numarul care este facut contractul nu mai este valabil' is 0.70'\n", + "Removing 'Am o problema, nu mai gasesc ultima factura la servicii tv si pe numarul care este facut contractul nu mai este valabil'\n", + "Similarity between 'Am o factura care nu corespunde contractului meu' and 'Am o problems cu privire la factura mea ' is 0.71'\n", + "Similarity between 'Am o factura care nu corespunde contractului meu' and 'cum aflu daca am ceva de plata pe vechiul contract , da nu a venit nici o factura.. desi trebuia sa vina pe' is 0.71'\n", + "Removing 'cum aflu daca am ceva de plata pe vechiul contract , da nu a venit nici o factura.. desi trebuia sa vina pe'\n", + "Similarity between 'Am o factura de plata si nu stiu pe ce cont de email este' and 'cat am factura de plata ' is 0.74'\n", + "Similarity between 'Am o factura de plata si nu stiu pe ce cont de email este' and 'doresc sa stiu ce include factura mea ' is 0.72'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat am avut de plata la factura ' is 0.71'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat am de plata ' is 0.78'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat am de plata la serviciile fixe ' is 0.71'\n", + "Removing 'cat am de plata la serviciile fixe'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat am de plata pe fix ' is 0.85'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat am de platit ' is 0.81'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat am factura de plata ' is 0.75'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat platesc ' is 0.81'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'cat trebuie sa platesc la upc ' is 0.71'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'ce am de plata ' is 0.86'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'Ce suma de plata am ' is 0.73'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'Cit am de plata ' is 0.85'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'Dc imi vine mult de plata ' is 0.72'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'Am o Factura pt nr de platit' and 'eu vreau sa platesc factura maine, cat trebuie sa dau' is 0.74'\n", + "Removing 'eu vreau sa platesc factura maine, cat trebuie sa dau'\n", + "Similarity between 'am o factura recenta pe care nu stiu daca am achitat-o' and 'am vreo factura neachitata ' is 0.72'\n", + "Similarity between 'am o factura recenta pe care nu stiu daca am achitat-o' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.71'\n", + "Similarity between 'am o factura recenta pe care nu stiu daca am achitat-o' and 'Asta incerc sa spun ca nu mai am factura ' is 0.72'\n", + "Similarity between 'am o factura upc gresita' and 'cat ma costa factura upc ' is 0.71'\n", + "Removing 'cat ma costa factura upc'\n", + "Similarity between 'am o factura upc gresita' and 'factura gresita upc ' is 0.80'\n", + "Removing 'factura gresita upc'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'am o problema cu factura ' is 0.82'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Am o problema cu factura emisa ' is 0.71'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Am o problems cu privire la factura mea ' is 0.85'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Am si eu o problema legata de factura ' is 0.78'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'as dori datele despre factura desfasuratorul ' is 0.71'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'As dori detalii legate de factura ' is 0.75'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'as dori factura! ' is 0.72'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.80'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'As dori stiu din ce se compune factura ' is 0.81'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.79'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'as vrea sa stiu factura de plata ' is 0.81'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Asta incerc sa spun ca nu mai am factura ' is 0.73'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Care e soldul facturii mele ' is 0.78'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'cat am avut de plata la factura ' is 0.77'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Cat am de plata la factura ' is 0.80'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'cat am de plata pe factura ' is 0.79'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'cat am factura de plata ' is 0.79'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'cat am factura? ' is 0.83'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'cat platesc factura ' is 0.72'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'ce reprezinta aceasta factura ' is 0.75'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Ce se intampla cu factura? ' is 0.78'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'cum as putea sa imi aflu datele facturii ' is 0.71'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.76'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Cum pot regasi factura din ' is 0.74'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'date despre factura ' is 0.73'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'date despre factura mea ' is 0.86'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'datele facturii mele ' is 0.76'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'doresc factura ' is 0.76'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'doresc sa stiu ce include factura mea ' is 0.89'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Doresc sa stiu daca e platita factura din ' is 0.83'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.73'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Eu vreau sa stiu despre factura ' is 0.86'\n", + "Similarity between 'Am o intrebare despre factura mea' and 'Eu vreau sa vad factura ' is 0.77'\n", + "Similarity between 'Am o nelamurire cu factura. La telefonia mobila' and 'am o problema cu factura vodafone curenta ' is 0.74'\n", + "Removing 'am o problema cu factura vodafone curenta'\n", + "Similarity between 'Am o nelamurire cu factura. La telefonia mobila' and 'Am o problems cu privire la factura mea ' is 0.70'\n", + "Similarity between 'Am o nelamurire cu factura. La telefonia mobila' and 'Am si eu o problema cu factura de la telefon ' is 0.85'\n", + "Removing 'Am si eu o problema cu factura de la telefon'\n", + "Similarity between 'Am o nelamurire legata de o factura de televiziune prin cablu' and 'am o problema cu factura TV ' is 0.85'\n", + "Removing 'am o problema cu factura TV'\n", + "Similarity between 'Am o nelamurire legata de o factura de televiziune prin cablu' and 'Am o problema cu factura Tv si internet ' is 0.72'\n", + "Similarity between 'Am o nelamurire legata de o factura de televiziune prin cablu' and 'doresc factura tv ' is 0.73'\n", + "Removing 'doresc factura tv'\n", + "Similarity between 'Am o nelamurire legata de o factura de televiziune prin cablu' and 'doresc factura tv client. Pana acuma nu am putut-o accesa.' is 0.75'\n", + "Similarity between 'Am o nelamurire legata de o factura de televiziune prin cablu' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.74'\n", + "Removing 'Doresc sa stiu factura de TV pentru abonatul'\n", + "Similarity between 'Am o nelamurire. Din octombrie nu a mai venit factura pentru servicii fixe si tv. Ce pot face in cazul asta' and 'Am o problema, nu mai gasesc ultima factura la servicii tv si pe numarul care este facut contractul nu mai este valabil' is 0.73'\n", + "Similarity between 'Am o nelamurire. Din octombrie nu a mai venit factura pentru servicii fixe si tv. Ce pot face in cazul asta' and 'doresc factura tv client. Pana acuma nu am putut-o accesa.' is 0.73'\n", + "Similarity between 'am o problema cu factura' and 'Am o problema cu factura emisa ' is 0.88'\n", + "Similarity between 'am o problema cu factura' and 'am o problema cu factura vodafone curenta ' is 0.71'\n", + "Similarity between 'am o problema cu factura' and 'Am o problema de costuri aditionale la factura ' is 0.79'\n", + "Similarity between 'am o problema cu factura' and 'Am o problems cu privire la factura mea ' is 0.97'\n", + "Similarity between 'am o problema cu factura' and 'am si eu o nedumerire de ce platesc factura cu atatia lei' is 0.71'\n", + "Similarity between 'am o problema cu factura' and 'Am si eu o problema cu factura de la telefon ' is 0.74'\n", + "Similarity between 'am o problema cu factura' and 'Am si eu o problema legata de factura ' is 0.97'\n", + "Similarity between 'am o problema cu factura' and 'am vreo factura neachitata ' is 0.72'\n", + "Similarity between 'am o problema cu factura' and 'Asta incerc sa spun ca nu mai am factura ' is 0.71'\n", + "Similarity between 'am o problema cu factura' and 'cat am factura? ' is 0.71'\n", + "Similarity between 'am o problema cu factura' and 'date despre factura mea ' is 0.70'\n", + "Similarity between 'am o problema cu factura' and 'doresc factura ' is 0.72'\n", + "Similarity between 'am o problema cu factura' and 'Eu vreau sa stiu despre factura ' is 0.74'\n", + "Similarity between 'am o problema cu factura' and 'Eu vreau sa vad factura ' is 0.71'\n", + "Similarity between 'Am o problema cu factura emisa' and 'am o problema cu factura vodafone curenta ' is 0.72'\n", + "Similarity between 'Am o problema cu factura emisa' and 'Am o problema de costuri aditionale la factura ' is 0.71'\n", + "Similarity between 'Am o problema cu factura emisa' and 'Am o problems cu privire la factura mea ' is 0.86'\n", + "Similarity between 'Am o problema cu factura emisa' and 'Am si eu o problema cu factura de la telefon ' is 0.72'\n", + "Similarity between 'Am o problema cu factura emisa' and 'Am si eu o problema legata de factura ' is 0.86'\n", + "Similarity between 'am o problema cu factura TV' and 'Am o problema cu factura Tv si internet ' is 0.77'\n", + "Similarity between 'am o problema cu factura TV' and 'doresc factura tv ' is 0.79'\n", + "Similarity between 'am o problema cu factura TV' and 'doresc factura tv client. Pana acuma nu am putut-o accesa.' is 0.77'\n", + "Similarity between 'am o problema cu factura TV' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.78'\n", + "Similarity between 'am o problema cu factura TV' and 'factura la TV ' is 0.77'\n", + "Removing 'factura la TV'\n", + "Similarity between 'Am o problema cu factura Tv si internet' and 'Cat am de plata la internet si tv ' is 0.78'\n", + "Similarity between 'Am o problema cu factura Tv si internet' and 'Factura la tv si internet a venit prea mare fata de contractul pe care il am' is 0.71'\n", + "Removing 'Factura la tv si internet a venit prea mare fata de contractul pe care il am'\n", + "Similarity between 'am o problema cu factura vodafone curenta' and 'Am o problems cu privire la factura mea ' is 0.72'\n", + "Similarity between 'am o problema cu factura vodafone curenta' and 'Am si eu o problema cu factura de la telefon ' is 0.79'\n", + "Similarity between 'am o problema cu factura vodafone curenta' and 'Am si eu o problema legata de factura ' is 0.71'\n", + "Similarity between 'Am o problema de costuri aditionale la factura' and 'Am o problems cu privire la factura mea ' is 0.76'\n", + "Similarity between 'Am o problema de costuri aditionale la factura' and 'Am si eu o problema legata de factura ' is 0.80'\n", + "Similarity between 'Am o problema de costuri aditionale la factura' and 'Am un cost aditional pe care nu il recunosc ' is 0.78'\n", + "Removing 'Am un cost aditional pe care nu il recunosc'\n", + "Similarity between 'Am o problema de costuri aditionale la factura' and 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu' is 0.72'\n", + "Similarity between 'Am o problema de costuri aditionale la factura' and 'As dori sa discut o speta referitoare la facturarea unui cost suplimentar care, din punctul meu de vedere este nejustificat' is 0.71'\n", + "Removing 'As dori sa discut o speta referitoare la facturarea unui cost suplimentar care, din punctul meu de vedere este nejustificat'\n", + "Similarity between 'Am o problema de costuri aditionale la factura' and 'cost suplimentar ' is 0.71'\n", + "Similarity between 'Am o problema, nu mai gasesc ultima factura la servicii tv si pe numarul care este facut contractul nu mai este valabil' and 'doresc factura tv client. Pana acuma nu am putut-o accesa.' is 0.75'\n", + "Similarity between 'Am o problems cu privire la factura mea' and 'am si eu o nedumerire de ce platesc factura cu atatia lei' is 0.74'\n", + "Similarity between 'Am o problems cu privire la factura mea' and 'Am si eu o problema cu factura de la telefon ' is 0.73'\n", + "Similarity between 'Am o problems cu privire la factura mea' and 'Am si eu o problema legata de factura ' is 0.94'\n", + "Similarity between 'Am o problems cu privire la factura mea' and 'am vreo factura neachitata ' is 0.70'\n", + "Similarity between 'Am o problems cu privire la factura mea' and 'date despre factura mea ' is 0.73'\n", + "Similarity between 'Am o problems cu privire la factura mea' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'Am o problems cu privire la factura mea' and 'Eu vreau sa stiu despre factura ' is 0.72'\n", + "Similarity between 'Am platit mai mult abonamentul si nu e justificat' and 'Am primit factura la abonament. si ii prea mult ' is 0.71'\n", + "Similarity between 'Am primit factura dubla ce fac' and 'Cost plata facturi dublat ' is 0.82'\n", + "Removing 'Cost plata facturi dublat'\n", + "Similarity between 'Am primit factura gresit' and 'am primit o factura gresita ' is 0.98'\n", + "Similarity between 'Am primit factura gresit' and 'am vreo factura neachitata ' is 0.73'\n", + "Similarity between 'Am primit factura gresit' and 'Eroare factura ' is 0.79'\n", + "Similarity between 'Am primit factura la abonament. si ii prea mult' and 'Deceam suprataxa la abonament ' is 0.75'\n", + "Similarity between 'Am primit notificare ptr plata facturii si pentru luna trecuta,dar am platit luna trecuta.' and 'am semnat un nou contract si am vrut sa achit factura de luna asta si nu pot cod client invalid' is 0.75'\n", + "Removing 'am semnat un nou contract si am vrut sa achit factura de luna asta si nu pot cod client invalid'\n", + "Similarity between 'Am primit notificare ptr plata facturii si pentru luna trecuta,dar am platit luna trecuta.' and 'am un abonament facut de luna trecuta si ma intereseaza daca este platit' is 0.72'\n", + "Removing 'am un abonament facut de luna trecuta si ma intereseaza daca este platit'\n", + "Similarity between 'am primit o factura gresita' and 'am vreo factura neachitata ' is 0.78'\n", + "Similarity between 'am primit o factura gresita' and 'Eroare factura ' is 0.77'\n", + "Similarity between 'am primit un mesaj cum ca as fi restanta la plata abonamentului' and 'Am vreo restanta de achitat la abonament ' is 0.71'\n", + "Removing 'Am vreo restanta de achitat la abonament'\n", + "Similarity between 'am primit un mesaj cum ca as fi restanta la plata abonamentului' and 'Am.restanta la abonament ' is 0.79'\n", + "Removing 'Am.restanta la abonament'\n", + "Similarity between 'am primit un mesaj cum ca as fi restanta la plata abonamentului' and 'Comunicati mi ce facturi restante am la serviciile fixe' is 0.72'\n", + "Removing 'Comunicati mi ce facturi restante am la serviciile fixe'\n", + "Similarity between 'am si eu o nedumerire de ce platesc factura cu atatia lei' and 'Am si eu o problema legata de factura ' is 0.71'\n", + "Similarity between 'am si eu o nedumerire de ce platesc factura cu atatia lei' and 'Cat am de plata la factura ' is 0.70'\n", + "Similarity between 'am si eu o nedumerire de ce platesc factura cu atatia lei' and 'Doresc sa stiu daca e platita factura din ' is 0.71'\n", + "Similarity between 'Am si eu o problema cu factura de la telefon' and 'Am si eu o problema legata de factura ' is 0.75'\n", + "Similarity between 'Am si eu o problema legata de factura' and 'Eu vreau sa stiu despre factura ' is 0.73'\n", + "Similarity between 'Am vazut ca mi-ati facturat factura si as vrea sa stiu si eu de ce asa mult.' and 'As vrea sa stiu si eu de ce am primit factura incarcata' is 0.77'\n", + "Similarity between 'Am vazut ca mi-ati facturat factura si as vrea sa stiu si eu de ce asa mult.' and 'de ce ma-ti facturat atat de multa ' is 0.71'\n", + "Similarity between 'am vreo factura neachitata' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.71'\n", + "Similarity between 'am vreo factura neachitata' and 'Asta incerc sa spun ca nu mai am factura ' is 0.73'\n", + "Similarity between 'Am vreo restanta de achitat la abonament' and 'Ce sold restant mai am ' is 0.71'\n", + "Removing 'Ce sold restant mai am'\n", + "Similarity between 'Am.restanta la abonament' and 'factura abonament ' is 0.73'\n", + "Similarity between 'Apeluri detaliate' and 'Detali facutra ' is 0.71'\n", + "Similarity between 'Apeluri detaliate' and 'Detalii facrura ' is 0.77'\n", + "Similarity between 'Apeluri detaliate' and 'Factura detaliata ' is 0.79'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori detalii legate de factura ' is 0.85'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori factura detaliata pentru abonamentul cu numarul' is 0.75'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori niste informatii in legatura cu factura numarului' is 0.81'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori o factura detaliata pentru abonamentul acesta' is 0.73'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori o factura detaliata pt ' is 0.71'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori sa primesc factura detaliata ' is 0.71'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.77'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori stiu din ce se compune factura ' is 0.77'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dori si eu detaliile facturii ' is 0.79'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.71'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As vrea factura detaliata ' is 0.73'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As vrea sa primesc mai multe detalii despre factura' is 0.78'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'as vrea sa stiu factura de plata ' is 0.79'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'As vrea sa vad aici toate costurile abonamentelor pe care le detin.Se poate' is 0.70'\n", + "Removing 'As vrea sa vad aici toate costurile abonamentelor pe care le detin.Se poate'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Cum aflu datele facturii ' is 0.70'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Cum pot primi factura detailata ' is 0.75'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Cum vad factura detaliata ' is 0.75'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'date despre factura ' is 0.78'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'date despre factura mea ' is 0.77'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'date factura ' is 0.71'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'datele facturii ' is 0.74'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'datele facturii mele ' is 0.72'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'desfasurator factura ' is 0.75'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'desfasurator la factura ' is 0.76'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Detalii extraoptiuni facturi ' is 0.72'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'detalii factura ' is 0.77'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Doresc factura cu desfasurator! ' is 0.79'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Doresc factura detaliata emisa pe ' is 0.72'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.72'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'doresc sa stiu ce include factura mea ' is 0.76'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Eu vreau sa stiu despre factura ' is 0.79'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'Eu vreau sa vad factura ' is 0.76'\n", + "Similarity between 'as dori datele despre factura desfasuratorul' and 'factura informatii ' is 0.71'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.70'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'As dori sa stiu daca s-a inregistrat plata in avans facuta zilele trecute' is 0.77'\n", + "Removing 'As dori sa stiu daca s-a inregistrat plata in avans facuta zilele trecute'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.78'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.72'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.72'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'daca ultima factura este platita ' is 0.83'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'Doresc datele de pe ultima factura ' is 0.72'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.76'\n", + "Similarity between 'As dori detalii despre ultima factura.E platita sau nu?' and 'Doresc sa stiu daca e platita factura din ' is 0.79'\n", + "Similarity between 'As dori detalii legate de factura' and 'as dori factura! ' is 0.75'\n", + "Similarity between 'As dori detalii legate de factura' and 'As dori niste informatii in legatura cu factura numarului' is 0.84'\n", + "Similarity between 'As dori detalii legate de factura' and 'As dori o factura detaliata pentru abonamentul acesta' is 0.72'\n", + "Similarity between 'As dori detalii legate de factura' and 'As dori o factura detaliata pt ' is 0.82'\n", + "Similarity between 'As dori detalii legate de factura' and 'As dori sa primesc factura detaliata ' is 0.81'\n", + "Similarity between 'As dori detalii legate de factura' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.81'\n", + "Similarity between 'As dori detalii legate de factura' and 'As dori stiu din ce se compune factura ' is 0.86'\n", + "Similarity between 'As dori detalii legate de factura' and 'As dori si eu detaliile facturii ' is 0.93'\n", + "Similarity between 'As dori detalii legate de factura' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.84'\n", + "Similarity between 'As dori detalii legate de factura' and 'As vrea factura detaliata ' is 0.85'\n", + "Similarity between 'As dori detalii legate de factura' and 'As vrea sa primesc mai multe detalii despre factura' is 0.95'\n", + "Similarity between 'As dori detalii legate de factura' and 'as vrea sa stiu factura de plata ' is 0.86'\n", + "Similarity between 'As dori detalii legate de factura' and 'bill info ' is 0.71'\n", + "Similarity between 'As dori detalii legate de factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.70'\n", + "Similarity between 'As dori detalii legate de factura' and 'Cum pot avea factura ea detaliata ' is 0.75'\n", + "Similarity between 'As dori detalii legate de factura' and 'Cum pot primi factura detailata ' is 0.83'\n", + "Similarity between 'As dori detalii legate de factura' and 'Cum vad factura detaliata ' is 0.82'\n", + "Similarity between 'As dori detalii legate de factura' and 'date despre factura ' is 0.82'\n", + "Similarity between 'As dori detalii legate de factura' and 'date despre factura mea ' is 0.74'\n", + "Similarity between 'As dori detalii legate de factura' and 'date factura ' is 0.74'\n", + "Similarity between 'As dori detalii legate de factura' and 'datele facturii ' is 0.77'\n", + "Similarity between 'As dori detalii legate de factura' and 'Detalii extraoptiuni facturi ' is 0.79'\n", + "Similarity between 'As dori detalii legate de factura' and 'detalii factura ' is 0.87'\n", + "Similarity between 'As dori detalii legate de factura' and 'doresc factura ' is 0.72'\n", + "Similarity between 'As dori detalii legate de factura' and 'Doresc factura detaliata emisa pe ' is 0.79'\n", + "Similarity between 'As dori detalii legate de factura' and 'doresc sa stiu ce include factura mea ' is 0.80'\n", + "Similarity between 'As dori detalii legate de factura' and 'Doresc sa stiu daca e platita factura din ' is 0.73'\n", + "Similarity between 'As dori detalii legate de factura' and 'Eu vreau sa stiu despre factura ' is 0.88'\n", + "Similarity between 'As dori detalii legate de factura' and 'Eu vreau sa vad factura ' is 0.82'\n", + "Similarity between 'As dori detalii legate de factura' and 'Explicare factura ' is 0.74'\n", + "Similarity between 'As dori detalii legate de factura' and 'factura ' is 0.72'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'As dori niste informatii in legatura cu factura numarului' is 0.71'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'As dori o factura detaliata pe nr ' is 0.74'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'As dori o factura detaliata pentru abonamentul acesta' is 0.93'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'As dori o factura detaliata pt ' is 0.75'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'As dori sa primesc factura detaliata ' is 0.73'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'As vrea factura detaliata ' is 0.73'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'As vrea sa vad aici toate costurile abonamentelor pe care le detin.Se poate' is 0.78'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'cum as putea primi factura de abonament aici ' is 0.71'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'Doresc factura detaliata emisa pe ' is 0.76'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.72'\n", + "Similarity between 'As dori factura detaliata pentru abonamentul cu numarul' and 'factura abonament ' is 0.72'\n", + "Similarity between 'as dori factura!' and 'As dori o factura detaliata pt ' is 0.79'\n", + "Similarity between 'as dori factura!' and 'As dori sa primesc factura detaliata ' is 0.81'\n", + "Similarity between 'as dori factura!' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.75'\n", + "Similarity between 'as dori factura!' and 'As dori stiu din ce se compune factura ' is 0.75'\n", + "Similarity between 'as dori factura!' and 'As dori si eu detaliile facturii ' is 0.71'\n", + "Similarity between 'as dori factura!' and 'As vrea factura detaliata ' is 0.79'\n", + "Similarity between 'as dori factura!' and 'as vrea sa stiu factura de plata ' is 0.84'\n", + "Similarity between 'as dori factura!' and 'cat am factura de plata ' is 0.72'\n", + "Similarity between 'as dori factura!' and 'cat am factura? ' is 0.72'\n", + "Similarity between 'as dori factura!' and 'date despre factura mea ' is 0.71'\n", + "Similarity between 'as dori factura!' and 'date factura ' is 0.81'\n", + "Similarity between 'as dori factura!' and 'doresc factura ' is 0.94'\n", + "Similarity between 'as dori factura!' and 'Doresc factura cu desfasurator! ' is 0.78'\n", + "Similarity between 'as dori factura!' and 'Doresc factura detaliata emisa pe ' is 0.76'\n", + "Similarity between 'as dori factura!' and 'doresc sa stiu ce include factura mea ' is 0.77'\n", + "Similarity between 'as dori factura!' and 'Doresc sa stiu daca e platita factura din ' is 0.71'\n", + "Similarity between 'as dori factura!' and 'Eu vreau sa stiu despre factura ' is 0.79'\n", + "Similarity between 'as dori factura!' and 'Eu vreau sa vad factura ' is 0.85'\n", + "Similarity between 'as dori factura!' and 'factura ' is 0.75'\n", + "Similarity between 'As dori informatii despre fact mele.' and 'As dori si eu detaliile facturii ' is 0.71'\n", + "Similarity between 'As dori informatii despre fact mele.' and 'Cum pot afla detalii despre facturile mele ' is 0.72'\n", + "Similarity between 'As dori informatii despre fact mele.' and 'doresc sa stiu ce include factura mea ' is 0.72'\n", + "Similarity between 'As dori informatii despre fact mele.' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'As dori informatii legate de ultimele facturi de servicii fixe' and 'cat am de plata la serviciile fixe ' is 0.70'\n", + "Similarity between 'As dori informatii legate de ultimele facturi de servicii fixe' and 'Comunicati mi ce facturi restante am la serviciile fixe' is 0.77'\n", + "Similarity between 'As dori informatii legate de ultimele facturi de servicii fixe' and 'Delalii factura servicii fixe ' is 0.77'\n", + "Removing 'Delalii factura servicii fixe'\n", + "Similarity between 'As dori informatii legate de ultimele facturi de servicii fixe' and 'Detalii factura servicii fixe ' is 0.86'\n", + "Removing 'Detalii factura servicii fixe'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.77'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.72'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'As dori stiu din ce se compune factura ' is 0.78'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'As dori si eu detaliile facturii ' is 0.75'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.73'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'As vrea sa primesc mai multe detalii despre factura' is 0.78'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'as vrea sa stiu factura de plata ' is 0.77'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' is 0.71'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'date despre factura ' is 0.73'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'Detalii extraoptiuni facturi ' is 0.70'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'detalii factura ' is 0.72'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'doresc sa stiu ce include factura mea ' is 0.76'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'Doresc sa stiu daca e platita factura din ' is 0.71'\n", + "Similarity between 'As dori niste informatii in legatura cu factura numarului' and 'Eu vreau sa stiu despre factura ' is 0.76'\n", + "Similarity between 'As dori o factura detaliata pe nr' and 'As dori o factura detaliata pentru abonamentul acesta' is 0.72'\n", + "Similarity between 'As dori o factura detaliata pe nr' and 'As dori o factura detaliata pt ' is 0.85'\n", + "Similarity between 'As dori o factura detaliata pe nr' and 'As dori sa primesc factura detaliata ' is 0.82'\n", + "Similarity between 'As dori o factura detaliata pe nr' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.75'\n", + "Similarity between 'As dori o factura detaliata pe nr' and 'As vrea factura detaliata ' is 0.82'\n", + "Similarity between 'As dori o factura detaliata pe nr' and 'Doresc factura detaliata emisa pe ' is 0.78'\n", + "Similarity between 'As dori o factura detaliata pe nr' and 'Doresc Factura detaliata ptr nr ' is 0.71'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'As dori o factura detaliata pt ' is 0.84'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'As dori sa primesc factura detaliata ' is 0.82'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'As dori si eu detaliile facturii ' is 0.73'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.73'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'As vrea factura detaliata ' is 0.83'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'as vrea sa stiu factura de plata ' is 0.70'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'As vrea sa vad aici toate costurile abonamentelor pe care le detin.Se poate' is 0.79'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'Cum vad factura detaliata ' is 0.70'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'Doresc factura cu desfasurator! ' is 0.70'\n", + "Similarity between 'As dori o factura detaliata pentru abonamentul acesta' and 'Doresc factura detaliata emisa pe ' is 0.85'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'As dori sa primesc factura detaliata ' is 0.97'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'As dori si eu detaliile facturii ' is 0.84'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.83'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'As vrea factura detaliata ' is 0.97'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'As vrea sa primesc mai multe detalii despre factura' is 0.78'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'as vrea sa stiu factura de plata ' is 0.75'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'Cum pot avea factura ea detaliata ' is 0.74'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'Cum pot primi factura detailata ' is 0.80'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'Cum vad factura detaliata ' is 0.84'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'date factura ' is 0.73'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'detalii factura ' is 0.75'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'doresc factura ' is 0.77'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'Doresc factura detaliata emisa pe ' is 0.94'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'Eu vreau sa stiu despre factura ' is 0.70'\n", + "Similarity between 'As dori o factura detaliata pt ' and 'Eu vreau sa vad factura ' is 0.77'\n", + "Similarity between 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu' and 'as dori sa stiu daca am facut cost suplimentar ' is 0.70'\n", + "Removing 'as dori sa stiu daca am facut cost suplimentar'\n", + "Similarity between 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu' and 'De ce am cost suplimentat ' is 0.70'\n", + "Similarity between 'As dori sa aflu motivul costurilor suplimentare de pe abonamentul meu' and 'Doresc sa aflu detalii despre costul suplimentar pentru numarul de telefon' is 0.77'\n", + "Removing 'Doresc sa aflu detalii despre costul suplimentar pentru numarul de telefon'\n", + "Similarity between 'As dori sa imi dai ultima factura la telefonul acesta' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.74'\n", + "Similarity between 'As dori sa imi dai ultima factura la telefonul acesta' and 'Doresc ultima factura pt a o putea plati ' is 0.73'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'as dori sa stiu cum stau cu plata facturilor ' is 0.70'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'As dori si eu detaliile facturii ' is 0.84'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.80'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'As vrea factura detaliata ' is 0.96'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'As vrea sa primesc mai multe detalii despre factura' is 0.78'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'as vrea sa stiu factura de plata ' is 0.76'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'Cum pot avea factura ea detaliata ' is 0.74'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'Cum pot primi factura detailata ' is 0.78'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'Cum vad factura detaliata ' is 0.82'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'date factura ' is 0.73'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'detalii factura ' is 0.71'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'doresc factura ' is 0.79'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'Doresc factura detaliata emisa pe ' is 0.92'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.71'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'As dori sa primesc factura detaliata' and 'Eu vreau sa vad factura ' is 0.79'\n", + "Similarity between 'As dori sa stiu cand va fi emisa factura vodafone.' and 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' is 0.70'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'As dori sa stiu cat este de plata pt un nr de telefon' is 0.95'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.86'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'as dori sa stiu ce facturi am de plata atat pentru servicii fixe si telefoane mobile' is 0.76'\n", + "Removing 'as dori sa stiu ce facturi am de plata atat pentru servicii fixe si telefoane mobile'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'As vrea sa stiu ce am de plata la o adresa ' is 0.73'\n", + "Removing 'As vrea sa stiu ce am de plata la o adresa'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' is 0.79'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'Ce suma este de platit pentru telefon cu numarul ' is 0.86'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.84'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.92'\n", + "Similarity between 'As dori sa stiu cat am de plata la numarul de telefon' and 'Doresc sa stiu daca e platita factura din ' is 0.70'\n", + "Similarity between 'As dori sa stiu cat este de plata pt un nr de telefon' and 'As dori sa stiu cat este factura pe nr de tel ' is 0.88'\n", + "Similarity between 'As dori sa stiu cat este de plata pt un nr de telefon' and 'as dori sa stiu ce facturi am de plata atat pentru servicii fixe si telefoane mobile' is 0.73'\n", + "Similarity between 'As dori sa stiu cat este de plata pt un nr de telefon' and 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' is 0.78'\n", + "Similarity between 'As dori sa stiu cat este de plata pt un nr de telefon' and 'Ce suma este de platit pentru telefon cu numarul ' is 0.91'\n", + "Similarity between 'As dori sa stiu cat este de plata pt un nr de telefon' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.77'\n", + "Similarity between 'As dori sa stiu cat este de plata pt un nr de telefon' and 'Doresc sa aflu detalii despre costul suplimentar pentru numarul de telefon' is 0.73'\n", + "Similarity between 'As dori sa stiu cat este de plata pt un nr de telefon' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.87'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'As dori stiu din ce se compune factura ' is 0.74'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' is 0.86'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'cat am factura? ' is 0.71'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'Ce suma este de platit pentru telefon cu numarul ' is 0.78'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.80'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'Doresc sa aflu detalii despre costul suplimentar pentru numarul de telefon' is 0.70'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.78'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'doresc sa stiu ce include factura mea ' is 0.72'\n", + "Similarity between 'As dori sa stiu cat este factura pe nr de tel' and 'Doresc sa stiu daca e platita factura din ' is 0.74'\n", + "Similarity between 'as dori sa stiu ce facturi am de plata atat pentru servicii fixe si telefoane mobile' and 'Cum obtin valoarea unei facturi abonament date mobile' is 0.80'\n", + "Removing 'Cum obtin valoarea unei facturi abonament date mobile'\n", + "Similarity between 'as dori sa stiu ce facturi am de plata atat pentru servicii fixe si telefoane mobile' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.71'\n", + "Similarity between 'as dori sa stiu ce facturi am de plata atat pentru servicii fixe si telefoane mobile' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.75'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'As dori stiu din ce se compune factura ' is 0.86'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'As dori si eu detaliile facturii ' is 0.77'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'As vrea factura detaliata ' is 0.70'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'As vrea sa primesc mai multe detalii despre factura' is 0.77'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.76'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'as vrea sa stiu factura de plata ' is 0.92'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Care e soldul facturii mele ' is 0.77'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'cat am avut de plata la factura ' is 0.79'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Cat am de plata la factura ' is 0.82'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'cat am de plata pe factura ' is 0.84'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'cat am factura de plata ' is 0.84'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'cat am factura? ' is 0.78'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'cat platesc factura ' is 0.82'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'ce cost are factura ' is 0.74'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'ce reprezinta aceasta factura ' is 0.71'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Ce se intampla cu factura? ' is 0.75'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Cum aflu datele facturii ' is 0.70'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'cum as putea sa imi aflu datele facturii ' is 0.75'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.84'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Cum pot avea factura ea detaliata ' is 0.75'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Cum pot primi factura detailata ' is 0.78'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Cum pot regasi factura din ' is 0.77'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Cum vad factura detaliata ' is 0.73'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.72'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'date despre factura ' is 0.73'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'date despre factura mea ' is 0.74'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'datele facturii ' is 0.71'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'datele facturii mele ' is 0.70'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Detalii extraoptiuni facturi ' is 0.71'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'doresc factura ' is 0.75'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'doresc sa stiu ce include factura mea ' is 0.87'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Doresc sa stiu daca e platita factura din ' is 0.86'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Doresc un istoric al facturilor platite ' is 0.73'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.72'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Eu vreau sa stiu despre factura ' is 0.85'\n", + "Similarity between 'as dori sa stiu cum stau cu plata facturilor' and 'Eu vreau sa vad factura ' is 0.77'\n", + "Similarity between 'as dori sa stiu daca am facut cost suplimentar' and 'cat cost suplimentar am ' is 0.78'\n", + "Similarity between 'as dori sa stiu daca am facut cost suplimentar' and 'Cum pot afla ce a cauzat costul suplimentar ' is 0.79'\n", + "Similarity between 'as dori sa stiu daca am facut cost suplimentar' and 'Doresc sa aflu detalii despre costul suplimentar pentru numarul de telefon' is 0.70'\n", + "Similarity between 'As dori sa stiu daca s-a inregistrat plata in avans facuta zilele trecute' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.76'\n", + "Similarity between 'As dori sa stiu daca s-a inregistrat plata in avans facuta zilele trecute' and 'Cum pot sa obtin si eu factura pe ultima luna ' is 0.70'\n", + "Removing 'Cum pot sa obtin si eu factura pe ultima luna'\n", + "Similarity between 'As dori sa stiu daca s-a inregistrat plata in avans facuta zilele trecute' and 'Doresc sa stiu daca e platita factura din ' is 0.75'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'As dori si eu detaliile facturii ' is 0.74'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'As vrea sa primesc mai multe detalii despre factura' is 0.80'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'As vrea sa stiu daca am o factura neplatita in acest moment' is 0.73'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'as vrea sa stiu factura de plata ' is 0.87'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Care e soldul facturii mele ' is 0.77'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'cat am avut de plata la factura ' is 0.72'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Cat am de plata la factura ' is 0.81'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'cat am de plata pe factura ' is 0.79'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'cat am factura de plata ' is 0.76'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'cat am factura? ' is 0.81'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'cat platesc factura ' is 0.72'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'ce cost are factura ' is 0.80'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'ce reprezinta aceasta factura ' is 0.85'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Ce se intampla cu factura? ' is 0.83'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Cum aflu datele facturii ' is 0.72'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'cum as putea sa imi aflu datele facturii ' is 0.79'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.81'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Cum pot avea factura ea detaliata ' is 0.76'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Cum pot primi factura detailata ' is 0.80'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Cum pot regasi factura din ' is 0.76'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Cum vad factura detaliata ' is 0.71'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'date despre factura ' is 0.79'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'date despre factura mea ' is 0.73'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'date factura ' is 0.71'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'datele facturii ' is 0.74'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'detalii factura ' is 0.74'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'doresc factura ' is 0.73'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'doresc sa stiu ce include factura mea ' is 0.88'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Doresc sa stiu daca e platita factura din ' is 0.86'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Eu vreau sa stiu despre factura ' is 0.90'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Eu vreau sa vad factura ' is 0.79'\n", + "Similarity between 'As dori stiu din ce se compune factura' and 'Explicare factura ' is 0.73'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'As dorii o factura mai in detaliu pentru acest numar' is 0.88'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'As vrea factura detaliata ' is 0.89'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'As vrea sa primesc mai multe detalii despre factura' is 0.89'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'as vrea sa stiu factura de plata ' is 0.81'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'Cum pot avea factura ea detaliata ' is 0.71'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'Cum pot primi factura detailata ' is 0.79'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'Cum vad factura detaliata ' is 0.78'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'Detalii extraoptiuni facturi ' is 0.72'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'detalii factura ' is 0.77'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'Doresc factura detaliata emisa pe ' is 0.82'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'doresc sa stiu ce include factura mea ' is 0.73'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'Eu vreau sa stiu despre factura ' is 0.80'\n", + "Similarity between 'As dori si eu detaliile facturii' and 'Eu vreau sa vad factura ' is 0.75'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'As vrea factura detaliata ' is 0.86'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'As vrea sa primesc mai multe detalii despre factura' is 0.88'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'as vrea sa stiu factura de plata ' is 0.73'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'Cum pot avea factura ea detaliata ' is 0.71'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'Cum pot primi factura detailata ' is 0.76'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'Cum vad factura detaliata ' is 0.72'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'Doresc factura detaliata emisa pe ' is 0.81'\n", + "Similarity between 'As dorii o factura mai in detaliu pentru acest numar' and 'Eu vreau sa stiu despre factura ' is 0.72'\n", + "Similarity between 'As dorii sa stiu cat am de plata la Vodafone' and 'As vrea sa stiu daca pot vizualiza factura Vodafone pentru telefon. Nu o gasesc nicaieri in nu vodafone' is 0.71'\n", + "Similarity between 'As dorii sa stiu cat am de plata la Vodafone' and 'dami factura Vodafone la numarul asta de twlefon ' is 0.70'\n", + "Similarity between 'As dorii sa stiu cat am de plata la Vodafone' and 'Doresc factura tv Vodafone ' is 0.71'\n", + "Similarity between 'As dorii sa stiu cat am de plata la Vodafone' and 'Doresc factura Vodafone pe numarul meu de telefon ' is 0.73'\n", + "Similarity between 'As dorii sa stiu cat datorez !' and 'Cum pot vedea ce datorii am ' is 0.76'\n", + "Similarity between 'As dorii sa stiu cat datorez !' and 'Doresc sa mi se comunice de ce figurez cu debite ' is 0.73'\n", + "Similarity between 'As vrea factura detaliata' and 'As vrea sa primesc mai multe detalii despre factura' is 0.80'\n", + "Similarity between 'As vrea factura detaliata' and 'as vrea sa stiu factura de plata ' is 0.77'\n", + "Similarity between 'As vrea factura detaliata' and 'Cum pot avea factura ea detaliata ' is 0.75'\n", + "Similarity between 'As vrea factura detaliata' and 'Cum pot primi factura detailata ' is 0.81'\n", + "Similarity between 'As vrea factura detaliata' and 'Cum vad factura detaliata ' is 0.85'\n", + "Similarity between 'As vrea factura detaliata' and 'date factura ' is 0.72'\n", + "Similarity between 'As vrea factura detaliata' and 'detalii factura ' is 0.77'\n", + "Similarity between 'As vrea factura detaliata' and 'doresc factura ' is 0.78'\n", + "Similarity between 'As vrea factura detaliata' and 'Doresc factura cu desfasurator! ' is 0.70'\n", + "Similarity between 'As vrea factura detaliata' and 'Doresc factura detaliata emisa pe ' is 0.95'\n", + "Similarity between 'As vrea factura detaliata' and 'Eu vreau sa stiu despre factura ' is 0.74'\n", + "Similarity between 'As vrea factura detaliata' and 'Eu vreau sa vad factura ' is 0.78'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'as vrea sa stiu factura de plata ' is 0.81'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'Cum pot primi factura detailata ' is 0.78'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'Cum vad factura detaliata ' is 0.76'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'date despre factura ' is 0.70'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'Detalii extraoptiuni facturi ' is 0.74'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'detalii factura ' is 0.76'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'Doresc factura detaliata emisa pe ' is 0.73'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'doresc sa stiu ce include factura mea ' is 0.75'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'Eu vreau sa stiu despre factura ' is 0.85'\n", + "Similarity between 'As vrea sa primesc mai multe detalii despre factura' and 'Eu vreau sa vad factura ' is 0.77'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'as vrea sa stiu factura de plata ' is 0.75'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Asta incerc sa spun ca nu mai am factura ' is 0.75'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Care e soldul facturii mele ' is 0.72'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'cat am avut de plata la factura ' is 0.73'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Cat am de plata la factura ' is 0.74'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'cat am de plata pe factura ' is 0.74'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'cat am factura de plata ' is 0.74'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'cat am factura? ' is 0.77'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Ce se intampla cu factura? ' is 0.71'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.79'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Cum pot regasi factura din ' is 0.74'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Cum pot sa obtin si eu factura pe ultima luna ' is 0.73'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.77'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'daca puteti sa mi verificati factura daca am depasi minutele din abonament' is 0.73'\n", + "Removing 'daca puteti sa mi verificati factura daca am depasi minutele din abonament'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'doresc sa stiu ce include factura mea ' is 0.78'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Doresc sa stiu daca e platita factura din ' is 0.87'\n", + "Similarity between 'As vrea sa stiu daca am o factura neplatita in acest moment' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.72'\n", + "Similarity between 'As vrea sa stiu daca pot vizualiza factura Vodafone pentru telefon. Nu o gasesc nicaieri in nu vodafone' and 'Doresc factura Vodafone pe numarul meu de telefon ' is 0.71'\n", + "Similarity between 'as vrea sa stiu de ce mi-a venit factura mai mult luna aceasta' and 'Cum pot sa obtin si eu factura pe ultima luna ' is 0.73'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'cat am avut de plata la factura ' is 0.74'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Cat am de plata la factura ' is 0.77'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'cat am de plata pe factura ' is 0.79'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'cat am factura de plata ' is 0.81'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'cat am factura? ' is 0.74'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'cat platesc factura ' is 0.77'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'ce cost are factura ' is 0.72'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'ce reprezinta aceasta factura ' is 0.72'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Ce se intampla cu factura? ' is 0.71'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.78'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Cum pot primi factura detailata ' is 0.74'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Cum vad factura detaliata ' is 0.73'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'date despre factura ' is 0.74'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'date despre factura mea ' is 0.73'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'date factura ' is 0.73'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'detalii factura ' is 0.71'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'doresc factura ' is 0.82'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Doresc factura cu desfasurator! ' is 0.73'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Doresc factura detaliata emisa pe ' is 0.74'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.71'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'doresc sa stiu ce include factura mea ' is 0.86'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Doresc sa stiu daca e platita factura din ' is 0.87'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Doresc un istoric al facturilor platite ' is 0.73'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.73'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Eu vreau sa stiu despre factura ' is 0.90'\n", + "Similarity between 'as vrea sa stiu factura de plata' and 'Eu vreau sa vad factura ' is 0.86'\n", + "Similarity between 'As vrea sa stiu si eu de ce am primit factura incarcata' and 'De ce imi apare factura cost cu ' is 0.75'\n", + "Similarity between 'As vrea sa stiu si eu de ce am primit factura incarcata' and 'Doresc sa mi se comunice de ce figurez cu debite ' is 0.75'\n", + "Similarity between 'As vrea sa stiu si eu de ce am primit factura incarcata' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.75'\n", + "Similarity between 'as vrea si eu sa stiu cand imi vine factura la Nr de telefon' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.71'\n", + "Similarity between 'Asta incerc sa spun ca nu mai am factura' and 'bun , problema este alta mie nu mi-au venit nicio factura' is 0.79'\n", + "Similarity between 'Asta incerc sa spun ca nu mai am factura' and 'cat am factura? ' is 0.72'\n", + "Similarity between 'Asta incerc sa spun ca nu mai am factura' and 'Ce factura nu a fost platita ' is 0.73'\n", + "Removing 'Ce factura nu a fost platita'\n", + "Similarity between 'Asta incerc sa spun ca nu mai am factura' and 'De ce nu mai primesc factura ' is 0.72'\n", + "Similarity between 'astept pe telefon factura pe luna' and 'Cand mi se emite factura pe luna? ' is 0.75'\n", + "Removing 'Cand mi se emite factura pe luna?'\n", + "Similarity between 'bill info' and 'Cost factura ' is 0.73'\n", + "Similarity between 'bill info' and 'date despre factura ' is 0.81'\n", + "Similarity between 'bill info' and 'datele facturii ' is 0.79'\n", + "Similarity between 'bill info' and 'desfasurator factura ' is 0.70'\n", + "Similarity between 'bill info' and 'desfasurator la factura ' is 0.72'\n", + "Similarity between 'bill info' and 'detalii factura ' is 0.77'\n", + "Similarity between 'bill info' and 'Explicare factura ' is 0.74'\n", + "Similarity between 'bill info' and 'factura ' is 0.77'\n", + "Similarity between 'bun , problema este alta mie nu mi-au venit nicio factura' and 'Ce factura nu a fost platita ' is 0.72'\n", + "Similarity between 'Cand mi s-a emis ultima factura' and 'cat am avut de plata la factura ' is 0.72'\n", + "Similarity between 'Cand mi s-a emis ultima factura' and 'Cum platesc ultima factura, neavand seria ultimei facturi' is 0.74'\n", + "Similarity between 'Cand mi s-a emis ultima factura' and 'daca ultima factura este platita ' is 0.74'\n", + "Similarity between 'Cand mi s-a emis ultima factura' and 'Doresc datele de pe ultima factura ' is 0.76'\n", + "Similarity between 'Cand mi s-a emis ultima factura' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.77'\n", + "Similarity between 'Cand mi se emite factura pe luna?' and 'cum aflu cat platesc lunar ' is 0.86'\n", + "Removing 'cum aflu cat platesc lunar'\n", + "Similarity between 'Care are probleme cu facturile' and 'Ce se intampla cu factura? ' is 0.71'\n", + "Similarity between 'Care are probleme cu facturile' and 'Cum aflu datele facturii ' is 0.71'\n", + "Similarity between 'Care e soldul facturii mele' and 'Care este soldul contului meu ' is 0.90'\n", + "Similarity between 'Care e soldul facturii mele' and 'cat am avut de plata la factura ' is 0.79'\n", + "Similarity between 'Care e soldul facturii mele' and 'cat am de plata ' is 0.72'\n", + "Similarity between 'Care e soldul facturii mele' and 'Cat am de plata la factura ' is 0.84'\n", + "Similarity between 'Care e soldul facturii mele' and 'cat am de plata pe factura ' is 0.83'\n", + "Similarity between 'Care e soldul facturii mele' and 'cat am factura de plata ' is 0.82'\n", + "Similarity between 'Care e soldul facturii mele' and 'cat am factura? ' is 0.85'\n", + "Similarity between 'Care e soldul facturii mele' and 'cat platesc factura ' is 0.75'\n", + "Similarity between 'Care e soldul facturii mele' and 'ce cost are factura ' is 0.74'\n", + "Similarity between 'Care e soldul facturii mele' and 'ce reprezinta aceasta factura ' is 0.78'\n", + "Similarity between 'Care e soldul facturii mele' and 'Ce se intampla cu factura? ' is 0.80'\n", + "Similarity between 'Care e soldul facturii mele' and 'Cum aflu datele facturii ' is 0.75'\n", + "Similarity between 'Care e soldul facturii mele' and 'cum as putea sa imi aflu datele facturii ' is 0.80'\n", + "Similarity between 'Care e soldul facturii mele' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.74'\n", + "Similarity between 'Care e soldul facturii mele' and 'Cum pot intra in posesia facturii ' is 0.75'\n", + "Similarity between 'Care e soldul facturii mele' and 'Cum pot regasi factura din ' is 0.80'\n", + "Similarity between 'Care e soldul facturii mele' and 'date despre factura mea ' is 0.76'\n", + "Similarity between 'Care e soldul facturii mele' and 'datele facturii mele ' is 0.77'\n", + "Similarity between 'Care e soldul facturii mele' and 'Doresc sa stiu cati bani sunt in cont ' is 0.73'\n", + "Removing 'Doresc sa stiu cati bani sunt in cont'\n", + "Similarity between 'Care e soldul facturii mele' and 'doresc sa stiu ce include factura mea ' is 0.85'\n", + "Similarity between 'Care e soldul facturii mele' and 'Doresc sa stiu daca e platita factura din ' is 0.78'\n", + "Similarity between 'Care e soldul facturii mele' and 'Eu vreau sa stiu despre factura ' is 0.70'\n", + "Similarity between 'Care este soldul contului meu' and 'cat am factura de plata ' is 0.72'\n", + "Similarity between 'Care este soldul contului meu' and 'cat am factura? ' is 0.73'\n", + "Similarity between 'Care este soldul contului meu' and 'cum as putea sa imi aflu datele facturii ' is 0.71'\n", + "Similarity between 'Care este soldul contului meu' and 'Cum pot intra in posesia facturii ' is 0.70'\n", + "Similarity between 'Care este soldul contului meu' and 'Cum pot regasi factura din ' is 0.72'\n", + "Similarity between 'Care este soldul contului meu' and 'Cum pot vedea ce datorii am ' is 0.70'\n", + "Similarity between 'Care este soldul contului meu' and 'Doresc sa stiu cati bani sunt in cont ' is 0.78'\n", + "Similarity between 'Care este soldul contului meu' and 'doresc sa stiu ce include factura mea ' is 0.76'\n", + "Similarity between 'Care este soldul contului meu' and 'Doresc sa stiu daca e platita factura din ' is 0.70'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat am de plata ' is 0.78'\n", + "Similarity between 'cat am avut de plata la factura' and 'Cat am de plata la factura ' is 0.91'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat am de plata pe factura ' is 0.94'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat am de plata pe fix ' is 0.74'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat am de platit ' is 0.75'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat am factura de plata ' is 0.95'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat am factura? ' is 0.83'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat platesc ' is 0.70'\n", + "Similarity between 'cat am avut de plata la factura' and 'cat platesc factura ' is 0.90'\n", + "Similarity between 'cat am avut de plata la factura' and 'ce am de plata ' is 0.75'\n", + "Similarity between 'cat am avut de plata la factura' and 'ce cost are factura ' is 0.73'\n", + "Similarity between 'cat am avut de plata la factura' and 'Ce suma de plata am ' is 0.75'\n", + "Similarity between 'cat am avut de plata la factura' and 'Cit am de plata ' is 0.76'\n", + "Similarity between 'cat am avut de plata la factura' and 'cum as putea sa imi aflu datele facturii ' is 0.70'\n", + "Similarity between 'cat am avut de plata la factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.78'\n", + "Similarity between 'cat am avut de plata la factura' and 'Cum pot regasi factura din ' is 0.79'\n", + "Similarity between 'cat am avut de plata la factura' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.73'\n", + "Similarity between 'cat am avut de plata la factura' and 'date despre factura ' is 0.70'\n", + "Similarity between 'cat am avut de plata la factura' and 'date despre factura mea ' is 0.81'\n", + "Similarity between 'cat am avut de plata la factura' and 'datele facturii mele ' is 0.78'\n", + "Similarity between 'cat am avut de plata la factura' and 'doresc factura ' is 0.70'\n", + "Similarity between 'cat am avut de plata la factura' and 'doresc sa stiu ce include factura mea ' is 0.77'\n", + "Similarity between 'cat am avut de plata la factura' and 'Doresc sa stiu daca e platita factura din ' is 0.78'\n", + "Similarity between 'cat am de plata' and 'Cat am de plata la factura ' is 0.75'\n", + "Similarity between 'cat am de plata' and 'cat am de plata pe factura ' is 0.80'\n", + "Similarity between 'cat am de plata' and 'cat am de plata pe fix ' is 0.91'\n", + "Similarity between 'cat am de plata' and 'cat am de platit ' is 0.90'\n", + "Similarity between 'cat am de plata' and 'cat am factura de plata ' is 0.83'\n", + "Similarity between 'cat am de plata' and 'cat de plata ' is 0.83'\n", + "Similarity between 'cat am de plata' and 'Cat este de platit ' is 0.85'\n", + "Similarity between 'cat am de plata' and 'cat platesc ' is 0.87'\n", + "Similarity between 'cat am de plata' and 'cat platesc factura ' is 0.77'\n", + "Similarity between 'cat am de plata' and 'ce am de plata ' is 0.92'\n", + "Similarity between 'cat am de plata' and 'ce am eu asa de mult de plata pe nr ' is 0.70'\n", + "Removing 'ce am eu asa de mult de plata pe nr'\n", + "Similarity between 'cat am de plata' and 'ce costuri am pana acum? ' is 0.78'\n", + "Similarity between 'cat am de plata' and 'Ce suma de plata am ' is 0.95'\n", + "Similarity between 'cat am de plata' and 'Cit am de plata ' is 0.96'\n", + "Similarity between 'cat am de plata' and 'de ce am atat de plata ' is 0.71'\n", + "Similarity between 'cat am de plata' and 'De ce am suma asta de plata ' is 0.74'\n", + "Similarity between 'Cat am de plata la abonament cu wifi' and 'Cat am de plata la internet ' is 0.77'\n", + "Similarity between 'Cat am de plata la factura' and 'cat am de plata pe factura ' is 0.98'\n", + "Similarity between 'Cat am de plata la factura' and 'cat am de platit ' is 0.71'\n", + "Similarity between 'Cat am de plata la factura' and 'cat am factura de plata ' is 0.93'\n", + "Similarity between 'Cat am de plata la factura' and 'cat am factura? ' is 0.93'\n", + "Similarity between 'Cat am de plata la factura' and 'cat platesc abonamentul? ' is 0.74'\n", + "Similarity between 'Cat am de plata la factura' and 'cat platesc factura ' is 0.92'\n", + "Similarity between 'Cat am de plata la factura' and 'ce cost are factura ' is 0.82'\n", + "Similarity between 'Cat am de plata la factura' and 'ce reprezinta aceasta factura ' is 0.83'\n", + "Similarity between 'Cat am de plata la factura' and 'Ce se intampla cu factura? ' is 0.82'\n", + "Similarity between 'Cat am de plata la factura' and 'Cost factura ' is 0.72'\n", + "Similarity between 'Cat am de plata la factura' and 'cum as putea sa imi aflu datele facturii ' is 0.74'\n", + "Similarity between 'Cat am de plata la factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.84'\n", + "Similarity between 'Cat am de plata la factura' and 'Cum pot avea factura ea detaliata ' is 0.73'\n", + "Similarity between 'Cat am de plata la factura' and 'Cum pot primi factura detailata ' is 0.73'\n", + "Similarity between 'Cat am de plata la factura' and 'Cum pot regasi factura din ' is 0.80'\n", + "Similarity between 'Cat am de plata la factura' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.71'\n", + "Similarity between 'Cat am de plata la factura' and 'date despre factura ' is 0.71'\n", + "Similarity between 'Cat am de plata la factura' and 'date despre factura mea ' is 0.75'\n", + "Similarity between 'Cat am de plata la factura' and 'doresc sa stiu ce include factura mea ' is 0.80'\n", + "Similarity between 'Cat am de plata la factura' and 'Doresc sa stiu daca e platita factura din ' is 0.82'\n", + "Similarity between 'Cat am de plata la factura' and 'Eu vreau sa stiu despre factura ' is 0.76'\n", + "Similarity between 'Cat am de plata la internet' and 'Cat am de plata la internet si tv ' is 0.85'\n", + "Similarity between 'Cat am de plata la internet si tv' and 'Cat am de plata la vodafone fix si tv ' is 0.71'\n", + "Similarity between 'Cat am de plata la internet si tv' and 'Cum aflu soldul facturi la TV ' is 0.71'\n", + "Removing 'Cum aflu soldul facturi la TV'\n", + "Similarity between 'cat am de plata la serviciile fixe' and 'cat am de plata pe fix ' is 0.83'\n", + "Similarity between 'cat am de plata la serviciile fixe' and 'cat am de platit ' is 0.71'\n", + "Similarity between 'cat am de plata la serviciile fixe' and 'Comunicati mi ce facturi restante am la serviciile fixe' is 0.78'\n", + "Similarity between 'cat am de plata la serviciile fixe' and 'Delalii factura servicii fixe ' is 0.73'\n", + "Similarity between 'cat am de plata la serviciile fixe' and 'Detalii factura servicii fixe ' is 0.70'\n", + "Similarity between 'cat am de plata la upc' and 'cat ma costa factura upc ' is 0.87'\n", + "Similarity between 'Cat am de plata la vodafone fix si tv' and 'De ce am un sold la factura fix tv ' is 0.79'\n", + "Removing 'De ce am un sold la factura fix tv'\n", + "Similarity between 'Cat am de plata la vodafone fix si tv' and 'Doresc factura vodafone fix si tv pt abonament ' is 0.82'\n", + "Removing 'Doresc factura vodafone fix si tv pt abonament'\n", + "Similarity between 'Cat am de plata la vodafone fix si tv' and 'Doresc sa primesc factura vodafone fix si tv ' is 0.79'\n", + "Removing 'Doresc sa primesc factura vodafone fix si tv'\n", + "Similarity between 'Cat am de plata la vodafone fix si tv' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am de plata pe fix ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am de platit ' is 0.76'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am factura de plata ' is 0.96'\n", + "Similarity between 'cat am de plata pe factura' and 'cat am factura? ' is 0.89'\n", + "Similarity between 'cat am de plata pe factura' and 'Cat este de platit ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'cat platesc ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'cat platesc abonamentul? ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'cat platesc factura ' is 0.95'\n", + "Similarity between 'cat am de plata pe factura' and 'ce am de plata ' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'ce cost are factura ' is 0.82'\n", + "Similarity between 'cat am de plata pe factura' and 'ce reprezinta aceasta factura ' is 0.79'\n", + "Similarity between 'cat am de plata pe factura' and 'Ce se intampla cu factura? ' is 0.78'\n", + "Similarity between 'cat am de plata pe factura' and 'Ce suma de plata am ' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'Cit am de plata ' is 0.75'\n", + "Similarity between 'cat am de plata pe factura' and 'Cost factura ' is 0.74'\n", + "Similarity between 'cat am de plata pe factura' and 'cum as putea sa imi aflu datele facturii ' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.82'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot avea factura ea detaliata ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot primi factura detailata ' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'Cum pot regasi factura din ' is 0.78'\n", + "Similarity between 'cat am de plata pe factura' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.72'\n", + "Similarity between 'cat am de plata pe factura' and 'date despre factura ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'date despre factura mea ' is 0.78'\n", + "Similarity between 'cat am de plata pe factura' and 'datele facturii ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'datele facturii mele ' is 0.73'\n", + "Similarity between 'cat am de plata pe factura' and 'desfasurator la factura ' is 0.70'\n", + "Similarity between 'cat am de plata pe factura' and 'doresc factura ' is 0.71'\n", + "Similarity between 'cat am de plata pe factura' and 'doresc sa stiu ce include factura mea ' is 0.80'\n", + "Similarity between 'cat am de plata pe factura' and 'Doresc sa stiu daca e platita factura din ' is 0.82'\n", + "Similarity between 'cat am de plata pe factura' and 'Eu vreau sa stiu despre factura ' is 0.74'\n", + "Similarity between 'cat am de plata pe fix' and 'cat am de platit ' is 0.90'\n", + "Similarity between 'cat am de plata pe fix' and 'cat am factura de plata ' is 0.79'\n", + "Similarity between 'cat am de plata pe fix' and 'cat de plata ' is 0.71'\n", + "Similarity between 'cat am de plata pe fix' and 'Cat este de platit ' is 0.80'\n", + "Similarity between 'cat am de plata pe fix' and 'cat platesc ' is 0.87'\n", + "Similarity between 'cat am de plata pe fix' and 'cat platesc factura ' is 0.74'\n", + "Similarity between 'cat am de plata pe fix' and 'cat trebuie sa platesc la upc ' is 0.75'\n", + "Similarity between 'cat am de plata pe fix' and 'ce am de plata ' is 0.89'\n", + "Similarity between 'cat am de plata pe fix' and 'ce costuri am pana acum? ' is 0.76'\n", + "Similarity between 'cat am de plata pe fix' and 'Ce suma de plata am ' is 0.82'\n", + "Similarity between 'cat am de plata pe fix' and 'Cit am de plata ' is 0.92'\n", + "Similarity between 'cat am de plata pe fix' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'cat am de plata pe fix' and 'eu vreau sa platesc factura maine, cat trebuie sa dau' is 0.73'\n", + "Similarity between 'cat am de platit' and 'cat am factura de plata ' is 0.79'\n", + "Similarity between 'cat am de platit' and 'cat de plata ' is 0.74'\n", + "Similarity between 'cat am de platit' and 'Cat este de platit ' is 0.85'\n", + "Similarity between 'cat am de platit' and 'cat platesc ' is 0.93'\n", + "Similarity between 'cat am de platit' and 'cat platesc factura ' is 0.80'\n", + "Similarity between 'cat am de platit' and 'cat trebuie sa platesc la upc ' is 0.79'\n", + "Similarity between 'cat am de platit' and 'ce am de plata ' is 0.92'\n", + "Similarity between 'cat am de platit' and 'ce costuri am pana acum? ' is 0.77'\n", + "Similarity between 'cat am de platit' and 'Ce suma de plata am ' is 0.82'\n", + "Similarity between 'cat am de platit' and 'Cit am de plata ' is 0.92'\n", + "Similarity between 'cat am de platit' and 'eu vreau sa platesc factura maine, cat trebuie sa dau' is 0.73'\n", + "Similarity between 'Cat am de platit la abonamentul cu nr.de tf.' and 'cat platesc abonamentul? ' is 0.79'\n", + "Similarity between 'Cat am de platit la abonamentul cu nr.de tf.' and 'cum as putea primi factura de abonament aici ' is 0.71'\n", + "Similarity between 'Cat am de platit la abonamentul cu nr.de tf.' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.70'\n", + "Similarity between 'cat am factura de plata' and 'cat am factura? ' is 0.88'\n", + "Similarity between 'cat am factura de plata' and 'cat platesc ' is 0.75'\n", + "Similarity between 'cat am factura de plata' and 'cat platesc abonamentul? ' is 0.72'\n", + "Similarity between 'cat am factura de plata' and 'cat platesc factura ' is 0.92'\n", + "Similarity between 'cat am factura de plata' and 'ce am de plata ' is 0.79'\n", + "Similarity between 'cat am factura de plata' and 'ce cost are factura ' is 0.76'\n", + "Similarity between 'cat am factura de plata' and 'ce reprezinta aceasta factura ' is 0.73'\n", + "Similarity between 'cat am factura de plata' and 'Ce se intampla cu factura? ' is 0.72'\n", + "Similarity between 'cat am factura de plata' and 'Ce suma de plata am ' is 0.78'\n", + "Similarity between 'cat am factura de plata' and 'Cit am de plata ' is 0.80'\n", + "Similarity between 'cat am factura de plata' and 'Cost factura ' is 0.73'\n", + "Similarity between 'cat am factura de plata' and 'cum as putea primi factura de abonament aici ' is 0.71'\n", + "Similarity between 'cat am factura de plata' and 'cum as putea sa imi aflu datele facturii ' is 0.71'\n", + "Similarity between 'cat am factura de plata' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.80'\n", + "Similarity between 'cat am factura de plata' and 'Cum pot avea factura ea detaliata ' is 0.73'\n", + "Similarity between 'cat am factura de plata' and 'Cum pot primi factura detailata ' is 0.73'\n", + "Similarity between 'cat am factura de plata' and 'Cum pot regasi factura din ' is 0.77'\n", + "Similarity between 'cat am factura de plata' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.75'\n", + "Similarity between 'cat am factura de plata' and 'date despre factura ' is 0.73'\n", + "Similarity between 'cat am factura de plata' and 'date despre factura mea ' is 0.82'\n", + "Similarity between 'cat am factura de plata' and 'date factura ' is 0.71'\n", + "Similarity between 'cat am factura de plata' and 'datele facturii ' is 0.71'\n", + "Similarity between 'cat am factura de plata' and 'datele facturii mele ' is 0.78'\n", + "Similarity between 'cat am factura de plata' and 'desfasurator factura ' is 0.72'\n", + "Similarity between 'cat am factura de plata' and 'desfasurator la factura ' is 0.73'\n", + "Similarity between 'cat am factura de plata' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'cat am factura de plata' and 'doresc factura ' is 0.76'\n", + "Similarity between 'cat am factura de plata' and 'Doresc factura cu desfasurator! ' is 0.70'\n", + "Similarity between 'cat am factura de plata' and 'doresc sa stiu ce include factura mea ' is 0.81'\n", + "Similarity between 'cat am factura de plata' and 'Doresc sa stiu daca e platita factura din ' is 0.80'\n", + "Similarity between 'cat am factura de plata' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.71'\n", + "Similarity between 'cat am factura de plata' and 'Eu vreau sa stiu despre factura ' is 0.74'\n", + "Similarity between 'cat am factura de plata' and 'factura ' is 0.70'\n", + "Similarity between 'cat am factura?' and 'cat platesc abonamentul? ' is 0.72'\n", + "Similarity between 'cat am factura?' and 'cat platesc factura ' is 0.80'\n", + "Similarity between 'cat am factura?' and 'ce cost are factura ' is 0.78'\n", + "Similarity between 'cat am factura?' and 'ce reprezinta aceasta factura ' is 0.83'\n", + "Similarity between 'cat am factura?' and 'Ce se intampla cu factura? ' is 0.85'\n", + "Similarity between 'cat am factura?' and 'cum as putea primi factura de abonament aici ' is 0.70'\n", + "Similarity between 'cat am factura?' and 'cum as putea sa imi aflu datele facturii ' is 0.76'\n", + "Similarity between 'cat am factura?' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.81'\n", + "Similarity between 'cat am factura?' and 'Cum pot avea factura ea detaliata ' is 0.78'\n", + "Similarity between 'cat am factura?' and 'Cum pot primi factura detailata ' is 0.75'\n", + "Similarity between 'cat am factura?' and 'Cum pot regasi factura din ' is 0.78'\n", + "Similarity between 'cat am factura?' and 'Cum pot sa obtin si eu factura pe ultima luna ' is 0.71'\n", + "Similarity between 'cat am factura?' and 'date despre factura ' is 0.73'\n", + "Similarity between 'cat am factura?' and 'date despre factura mea ' is 0.77'\n", + "Similarity between 'cat am factura?' and 'date factura ' is 0.70'\n", + "Similarity between 'cat am factura?' and 'doresc factura ' is 0.74'\n", + "Similarity between 'cat am factura?' and 'doresc sa stiu ce include factura mea ' is 0.84'\n", + "Similarity between 'cat am factura?' and 'Doresc sa stiu daca e platita factura din ' is 0.82'\n", + "Similarity between 'cat am factura?' and 'Eu vreau sa stiu despre factura ' is 0.76'\n", + "Similarity between 'cat cost suplimentar am' and 'cost suplimentar ' is 0.82'\n", + "Similarity between 'cat cost suplimentar am' and 'Cum pot afla ce a cauzat costul suplimentar ' is 0.73'\n", + "Similarity between 'cat cost suplimentar am' and 'De ce am cost suplimentat ' is 0.72'\n", + "Similarity between 'cat cost suplimentar am' and 'Din ce provine costul suplimentara ' is 0.81'\n", + "Similarity between 'cat de plata' and 'Cat este de platit ' is 0.91'\n", + "Similarity between 'cat de plata' and 'cat platesc ' is 0.75'\n", + "Similarity between 'cat de plata' and 'ce am de plata ' is 0.71'\n", + "Similarity between 'cat de plata' and 'ce costuri am pana acum? ' is 0.73'\n", + "Similarity between 'cat de plata' and 'Ce suma de plata am ' is 0.78'\n", + "Similarity between 'cat de plata' and 'Cit am de plata ' is 0.76'\n", + "Similarity between 'Cat este de platit' and 'cat platesc ' is 0.87'\n", + "Similarity between 'Cat este de platit' and 'cat platesc factura ' is 0.76'\n", + "Similarity between 'Cat este de platit' and 'ce am de plata ' is 0.78'\n", + "Similarity between 'Cat este de platit' and 'ce cost are factura ' is 0.71'\n", + "Similarity between 'Cat este de platit' and 'ce costuri am pana acum? ' is 0.77'\n", + "Similarity between 'Cat este de platit' and 'Ce suma de plata am ' is 0.76'\n", + "Similarity between 'Cat este de platit' and 'Cit am de plata ' is 0.82'\n", + "Similarity between 'cat ma costa factura upc' and 'cat trebuie sa platesc la upc ' is 0.74'\n", + "Similarity between 'cat ma costa factura upc' and 'Detalii factura upc ' is 0.71'\n", + "Similarity between 'cat platesc' and 'cat platesc factura ' is 0.82'\n", + "Similarity between 'cat platesc' and 'cat trebuie sa platesc la upc ' is 0.77'\n", + "Similarity between 'cat platesc' and 'ce am de plata ' is 0.91'\n", + "Similarity between 'cat platesc' and 'Ce suma de plata am ' is 0.77'\n", + "Similarity between 'cat platesc' and 'Cit am de plata ' is 0.92'\n", + "Similarity between 'cat platesc' and 'Detalii plata ' is 0.76'\n", + "Similarity between 'cat platesc abonamentul?' and 'cat platesc factura ' is 0.73'\n", + "Similarity between 'cat platesc abonamentul?' and 'cum as putea primi factura de abonament aici ' is 0.84'\n", + "Similarity between 'cat platesc abonamentul?' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.83'\n", + "Similarity between 'cat platesc abonamentul?' and 'factura abonament ' is 0.74'\n", + "Similarity between 'cat platesc factura' and 'ce am de plata ' is 0.75'\n", + "Similarity between 'cat platesc factura' and 'ce cost are factura ' is 0.84'\n", + "Similarity between 'cat platesc factura' and 'ce reprezinta aceasta factura ' is 0.74'\n", + "Similarity between 'cat platesc factura' and 'Ce se intampla cu factura? ' is 0.72'\n", + "Similarity between 'cat platesc factura' and 'Cit am de plata ' is 0.76'\n", + "Similarity between 'cat platesc factura' and 'Cost factura ' is 0.80'\n", + "Similarity between 'cat platesc factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.78'\n", + "Similarity between 'cat platesc factura' and 'Cum pot regasi factura din ' is 0.73'\n", + "Similarity between 'cat platesc factura' and 'date despre factura ' is 0.72'\n", + "Similarity between 'cat platesc factura' and 'date despre factura mea ' is 0.73'\n", + "Similarity between 'cat platesc factura' and 'datele facturii ' is 0.70'\n", + "Similarity between 'cat platesc factura' and 'desfasurator factura ' is 0.71'\n", + "Similarity between 'cat platesc factura' and 'desfasurator la factura ' is 0.73'\n", + "Similarity between 'cat platesc factura' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'cat platesc factura' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'cat platesc factura' and 'Doresc sa stiu daca e platita factura din ' is 0.76'\n", + "Similarity between 'cat platesc factura' and 'Eu vreau sa stiu despre factura ' is 0.70'\n", + "Similarity between 'cat trebuie sa platesc la upc' and 'ce am de plata ' is 0.72'\n", + "Similarity between 'cat trebuie sa platesc la upc' and 'Cit am de plata ' is 0.73'\n", + "Similarity between 'ce am de plata' and 'ce costuri am pana acum? ' is 0.71'\n", + "Similarity between 'ce am de plata' and 'Ce suma de plata am ' is 0.88'\n", + "Similarity between 'ce am de plata' and 'Cit am de plata ' is 0.96'\n", + "Similarity between 'ce am de plata' and 'Dc imi vine mult de plata ' is 0.73'\n", + "Similarity between 'ce am de plata' and 'De ce am suma asta de plata ' is 0.71'\n", + "Similarity between 'ce am de plata' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'ce am eu asa de mult de plata pe nr' and 'De ce am suma asta de plata ' is 0.71'\n", + "Similarity between 'ce cost are factura' and 'ce reprezinta aceasta factura ' is 0.86'\n", + "Similarity between 'ce cost are factura' and 'Ce se intampla cu factura? ' is 0.82'\n", + "Similarity between 'ce cost are factura' and 'Cost factura ' is 0.91'\n", + "Similarity between 'ce cost are factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.72'\n", + "Similarity between 'ce cost are factura' and 'date despre factura ' is 0.80'\n", + "Similarity between 'ce cost are factura' and 'datele facturii ' is 0.75'\n", + "Similarity between 'ce cost are factura' and 'desfasurator factura ' is 0.74'\n", + "Similarity between 'ce cost are factura' and 'desfasurator la factura ' is 0.75'\n", + "Similarity between 'ce cost are factura' and 'detalii factura ' is 0.72'\n", + "Similarity between 'ce cost are factura' and 'Doresc sa stiu daca e platita factura din ' is 0.76'\n", + "Similarity between 'ce cost are factura' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'ce cost are factura' and 'Explicare factura ' is 0.72'\n", + "Similarity between 'ce cost are factura' and 'factura ' is 0.74'\n", + "Similarity between 'ce costuri am pana acum?' and 'Ce suma de plata am ' is 0.72'\n", + "Similarity between 'ce costuri am pana acum?' and 'Cit am de plata ' is 0.71'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'Ce se intampla cu factura? ' is 0.91'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'Cost factura ' is 0.73'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.75'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'Cum pot regasi factura din ' is 0.71'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'date despre factura ' is 0.74'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'doresc sa stiu ce include factura mea ' is 0.75'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'Doresc sa stiu daca e platita factura din ' is 0.78'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'Eu vreau sa stiu despre factura ' is 0.78'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'Explicare factura ' is 0.74'\n", + "Similarity between 'ce reprezinta aceasta factura' and 'factura ' is 0.73'\n", + "Similarity between 'Ce s-ar intamplat de a venit factura cu alt pret' and 'Ce se intampla cu factura? ' is 0.73'\n", + "Similarity between 'Ce s-ar intamplat de a venit factura cu alt pret' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.72'\n", + "Similarity between 'Ce se intampla cu factura?' and 'cum as putea sa imi aflu datele facturii ' is 0.71'\n", + "Similarity between 'Ce se intampla cu factura?' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.77'\n", + "Similarity between 'Ce se intampla cu factura?' and 'Cum pot regasi factura din ' is 0.75'\n", + "Similarity between 'Ce se intampla cu factura?' and 'date despre factura ' is 0.76'\n", + "Similarity between 'Ce se intampla cu factura?' and 'datele facturii ' is 0.70'\n", + "Similarity between 'Ce se intampla cu factura?' and 'doresc sa stiu ce include factura mea ' is 0.76'\n", + "Similarity between 'Ce se intampla cu factura?' and 'Doresc sa stiu daca e platita factura din ' is 0.79'\n", + "Similarity between 'Ce se intampla cu factura?' and 'Eu vreau sa stiu despre factura ' is 0.77'\n", + "Similarity between 'Ce suma de plata am' and 'Cit am de plata ' is 0.92'\n", + "Similarity between 'Ce suma de plata am' and 'Citi bani am de dat ' is 0.72'\n", + "Removing 'Citi bani am de dat'\n", + "Similarity between 'Ce suma de plata am' and 'Dc imi vine mult de plata ' is 0.72'\n", + "Similarity between 'Ce suma de plata am' and 'de ce am atat de plata ' is 0.72'\n", + "Similarity between 'Ce suma de plata am' and 'De ce am suma asta de plata ' is 0.76'\n", + "Similarity between 'Ce suma de plata am' and 'Doresc sa stiu cati bani sunt in cont ' is 0.72'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.72'\n", + "Similarity between 'Ce suma este de platit pentru telefon cu numarul' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.84'\n", + "Similarity between 'Cit am de plata' and 'Dc imi vine mult de plata ' is 0.75'\n", + "Similarity between 'Cit am de plata' and 'De ce am suma asta de plata ' is 0.72'\n", + "Similarity between 'Cit am de plata' and 'Detalii plata ' is 0.71'\n", + "Similarity between 'Citi bani am de dat' and 'Doresc sa stiu cati bani sunt in cont ' is 0.70'\n", + "Similarity between 'Comunicati mi ce facturi restante am la serviciile fixe' and 'Detalii factura servicii fixe ' is 0.71'\n", + "Similarity between 'Comunicati mi ce facturi restante am la serviciile fixe' and 'Doresc sa aflu facturile restante ' is 0.75'\n", + "Similarity between 'Cost factura' and 'Costurile facturate la nivel de numar ' is 0.75'\n", + "Removing 'Costurile facturate la nivel de numar'\n", + "Similarity between 'Cost factura' and 'date despre factura ' is 0.83'\n", + "Similarity between 'Cost factura' and 'date factura ' is 0.75'\n", + "Similarity between 'Cost factura' and 'datele facturii ' is 0.79'\n", + "Similarity between 'Cost factura' and 'desfasurator factura ' is 0.83'\n", + "Similarity between 'Cost factura' and 'desfasurator la factura ' is 0.83'\n", + "Similarity between 'Cost factura' and 'detalii factura ' is 0.78'\n", + "Similarity between 'Cost factura' and 'Detalii plata ' is 0.73'\n", + "Similarity between 'Cost factura' and 'Explicare factura ' is 0.76'\n", + "Similarity between 'Cost factura' and 'factura ' is 0.85'\n", + "Similarity between 'cost gresit pe factura upc' and 'costul facturii upc e gresit ' is 0.96'\n", + "Removing 'costul facturii upc e gresit'\n", + "Similarity between 'cost suplimentar' and 'costuri suplimentare nefacturate ' is 0.76'\n", + "Removing 'costuri suplimentare nefacturate'\n", + "Similarity between 'cost suplimentar' and 'Din ce provine costul suplimentara ' is 0.85'\n", + "Similarity between 'costul facturii upc e gresit' and 'Eroare factura ' is 0.71'\n", + "Similarity between 'Costurile facturate la nivel de numar' and 'desfasurator la factura ' is 0.70'\n", + "Similarity between 'Cum aflu datele facturii' and 'cum as putea sa imi aflu datele facturii ' is 0.88'\n", + "Similarity between 'Cum aflu datele facturii' and 'Cum pot afla detalii despre facturile mele ' is 0.81'\n", + "Similarity between 'Cum aflu datele facturii' and 'Cum pot avea factura ea detaliata ' is 0.76'\n", + "Similarity between 'Cum aflu datele facturii' and 'Cum pot intra in posesia facturii ' is 0.84'\n", + "Similarity between 'Cum aflu datele facturii' and 'Cum pot primi factura detailata ' is 0.75'\n", + "Similarity between 'Cum aflu datele facturii' and 'Cum pot regasi factura din ' is 0.72'\n", + "Similarity between 'Cum aflu datele facturii' and 'date despre factura ' is 0.76'\n", + "Similarity between 'Cum aflu datele facturii' and 'date despre factura mea ' is 0.73'\n", + "Similarity between 'Cum aflu datele facturii' and 'datele facturii ' is 0.78'\n", + "Similarity between 'Cum aflu datele facturii' and 'datele facturii mele ' is 0.76'\n", + "Similarity between 'Cum aflu datele facturii' and 'Detalii extraoptiuni facturi ' is 0.76'\n", + "Similarity between 'Cum aflu datele facturii' and 'doresc sa stiu ce include factura mea ' is 0.73'\n", + "Similarity between 'Cum aflu soldul facturi la TV' and 'doresc factura tv ' is 0.70'\n", + "Similarity between 'Cum aflu soldul facturi la TV' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.78'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'cum as putea sa imi aflu datele facturii ' is 0.73'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.72'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'Cum pot regasi factura din ' is 0.70'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.72'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'De ce nu imi apare factura de abonament ' is 0.80'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'doresc sa stiu ce include factura mea ' is 0.70'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.89'\n", + "Similarity between 'cum as putea primi factura de abonament aici' and 'factura abonament ' is 0.71'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Cum pot afla ce factura trebuie sa mai achit ' is 0.81'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Cum pot afla detalii despre facturile mele ' is 0.87'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Cum pot avea factura ea detaliata ' is 0.83'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Cum pot intra in posesia facturii ' is 0.82'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Cum pot primi factura detailata ' is 0.79'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Cum pot regasi factura din ' is 0.84'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'date despre factura mea ' is 0.74'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'datele facturii mele ' is 0.73'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'doresc sa stiu ce include factura mea ' is 0.82'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Doresc sa stiu daca e platita factura din ' is 0.74'\n", + "Similarity between 'cum as putea sa imi aflu datele facturii' and 'Eu vreau sa stiu despre factura ' is 0.72'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'daca ultima factura este platita ' is 0.74'\n", + "Similarity between 'Cum platesc ultima factura, neavand seria ultimei facturi' and 'Doresc ultima factura pt a o putea plati ' is 0.71'\n", + "Similarity between 'Cum pot afla ce a cauzat costul suplimentar' and 'De ce am cost suplimentat ' is 0.72'\n", + "Similarity between 'Cum pot afla ce a cauzat costul suplimentar' and 'De ce platesc extraobtiuni ' is 0.70'\n", + "Similarity between 'Cum pot afla ce a cauzat costul suplimentar' and 'Din ce provine costul suplimentara ' is 0.83'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Cum pot avea factura ea detaliata ' is 0.81'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Cum pot primi factura detailata ' is 0.81'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Cum pot regasi factura din ' is 0.86'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Cum pot sa obtin si eu factura pe ultima luna ' is 0.73'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' is 0.75'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'doresc sa stiu ce include factura mea ' is 0.80'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Doresc sa stiu daca e platita factura din ' is 0.87'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.73'\n", + "Similarity between 'Cum pot afla ce factura trebuie sa mai achit' and 'Eu vreau sa stiu despre factura ' is 0.78'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'Cum pot avea factura ea detaliata ' is 0.73'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'Cum pot intra in posesia facturii ' is 0.77'\n", + "Similarity between 'Cum pot afla detalii despre facturile mele' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'Cum pot intra in posesia facturii ' is 0.72'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'Cum pot primi factura detailata ' is 0.95'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'Cum pot regasi factura din ' is 0.74'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'Cum vad factura detaliata ' is 0.82'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'date despre factura mea ' is 0.70'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'detalii factura ' is 0.72'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'Doresc factura detaliata emisa pe ' is 0.75'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'doresc sa stiu ce include factura mea ' is 0.77'\n", + "Similarity between 'Cum pot avea factura ea detaliata' and 'Eu vreau sa stiu despre factura ' is 0.72'\n", + "Similarity between 'Cum pot intra in posesia facturii' and 'Cum pot regasi factura din ' is 0.74'\n", + "Similarity between 'Cum pot intra in posesia facturii' and 'Doresc sa stiu cati bani sunt in cont ' is 0.73'\n", + "Similarity between 'Cum pot primi factura detailata' and 'Cum pot regasi factura din ' is 0.73'\n", + "Similarity between 'Cum pot primi factura detailata' and 'Cum vad factura detaliata ' is 0.87'\n", + "Similarity between 'Cum pot primi factura detailata' and 'date despre factura ' is 0.72'\n", + "Similarity between 'Cum pot primi factura detailata' and 'date despre factura mea ' is 0.72'\n", + "Similarity between 'Cum pot primi factura detailata' and 'Detalii extraoptiuni facturi ' is 0.71'\n", + "Similarity between 'Cum pot primi factura detailata' and 'detalii factura ' is 0.78'\n", + "Similarity between 'Cum pot primi factura detailata' and 'Doresc factura detaliata emisa pe ' is 0.81'\n", + "Similarity between 'Cum pot primi factura detailata' and 'doresc sa stiu ce include factura mea ' is 0.77'\n", + "Similarity between 'Cum pot primi factura detailata' and 'Eu vreau sa stiu despre factura ' is 0.77'\n", + "Similarity between 'Cum pot primi factura detailata' and 'Eu vreau sa vad factura ' is 0.72'\n", + "Similarity between 'Cum pot regasi factura din' and 'Cum pot sa obtin si eu factura pe ultima luna ' is 0.72'\n", + "Similarity between 'Cum pot regasi factura din' and 'date despre factura mea ' is 0.71'\n", + "Similarity between 'Cum pot regasi factura din' and 'doresc sa stiu ce include factura mea ' is 0.79'\n", + "Similarity between 'Cum pot regasi factura din' and 'Doresc sa stiu daca e platita factura din ' is 0.80'\n", + "Similarity between 'Cum pot regasi factura din' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'Cum pot vedea ce datorii am' and 'Doresc sa mi se comunice de ce figurez cu debite ' is 0.76'\n", + "Similarity between 'Cum vad factura detaliata' and 'date despre factura ' is 0.77'\n", + "Similarity between 'Cum vad factura detaliata' and 'date despre factura mea ' is 0.72'\n", + "Similarity between 'Cum vad factura detaliata' and 'date factura ' is 0.77'\n", + "Similarity between 'Cum vad factura detaliata' and 'datele facturii ' is 0.77'\n", + "Similarity between 'Cum vad factura detaliata' and 'desfasurator factura ' is 0.72'\n", + "Similarity between 'Cum vad factura detaliata' and 'desfasurator la factura ' is 0.71'\n", + "Similarity between 'Cum vad factura detaliata' and 'Detalii extraoptiuni facturi ' is 0.76'\n", + "Similarity between 'Cum vad factura detaliata' and 'detalii factura ' is 0.87'\n", + "Similarity between 'Cum vad factura detaliata' and 'Detalii plata ' is 0.73'\n", + "Similarity between 'Cum vad factura detaliata' and 'Doresc factura detaliata emisa pe ' is 0.84'\n", + "Similarity between 'Cum vad factura detaliata' and 'Eu vreau sa stiu despre factura ' is 0.74'\n", + "Similarity between 'Cum vad factura detaliata' and 'Eu vreau sa vad factura ' is 0.80'\n", + "Similarity between 'Cum vad factura detaliata' and 'Explicare factura ' is 0.70'\n", + "Similarity between 'Cum vad factura detaliata' and 'factura ' is 0.71'\n", + "Similarity between 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' and 'daca puteti sa mi verificati factura daca am depasi minutele din abonament' is 0.71'\n", + "Similarity between 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' and 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' is 0.84'\n", + "Similarity between 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' and 'Doresc sa stiu daca e platita factura din ' is 0.77'\n", + "Similarity between 'Daca puteti sa imi spuneti legat de o factura de pe acest numar de telefon cat mai am de plata' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.73'\n", + "Similarity between 'daca puteti sa mi verificati factura daca am depasi minutele din abonament' and 'Doresc sa stiu daca e platita factura din ' is 0.71'\n", + "Similarity between 'daca ultima factura este platita' and 'Doresc ultima factura pt a o putea plati ' is 0.76'\n", + "Similarity between 'dami factura Vodafone la numarul asta de twlefon' and 'Detalii factura Vodafone fix ' is 0.75'\n", + "Similarity between 'dami factura Vodafone la numarul asta de twlefon' and 'Doresc factura tv Vodafone ' is 0.76'\n", + "Similarity between 'dami factura Vodafone la numarul asta de twlefon' and 'Doresc factura Vodafone fix ' is 0.74'\n", + "Similarity between 'dami factura Vodafone la numarul asta de twlefon' and 'Doresc factura Vodafone pe numarul meu de telefon ' is 0.81'\n", + "Similarity between 'date despre factura' and 'date despre factura mea ' is 0.86'\n", + "Similarity between 'date despre factura' and 'date factura ' is 0.85'\n", + "Similarity between 'date despre factura' and 'datele facturii ' is 0.97'\n", + "Similarity between 'date despre factura' and 'datele facturii mele ' is 0.80'\n", + "Similarity between 'date despre factura' and 'desfasurator factura ' is 0.83'\n", + "Similarity between 'date despre factura' and 'desfasurator la factura ' is 0.83'\n", + "Similarity between 'date despre factura' and 'Detalii extraoptiuni facturi ' is 0.81'\n", + "Similarity between 'date despre factura' and 'detalii factura ' is 0.89'\n", + "Similarity between 'date despre factura' and 'doresc factura ' is 0.72'\n", + "Similarity between 'date despre factura' and 'doresc sa stiu ce include factura mea ' is 0.74'\n", + "Similarity between 'date despre factura' and 'Eu vreau sa stiu despre factura ' is 0.77'\n", + "Similarity between 'date despre factura' and 'Eu vreau sa vad factura ' is 0.74'\n", + "Similarity between 'date despre factura' and 'Explicare factura ' is 0.75'\n", + "Similarity between 'date despre factura' and 'factura ' is 0.88'\n", + "Similarity between 'date despre factura mea' and 'date factura ' is 0.77'\n", + "Similarity between 'date despre factura mea' and 'datele facturii ' is 0.84'\n", + "Similarity between 'date despre factura mea' and 'datele facturii mele ' is 0.95'\n", + "Similarity between 'date despre factura mea' and 'desfasurator factura ' is 0.73'\n", + "Similarity between 'date despre factura mea' and 'desfasurator la factura ' is 0.73'\n", + "Similarity between 'date despre factura mea' and 'Detalii extraoptiuni facturi ' is 0.73'\n", + "Similarity between 'date despre factura mea' and 'detalii factura ' is 0.75'\n", + "Similarity between 'date despre factura mea' and 'doresc factura ' is 0.78'\n", + "Similarity between 'date despre factura mea' and 'doresc sa stiu ce include factura mea ' is 0.85'\n", + "Similarity between 'date despre factura mea' and 'Eu vreau sa stiu despre factura ' is 0.77'\n", + "Similarity between 'date despre factura mea' and 'Eu vreau sa vad factura ' is 0.75'\n", + "Similarity between 'date despre factura mea' and 'factura ' is 0.76'\n", + "Similarity between 'date factura' and 'datele facturii ' is 0.82'\n", + "Similarity between 'date factura' and 'datele facturii mele ' is 0.71'\n", + "Similarity between 'date factura' and 'desfasurator factura ' is 0.83'\n", + "Similarity between 'date factura' and 'desfasurator la factura ' is 0.81'\n", + "Similarity between 'date factura' and 'Detalii extraoptiuni facturi ' is 0.73'\n", + "Similarity between 'date factura' and 'detalii factura ' is 0.84'\n", + "Similarity between 'date factura' and 'Detalii plata ' is 0.72'\n", + "Similarity between 'date factura' and 'doresc factura ' is 0.82'\n", + "Similarity between 'date factura' and 'Doresc factura detaliata emisa pe ' is 0.72'\n", + "Similarity between 'date factura' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'date factura' and 'Eu vreau sa vad factura ' is 0.80'\n", + "Similarity between 'date factura' and 'factura ' is 0.90'\n", + "Similarity between 'datele facturii' and 'datele facturii mele ' is 0.84'\n", + "Similarity between 'datele facturii' and 'desfasurator factura ' is 0.79'\n", + "Similarity between 'datele facturii' and 'desfasurator la factura ' is 0.79'\n", + "Similarity between 'datele facturii' and 'Detalii extraoptiuni facturi ' is 0.83'\n", + "Similarity between 'datele facturii' and 'detalii factura ' is 0.85'\n", + "Similarity between 'datele facturii' and 'doresc sa stiu ce include factura mea ' is 0.71'\n", + "Similarity between 'datele facturii' and 'Eu vreau sa stiu despre factura ' is 0.72'\n", + "Similarity between 'datele facturii' and 'Eu vreau sa vad factura ' is 0.71'\n", + "Similarity between 'datele facturii' and 'Explicare factura ' is 0.71'\n", + "Similarity between 'datele facturii' and 'factura ' is 0.83'\n", + "Similarity between 'datele facturii mele' and 'Detalii extraoptiuni facturi ' is 0.74'\n", + "Similarity between 'datele facturii mele' and 'doresc factura ' is 0.72'\n", + "Similarity between 'datele facturii mele' and 'doresc sa stiu ce include factura mea ' is 0.79'\n", + "Similarity between 'de ce am atat de plata' and 'De ce am suma asta de plata ' is 0.96'\n", + "Similarity between 'de ce am atat de plata' and 'de ce e factura asa mare ' is 0.70'\n", + "Similarity between 'de ce am atat de plata' and 'De ce imi apare factura cost cu ' is 0.77'\n", + "Similarity between 'de ce am atat de plata' and 'de ce ma-ti facturat atat de multa ' is 0.82'\n", + "Similarity between 'de ce am atat de plata' and 'De ce mi-a venit factura mai marea ' is 0.72'\n", + "Similarity between 'de ce am atat de plata' and 'De ce platesc asa multa ' is 0.95'\n", + "Similarity between 'de ce am atat de plata' and 'De ce platesc atat de multa ' is 0.95'\n", + "Similarity between 'de ce am atat de plata' and 'De ce platesc extraobtiuni ' is 0.73'\n", + "Similarity between 'de ce am atat de plata' and 'De ce platesc foarte mult la abonament ' is 0.83'\n", + "Similarity between 'de ce am atat de plata' and 'De ce platesc mai multa ' is 0.87'\n", + "Similarity between 'de ce am atat de plata' and 'De ce tot intru pe cost ' is 0.80'\n", + "Similarity between 'de ce am atat de plata' and 'De ce trebuie sa mai platesc 3 lei ca am facut plata' is 0.77'\n", + "Similarity between 'De ce am cost suplimentat' and 'De ce platesc extraobtiuni ' is 0.81'\n", + "Similarity between 'De ce am cost suplimentat' and 'De ce platesc mai multa ' is 0.72'\n", + "Similarity between 'De ce am cost suplimentat' and 'De ce tot intru pe cost ' is 0.71'\n", + "Similarity between 'De ce am cost suplimentat' and 'Din ce provine costul suplimentara ' is 0.81'\n", + "Similarity between 'De ce am factura pe minus' and 'De ce imi apare factura cost cu ' is 0.78'\n", + "Similarity between 'De ce am factura pe minus' and 'De ce nu mai primesc factura ' is 0.74'\n", + "Similarity between 'De ce am mai primit o factura daca am renuntat deja la abonament' and 'De ce nu imi apare factura de abonament ' is 0.77'\n", + "Similarity between 'De ce am mai primit o factura daca am renuntat deja la abonament' and 'De ce nu mai primesc factura ' is 0.80'\n", + "Similarity between 'De ce am mai primit o factura daca am renuntat deja la abonament' and 'De ce nu mi sa emis factura pe data de ' is 0.73'\n", + "Removing 'De ce nu mi sa emis factura pe data de'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce imi apare factura cost cu ' is 0.84'\n", + "Similarity between 'De ce am suma asta de plata' and 'de ce ma-ti facturat atat de multa ' is 0.84'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce mi-a venit factura mai marea ' is 0.72'\n", + "Similarity between 'De ce am suma asta de plata' and 'de ce pe factura mea apare ca plata un terminal ' is 0.71'\n", + "Removing 'de ce pe factura mea apare ca plata un terminal'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce platesc asa multa ' is 0.91'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce platesc atat de multa ' is 0.91'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce platesc extraobtiuni ' is 0.73'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce platesc foarte mult la abonament ' is 0.81'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce platesc mai multa ' is 0.84'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce tot intru pe cost ' is 0.81'\n", + "Similarity between 'De ce am suma asta de plata' and 'De ce trebuie sa mai platesc 3 lei ca am facut plata' is 0.78'\n", + "Similarity between 'De ce am un sold la factura fix tv' and 'doresc factura tv ' is 0.74'\n", + "Similarity between 'De ce am un sold la factura fix tv' and 'Doresc sa primesc factura vodafone fix si tv ' is 0.70'\n", + "Similarity between 'De ce am un sold la factura fix tv' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.73'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce e factura mai mare ' is 0.94'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce este asa mare ' is 0.77'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce ma-ti facturat atat de multa ' is 0.74'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce mi-a venit factura mai marea ' is 0.85'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce platesc asa multa ' is 0.73'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce platesc atat de multa ' is 0.75'\n", + "Similarity between 'de ce e factura asa mare' and 'De ce platesc foarte mult la abonament ' is 0.73'\n", + "Similarity between 'de ce e factura asa mare' and 'de ce suma este mai mare decit abonamentu ' is 0.71'\n", + "Similarity between 'de ce e factura mai mare' and 'De ce este asa mare ' is 0.79'\n", + "Similarity between 'de ce e factura mai mare' and 'De ce mi-a venit factura mai marea ' is 0.90'\n", + "Similarity between 'de ce e factura mai mare' and 'De ce platesc mai multa ' is 0.73'\n", + "Similarity between 'de ce e factura mai mare' and 'de ce suma este mai mare decit abonamentu ' is 0.80'\n", + "Similarity between 'De ce este asa mare' and 'De ce mi-a venit factura mai marea ' is 0.70'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'de ce ma-ti facturat atat de multa ' is 0.78'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce mi-a venit factura mai marea ' is 0.73'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce nu imi apare factura de abonament ' is 0.72'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce nu mai primesc factura ' is 0.71'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'de ce pe factura mea apare ca plata un terminal ' is 0.77'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce platesc asa multa ' is 0.75'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce platesc atat de multa ' is 0.75'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce platesc foarte mult la abonament ' is 0.73'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce platesc mai multa ' is 0.70'\n", + "Similarity between 'De ce imi apare factura cost cu' and 'De ce tot intru pe cost ' is 0.85'\n", + "Similarity between 'de ce in luna iulie platesc 125 RON, cum e corect, iar in luna august mi a venit sa platesc 168,88 RON' and 'de ce in luna iulie platesc 125 RON, cum e corect, iar in luna august mi a venit sa platesc 168,88 RON, telefon' is 0.95'\n", + "Removing 'de ce in luna iulie platesc 125 RON, cum e corect, iar in luna august mi a venit sa platesc 168,88 RON, telefon'\n", + "Similarity between 'de ce ma-ti facturat atat de multa' and 'De ce mi-a venit factura mai marea ' is 0.76'\n", + "Similarity between 'de ce ma-ti facturat atat de multa' and 'De ce platesc asa multa ' is 0.82'\n", + "Similarity between 'de ce ma-ti facturat atat de multa' and 'De ce platesc atat de multa ' is 0.84'\n", + "Similarity between 'de ce ma-ti facturat atat de multa' and 'De ce platesc foarte mult la abonament ' is 0.75'\n", + "Similarity between 'de ce ma-ti facturat atat de multa' and 'De ce platesc mai multa ' is 0.76'\n", + "Similarity between 'de ce ma-ti facturat atat de multa' and 'De ce tot intru pe cost ' is 0.77'\n", + "Similarity between 'De ce mi-a venit factura mai marea' and 'De ce platesc asa multa ' is 0.74'\n", + "Similarity between 'De ce mi-a venit factura mai marea' and 'De ce platesc atat de multa ' is 0.75'\n", + "Similarity between 'De ce mi-a venit factura mai marea' and 'De ce platesc foarte mult la abonament ' is 0.73'\n", + "Similarity between 'De ce mi-a venit factura mai marea' and 'De ce platesc mai multa ' is 0.76'\n", + "Similarity between 'De ce mi-a venit factura mai marea' and 'De ce tot intru pe cost ' is 0.71'\n", + "Similarity between 'De ce nu imi apare factura de abonament' and 'De ce nu imi apare factura de abonament Trebuia sa vina in data de' is 0.80'\n", + "Removing 'De ce nu imi apare factura de abonament Trebuia sa vina in data de'\n", + "Similarity between 'De ce nu imi apare factura de abonament' and 'De ce nu mai primesc factura ' is 0.81'\n", + "Similarity between 'De ce nu imi apare factura de abonament' and 'De ce nu mi sa emis factura pe data de ' is 0.72'\n", + "Similarity between 'De ce nu imi apare factura de abonament' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.73'\n", + "Similarity between 'De ce nu imi apare factura de abonament Trebuia sa vina in data de' and 'De ce nu mi sa emis factura pe data de ' is 0.85'\n", + "Similarity between 'De ce nu imi apare factura de abonament Trebuia sa vina in data de' and 'Dece sa facturat doar dupa cateva zile dupa ce mi-am facut abonamentul la dumneavoastra?' is 0.72'\n", + "Removing 'Dece sa facturat doar dupa cateva zile dupa ce mi-am facut abonamentul la dumneavoastra?'\n", + "Similarity between 'De ce nu mai primesc factura' and 'De ce nu mi sa emis factura pe data de ' is 0.76'\n", + "Similarity between 'De ce nu mi sa emis factura pe data de' and 'Dece sa facturat doar dupa cateva zile dupa ce mi-am facut abonamentul la dumneavoastra?' is 0.73'\n", + "Similarity between 'De ce platesc asa multa' and 'De ce platesc atat de multa ' is 1.00'\n", + "Similarity between 'De ce platesc asa multa' and 'De ce platesc extraobtiuni ' is 0.72'\n", + "Similarity between 'De ce platesc asa multa' and 'De ce platesc foarte mult la abonament ' is 0.85'\n", + "Similarity between 'De ce platesc asa multa' and 'De ce platesc mai multa ' is 0.93'\n", + "Similarity between 'De ce platesc asa multa' and 'De ce tot intru pe cost ' is 0.83'\n", + "Similarity between 'De ce platesc asa multa' and 'De ce trebuie sa mai platesc 3 lei ca am facut plata' is 0.72'\n", + "Similarity between 'De ce platesc atat de multa' and 'De ce platesc extraobtiuni ' is 0.72'\n", + "Similarity between 'De ce platesc atat de multa' and 'De ce platesc foarte mult la abonament ' is 0.85'\n", + "Similarity between 'De ce platesc atat de multa' and 'De ce platesc mai multa ' is 0.93'\n", + "Similarity between 'De ce platesc atat de multa' and 'De ce tot intru pe cost ' is 0.83'\n", + "Similarity between 'De ce platesc atat de multa' and 'De ce trebuie sa mai platesc 3 lei ca am facut plata' is 0.72'\n", + "Similarity between 'De ce platesc extraobtiuni' and 'De ce platesc mai multa ' is 0.73'\n", + "Similarity between 'De ce platesc extraobtiuni' and 'De ce tot intru pe cost ' is 0.74'\n", + "Similarity between 'De ce platesc extraobtiuni' and 'Din ce provine costul suplimentara ' is 0.83'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce platesc mai multa ' is 0.78'\n", + "Similarity between 'De ce platesc foarte mult la abonament' and 'De ce tot intru pe cost ' is 0.76'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce tot intru pe cost ' is 0.79'\n", + "Similarity between 'De ce platesc mai multa' and 'De ce trebuie sa mai platesc 3 lei ca am facut plata' is 0.72'\n", + "Similarity between 'Delalii factura servicii fixe' and 'Detalii factura servicii fixe ' is 0.86'\n", + "Similarity between 'desfasurator factura' and 'desfasurator la factura ' is 0.98'\n", + "Similarity between 'desfasurator factura' and 'Detalii extraoptiuni facturi ' is 0.70'\n", + "Similarity between 'desfasurator factura' and 'detalii factura ' is 0.82'\n", + "Similarity between 'desfasurator factura' and 'Detalii factura upc ' is 0.72'\n", + "Similarity between 'desfasurator factura' and 'Detalii plata ' is 0.73'\n", + "Similarity between 'desfasurator factura' and 'Doresc factura cu desfasurator! ' is 0.75'\n", + "Similarity between 'desfasurator factura' and 'Explicare factura ' is 0.75'\n", + "Similarity between 'desfasurator la factura' and 'detalii factura ' is 0.81'\n", + "Similarity between 'desfasurator la factura' and 'Detalii factura upc ' is 0.71'\n", + "Similarity between 'desfasurator la factura' and 'Detalii plata ' is 0.74'\n", + "Similarity between 'desfasurator la factura' and 'Doresc factura cu desfasurator! ' is 0.76'\n", + "Similarity between 'desfasurator la factura' and 'Explicare factura ' is 0.76'\n", + "Similarity between 'Detali facutra' and 'Detalii facrura ' is 0.81'\n", + "Similarity between 'Detalii extraoptiuni facturi' and 'detalii factura ' is 0.82'\n", + "Similarity between 'detalii factura' and 'Detalii factura upc ' is 0.73'\n", + "Similarity between 'detalii factura' and 'Detalii plata ' is 0.79'\n", + "Similarity between 'detalii factura' and 'Doresc factura detaliata emisa pe ' is 0.74'\n", + "Similarity between 'detalii factura' and 'Eu vreau sa stiu despre factura ' is 0.73'\n", + "Similarity between 'detalii factura' and 'Eu vreau sa vad factura ' is 0.73'\n", + "Similarity between 'detalii factura' and 'Explicare factura ' is 0.77'\n", + "Similarity between 'Detalii factura Vodafone fix' and 'Diferenta factura Vodafone Fix ' is 0.78'\n", + "Similarity between 'Detalii factura Vodafone fix' and 'Doresc factura Vodafone fix ' is 0.86'\n", + "Similarity between 'Detalii pentru Nr existent de plata' and 'Detalii plata ' is 0.75'\n", + "Similarity between 'Diferenta factura Vodafone Fix' and 'Doresc factura Vodafone fix ' is 0.73'\n", + "Similarity between 'Doresc datele de pe ultima factura' and 'doresc factura ' is 0.73'\n", + "Similarity between 'Doresc datele de pe ultima factura' and 'Doresc factura detaliata emisa pe ' is 0.70'\n", + "Similarity between 'Doresc datele de pe ultima factura' and 'Doresc sa aflu facturile restante ' is 0.77'\n", + "Similarity between 'Doresc datele de pe ultima factura' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.88'\n", + "Similarity between 'Doresc datele de pe ultima factura' and 'Doresc ultima factura pt a o putea plati ' is 0.74'\n", + "Similarity between 'doresc factura' and 'Doresc factura cu desfasurator! ' is 0.79'\n", + "Similarity between 'doresc factura' and 'Doresc factura detaliata emisa pe ' is 0.79'\n", + "Similarity between 'doresc factura' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.71'\n", + "Similarity between 'doresc factura' and 'doresc sa stiu ce include factura mea ' is 0.80'\n", + "Similarity between 'doresc factura' and 'Doresc sa stiu daca e platita factura din ' is 0.71'\n", + "Similarity between 'doresc factura' and 'Eu vreau sa stiu despre factura ' is 0.82'\n", + "Similarity between 'doresc factura' and 'Eu vreau sa vad factura ' is 0.87'\n", + "Similarity between 'Doresc factura cu desfasurator!' and 'Doresc factura detaliata emisa pe ' is 0.74'\n", + "Similarity between 'Doresc factura cu desfasurator!' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'Doresc factura cu desfasurator!' and 'Eu vreau sa vad factura ' is 0.73'\n", + "Similarity between 'Doresc factura detaliata emisa pe' and 'Doresc sa primesc informatii despre ultima factura emisa' is 0.71'\n", + "Similarity between 'Doresc factura detaliata emisa pe' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'Doresc factura detaliata emisa pe' and 'Eu vreau sa vad factura ' is 0.76'\n", + "Similarity between 'doresc factura tv' and 'doresc factura tv client. Pana acuma nu am putut-o accesa.' is 0.74'\n", + "Similarity between 'doresc factura tv' and 'Doresc factura tv Vodafone ' is 0.79'\n", + "Similarity between 'doresc factura tv' and 'Doresc factura vodafone fix si tv pt abonament ' is 0.73'\n", + "Similarity between 'doresc factura tv' and 'Doresc sa primesc factura vodafone fix si tv ' is 0.75'\n", + "Similarity between 'doresc factura tv' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.88'\n", + "Similarity between 'doresc factura tv client. Pana acuma nu am putut-o accesa.' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.78'\n", + "Similarity between 'Doresc factura tv Vodafone' and 'Doresc factura Vodafone fix ' is 0.72'\n", + "Similarity between 'Doresc factura tv Vodafone' and 'Doresc factura vodafone fix si tv pt abonament ' is 0.81'\n", + "Similarity between 'Doresc factura tv Vodafone' and 'Doresc factura Vodafone pe numarul meu de telefon ' is 0.78'\n", + "Similarity between 'Doresc factura tv Vodafone' and 'Doresc sa primesc factura vodafone fix si tv ' is 0.80'\n", + "Similarity between 'Doresc factura tv Vodafone' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.70'\n", + "Similarity between 'Doresc factura Vodafone fix' and 'Doresc factura Vodafone pe numarul meu de telefon ' is 0.77'\n", + "Similarity between 'Doresc factura vodafone fix si tv pt abonament' and 'Doresc sa primesc factura vodafone fix si tv ' is 0.95'\n", + "Similarity between 'Doresc factura vodafone fix si tv pt abonament' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.74'\n", + "Similarity between 'Doresc sa primesc factura vodafone fix si tv' and 'Doresc sa stiu factura de TV pentru abonatul ' is 0.73'\n", + "Similarity between 'Doresc sa primesc informatii despre ultima factura emisa' and 'doresc sa stiu ce include factura mea ' is 0.73'\n", + "Similarity between 'Doresc sa primesc informatii despre ultima factura emisa' and 'Eu vreau sa stiu despre factura ' is 0.71'\n", + "Similarity between 'Doresc sa stiu cat mai am de platit pentru telefonuul luat in rate' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.70'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Doresc sa stiu daca e platita factura din ' is 0.85'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.75'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Eu vreau sa stiu despre factura ' is 0.89'\n", + "Similarity between 'doresc sa stiu ce include factura mea' and 'Eu vreau sa vad factura ' is 0.80'\n", + "Similarity between 'Doresc sa stiu daca e platita factura din' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.79'\n", + "Similarity between 'Doresc sa stiu daca e platita factura din' and 'Eu vreau sa stiu despre factura ' is 0.83'\n", + "Similarity between 'Doresc sa stiu daca e platita factura din' and 'Eu vreau sa vad factura ' is 0.75'\n", + "Similarity between 'Doresc sa stiu factura de TV pentru abonatul' and 'Eu doresc sa stiu daca sa platit factura de abonament' is 0.73'\n", + "Similarity between 'Eu vreau sa stiu despre factura' and 'Eu vreau sa vad factura ' is 0.89'\n", + "Similarity between 'Eu vreau sa stiu despre factura' and 'Explicare factura ' is 0.73'\n", + "Length of the filtered dataframe: 395\n" + ] + } + ], + "source": [ + "# \n", + "directory_path = r'C:\\Users\\ZZ029K826\\Documents\\GitHub\\LLM_Intent_Recognition\\data'\n", + "file_name = 'InvoiceDetailsExplanation.csv'\n", + "file_path = directory_path + '\\\\' + file_name\n", + "\n", + "# Load the data\n", + "utterances_df = pd.read_csv(file_path)\n", + "print(f'Length of the dataframe: {len(utterances_df)}')\n", + "print()\n", + "# Load the model multilingual-e5-small from sentence-transformers\n", + "# 'sentence-transformers/all-MiniLM-L6-v2'\n", + "model = SentenceTransformer('BlackKakapo/stsb-xlm-r-multilingual-ro')\n", + "\n", + "#\n", + "columns = ['invoice.Explanation']\n", + "# Filter similar sentences\n", + "filtered_df, removed_df = filter_similar_sentences_transformers(model, utterances_df, columns, 0.7)\n", + "\n", + "print(f'Length of the filtered dataframe: {len(filtered_df)}')\n", + "# Display the filtered dataframe\n", + "filtered_df.head()\n", + "\n", + "#column name = columns.join('_')\n", + "# Save the filtered dataframe\n", + "#filtered_file_name = f'{columns}'InvoiceDetailsExplanation12.csv'\n", + "filtered_file_name = 'GoldenIntent'\n", + "\n", + "column_name = '_'.join(columns).replace('.','')\n", + "save_path = directory_path + '\\\\' + filtered_file_name + '_' + column_name + '.csv'\n", + "filtered_df.to_csv(save_path, index=False)\n", + "\n", + "# Save the removed dataframe\n", + "removed_file_name = 'RemovedIntents'\n", + "removed_path = directory_path + '\\\\' + removed_file_name + '_' + column_name + '.csv'\n", + "removed_df.to_csv(removed_path, index=False)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 316, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "intent\n", + "tshooting 1024\n", + "reziliere 809\n", + "offer.Request 489\n", + "switch.To.Agent 399\n", + "invoice.Explanation 220\n", + " ... \n", + "info.faq.Nr.WhatsApp 2\n", + "info.faq.VTV.login 2\n", + "info.faq.Cable.Connection 1\n", + "info.faq.Port.Usage 1\n", + "info.faq.Netflix 1\n", + "Name: count, Length: 104, dtype: int64" + ] + }, + "execution_count": 316, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "utterances_df['intent'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 317, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "intent\n", + "invoice.PC 107\n", + "invoice.Details 43\n", + "Name: count, dtype: int64" + ] + }, + "execution_count": 317, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "filtered_utterances['intent'].value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Other models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Alibaba\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### e5" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "intfloat/multilingual-e5-large" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Run the entire dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Examples" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": ".venv", + "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.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}