nlp-lab/Project/advanced_approach/Evaluation.ipynb

3251 lines
550 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Evaluation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Grid Search Hyper Parameter"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Emoji Error\n",
"To Evaluate the Prediction of Emojis, we have to compare different evaluation criteria. On the one hand our sentiment prediction is a position in the 3-dim hyperspace (3dsh). The provided emojis are the closest neigbours in this 3-dim sentiment space. We learn a regression problem, s.t. we minimize the error of distance between predicted point in 3dsh and the teacher point in 3dsh. In addition it is insteresting which other emojis are predicted and are also provided in the prediction. So if the teacher prediction is a kissing smily and this explicit emoji is in the prediction only at 6th position, this can be a large error if the 5 higher ranked predictions are emojis with larger difference in sentimental context but if the other 5 are also kissing smiließ only with i.e. additional closed eyes etc. this error is kind of ignorable"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Regression Error\n",
"To evaluate the regression error i provide some methods to get a feeling for the distances in 3-dim sentimental hyperspace:"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"from pprint import pprint as pp\n",
"import sys\n",
"sys.path.append(\"..\")\n",
"import Tools.Emoji_Distance as ed\n",
"\n",
"#from Tools.Emoji_Distance import sentiment_vector_to_emoji\n",
"#from Tools.Emoji_Distance import emoji_to_sentiment_vector"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"#Alternative Emoji List\n",
"lookup_emojis = ['😂',\n",
" '😭',\n",
" '😍',\n",
" '😩',\n",
" '😊',\n",
" '😘',\n",
" '🙏',\n",
" '🙌',\n",
" '😉',\n",
" '😁',\n",
" '😅',\n",
" '😎',\n",
" '😢',\n",
" '😒',\n",
" '😏',\n",
" '😌',\n",
" '😔',\n",
" '😋',\n",
" '😀',\n",
" '😤']"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def emoji_neighbourhood_with_distance(emoji, emojis):\n",
" distances = list()\n",
" for e in emojis:\n",
" distances.append(ed.emoji_distance(emoji,e))\n",
" dist = np.array(distances)\n",
" rank = np.argsort(dist)\n",
" tmp_emojis = emojis[rank]\n",
" tmp_dist = dist[rank]\n",
" \n",
" output = \"\"#emoji+\": \"\n",
" #build output\n",
" for i in range(len(tmp_emojis)):\n",
" output=output+\" \"+tmp_emojis[i]+\"(\"+\"{:1.3f}\".format(tmp_dist[i])+\"),\"\n",
" return output"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Test for a couple of emojis:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 😂(0.000), 😱(0.022), 😬(0.024), 🙇(0.055), 😈(0.061), 😹(0.063), 😅(0.067), 😥(0.086), 🙉(0.091), 😵(0.096), 😯(0.108), 😮(0.108), 🙀(0.109), 😟(0.126), 😼(0.129), 😆(0.135), 😄(0.144), 😝(0.149), 😳(0.153), 🙈(0.159), 😁(0.163), 😸(0.164), 😢(0.169), 🙊(0.170), 😜(0.172), 😉(0.184), 😎(0.193), 🙋(0.195), 😌(0.195), 😺(0.197), 😧(0.202), 😲(0.206), 🙆(0.207), 😏(0.211), 🙏(0.217), 😴(0.221), 😪(0.229), 😓(0.229), 😭(0.236), 😃(0.239), 😰(0.241), 🙌(0.247), 😀(0.250), 😨(0.257), 😶(0.259), 😇(0.269), 😔(0.272), 😛(0.283), 😞(0.285), 🙎(0.285), 😷(0.288), 😻(0.289), 😋(0.292), 😫(0.293), 😖(0.293), 🙅(0.302), 😽(0.303), 😊(0.305), 😤(0.308), 😍(0.333), 😡(0.354), 😘(0.358), 😣(0.362), 😚(0.367), 😑(0.379), 😠(0.396), 😗(0.407), 😙(0.423), 🙍(0.428), 😦(0.431), 😿(0.434), 😐(0.434), 😩(0.434), 😒(0.436), 😾(0.444), 😕(0.453),\n",
"---------------------------------------------------\n",
" 😍(0.000), 😊(0.032), 😘(0.036), 😚(0.043), 😻(0.048), 😛(0.050), 😋(0.078), 😇(0.081), 🙌(0.086), 😀(0.090), 😙(0.094), 😽(0.095), 😗(0.112), 😃(0.130), 😌(0.139), 🙋(0.139), 😎(0.162), 🙊(0.167), 🙆(0.169), 🙈(0.175), 😺(0.187), 😁(0.187), 😜(0.201), 😆(0.203), 😼(0.205), 😄(0.209), 😉(0.210), 😝(0.212), 😸(0.242), 🙉(0.266), 🙀(0.281), 🙏(0.309), 😈(0.319), 😂(0.333), 😮(0.336), 😬(0.347), 😅(0.353), 😱(0.354), 😏(0.369), 😹(0.382), 🙇(0.384), 😥(0.393), 😯(0.422), 😵(0.423), 😟(0.426), 😢(0.475), 😳(0.485), 😰(0.501), 😧(0.531), 🙎(0.535), 😓(0.536), 😪(0.537), 😲(0.537), 😴(0.537), 😭(0.545), 😞(0.568), 😔(0.583), 😨(0.583), 😫(0.585), 😶(0.589), 😖(0.591), 😷(0.600), 😡(0.617), 😤(0.630), 🙅(0.630), 😣(0.640), 😠(0.696), 😑(0.706), 🙍(0.728), 😩(0.741), 😾(0.741), 😒(0.745), 😿(0.749), 😦(0.758), 😐(0.761), 😕(0.763),\n",
"---------------------------------------------------\n",
" 😭(0.000), 😪(0.009), 😓(0.010), 😴(0.022), 😔(0.037), 😷(0.055), 😖(0.061), 😫(0.068), 😢(0.071), 😨(0.071), 😞(0.076), 😧(0.079), 😤(0.091), 😲(0.092), 😶(0.093), 😰(0.105), 🙅(0.112), 😟(0.119), 🙎(0.128), 😣(0.141), 😵(0.142), 😡(0.150), 😳(0.153), 😥(0.156), 😠(0.160), 😹(0.174), 😑(0.175), 🙇(0.182), 🙍(0.192), 😅(0.194), 😩(0.199), 😒(0.202), 😿(0.203), 😾(0.209), 😬(0.214), 😱(0.214), 😕(0.219), 😦(0.220), 😐(0.224), 😯(0.228), 😂(0.236), 😈(0.286), 😮(0.318), 🙉(0.327), 🙀(0.341), 😼(0.346), 😆(0.365), 😺(0.371), 🙈(0.373), 😄(0.379), 😝(0.384), 😁(0.395), 🙊(0.397), 😸(0.398), 😏(0.407), 😜(0.408), 😌(0.409), 🙋(0.416), 😉(0.419), 😎(0.425), 🙏(0.437), 🙆(0.442), 🙌(0.463), 😃(0.471), 😀(0.473), 😽(0.490), 😇(0.494), 😛(0.497), 😻(0.508), 😋(0.519), 😊(0.522), 😍(0.545), 😘(0.563), 😚(0.572), 😗(0.594), 😙(0.627),\n",
"---------------------------------------------------\n",
" 😘(0.000), 😚(0.009), 😍(0.036), 😙(0.065), 😊(0.068), 😗(0.076), 😛(0.078), 😻(0.082), 😽(0.088), 😋(0.114), 🙌(0.114), 😇(0.116), 😀(0.123), 😌(0.163), 😃(0.166), 🙋(0.167), 😎(0.195), 🙊(0.196), 😺(0.197), 🙈(0.199), 🙆(0.204), 😁(0.219), 😼(0.230), 😆(0.232), 😜(0.235), 😄(0.241), 😉(0.244), 😝(0.245), 😸(0.276), 🙉(0.296), 🙀(0.313), 🙏(0.345), 😈(0.348), 😂(0.358), 😮(0.368), 😬(0.370), 😅(0.373), 😱(0.378), 😏(0.404), 😹(0.404), 🙇(0.407), 😥(0.414), 😟(0.445), 😵(0.445), 😯(0.451), 😢(0.493), 😳(0.511), 😰(0.513), 🙎(0.546), 😧(0.553), 😓(0.554), 😪(0.554), 😴(0.556), 😲(0.560), 😭(0.563), 😞(0.581), 😫(0.600), 😔(0.600), 😨(0.604), 😖(0.607), 😶(0.611), 😷(0.618), 😡(0.627), 😤(0.649), 🙅(0.652), 😣(0.652), 😠(0.710), 😑(0.727), 🙍(0.742), 😾(0.755), 😩(0.757), 😒(0.761), 😿(0.766), 😦(0.778), 😕(0.779), 😐(0.781),\n",
"---------------------------------------------------\n",
" 😊(0.000), 😻(0.016), 😛(0.028), 😍(0.032), 😇(0.048), 😋(0.050), 😀(0.059), 🙌(0.060), 😘(0.068), 😚(0.075), 😃(0.098), 😽(0.102), 🙋(0.110), 😌(0.113), 😙(0.126), 😎(0.130), 🙆(0.136), 🙊(0.137), 😗(0.141), 🙈(0.150), 😁(0.156), 😜(0.169), 😺(0.173), 😆(0.173), 😉(0.177), 😄(0.178), 😼(0.179), 😝(0.181), 😸(0.210), 🙉(0.235), 🙀(0.250), 🙏(0.277), 😈(0.288), 😮(0.304), 😂(0.305), 😬(0.320), 😱(0.326), 😅(0.329), 😏(0.337), 😹(0.356), 🙇(0.357), 😥(0.369), 😯(0.392), 😵(0.396), 😟(0.403), 😢(0.451), 😳(0.457), 😰(0.483), 😧(0.505), 😲(0.510), 😴(0.513), 😓(0.513), 😪(0.514), 🙎(0.518), 😭(0.522), 😞(0.548), 😨(0.557), 😔(0.560), 😶(0.563), 😫(0.564), 😖(0.570), 😷(0.577), 😡(0.600), 🙅(0.604), 😤(0.605), 😣(0.621), 😠(0.674), 😑(0.681), 🙍(0.707), 😩(0.719), 😾(0.721), 😒(0.723), 😿(0.725), 😦(0.733), 😐(0.736), 😕(0.741),\n",
"---------------------------------------------------\n",
" 😁(0.000), 😄(0.022), 😝(0.027), 😎(0.031), 🙊(0.031), 😜(0.032), 😆(0.033), 🙆(0.048), 😉(0.052), 🙋(0.059), 🙈(0.069), 😼(0.069), 😸(0.069), 😃(0.077), 😌(0.077), 🙉(0.081), 🙀(0.095), 😀(0.097), 🙌(0.106), 😇(0.112), 😋(0.132), 😈(0.134), 😻(0.139), 😛(0.141), 😺(0.149), 😮(0.149), 🙏(0.155), 😊(0.156), 😂(0.163), 😬(0.182), 😱(0.184), 😍(0.187), 😽(0.195), 😏(0.200), 😅(0.205), 🙇(0.217), 😘(0.219), 😹(0.222), 😚(0.227), 😯(0.238), 😥(0.240), 😵(0.258), 😟(0.279), 😙(0.281), 😗(0.283), 😳(0.308), 😢(0.326), 😧(0.365), 😲(0.368), 😰(0.380), 😴(0.382), 😪(0.387), 😓(0.388), 😭(0.395), 😨(0.419), 🙎(0.421), 😶(0.421), 😔(0.432), 😞(0.435), 😫(0.447), 😷(0.449), 😖(0.449), 🙅(0.464), 😤(0.471), 😡(0.498), 😣(0.512), 😑(0.541), 😠(0.554), 🙍(0.586), 😦(0.594), 😩(0.594), 😿(0.595), 😐(0.596), 😒(0.597), 😾(0.602), 😕(0.614),\n",
"---------------------------------------------------\n",
" 😩(0.000), 😒(0.009), 😕(0.025), 🙍(0.032), 😿(0.038), 😾(0.042), 😠(0.051), 😦(0.114), 😐(0.118), 😑(0.126), 😣(0.129), 😤(0.137), 😷(0.146), 😖(0.150), 😫(0.158), 😔(0.162), 🙅(0.167), 😡(0.168), 😞(0.180), 😨(0.192), 😭(0.199), 😶(0.203), 😓(0.207), 😪(0.207), 😴(0.213), 🙎(0.234), 😧(0.245), 😲(0.250), 😰(0.251), 😢(0.269), 😟(0.317), 😳(0.323), 😵(0.339), 😥(0.355), 😹(0.373), 🙇(0.380), 😅(0.392), 😯(0.408), 😱(0.412), 😬(0.413), 😂(0.434), 😈(0.481), 😮(0.508), 🙉(0.525), 🙀(0.536), 😼(0.544), 😺(0.561), 😆(0.564), 🙈(0.570), 😄(0.578), 😝(0.582), 😏(0.588), 😁(0.594), 😸(0.595), 🙊(0.596), 😌(0.606), 😜(0.606), 🙋(0.614), 😉(0.617), 😎(0.624), 🙏(0.626), 🙆(0.640), 🙌(0.660), 😃(0.670), 😀(0.671), 😽(0.679), 😇(0.692), 😛(0.693), 😻(0.705), 😋(0.717), 😊(0.719), 😍(0.741), 😘(0.757), 😚(0.766), 😗(0.782), 😙(0.820),\n",
"---------------------------------------------------\n",
" 🙏(0.000), 😏(0.067), 😸(0.086), 😉(0.108), 🙀(0.112), 😮(0.119), 😜(0.125), 😝(0.133), 😄(0.143), 🙉(0.143), 🙆(0.144), 😁(0.155), 😈(0.157), 😎(0.161), 😆(0.172), 😃(0.179), 🙊(0.185), 😼(0.210), 🙋(0.211), 😂(0.217), 😯(0.220), 🙈(0.222), 😀(0.226), 😇(0.229), 😌(0.231), 😋(0.234), 😱(0.234), 😬(0.241), 🙌(0.246), 🙇(0.262), 😻(0.263), 😛(0.273), 😹(0.276), 😊(0.277), 😅(0.282), 😵(0.297), 😥(0.301), 😺(0.301), 😳(0.305), 😍(0.309), 😟(0.341), 😽(0.343), 😘(0.345), 😚(0.351), 😢(0.378), 😲(0.378), 😧(0.381), 😙(0.398), 😗(0.417), 😴(0.419), 😶(0.429), 😪(0.432), 😓(0.433), 😨(0.436), 😭(0.437), 😰(0.458), 😔(0.470), 🙅(0.472), 😷(0.484), 😤(0.491), 😞(0.496), 😖(0.498), 😫(0.501), 🙎(0.502), 😑(0.544), 😡(0.568), 😣(0.572), 😠(0.595), 😦(0.597), 😐(0.598), 😿(0.618), 😩(0.626), 🙍(0.626), 😒(0.627), 😕(0.642), 😾(0.644),\n",
"---------------------------------------------------\n",
" 😏(0.000), 🙏(0.067), 😮(0.102), 🙀(0.127), 😸(0.131), 😈(0.152), 🙉(0.160), 😉(0.161), 😜(0.174), 😝(0.174), 😯(0.181), 😄(0.182), 😁(0.200), 🙆(0.201), 😆(0.208), 😂(0.211), 😎(0.213), 😱(0.222), 🙊(0.230), 😬(0.233), 😃(0.239), 😼(0.242), 🙇(0.244), 🙋(0.258), 🙈(0.259), 😹(0.261), 😳(0.265), 😵(0.273), 😌(0.276), 😅(0.277), 😀(0.282), 😥(0.287), 😇(0.288), 😋(0.296), 🙌(0.300), 😻(0.322), 😟(0.324), 😛(0.330), 😺(0.336), 😊(0.337), 😲(0.338), 😧(0.344), 😢(0.354), 😍(0.369), 😶(0.387), 😴(0.387), 😽(0.394), 😨(0.396), 😪(0.403), 😘(0.404), 😓(0.404), 😭(0.407), 😚(0.411), 🙅(0.428), 😔(0.437), 😰(0.442), 😷(0.450), 😤(0.451), 😙(0.460), 😖(0.468), 😞(0.472), 😫(0.473), 😗(0.475), 🙎(0.486), 😑(0.498), 😣(0.546), 😡(0.546), 😦(0.549), 😐(0.550), 😠(0.560), 😿(0.576), 😒(0.588), 😩(0.588), 🙍(0.591), 😕(0.602), 😾(0.609),\n",
"---------------------------------------------------\n",
" 😉(0.000), 😜(0.020), 😸(0.034), 😝(0.041), 🙆(0.041), 😄(0.050), 😁(0.052), 😎(0.053), 😆(0.078), 🙊(0.080), 😃(0.081), 🙀(0.087), 🙉(0.093), 🙋(0.104), 🙏(0.108), 😼(0.118), 🙈(0.121), 😀(0.122), 😌(0.125), 😇(0.129), 😮(0.137), 😈(0.140), 🙌(0.140), 😋(0.141), 😏(0.161), 😻(0.162), 😛(0.169), 😊(0.177), 😂(0.184), 😺(0.201), 😱(0.205), 😬(0.206), 😍(0.210), 😽(0.236), 😅(0.236), 🙇(0.238), 😯(0.238), 😘(0.244), 😹(0.246), 😚(0.252), 😥(0.267), 😵(0.278), 😙(0.302), 😟(0.308), 😗(0.314), 😳(0.316), 😢(0.352), 😧(0.380), 😲(0.381), 😴(0.405), 😪(0.412), 😓(0.413), 😰(0.415), 😭(0.419), 😶(0.435), 😨(0.436), 😔(0.455), 🙎(0.457), 😞(0.466), 😷(0.472), 😫(0.476), 😖(0.476), 🙅(0.478), 😤(0.489), 😡(0.532), 😣(0.543), 😑(0.554), 😠(0.579), 😦(0.608), 😐(0.610), 🙍(0.612), 😿(0.615), 😩(0.617), 😒(0.619), 😾(0.628), 😕(0.636),\n",
"---------------------------------------------------\n",
" 🙌(0.000), 😀(0.028), 😛(0.037), 😻(0.045), 😇(0.045), 🙋(0.053), 😌(0.054), 😊(0.060), 😋(0.070), 😃(0.075), 🙊(0.082), 😍(0.086), 😎(0.087), 🙈(0.090), 😽(0.099), 🙆(0.102), 😁(0.106), 😘(0.114), 😆(0.118), 😼(0.119), 😺(0.123), 😚(0.123), 😜(0.127), 😄(0.128), 😝(0.132), 😉(0.140), 😸(0.169), 😗(0.177), 😙(0.178), 🙉(0.181), 🙀(0.200), 😈(0.234), 🙏(0.246), 😂(0.247), 😮(0.255), 😬(0.261), 😱(0.267), 😅(0.269), 😹(0.297), 🙇(0.298), 😏(0.300), 😥(0.309), 😯(0.337), 😵(0.337), 😟(0.344), 😢(0.392), 😳(0.399), 😰(0.426), 😧(0.446), 😲(0.451), 😴(0.453), 😓(0.454), 😪(0.454), 🙎(0.462), 😭(0.463), 😞(0.489), 😨(0.498), 😔(0.500), 😶(0.503), 😫(0.505), 😖(0.511), 😷(0.517), 😡(0.543), 🙅(0.545), 😤(0.546), 😣(0.564), 😠(0.615), 😑(0.621), 🙍(0.648), 😩(0.660), 😾(0.662), 😒(0.664), 😿(0.666), 😦(0.673), 😐(0.676), 😕(0.681),\n",
"---------------------------------------------------\n",
" 🙈(0.000), 😼(0.031), 😌(0.037), 🙊(0.043), 🙋(0.045), 😆(0.052), 😁(0.069), 😄(0.079), 😺(0.080), 😎(0.082), 😝(0.088), 🙌(0.090), 😜(0.101), 😀(0.101), 🙆(0.107), 🙉(0.111), 😃(0.114), 😉(0.121), 😇(0.123), 😛(0.126), 😻(0.135), 😸(0.135), 🙀(0.139), 😋(0.149), 😽(0.150), 😊(0.150), 😈(0.157), 😂(0.159), 😬(0.171), 😍(0.175), 😱(0.179), 😅(0.179), 😮(0.190), 😘(0.199), 😹(0.207), 😚(0.208), 🙇(0.209), 😥(0.219), 🙏(0.222), 😵(0.247), 😗(0.250), 😟(0.254), 😯(0.256), 😏(0.259), 😙(0.264), 😢(0.302), 😳(0.312), 😰(0.340), 😧(0.356), 😲(0.361), 😴(0.363), 😓(0.364), 😪(0.364), 😭(0.373), 🙎(0.379), 😞(0.402), 😨(0.408), 😔(0.410), 😶(0.413), 😫(0.417), 😖(0.422), 😷(0.427), 🙅(0.455), 😤(0.455), 😡(0.459), 😣(0.477), 😠(0.527), 😑(0.531), 🙍(0.559), 😩(0.570), 😾(0.574), 😒(0.574), 😿(0.576), 😦(0.583), 😐(0.586), 😕(0.592),\n",
"---------------------------------------------------\n",
" 😄(0.000), 😝(0.010), 😁(0.022), 😆(0.030), 😜(0.032), 🙊(0.049), 😉(0.050), 😎(0.051), 😸(0.056), 🙉(0.059), 🙆(0.063), 😼(0.070), 🙀(0.072), 🙋(0.079), 🙈(0.079), 😌(0.095), 😃(0.096), 😈(0.112), 😀(0.119), 😮(0.127), 🙌(0.128), 😇(0.134), 🙏(0.143), 😂(0.144), 😋(0.153), 😺(0.159), 😻(0.162), 😛(0.163), 😬(0.165), 😱(0.166), 😊(0.178), 😏(0.182), 😅(0.191), 🙇(0.199), 😹(0.205), 😍(0.209), 😽(0.215), 😯(0.216), 😥(0.224), 😵(0.240), 😘(0.241), 😚(0.249), 😟(0.264), 😳(0.287), 😙(0.303), 😗(0.304), 😢(0.310), 😧(0.346), 😲(0.348), 😴(0.365), 😰(0.368), 😪(0.371), 😓(0.372), 😭(0.379), 😨(0.400), 😶(0.402), 🙎(0.410), 😔(0.415), 😞(0.421), 😷(0.432), 😫(0.432), 😖(0.434), 🙅(0.445), 😤(0.452), 😡(0.486), 😣(0.499), 😑(0.521), 😠(0.538), 🙍(0.571), 😦(0.574), 😐(0.577), 😩(0.578), 😿(0.578), 😒(0.580), 😾(0.586), 😕(0.597),\n",
"---------------------------------------------------\n",
" 😒(0.000), 😩(0.009), 😕(0.018), 😿(0.030), 🙍(0.040), 😾(0.050), 😠(0.058), 😦(0.105), 😐(0.110), 😑(0.121), 😤(0.136), 😣(0.137), 😷(0.148), 😖(0.154), 😫(0.164), 🙅(0.165), 😔(0.165), 😡(0.176), 😞(0.186), 😨(0.192), 😭(0.202), 😶(0.202), 😓(0.210), 😪(0.210), 😴(0.215), 🙎(0.241), 😧(0.245), 😲(0.250), 😰(0.257), 😢(0.273), 😟(0.321), 😳(0.323), 😵(0.341), 😥(0.358), 😹(0.375), 🙇(0.382), 😅(0.396), 😯(0.408), 😱(0.415), 😬(0.415), 😂(0.436), 😈(0.483), 😮(0.509), 🙉(0.527), 🙀(0.538), 😼(0.547), 😺(0.566), 😆(0.567), 🙈(0.574), 😄(0.580), 😝(0.585), 😏(0.588), 😸(0.596), 😁(0.597), 🙊(0.599), 😜(0.609), 😌(0.610), 🙋(0.617), 😉(0.619), 🙏(0.627), 😎(0.627), 🙆(0.643), 🙌(0.664), 😃(0.673), 😀(0.674), 😽(0.684), 😇(0.695), 😛(0.697), 😻(0.709), 😋(0.720), 😊(0.723), 😍(0.745), 😘(0.761), 😚(0.770), 😗(0.787), 😙(0.824),\n",
"---------------------------------------------------\n",
" 😃(0.000), 🙆(0.040), 😎(0.046), 😀(0.050), 😇(0.050), 😋(0.060), 🙋(0.073), 🙌(0.075), 😁(0.077), 🙊(0.077), 😜(0.077), 😉(0.081), 😻(0.084), 😌(0.093), 😝(0.095), 😛(0.095), 😄(0.096), 😊(0.098), 😆(0.106), 🙈(0.114), 😸(0.114), 😍(0.130), 😼(0.132), 🙉(0.155), 🙀(0.162), 😘(0.166), 😚(0.173), 😽(0.173), 😺(0.179), 🙏(0.179), 😈(0.208), 😮(0.215), 😙(0.222), 😗(0.238), 😏(0.239), 😂(0.239), 😬(0.258), 😱(0.261), 😅(0.279), 🙇(0.294), 😹(0.298), 😯(0.311), 😥(0.315), 😵(0.335), 😟(0.353), 😳(0.384), 😢(0.401), 😧(0.441), 😲(0.444), 😰(0.450), 😴(0.458), 😪(0.463), 😓(0.463), 😭(0.471), 🙎(0.490), 😨(0.496), 😶(0.497), 😔(0.508), 😞(0.508), 😫(0.521), 😖(0.524), 😷(0.525), 🙅(0.541), 😤(0.547), 😡(0.568), 😣(0.584), 😑(0.617), 😠(0.628), 🙍(0.661), 😩(0.670), 😦(0.670), 😿(0.671), 😒(0.673), 😐(0.673), 😾(0.676), 😕(0.690),\n",
"---------------------------------------------------\n",
" 😔(0.000), 😷(0.018), 😭(0.037), 😖(0.040), 😪(0.046), 😓(0.046), 😴(0.051), 😫(0.055), 😤(0.061), 😨(0.065), 😞(0.074), 😶(0.089), 🙅(0.092), 😧(0.097), 😲(0.108), 😢(0.108), 😣(0.119), 😠(0.125), 😰(0.126), 😡(0.137), 🙎(0.138), 😑(0.144), 😟(0.157), 🙍(0.157), 😩(0.162), 😒(0.165), 😿(0.166), 😾(0.174), 😳(0.177), 😵(0.178), 😕(0.182), 😦(0.187), 😐(0.191), 😥(0.193), 😹(0.211), 🙇(0.218), 😅(0.231), 😱(0.250), 😬(0.251), 😯(0.257), 😂(0.272), 😈(0.321), 😮(0.351), 🙉(0.363), 🙀(0.376), 😼(0.383), 😆(0.402), 😺(0.407), 🙈(0.410), 😄(0.415), 😝(0.420), 😁(0.432), 😸(0.434), 🙊(0.434), 😏(0.437), 😜(0.444), 😌(0.446), 🙋(0.453), 😉(0.455), 😎(0.462), 🙏(0.470), 🙆(0.478), 🙌(0.500), 😃(0.508), 😀(0.510), 😽(0.526), 😇(0.531), 😛(0.534), 😻(0.545), 😋(0.556), 😊(0.560), 😍(0.583), 😘(0.600), 😚(0.610), 😗(0.630), 😙(0.664),\n",
"---------------------------------------------------\n",
" 😱(0.000), 😬(0.014), 😂(0.022), 🙇(0.033), 😹(0.043), 😅(0.057), 😥(0.067), 😵(0.074), 😈(0.077), 😯(0.099), 😟(0.108), 🙉(0.112), 😮(0.120), 🙀(0.128), 😳(0.134), 😢(0.148), 😼(0.149), 😆(0.157), 😄(0.166), 😝(0.170), 🙈(0.179), 😧(0.181), 😸(0.184), 😁(0.184), 😲(0.184), 🙊(0.192), 😜(0.194), 😴(0.200), 😉(0.205), 😪(0.207), 😓(0.208), 😺(0.212), 😭(0.214), 😎(0.215), 😌(0.215), 🙋(0.216), 😏(0.222), 😰(0.224), 🙆(0.229), 🙏(0.234), 😨(0.235), 😶(0.237), 😔(0.250), 😃(0.261), 😞(0.265), 😷(0.267), 🙌(0.267), 🙎(0.268), 😀(0.271), 😖(0.272), 😫(0.272), 🙅(0.280), 😤(0.286), 😇(0.290), 😛(0.304), 😻(0.310), 😋(0.314), 😽(0.321), 😊(0.326), 😡(0.335), 😣(0.342), 😍(0.354), 😑(0.357), 😠(0.374), 😘(0.378), 😚(0.387), 🙍(0.407), 😦(0.410), 😿(0.412), 😐(0.412), 😩(0.412), 😒(0.415), 😾(0.423), 😗(0.425), 😕(0.431), 😙(0.443),\n",
"---------------------------------------------------\n",
" 😜(0.000), 😉(0.020), 😝(0.024), 😁(0.032), 😄(0.032), 🙆(0.038), 😎(0.040), 😸(0.042), 😆(0.059), 🙊(0.061), 😃(0.077), 🙉(0.083), 🙀(0.085), 🙋(0.086), 😼(0.099), 🙈(0.101), 😌(0.107), 😀(0.112), 😇(0.122), 🙏(0.125), 🙌(0.127), 😈(0.133), 😋(0.137), 😮(0.138), 😻(0.153), 😛(0.158), 😊(0.169), 😂(0.172), 😏(0.174), 😺(0.181), 😬(0.194), 😱(0.194), 😍(0.201), 😽(0.221), 😅(0.222), 🙇(0.227), 😹(0.234), 😯(0.235), 😘(0.235), 😚(0.243), 😥(0.254), 😵(0.268), 😟(0.294), 😙(0.295), 😗(0.303), 😳(0.310), 😢(0.339), 😧(0.372), 😲(0.373), 😴(0.394), 😰(0.400), 😪(0.400), 😓(0.401), 😭(0.408), 😨(0.427), 😶(0.427), 🙎(0.442), 😔(0.444), 😞(0.452), 😷(0.461), 😫(0.463), 😖(0.464), 🙅(0.470), 😤(0.480), 😡(0.517), 😣(0.529), 😑(0.547), 😠(0.567), 😦(0.600), 🙍(0.600), 😐(0.602), 😿(0.605), 😩(0.606), 😒(0.609), 😾(0.616), 😕(0.625),\n",
"---------------------------------------------------\n",
" 😳(0.000), 😲(0.074), 😧(0.080), 😵(0.084), 😯(0.086), 🙇(0.109), 😹(0.120), 😶(0.124), 😢(0.127), 😥(0.127), 😴(0.131), 😨(0.132), 😟(0.132), 😱(0.134), 😬(0.144), 😪(0.151), 😭(0.153), 😂(0.153), 😓(0.153), 😅(0.160), 🙅(0.167), 😈(0.177), 😔(0.177), 😤(0.187), 😷(0.188), 😮(0.190), 😖(0.212), 😫(0.221), 😰(0.224), 😞(0.227), 🙉(0.229), 🙀(0.229), 😑(0.241), 🙎(0.263), 😏(0.265), 😼(0.282), 😆(0.284), 😄(0.287), 😸(0.288), 😝(0.289), 😣(0.293), 😦(0.294), 😐(0.296), 😠(0.297), 😡(0.302), 🙏(0.305), 😁(0.308), 😜(0.310), 🙈(0.312), 😿(0.313), 😉(0.316), 🙊(0.321), 😒(0.323), 😩(0.323), 🙍(0.327), 😕(0.337), 😎(0.338), 😺(0.343), 😾(0.345), 🙋(0.347), 🙆(0.348), 😌(0.348), 😃(0.384), 🙌(0.399), 😀(0.400), 😇(0.418), 😛(0.436), 😋(0.440), 😻(0.441), 😽(0.455), 😊(0.457), 😍(0.485), 😘(0.511), 😚(0.520), 😗(0.559), 😙(0.576),\n",
"---------------------------------------------------\n",
" 😡(0.000), 😣(0.039), 😞(0.075), 🙎(0.082), 😫(0.084), 😖(0.098), 😰(0.118), 😠(0.119), 😔(0.137), 😷(0.138), 🙍(0.141), 😾(0.145), 😓(0.149), 😭(0.150), 😪(0.150), 😩(0.168), 😴(0.172), 😒(0.176), 😤(0.178), 😢(0.192), 😕(0.192), 😿(0.198), 😨(0.202), 🙅(0.219), 😶(0.226), 😟(0.227), 😧(0.228), 😑(0.239), 😲(0.241), 😦(0.259), 😐(0.264), 😥(0.268), 😵(0.273), 😹(0.292), 😅(0.295), 😳(0.302), 🙇(0.306), 😬(0.329), 😱(0.335), 😂(0.354), 😯(0.371), 😈(0.411), 😺(0.431), 😼(0.437), 🙉(0.442), 😮(0.450), 🙈(0.459), 🙀(0.463), 😆(0.465), 😄(0.486), 😌(0.491), 🙊(0.492), 😝(0.492), 😁(0.498), 🙋(0.503), 😸(0.516), 😜(0.517), 😎(0.526), 😉(0.532), 🙌(0.543), 😽(0.544), 🙆(0.546), 😏(0.546), 😀(0.559), 🙏(0.568), 😃(0.568), 😛(0.572), 😇(0.581), 😻(0.587), 😊(0.600), 😋(0.607), 😍(0.617), 😘(0.627), 😚(0.636), 😗(0.642), 😙(0.687),\n",
"---------------------------------------------------\n",
" 😎(0.000), 🙆(0.025), 😁(0.031), 🙊(0.039), 😜(0.040), 😃(0.046), 😄(0.051), 😝(0.052), 🙋(0.052), 😉(0.053), 😆(0.061), 😀(0.072), 😌(0.075), 🙈(0.082), 😸(0.082), 😇(0.084), 🙌(0.087), 😼(0.092), 😋(0.102), 🙉(0.110), 😻(0.114), 😛(0.118), 🙀(0.120), 😊(0.130), 😺(0.157), 🙏(0.161), 😍(0.162), 😈(0.164), 😮(0.175), 😽(0.183), 😂(0.193), 😘(0.195), 😚(0.203), 😬(0.212), 😏(0.213), 😱(0.215), 😅(0.234), 🙇(0.248), 😹(0.252), 😙(0.256), 😗(0.263), 😯(0.267), 😥(0.270), 😵(0.289), 😟(0.309), 😳(0.338), 😢(0.356), 😧(0.395), 😲(0.398), 😰(0.408), 😴(0.413), 😪(0.418), 😓(0.418), 😭(0.425), 🙎(0.448), 😨(0.450), 😶(0.452), 😔(0.462), 😞(0.464), 😫(0.477), 😷(0.479), 😖(0.479), 🙅(0.495), 😤(0.501), 😡(0.526), 😣(0.541), 😑(0.571), 😠(0.584), 🙍(0.616), 😦(0.624), 😩(0.624), 😿(0.626), 😐(0.627), 😒(0.627), 😾(0.632), 😕(0.644),\n",
"---------------------------------------------------\n",
" 😢(0.000), 😟(0.048), 😪(0.062), 😓(0.063), 😴(0.064), 😭(0.071), 😵(0.082), 😥(0.086), 😧(0.088), 😰(0.098), 😲(0.102), 😹(0.106), 😔(0.108), 🙇(0.117), 😞(0.119), 😨(0.119), 😅(0.123), 😫(0.124), 😖(0.124), 😷(0.126), 😳(0.127), 😶(0.135), 🙎(0.139), 😬(0.146), 😱(0.148), 😤(0.157), 🙅(0.168), 😂(0.169), 😯(0.182), 😡(0.192), 😣(0.195), 😈(0.223), 😠(0.228), 😑(0.239), 😮(0.259), 🙉(0.260), 🙍(0.261), 😩(0.269), 😒(0.273), 😿(0.274), 😼(0.275), 🙀(0.276), 😾(0.277), 😦(0.287), 😕(0.290), 😐(0.291), 😆(0.295), 🙈(0.302), 😺(0.302), 😄(0.310), 😝(0.315), 😁(0.326), 🙊(0.326), 😸(0.332), 😌(0.338), 😜(0.339), 🙋(0.345), 😉(0.352), 😏(0.354), 😎(0.356), 🙆(0.372), 🙏(0.378), 🙌(0.392), 😃(0.401), 😀(0.402), 😽(0.421), 😇(0.423), 😛(0.426), 😻(0.437), 😋(0.448), 😊(0.451), 😍(0.475), 😘(0.493), 😚(0.502), 😗(0.526), 😙(0.557),\n",
"---------------------------------------------------\n",
" 😋(0.000), 😇(0.027), 😻(0.043), 😀(0.048), 😊(0.050), 😃(0.060), 😛(0.063), 🙌(0.070), 😍(0.078), 🙆(0.100), 😎(0.102), 🙋(0.104), 😘(0.114), 😌(0.117), 😚(0.119), 🙊(0.122), 😁(0.132), 😜(0.137), 😉(0.141), 😽(0.147), 🙈(0.149), 😄(0.153), 😝(0.154), 😆(0.157), 😙(0.164), 😼(0.173), 😸(0.174), 😗(0.189), 😺(0.193), 🙉(0.212), 🙀(0.221), 🙏(0.234), 😈(0.266), 😮(0.275), 😂(0.292), 😏(0.296), 😬(0.309), 😱(0.314), 😅(0.325), 🙇(0.346), 😹(0.348), 😥(0.363), 😯(0.369), 😵(0.386), 😟(0.400), 😳(0.440), 😢(0.448), 😰(0.489), 😧(0.494), 😲(0.498), 😴(0.507), 😪(0.510), 😓(0.510), 😭(0.519), 🙎(0.527), 😨(0.548), 😞(0.551), 😶(0.551), 😔(0.556), 😫(0.565), 😖(0.570), 😷(0.573), 🙅(0.594), 😤(0.598), 😡(0.607), 😣(0.626), 😑(0.670), 😠(0.674), 🙍(0.707), 😩(0.717), 😒(0.720), 😿(0.721), 😾(0.722), 😦(0.723), 😐(0.726), 😕(0.738),\n",
"---------------------------------------------------\n",
" 🙊(0.000), 🙋(0.031), 😁(0.031), 😆(0.036), 😎(0.039), 🙈(0.043), 😌(0.047), 😄(0.049), 😼(0.055), 😝(0.056), 😜(0.061), 🙆(0.064), 😃(0.077), 😀(0.080), 😉(0.080), 🙌(0.082), 😇(0.099), 🙉(0.099), 😸(0.100), 😛(0.118), 🙀(0.120), 😻(0.121), 😺(0.121), 😋(0.122), 😊(0.137), 😈(0.152), 😽(0.166), 😍(0.167), 😂(0.170), 😮(0.174), 🙏(0.185), 😬(0.187), 😱(0.192), 😘(0.196), 😅(0.204), 😚(0.205), 🙇(0.224), 😹(0.225), 😏(0.230), 😥(0.241), 😯(0.256), 😗(0.257), 😙(0.260), 😵(0.264), 😟(0.279), 😳(0.321), 😢(0.326), 😧(0.372), 😰(0.373), 😲(0.376), 😴(0.385), 😪(0.389), 😓(0.389), 😭(0.397), 🙎(0.413), 😨(0.426), 😶(0.429), 😞(0.432), 😔(0.434), 😫(0.445), 😖(0.449), 😷(0.451), 🙅(0.472), 😤(0.476), 😡(0.492), 😣(0.508), 😑(0.548), 😠(0.554), 🙍(0.586), 😩(0.596), 😿(0.599), 😒(0.599), 😦(0.601), 😾(0.601), 😐(0.603), 😕(0.616),\n",
"---------------------------------------------------\n",
" 😴(0.000), 😭(0.022), 😪(0.023), 😓(0.025), 😔(0.051), 😧(0.057), 😨(0.060), 😢(0.064), 😷(0.067), 😲(0.071), 😶(0.080), 😖(0.082), 😫(0.090), 😤(0.094), 😞(0.098), 🙅(0.106), 😟(0.111), 😰(0.120), 😵(0.126), 😳(0.131), 😥(0.144), 🙎(0.147), 😹(0.161), 😣(0.162), 🙇(0.167), 😡(0.172), 😑(0.175), 😠(0.176), 😅(0.184), 😱(0.200), 😬(0.200), 😯(0.207), 🙍(0.209), 😩(0.213), 😿(0.213), 😒(0.215), 😂(0.221), 😦(0.224), 😾(0.226), 😐(0.227), 😕(0.232), 😈(0.270), 😮(0.299), 🙉(0.312), 🙀(0.324), 😼(0.335), 😆(0.352), 🙈(0.363), 😄(0.365), 😺(0.366), 😝(0.370), 😁(0.382), 😸(0.382), 🙊(0.385), 😏(0.387), 😜(0.394), 😌(0.400), 😉(0.405), 🙋(0.405), 😎(0.413), 🙏(0.419), 🙆(0.428), 🙌(0.453), 😃(0.458), 😀(0.462), 😇(0.483), 😽(0.484), 😛(0.488), 😻(0.498), 😋(0.507), 😊(0.513), 😍(0.537), 😘(0.556), 😚(0.565), 😗(0.589), 😙(0.620),\n",
"---------------------------------------------------\n",
" 😌(0.000), 🙋(0.023), 🙈(0.037), 🙊(0.047), 🙌(0.054), 😼(0.067), 😀(0.068), 😎(0.075), 😆(0.075), 😁(0.077), 😺(0.086), 😛(0.089), 😇(0.090), 😃(0.093), 😄(0.095), 😻(0.099), 🙆(0.099), 😝(0.102), 😜(0.107), 😊(0.113), 😋(0.117), 😽(0.121), 😉(0.125), 😍(0.139), 🙉(0.139), 😸(0.147), 😘(0.163), 🙀(0.164), 😚(0.172), 😈(0.189), 😂(0.195), 😬(0.208), 😅(0.215), 😱(0.215), 😗(0.216), 😮(0.217), 😙(0.228), 🙏(0.231), 😹(0.244), 🙇(0.245), 😥(0.255), 😏(0.276), 😵(0.284), 😟(0.290), 😯(0.290), 😢(0.338), 😳(0.348), 😰(0.373), 😧(0.393), 😲(0.398), 😴(0.400), 😓(0.400), 😪(0.400), 😭(0.409), 🙎(0.410), 😞(0.436), 😨(0.444), 😔(0.446), 😶(0.450), 😫(0.452), 😖(0.457), 😷(0.464), 😡(0.491), 🙅(0.492), 😤(0.492), 😣(0.511), 😠(0.562), 😑(0.568), 🙍(0.594), 😩(0.606), 😾(0.608), 😒(0.610), 😿(0.612), 😦(0.619), 😐(0.622), 😕(0.627),\n",
"---------------------------------------------------\n",
" 😞(0.000), 😫(0.025), 😖(0.043), 🙎(0.067), 😰(0.072), 😓(0.074), 😔(0.074), 😡(0.075), 😪(0.076), 😭(0.076), 😣(0.077), 😷(0.082), 😴(0.098), 😢(0.119), 😤(0.129), 😠(0.130), 😨(0.138), 😧(0.155), 😟(0.158), 😶(0.161), 🙍(0.162), 🙅(0.165), 😲(0.169), 😾(0.174), 😩(0.180), 😒(0.186), 😿(0.198), 😥(0.199), 😵(0.200), 😕(0.204), 😑(0.206), 😹(0.222), 😳(0.227), 😅(0.230), 🙇(0.235), 😦(0.240), 😐(0.245), 😬(0.261), 😱(0.265), 😂(0.285), 😯(0.296), 😈(0.341), 🙉(0.375), 😮(0.378), 😼(0.378), 😺(0.385), 🙀(0.393), 🙈(0.402), 😆(0.403), 😄(0.421), 😝(0.428), 🙊(0.432), 😁(0.435), 😌(0.436), 🙋(0.447), 😸(0.448), 😜(0.452), 😎(0.464), 😉(0.466), 😏(0.472), 🙆(0.483), 🙌(0.489), 🙏(0.496), 😽(0.502), 😀(0.503), 😃(0.508), 😛(0.521), 😇(0.525), 😻(0.534), 😊(0.548), 😋(0.551), 😍(0.568), 😘(0.581), 😚(0.590), 😗(0.603), 😙(0.643),\n",
"---------------------------------------------------\n",
" 😆(0.000), 😄(0.030), 😁(0.033), 🙊(0.036), 😝(0.040), 😼(0.040), 🙈(0.052), 😜(0.059), 😎(0.061), 🙉(0.064), 🙋(0.065), 😌(0.075), 😉(0.078), 🙆(0.081), 😸(0.086), 🙀(0.089), 😃(0.106), 😈(0.116), 😀(0.116), 🙌(0.118), 😺(0.130), 😇(0.134), 😂(0.135), 😮(0.142), 😬(0.153), 😛(0.154), 😱(0.157), 😋(0.157), 😻(0.157), 🙏(0.172), 😅(0.173), 😊(0.173), 🙇(0.189), 😹(0.192), 😽(0.196), 😍(0.203), 😏(0.208), 😥(0.209), 😯(0.220), 😵(0.230), 😘(0.232), 😚(0.241), 😟(0.248), 😳(0.284), 😗(0.290), 😢(0.295), 😙(0.296), 😧(0.337), 😲(0.341), 😰(0.347), 😴(0.352), 😪(0.357), 😓(0.357), 😭(0.365), 🙎(0.388), 😨(0.391), 😶(0.394), 😔(0.402), 😞(0.403), 😫(0.415), 😖(0.418), 😷(0.419), 🙅(0.437), 😤(0.442), 😡(0.465), 😣(0.480), 😑(0.513), 😠(0.523), 🙍(0.555), 😩(0.564), 😿(0.566), 😦(0.566), 😒(0.567), 😐(0.569), 😾(0.571), 😕(0.584),\n",
"---------------------------------------------------\n",
" 😝(0.000), 😄(0.010), 😜(0.024), 😁(0.027), 😆(0.040), 😉(0.041), 😸(0.047), 😎(0.052), 🙊(0.056), 🙆(0.059), 🙉(0.060), 🙀(0.069), 😼(0.080), 🙋(0.085), 🙈(0.088), 😃(0.095), 😌(0.102), 😈(0.113), 😀(0.122), 😮(0.124), 🙌(0.132), 🙏(0.133), 😇(0.136), 😂(0.149), 😋(0.154), 😻(0.164), 😛(0.167), 😺(0.168), 😬(0.170), 😱(0.170), 😏(0.174), 😊(0.181), 😅(0.197), 🙇(0.203), 😹(0.210), 😍(0.212), 😯(0.216), 😽(0.221), 😥(0.230), 😵(0.244), 😘(0.245), 😚(0.253), 😟(0.270), 😳(0.289), 😙(0.306), 😗(0.309), 😢(0.315), 😧(0.349), 😲(0.351), 😴(0.370), 😰(0.375), 😪(0.376), 😓(0.377), 😭(0.384), 😨(0.404), 😶(0.404), 🙎(0.417), 😔(0.420), 😞(0.428), 😷(0.437), 😫(0.438), 😖(0.440), 🙅(0.448), 😤(0.456), 😡(0.492), 😣(0.505), 😑(0.524), 😠(0.543), 🙍(0.576), 😦(0.577), 😐(0.580), 😿(0.582), 😩(0.582), 😒(0.585), 😾(0.592), 😕(0.601),\n",
"---------------------------------------------------\n",
" 😪(0.000), 😓(0.002), 😭(0.009), 😴(0.023), 😔(0.046), 😢(0.062), 😷(0.064), 😖(0.066), 😫(0.071), 😞(0.076), 😨(0.078), 😧(0.080), 😲(0.094), 😰(0.098), 😶(0.100), 😤(0.100), 😟(0.111), 🙅(0.121), 🙎(0.124), 😵(0.136), 😣(0.144), 😥(0.148), 😡(0.150), 😳(0.151), 😹(0.167), 😠(0.167), 🙇(0.175), 😑(0.184), 😅(0.186), 🙍(0.200), 😬(0.207), 😩(0.207), 😱(0.207), 😒(0.210), 😿(0.212), 😾(0.216), 😯(0.224), 😕(0.227), 😂(0.229), 😦(0.230), 😐(0.234), 😈(0.280), 😮(0.312), 🙉(0.320), 🙀(0.334), 😼(0.337), 😆(0.357), 😺(0.362), 🙈(0.364), 😄(0.371), 😝(0.376), 😁(0.387), 🙊(0.389), 😸(0.391), 😌(0.400), 😜(0.400), 😏(0.403), 🙋(0.407), 😉(0.412), 😎(0.418), 🙏(0.432), 🙆(0.434), 🙌(0.454), 😃(0.463), 😀(0.464), 😽(0.480), 😇(0.485), 😛(0.488), 😻(0.499), 😋(0.510), 😊(0.514), 😍(0.537), 😘(0.554), 😚(0.563), 😗(0.585), 😙(0.618),\n",
"---------------------------------------------------\n",
" 😫(0.000), 😖(0.018), 😞(0.025), 😔(0.055), 😷(0.059), 😭(0.068), 😓(0.070), 😪(0.071), 😣(0.073), 😡(0.084), 😴(0.090), 🙎(0.092), 😰(0.095), 😤(0.105), 😠(0.111), 😨(0.120), 😢(0.124), 🙍(0.143), 🙅(0.143), 😶(0.143), 😧(0.145), 😾(0.156), 😲(0.158), 😩(0.158), 😒(0.164), 😟(0.168), 😿(0.174), 😑(0.181), 😕(0.182), 😵(0.204), 😥(0.208), 😦(0.214), 😐(0.219), 😳(0.221), 😹(0.230), 🙇(0.241), 😅(0.242), 😬(0.270), 😱(0.272), 😂(0.293), 😯(0.295), 😈(0.347), 😮(0.382), 🙉(0.384), 😼(0.392), 🙀(0.401), 😺(0.403), 😆(0.415), 🙈(0.417), 😄(0.432), 😝(0.438), 🙊(0.445), 😁(0.447), 😌(0.452), 😸(0.457), 🙋(0.461), 😜(0.463), 😏(0.473), 😉(0.476), 😎(0.477), 🙆(0.494), 🙏(0.501), 🙌(0.505), 😀(0.518), 😃(0.521), 😽(0.521), 😛(0.538), 😇(0.539), 😻(0.550), 😊(0.564), 😋(0.565), 😍(0.585), 😘(0.600), 😚(0.609), 😗(0.623), 😙(0.662),\n",
"---------------------------------------------------\n",
" 😅(0.000), 😹(0.040), 😥(0.041), 😬(0.045), 🙇(0.056), 😱(0.057), 😂(0.067), 😟(0.075), 😵(0.079), 😢(0.123), 😈(0.127), 🙉(0.148), 😯(0.150), 😼(0.152), 😳(0.160), 🙀(0.172), 😆(0.173), 😮(0.175), 🙈(0.179), 😰(0.179), 😧(0.182), 😴(0.184), 😪(0.186), 😓(0.186), 😺(0.189), 😲(0.190), 😄(0.191), 😭(0.194), 😝(0.197), 🙊(0.204), 😁(0.205), 😌(0.215), 🙋(0.222), 😸(0.222), 😜(0.222), 🙎(0.222), 😞(0.230), 😨(0.231), 😔(0.231), 😎(0.234), 😉(0.236), 😶(0.239), 😫(0.242), 😖(0.245), 😷(0.249), 🙆(0.252), 🙌(0.269), 😤(0.277), 😏(0.277), 😃(0.279), 😀(0.279), 🙅(0.279), 🙏(0.282), 😡(0.295), 😇(0.300), 😛(0.304), 😽(0.306), 😣(0.308), 😻(0.314), 😋(0.325), 😊(0.329), 😠(0.350), 😍(0.353), 😑(0.354), 😘(0.373), 😚(0.382), 🙍(0.383), 😩(0.392), 😒(0.396), 😿(0.397), 😾(0.398), 😦(0.405), 😐(0.408), 😗(0.411), 😕(0.413), 😙(0.438),\n",
"---------------------------------------------------\n",
" 😀(0.000), 😇(0.022), 🙌(0.028), 😻(0.042), 😛(0.048), 😋(0.048), 😃(0.050), 🙋(0.057), 😊(0.059), 😌(0.068), 😎(0.072), 🙊(0.080), 🙆(0.082), 😍(0.090), 😁(0.097), 🙈(0.101), 😜(0.112), 😆(0.116), 😄(0.119), 😉(0.122), 😝(0.122), 😘(0.123), 😽(0.124), 😼(0.127), 😚(0.131), 😺(0.147), 😸(0.153), 🙉(0.177), 😙(0.184), 🙀(0.191), 😗(0.192), 🙏(0.226), 😈(0.230), 😮(0.246), 😂(0.250), 😬(0.266), 😱(0.271), 😅(0.279), 😏(0.282), 🙇(0.303), 😹(0.304), 😥(0.318), 😯(0.334), 😵(0.343), 😟(0.354), 😳(0.400), 😢(0.402), 😰(0.441), 😧(0.451), 😲(0.456), 😴(0.462), 😪(0.464), 😓(0.464), 😭(0.473), 🙎(0.479), 😞(0.503), 😨(0.504), 😶(0.508), 😔(0.510), 😫(0.518), 😖(0.523), 😷(0.527), 🙅(0.551), 😤(0.554), 😡(0.559), 😣(0.578), 😑(0.627), 😠(0.628), 🙍(0.660), 😩(0.671), 😒(0.674), 😾(0.675), 😿(0.675), 😦(0.680), 😐(0.682), 😕(0.692),\n",
"---------------------------------------------------\n",
" 😚(0.000), 😘(0.009), 😍(0.043), 😙(0.056), 😗(0.072), 😊(0.075), 😛(0.087), 😻(0.090), 😽(0.096), 😋(0.119), 😇(0.123), 🙌(0.123), 😀(0.131), 😌(0.172), 😃(0.173), 🙋(0.176), 😎(0.203), 🙊(0.205), 😺(0.206), 🙈(0.208), 🙆(0.211), 😁(0.227), 😼(0.239), 😆(0.241), 😜(0.243), 😄(0.249), 😉(0.252), 😝(0.253), 😸(0.284), 🙉(0.304), 🙀(0.322), 🙏(0.351), 😈(0.357), 😂(0.367), 😮(0.376), 😬(0.379), 😅(0.382), 😱(0.387), 😏(0.411), 😹(0.414), 🙇(0.417), 😥(0.423), 😟(0.454), 😵(0.454), 😯(0.460), 😢(0.502), 😳(0.520), 😰(0.522), 🙎(0.554), 😧(0.563), 😓(0.563), 😪(0.563), 😴(0.565), 😲(0.569), 😭(0.572), 😞(0.590), 😫(0.609), 😔(0.610), 😨(0.613), 😖(0.616), 😶(0.620), 😷(0.627), 😡(0.636), 😤(0.659), 😣(0.661), 🙅(0.661), 😠(0.719), 😑(0.737), 🙍(0.751), 😾(0.764), 😩(0.766), 😒(0.770), 😿(0.775), 😦(0.787), 😕(0.788), 😐(0.791),\n",
"---------------------------------------------------\n",
" 😻(0.000), 😊(0.016), 😛(0.021), 😇(0.034), 😀(0.042), 😋(0.043), 🙌(0.045), 😍(0.048), 😘(0.082), 😃(0.084), 😚(0.090), 🙋(0.094), 😌(0.099), 😽(0.104), 😎(0.114), 🙊(0.121), 🙆(0.121), 🙈(0.135), 😁(0.139), 😙(0.142), 😜(0.153), 😗(0.154), 😆(0.157), 😄(0.162), 😉(0.162), 😺(0.163), 😼(0.163), 😝(0.164), 😸(0.194), 🙉(0.219), 🙀(0.234), 🙏(0.263), 😈(0.272), 😮(0.288), 😂(0.289), 😬(0.304), 😱(0.310), 😅(0.314), 😏(0.322), 😹(0.341), 🙇(0.341), 😥(0.354), 😯(0.376), 😵(0.381), 😟(0.388), 😢(0.437), 😳(0.441), 😰(0.470), 😧(0.490), 😲(0.494), 😴(0.498), 😓(0.499), 😪(0.499), 🙎(0.506), 😭(0.508), 😞(0.534), 😨(0.542), 😔(0.545), 😶(0.547), 😫(0.550), 😖(0.556), 😷(0.562), 😡(0.587), 🙅(0.589), 😤(0.590), 😣(0.608), 😠(0.660), 😑(0.665), 🙍(0.693), 😩(0.705), 😾(0.707), 😒(0.709), 😿(0.711), 😦(0.717), 😐(0.720), 😕(0.726),\n",
"---------------------------------------------------\n",
" 😥(0.000), 😹(0.025), 😟(0.041), 😅(0.041), 😵(0.043), 🙇(0.044), 😬(0.062), 😱(0.067), 😢(0.086), 😂(0.086), 😳(0.127), 😯(0.137), 😧(0.142), 😈(0.144), 😴(0.144), 😪(0.148), 😓(0.148), 😲(0.150), 😭(0.156), 😰(0.157), 🙉(0.176), 😮(0.186), 😨(0.190), 😼(0.191), 😔(0.193), 🙀(0.195), 😶(0.198), 😞(0.199), 🙎(0.201), 😫(0.208), 😆(0.209), 😖(0.210), 😷(0.210), 🙈(0.219), 😄(0.224), 😺(0.229), 😝(0.230), 😤(0.236), 🙅(0.238), 😁(0.240), 🙊(0.241), 😸(0.249), 😜(0.254), 😌(0.255), 🙋(0.261), 😉(0.267), 😡(0.268), 😎(0.270), 😣(0.276), 🙆(0.287), 😏(0.287), 🙏(0.301), 🙌(0.309), 😑(0.313), 😠(0.314), 😃(0.315), 😀(0.318), 😇(0.338), 😛(0.344), 😽(0.346), 🙍(0.347), 😻(0.354), 😩(0.355), 😒(0.358), 😿(0.358), 😾(0.362), 😋(0.363), 😦(0.365), 😐(0.368), 😊(0.369), 😕(0.375), 😍(0.393), 😘(0.414), 😚(0.423), 😗(0.452), 😙(0.479),\n",
"---------------------------------------------------\n",
" 😕(0.000), 😒(0.018), 😩(0.025), 😿(0.031), 🙍(0.053), 😾(0.058), 😠(0.075), 😦(0.103), 😐(0.107), 😑(0.126), 😤(0.151), 😣(0.154), 😷(0.165), 😖(0.172), 🙅(0.177), 😫(0.182), 😔(0.182), 😡(0.192), 😞(0.204), 😨(0.206), 😶(0.215), 😭(0.219), 😓(0.227), 😪(0.227), 😴(0.232), 🙎(0.259), 😧(0.260), 😲(0.264), 😰(0.275), 😢(0.290), 😳(0.337), 😟(0.338), 😵(0.358), 😥(0.375), 😹(0.392), 🙇(0.398), 😅(0.413), 😯(0.423), 😱(0.431), 😬(0.432), 😂(0.453), 😈(0.499), 😮(0.524), 🙉(0.543), 🙀(0.554), 😼(0.565), 😆(0.584), 😺(0.584), 🙈(0.592), 😄(0.597), 😝(0.601), 😏(0.602), 😸(0.612), 😁(0.614), 🙊(0.616), 😜(0.625), 😌(0.627), 🙋(0.635), 😉(0.636), 🙏(0.642), 😎(0.644), 🙆(0.660), 🙌(0.681), 😃(0.690), 😀(0.692), 😽(0.702), 😇(0.713), 😛(0.715), 😻(0.726), 😋(0.738), 😊(0.741), 😍(0.763), 😘(0.779), 😚(0.788), 😗(0.805), 😙(0.842),\n",
"---------------------------------------------------\n",
" 😤(0.000), 🙅(0.042), 😷(0.048), 😨(0.055), 😔(0.061), 😶(0.067), 😑(0.084), 😖(0.087), 😭(0.091), 😴(0.094), 😪(0.100), 😓(0.102), 😫(0.105), 😧(0.110), 😲(0.113), 😠(0.118), 😿(0.127), 😞(0.129), 😦(0.130), 😐(0.134), 😒(0.136), 😩(0.137), 🙍(0.144), 😣(0.149), 😕(0.151), 😢(0.157), 😾(0.163), 😡(0.178), 😰(0.187), 😳(0.187), 🙎(0.195), 😟(0.205), 😵(0.213), 😥(0.236), 😹(0.250), 🙇(0.253), 😯(0.272), 😅(0.277), 😱(0.286), 😬(0.289), 😂(0.308), 😈(0.351), 😮(0.374), 🙉(0.397), 🙀(0.406), 😼(0.427), 😆(0.442), 😏(0.451), 😄(0.452), 🙈(0.455), 😝(0.456), 😺(0.459), 😸(0.464), 😁(0.471), 🙊(0.476), 😜(0.480), 😉(0.489), 🙏(0.491), 😌(0.492), 🙋(0.497), 😎(0.501), 🙆(0.515), 🙌(0.546), 😃(0.547), 😀(0.554), 😇(0.574), 😽(0.578), 😛(0.581), 😻(0.590), 😋(0.598), 😊(0.605), 😍(0.630), 😘(0.649), 😚(0.659), 😗(0.683), 😙(0.714),\n",
"---------------------------------------------------\n",
" 😈(0.000), 😮(0.050), 🙉(0.053), 🙀(0.055), 😂(0.061), 😱(0.077), 😬(0.084), 😯(0.104), 🙇(0.106), 😄(0.112), 😝(0.113), 😸(0.114), 😆(0.116), 😹(0.119), 😅(0.127), 😼(0.129), 😜(0.133), 😁(0.134), 😉(0.140), 😵(0.144), 😥(0.144), 😏(0.152), 🙊(0.152), 🙈(0.157), 🙏(0.157), 😎(0.164), 🙆(0.171), 😳(0.177), 🙋(0.181), 😟(0.184), 😌(0.189), 😃(0.208), 😺(0.216), 😢(0.223), 😀(0.230), 🙌(0.234), 😧(0.241), 😲(0.242), 😇(0.246), 😋(0.266), 😴(0.270), 😛(0.270), 😻(0.272), 😪(0.280), 😓(0.281), 😭(0.286), 😊(0.288), 😶(0.295), 😨(0.297), 😰(0.300), 😽(0.307), 😍(0.319), 😔(0.321), 😷(0.336), 🙅(0.339), 😞(0.341), 🙎(0.344), 😖(0.345), 😫(0.347), 😘(0.348), 😤(0.351), 😚(0.357), 😗(0.405), 😡(0.411), 😙(0.412), 😑(0.415), 😣(0.417), 😠(0.446), 😦(0.468), 😐(0.470), 😿(0.478), 🙍(0.478), 😩(0.481), 😒(0.483), 😾(0.495), 😕(0.499),\n",
"---------------------------------------------------\n",
" 😰(0.000), 🙎(0.044), 😞(0.072), 😫(0.095), 😓(0.096), 😢(0.098), 😪(0.098), 😭(0.105), 😖(0.109), 😟(0.118), 😡(0.118), 😴(0.120), 😔(0.126), 😣(0.139), 😷(0.140), 😥(0.157), 😧(0.171), 😵(0.172), 😨(0.176), 😅(0.179), 😹(0.182), 😲(0.186), 😤(0.187), 😶(0.198), 🙇(0.199), 😠(0.202), 🙅(0.215), 😬(0.217), 😱(0.224), 😳(0.224), 🙍(0.232), 😂(0.241), 😾(0.243), 😩(0.251), 😒(0.257), 😑(0.269), 😿(0.269), 😕(0.275), 😯(0.277), 😈(0.300), 😦(0.307), 😐(0.312), 😺(0.317), 😼(0.319), 🙉(0.327), 🙈(0.340), 😮(0.343), 😆(0.347), 🙀(0.350), 😄(0.368), 🙊(0.373), 😌(0.373), 😝(0.375), 😁(0.380), 🙋(0.385), 😜(0.400), 😸(0.401), 😎(0.408), 😉(0.415), 🙌(0.426), 🙆(0.428), 😽(0.432), 😀(0.441), 😏(0.442), 😃(0.450), 😛(0.456), 🙏(0.458), 😇(0.463), 😻(0.470), 😊(0.483), 😋(0.489), 😍(0.501), 😘(0.513), 😚(0.522), 😗(0.533), 😙(0.574),\n",
"---------------------------------------------------\n",
" 😑(0.000), 😦(0.053), 😐(0.055), 🙅(0.077), 😤(0.084), 😿(0.095), 😶(0.120), 😒(0.121), 😨(0.123), 😕(0.126), 😩(0.126), 😷(0.129), 😠(0.140), 😔(0.144), 🙍(0.150), 😖(0.164), 😾(0.166), 😲(0.173), 😭(0.175), 😴(0.175), 😧(0.176), 😫(0.181), 😪(0.184), 😓(0.185), 😣(0.203), 😞(0.206), 😢(0.239), 😡(0.239), 😳(0.241), 😰(0.269), 🙎(0.273), 😵(0.284), 😟(0.285), 😥(0.313), 😹(0.324), 🙇(0.325), 😯(0.325), 😅(0.354), 😱(0.357), 😬(0.361), 😂(0.379), 😈(0.415), 😮(0.431), 🙉(0.464), 🙀(0.469), 😏(0.498), 😼(0.502), 😆(0.513), 😄(0.521), 😝(0.524), 😸(0.527), 🙈(0.531), 😺(0.540), 😁(0.541), 🙏(0.544), 😜(0.547), 🙊(0.548), 😉(0.554), 😌(0.568), 🙋(0.571), 😎(0.571), 🙆(0.583), 😃(0.617), 🙌(0.621), 😀(0.627), 😇(0.647), 😛(0.657), 😽(0.658), 😻(0.665), 😋(0.670), 😊(0.681), 😍(0.706), 😘(0.727), 😚(0.737), 😗(0.764), 😙(0.792),\n",
"---------------------------------------------------\n",
" 😹(0.000), 🙇(0.020), 😥(0.025), 😬(0.040), 😅(0.040), 😵(0.041), 😱(0.043), 😂(0.063), 😟(0.065), 😢(0.106), 😯(0.115), 😈(0.119), 😳(0.120), 😧(0.149), 🙉(0.154), 😲(0.156), 😴(0.161), 😮(0.161), 😪(0.167), 😓(0.167), 🙀(0.171), 😭(0.174), 😼(0.178), 😰(0.182), 😆(0.192), 😨(0.201), 😄(0.205), 😶(0.207), 🙈(0.207), 😝(0.210), 😔(0.211), 😁(0.222), 😞(0.222), 🙊(0.225), 😺(0.226), 🙎(0.226), 😸(0.226), 😷(0.227), 😫(0.230), 😖(0.230), 😜(0.234), 😌(0.244), 😉(0.246), 🙋(0.247), 🙅(0.248), 😤(0.250), 😎(0.252), 😏(0.261), 🙆(0.268), 🙏(0.276), 😡(0.292), 🙌(0.297), 😃(0.298), 😣(0.299), 😀(0.304), 😇(0.324), 😑(0.324), 😛(0.333), 😠(0.333), 😽(0.341), 😻(0.341), 😋(0.348), 😊(0.356), 🙍(0.366), 😩(0.373), 😿(0.374), 😒(0.375), 😦(0.376), 😐(0.379), 😾(0.382), 😍(0.382), 😕(0.392), 😘(0.404), 😚(0.414), 😗(0.446), 😙(0.469),\n",
"---------------------------------------------------\n",
" 😠(0.000), 🙍(0.033), 😾(0.049), 😩(0.051), 😒(0.058), 😕(0.075), 😿(0.079), 😣(0.080), 😖(0.105), 😫(0.111), 😷(0.111), 😤(0.118), 😡(0.119), 😔(0.125), 😞(0.130), 😑(0.140), 😦(0.145), 😐(0.151), 🙅(0.156), 😭(0.160), 😓(0.166), 😪(0.167), 😨(0.168), 😴(0.176), 🙎(0.184), 😶(0.185), 😰(0.202), 😧(0.217), 😲(0.224), 😢(0.228), 😟(0.275), 😳(0.297), 😵(0.302), 😥(0.314), 😹(0.333), 🙇(0.342), 😅(0.350), 😬(0.373), 😱(0.374), 😯(0.380), 😂(0.396), 😈(0.446), 😮(0.475), 🙉(0.487), 🙀(0.500), 😼(0.501), 😺(0.514), 😆(0.523), 🙈(0.527), 😄(0.538), 😝(0.543), 🙊(0.554), 😁(0.554), 😸(0.558), 😏(0.560), 😌(0.562), 😜(0.567), 🙋(0.571), 😉(0.579), 😎(0.584), 🙏(0.595), 🙆(0.600), 🙌(0.615), 😀(0.628), 😃(0.628), 😽(0.632), 😛(0.648), 😇(0.649), 😻(0.660), 😋(0.674), 😊(0.674), 😍(0.696), 😘(0.710), 😚(0.719), 😗(0.734), 😙(0.773),\n",
"---------------------------------------------------\n",
" 😓(0.000), 😪(0.002), 😭(0.010), 😴(0.025), 😔(0.046), 😢(0.063), 😷(0.064), 😖(0.065), 😫(0.070), 😞(0.074), 😨(0.080), 😧(0.082), 😰(0.096), 😲(0.096), 😤(0.102), 😶(0.102), 😟(0.111), 🙎(0.122), 🙅(0.122), 😵(0.137), 😣(0.142), 😥(0.148), 😡(0.149), 😳(0.153), 😠(0.166), 😹(0.167), 🙇(0.176), 😑(0.185), 😅(0.186), 🙍(0.199), 😩(0.207), 😬(0.207), 😱(0.208), 😒(0.210), 😿(0.212), 😾(0.215), 😯(0.225), 😕(0.227), 😂(0.229), 😦(0.231), 😐(0.235), 😈(0.281), 😮(0.313), 🙉(0.320), 🙀(0.335), 😼(0.337), 😆(0.357), 😺(0.361), 🙈(0.364), 😄(0.372), 😝(0.377), 😁(0.388), 🙊(0.389), 😸(0.392), 😌(0.400), 😜(0.401), 😏(0.404), 🙋(0.407), 😉(0.413), 😎(0.418), 🙏(0.433), 🙆(0.434), 🙌(0.454), 😃(0.463), 😀(0.464), 😽(0.480), 😇(0.485), 😛(0.488), 😻(0.499), 😋(0.510), 😊(0.513), 😍(0.536), 😘(0.554), 😚(0.563), 😗(0.584), 😙(0.618),\n",
"---------------------------------------------------\n",
" 😣(0.000), 😡(0.039), 😫(0.073), 😞(0.077), 😠(0.080), 😖(0.081), 🙍(0.103), 😾(0.109), 🙎(0.111), 😷(0.115), 😔(0.119), 😩(0.129), 😒(0.137), 😰(0.139), 😭(0.141), 😓(0.142), 😪(0.144), 😤(0.149), 😕(0.154), 😿(0.159), 😴(0.162), 😨(0.182), 🙅(0.191), 😢(0.195), 😑(0.203), 😶(0.204), 😧(0.215), 😦(0.220), 😐(0.225), 😲(0.227), 😟(0.236), 😵(0.276), 😥(0.276), 😳(0.293), 😹(0.299), 😅(0.308), 🙇(0.312), 😬(0.338), 😱(0.342), 😂(0.362), 😯(0.368), 😈(0.417), 🙉(0.452), 😮(0.453), 😼(0.454), 😺(0.455), 🙀(0.470), 🙈(0.477), 😆(0.480), 😄(0.499), 😝(0.505), 🙊(0.508), 😌(0.511), 😁(0.512), 🙋(0.522), 😸(0.526), 😜(0.529), 😎(0.541), 😉(0.543), 😏(0.546), 🙆(0.560), 🙌(0.564), 😽(0.570), 🙏(0.572), 😀(0.578), 😃(0.584), 😛(0.594), 😇(0.600), 😻(0.608), 😊(0.621), 😋(0.626), 😍(0.640), 😘(0.652), 😚(0.661), 😗(0.670), 😙(0.713),\n",
"---------------------------------------------------\n",
" 😐(0.000), 😦(0.005), 😑(0.055), 😿(0.080), 😕(0.107), 😒(0.110), 😩(0.118), 🙅(0.132), 😤(0.134), 🙍(0.148), 😠(0.151), 😾(0.160), 😷(0.174), 😶(0.175), 😨(0.178), 😔(0.191), 😖(0.203), 😫(0.219), 😭(0.224), 😣(0.225), 😴(0.227), 😲(0.229), 😧(0.231), 😪(0.234), 😓(0.235), 😞(0.245), 😡(0.264), 😢(0.291), 😳(0.296), 🙎(0.310), 😰(0.312), 😟(0.338), 😵(0.340), 😥(0.368), 😹(0.379), 😯(0.380), 🙇(0.380), 😅(0.408), 😱(0.412), 😬(0.417), 😂(0.434), 😈(0.470), 😮(0.485), 🙉(0.519), 🙀(0.524), 😏(0.550), 😼(0.557), 😆(0.569), 😄(0.577), 😝(0.580), 😸(0.583), 🙈(0.586), 😺(0.593), 😁(0.596), 🙏(0.598), 😜(0.602), 🙊(0.603), 😉(0.610), 😌(0.622), 🙋(0.626), 😎(0.627), 🙆(0.639), 😃(0.673), 🙌(0.676), 😀(0.682), 😇(0.702), 😛(0.711), 😽(0.711), 😻(0.720), 😋(0.726), 😊(0.736), 😍(0.761), 😘(0.781), 😚(0.791), 😗(0.817), 😙(0.846),\n",
"---------------------------------------------------\n",
" 😨(0.000), 😶(0.024), 🙅(0.049), 😤(0.055), 😧(0.056), 😲(0.058), 😴(0.060), 😔(0.065), 😷(0.067), 😭(0.071), 😪(0.078), 😓(0.080), 😖(0.104), 😢(0.119), 😫(0.120), 😑(0.123), 😳(0.132), 😞(0.138), 😵(0.162), 😟(0.163), 😠(0.168), 😦(0.175), 😰(0.176), 😐(0.178), 😣(0.182), 😿(0.182), 😥(0.190), 😒(0.192), 😩(0.192), 🙍(0.197), 🙎(0.197), 😹(0.201), 🙇(0.202), 😡(0.202), 😕(0.206), 😾(0.215), 😯(0.217), 😅(0.231), 😱(0.235), 😬(0.239), 😂(0.257), 😈(0.297), 😮(0.318), 🙉(0.344), 🙀(0.351), 😼(0.379), 😆(0.391), 😏(0.396), 😄(0.400), 😝(0.404), 🙈(0.408), 😸(0.410), 😺(0.417), 😁(0.419), 🙊(0.426), 😜(0.427), 😉(0.436), 🙏(0.436), 😌(0.444), 🙋(0.448), 😎(0.450), 🙆(0.463), 😃(0.496), 🙌(0.498), 😀(0.504), 😇(0.524), 😛(0.533), 😽(0.536), 😻(0.542), 😋(0.548), 😊(0.557), 😍(0.583), 😘(0.604), 😚(0.613), 😗(0.641), 😙(0.669),\n",
"---------------------------------------------------\n",
" 😖(0.000), 😫(0.018), 😔(0.040), 😷(0.042), 😞(0.043), 😭(0.061), 😓(0.065), 😪(0.066), 😣(0.081), 😴(0.082), 😤(0.087), 😡(0.098), 😨(0.104), 😠(0.105), 😰(0.109), 🙎(0.109), 😢(0.124), 🙅(0.125), 😶(0.128), 😧(0.134), 🙍(0.138), 😲(0.146), 😩(0.150), 😾(0.152), 😒(0.154), 😿(0.162), 😑(0.164), 😟(0.170), 😕(0.172), 😦(0.199), 😵(0.202), 😐(0.203), 😥(0.210), 😳(0.212), 😹(0.230), 🙇(0.240), 😅(0.245), 😬(0.270), 😱(0.272), 😯(0.289), 😂(0.293), 😈(0.345), 😮(0.378), 🙉(0.384), 😼(0.396), 🙀(0.399), 😺(0.412), 😆(0.418), 🙈(0.422), 😄(0.434), 😝(0.440), 🙊(0.449), 😁(0.449), 😸(0.456), 😌(0.457), 😜(0.464), 🙋(0.466), 😏(0.468), 😉(0.476), 😎(0.479), 🙆(0.496), 🙏(0.498), 🙌(0.511), 😀(0.523), 😃(0.524), 😽(0.530), 😛(0.544), 😇(0.544), 😻(0.556), 😋(0.570), 😊(0.570), 😍(0.591), 😘(0.607), 😚(0.616), 😗(0.633), 😙(0.670),\n",
"---------------------------------------------------\n",
" 😷(0.000), 😔(0.018), 😖(0.042), 😤(0.048), 😭(0.055), 😫(0.059), 😪(0.064), 😓(0.064), 😨(0.067), 😴(0.067), 😞(0.082), 🙅(0.084), 😶(0.089), 😧(0.107), 😠(0.111), 😣(0.115), 😲(0.116), 😢(0.126), 😑(0.129), 😡(0.138), 😰(0.140), 🙍(0.142), 😩(0.146), 🙎(0.148), 😒(0.148), 😿(0.148), 😾(0.160), 😕(0.165), 😦(0.170), 😟(0.174), 😐(0.174), 😳(0.188), 😵(0.193), 😥(0.210), 😹(0.227), 🙇(0.234), 😅(0.249), 😱(0.267), 😬(0.267), 😯(0.269), 😂(0.288), 😈(0.336), 😮(0.365), 🙉(0.379), 🙀(0.391), 😼(0.400), 😆(0.419), 😺(0.425), 🙈(0.427), 😄(0.432), 😝(0.437), 😁(0.449), 😸(0.449), 😏(0.450), 🙊(0.451), 😜(0.461), 😌(0.464), 🙋(0.470), 😉(0.472), 😎(0.479), 🙏(0.484), 🙆(0.495), 🙌(0.517), 😃(0.525), 😀(0.527), 😽(0.544), 😇(0.548), 😛(0.551), 😻(0.562), 😋(0.573), 😊(0.577), 😍(0.600), 😘(0.618), 😚(0.627), 😗(0.648), 😙(0.682),\n",
"---------------------------------------------------\n",
" 🙋(0.000), 😌(0.023), 🙊(0.031), 🙈(0.045), 😎(0.052), 🙌(0.053), 😀(0.057), 😁(0.059), 😆(0.065), 😼(0.070), 😃(0.073), 🙆(0.076), 😇(0.078), 😄(0.079), 😝(0.085), 😜(0.086), 😛(0.089), 😻(0.094), 😉(0.104), 😋(0.104), 😺(0.108), 😊(0.110), 😸(0.128), 🙉(0.129), 😽(0.136), 😍(0.139), 🙀(0.150), 😘(0.167), 😚(0.176), 😈(0.181), 😂(0.195), 😮(0.204), 😬(0.210), 🙏(0.211), 😱(0.216), 😅(0.222), 😗(0.226), 😙(0.231), 🙇(0.247), 😹(0.247), 😏(0.258), 😥(0.261), 😯(0.284), 😵(0.287), 😟(0.297), 😢(0.345), 😳(0.347), 😰(0.385), 😧(0.395), 😲(0.400), 😴(0.405), 😪(0.407), 😓(0.407), 😭(0.416), 🙎(0.424), 😞(0.447), 😨(0.448), 😶(0.452), 😔(0.453), 😫(0.461), 😖(0.466), 😷(0.470), 🙅(0.495), 😤(0.497), 😡(0.503), 😣(0.522), 😠(0.571), 😑(0.571), 🙍(0.603), 😩(0.614), 😒(0.617), 😾(0.618), 😿(0.618), 😦(0.623), 😐(0.626), 😕(0.635),\n",
"---------------------------------------------------\n",
" 😛(0.000), 😻(0.021), 😊(0.028), 🙌(0.037), 😀(0.048), 😇(0.049), 😍(0.050), 😋(0.063), 😘(0.078), 😽(0.084), 😚(0.087), 😌(0.089), 🙋(0.089), 😃(0.095), 🙊(0.118), 😎(0.118), 🙈(0.126), 🙆(0.130), 😁(0.141), 😙(0.142), 😗(0.145), 😺(0.145), 😆(0.154), 😼(0.155), 😜(0.158), 😄(0.163), 😝(0.167), 😉(0.169), 😸(0.200), 🙉(0.218), 🙀(0.235), 😈(0.270), 🙏(0.273), 😂(0.283), 😮(0.290), 😬(0.297), 😱(0.304), 😅(0.304), 😏(0.330), 😹(0.333), 🙇(0.334), 😥(0.344), 😵(0.373), 😯(0.374), 😟(0.378), 😢(0.426), 😳(0.436), 😰(0.456), 😧(0.482), 😲(0.487), 😓(0.488), 😴(0.488), 😪(0.488), 🙎(0.491), 😭(0.497), 😞(0.521), 😨(0.533), 😔(0.534), 😫(0.538), 😶(0.539), 😖(0.544), 😷(0.551), 😡(0.572), 😤(0.581), 🙅(0.581), 😣(0.594), 😠(0.648), 😑(0.657), 🙍(0.681), 😩(0.693), 😾(0.694), 😒(0.697), 😿(0.700), 😦(0.708), 😐(0.711), 😕(0.715),\n",
"---------------------------------------------------\n",
" 😬(0.000), 😱(0.014), 😂(0.024), 🙇(0.037), 😹(0.040), 😅(0.045), 😥(0.062), 😵(0.077), 😈(0.084), 😟(0.103), 😯(0.113), 🙉(0.114), 😮(0.131), 🙀(0.133), 😼(0.141), 😳(0.144), 😢(0.146), 😆(0.153), 😄(0.165), 😝(0.170), 🙈(0.171), 😁(0.182), 😧(0.185), 🙊(0.187), 😸(0.187), 😲(0.190), 😜(0.194), 😺(0.200), 😴(0.200), 😉(0.206), 😪(0.207), 😓(0.207), 😌(0.208), 🙋(0.210), 😎(0.212), 😭(0.214), 😰(0.217), 🙆(0.228), 😏(0.233), 😨(0.239), 🙏(0.241), 😶(0.243), 😔(0.251), 😃(0.258), 🙎(0.260), 🙌(0.261), 😞(0.261), 😀(0.266), 😷(0.267), 😫(0.270), 😖(0.270), 🙅(0.285), 😇(0.286), 😤(0.289), 😛(0.297), 😻(0.304), 😋(0.309), 😽(0.311), 😊(0.320), 😡(0.329), 😣(0.338), 😍(0.347), 😑(0.361), 😘(0.370), 😠(0.373), 😚(0.379), 🙍(0.406), 😩(0.413), 😿(0.413), 😦(0.414), 😒(0.415), 😗(0.416), 😐(0.417), 😾(0.422), 😕(0.432), 😙(0.435),\n",
"---------------------------------------------------\n",
" 😙(0.000), 😚(0.056), 😘(0.065), 😗(0.068), 😍(0.094), 😊(0.126), 😛(0.142), 😻(0.142), 😽(0.143), 😋(0.164), 😇(0.173), 🙌(0.178), 😀(0.184), 😃(0.222), 😌(0.228), 🙋(0.231), 😎(0.256), 😺(0.259), 🙊(0.260), 🙆(0.261), 🙈(0.264), 😁(0.281), 😼(0.295), 😜(0.295), 😆(0.296), 😉(0.302), 😄(0.303), 😝(0.306), 😸(0.335), 🙉(0.359), 🙀(0.375), 🙏(0.398), 😈(0.412), 😂(0.423), 😮(0.430), 😬(0.435), 😅(0.438), 😱(0.443), 😏(0.460), 😹(0.469), 🙇(0.473), 😥(0.479), 😟(0.509), 😵(0.510), 😯(0.515), 😢(0.557), 😰(0.574), 😳(0.576), 🙎(0.605), 😓(0.618), 😪(0.618), 😧(0.619), 😴(0.620), 😲(0.625), 😭(0.627), 😞(0.643), 😫(0.662), 😔(0.664), 😨(0.669), 😖(0.670), 😶(0.676), 😷(0.682), 😡(0.687), 😣(0.713), 😤(0.714), 🙅(0.717), 😠(0.773), 😑(0.792), 🙍(0.805), 😾(0.817), 😩(0.820), 😒(0.824), 😿(0.829), 😕(0.842), 😦(0.843), 😐(0.846),\n",
"---------------------------------------------------\n",
" 🙆(0.000), 😎(0.025), 😜(0.038), 😃(0.040), 😉(0.041), 😁(0.048), 😝(0.059), 😄(0.063), 🙊(0.064), 😸(0.074), 🙋(0.076), 😆(0.081), 😀(0.082), 😇(0.088), 😌(0.099), 😋(0.100), 🙌(0.102), 🙈(0.107), 😼(0.115), 🙉(0.119), 😻(0.121), 🙀(0.123), 😛(0.130), 😊(0.136), 🙏(0.144), 😍(0.169), 😈(0.171), 😮(0.175), 😺(0.182), 😽(0.201), 😏(0.201), 😘(0.204), 😂(0.207), 😚(0.211), 😬(0.228), 😱(0.229), 😅(0.252), 😙(0.261), 🙇(0.262), 😹(0.268), 😯(0.273), 😗(0.274), 😥(0.287), 😵(0.303), 😟(0.326), 😳(0.348), 😢(0.372), 😧(0.408), 😲(0.410), 😰(0.428), 😴(0.428), 😪(0.434), 😓(0.434), 😭(0.442), 😨(0.463), 😶(0.464), 🙎(0.469), 😔(0.478), 😞(0.483), 😫(0.494), 😷(0.495), 😖(0.496), 🙅(0.507), 😤(0.515), 😡(0.546), 😣(0.560), 😑(0.583), 😠(0.600), 🙍(0.633), 😦(0.636), 😐(0.639), 😩(0.640), 😿(0.641), 😒(0.643), 😾(0.649), 😕(0.660),\n",
"---------------------------------------------------\n",
" 🙅(0.000), 😤(0.042), 😶(0.044), 😨(0.049), 😑(0.077), 😷(0.084), 😔(0.092), 😲(0.097), 😧(0.100), 😴(0.106), 😭(0.112), 😪(0.121), 😓(0.122), 😖(0.125), 😦(0.130), 😐(0.132), 😫(0.143), 😿(0.149), 😠(0.156), 😒(0.165), 😞(0.165), 😳(0.167), 😩(0.167), 😢(0.168), 😕(0.177), 🙍(0.179), 😣(0.191), 😾(0.198), 😵(0.208), 😟(0.212), 😰(0.215), 😡(0.219), 🙎(0.230), 😥(0.238), 😹(0.248), 🙇(0.248), 😯(0.252), 😅(0.279), 😱(0.280), 😬(0.285), 😂(0.302), 😈(0.339), 😮(0.356), 🙉(0.388), 🙀(0.393), 😼(0.426), 😏(0.428), 😆(0.437), 😄(0.445), 😝(0.448), 😸(0.452), 🙈(0.455), 😁(0.464), 😺(0.466), 😜(0.470), 🙏(0.472), 🙊(0.472), 😉(0.478), 😌(0.492), 🙋(0.495), 😎(0.495), 🙆(0.507), 😃(0.541), 🙌(0.545), 😀(0.551), 😇(0.570), 😛(0.581), 😽(0.584), 😻(0.589), 😋(0.594), 😊(0.604), 😍(0.630), 😘(0.652), 😚(0.661), 😗(0.690), 😙(0.717),\n",
"---------------------------------------------------\n",
" 🙉(0.000), 🙀(0.034), 😈(0.053), 😄(0.059), 😝(0.060), 😆(0.064), 😸(0.074), 😮(0.079), 😁(0.081), 😜(0.083), 😼(0.086), 😂(0.091), 😉(0.093), 🙊(0.099), 😎(0.110), 🙈(0.111), 😱(0.112), 😬(0.114), 🙆(0.119), 🙋(0.129), 😌(0.139), 🙏(0.143), 🙇(0.145), 😅(0.148), 😹(0.154), 😃(0.155), 😯(0.158), 😏(0.160), 😥(0.176), 😀(0.177), 😺(0.180), 🙌(0.181), 😵(0.186), 😇(0.193), 😋(0.212), 😟(0.216), 😛(0.218), 😻(0.219), 😳(0.229), 😊(0.235), 😽(0.259), 😢(0.260), 😍(0.266), 😧(0.289), 😲(0.291), 😘(0.296), 😚(0.304), 😴(0.312), 😪(0.320), 😓(0.320), 😭(0.327), 😰(0.327), 😨(0.344), 😶(0.344), 😗(0.355), 😙(0.359), 😔(0.363), 🙎(0.370), 😞(0.375), 😷(0.379), 😫(0.384), 😖(0.384), 🙅(0.388), 😤(0.397), 😡(0.442), 😣(0.452), 😑(0.464), 😠(0.487), 😦(0.517), 🙍(0.519), 😐(0.519), 😿(0.523), 😩(0.525), 😒(0.527), 😾(0.536), 😕(0.543),\n",
"---------------------------------------------------\n",
" 😇(0.000), 😀(0.022), 😋(0.027), 😻(0.034), 🙌(0.045), 😊(0.048), 😛(0.049), 😃(0.050), 🙋(0.078), 😍(0.081), 😎(0.084), 🙆(0.088), 😌(0.090), 🙊(0.099), 😁(0.112), 😘(0.116), 😜(0.122), 🙈(0.123), 😚(0.123), 😉(0.129), 😽(0.132), 😄(0.134), 😆(0.134), 😝(0.136), 😼(0.148), 😸(0.162), 😺(0.167), 😙(0.173), 😗(0.189), 🙉(0.193), 🙀(0.205), 🙏(0.229), 😈(0.246), 😮(0.259), 😂(0.269), 😬(0.286), 😏(0.288), 😱(0.290), 😅(0.300), 🙇(0.322), 😹(0.324), 😥(0.338), 😯(0.350), 😵(0.363), 😟(0.375), 😳(0.418), 😢(0.423), 😰(0.463), 😧(0.471), 😲(0.475), 😴(0.483), 😪(0.485), 😓(0.485), 😭(0.494), 🙎(0.500), 😨(0.524), 😞(0.525), 😶(0.528), 😔(0.531), 😫(0.539), 😖(0.544), 😷(0.548), 🙅(0.570), 😤(0.574), 😡(0.581), 😣(0.600), 😑(0.647), 😠(0.649), 🙍(0.681), 😩(0.692), 😒(0.695), 😾(0.696), 😿(0.696), 😦(0.699), 😐(0.702), 😕(0.713),\n",
"---------------------------------------------------\n",
" 😿(0.000), 😒(0.030), 😕(0.031), 😩(0.038), 🙍(0.069), 😦(0.075), 😠(0.079), 😐(0.080), 😾(0.080), 😑(0.095), 😤(0.127), 😷(0.148), 🙅(0.149), 😣(0.159), 😖(0.162), 😔(0.166), 😫(0.174), 😨(0.182), 😶(0.190), 😞(0.198), 😡(0.198), 😭(0.203), 😪(0.212), 😓(0.212), 😴(0.213), 😧(0.237), 😲(0.240), 🙎(0.258), 😰(0.269), 😢(0.274), 😳(0.313), 😟(0.322), 😵(0.338), 😥(0.358), 😹(0.374), 🙇(0.379), 😅(0.397), 😯(0.398), 😱(0.412), 😬(0.413), 😂(0.434), 😈(0.478), 😮(0.501), 🙉(0.523), 🙀(0.532), 😼(0.548), 😆(0.566), 😺(0.572), 🙈(0.576), 😏(0.576), 😄(0.578), 😝(0.582), 😸(0.591), 😁(0.595), 🙊(0.599), 😜(0.605), 😌(0.612), 😉(0.615), 🙏(0.618), 🙋(0.618), 😎(0.626), 🙆(0.641), 🙌(0.666), 😃(0.671), 😀(0.675), 😽(0.691), 😇(0.696), 😛(0.700), 😻(0.711), 😋(0.721), 😊(0.725), 😍(0.749), 😘(0.766), 😚(0.775), 😗(0.794), 😙(0.829),\n",
"---------------------------------------------------\n",
" 😲(0.000), 😧(0.015), 😶(0.054), 😨(0.058), 😴(0.071), 😳(0.074), 😭(0.092), 😪(0.094), 😓(0.096), 🙅(0.097), 😢(0.102), 😔(0.108), 😤(0.113), 😵(0.115), 😷(0.116), 😟(0.133), 😖(0.146), 😥(0.150), 🙇(0.153), 😹(0.156), 😫(0.158), 😯(0.159), 😞(0.169), 😑(0.173), 😱(0.184), 😰(0.186), 😬(0.190), 😅(0.190), 😂(0.206), 🙎(0.217), 😠(0.224), 😦(0.227), 😣(0.227), 😐(0.229), 😿(0.240), 😡(0.241), 😈(0.242), 😒(0.250), 😩(0.250), 🙍(0.254), 😮(0.261), 😕(0.264), 😾(0.272), 🙉(0.291), 🙀(0.296), 😼(0.332), 😏(0.338), 😆(0.341), 😄(0.348), 😝(0.351), 😸(0.355), 🙈(0.361), 😁(0.368), 😜(0.373), 🙊(0.376), 🙏(0.378), 😺(0.379), 😉(0.381), 😎(0.398), 😌(0.398), 🙋(0.400), 🙆(0.410), 😃(0.444), 🙌(0.451), 😀(0.456), 😇(0.475), 😛(0.487), 😻(0.494), 😽(0.496), 😋(0.498), 😊(0.510), 😍(0.537), 😘(0.560), 😚(0.569), 😗(0.601), 😙(0.625),\n",
"---------------------------------------------------\n",
" 😶(0.000), 😨(0.024), 🙅(0.044), 😲(0.054), 😧(0.057), 😤(0.067), 😴(0.080), 😔(0.089), 😷(0.089), 😭(0.093), 😪(0.100), 😓(0.102), 😑(0.120), 😳(0.124), 😖(0.128), 😢(0.135), 😫(0.143), 😞(0.161), 😵(0.166), 😦(0.173), 😐(0.175), 😟(0.175), 😠(0.185), 😿(0.190), 😰(0.198), 😥(0.198), 😒(0.202), 😩(0.203), 😣(0.204), 🙇(0.206), 😹(0.207), 😯(0.209), 🙍(0.211), 😕(0.215), 🙎(0.220), 😡(0.226), 😾(0.230), 😱(0.237), 😅(0.239), 😬(0.243), 😂(0.259), 😈(0.295), 😮(0.313), 🙉(0.344), 🙀(0.349), 😼(0.384), 😏(0.387), 😆(0.394), 😄(0.402), 😝(0.404), 😸(0.408), 🙈(0.413), 😁(0.421), 😜(0.427), 😺(0.427), 🙏(0.429), 🙊(0.429), 😉(0.435), 😌(0.450), 😎(0.452), 🙋(0.452), 🙆(0.464), 😃(0.497), 🙌(0.503), 😀(0.508), 😇(0.528), 😛(0.539), 😽(0.545), 😻(0.547), 😋(0.551), 😊(0.563), 😍(0.589), 😘(0.611), 😚(0.620), 😗(0.650), 😙(0.676),\n",
"---------------------------------------------------\n",
" 😵(0.000), 🙇(0.041), 😹(0.041), 😥(0.043), 😟(0.058), 😱(0.074), 😬(0.077), 😅(0.079), 😢(0.082), 😳(0.084), 😂(0.096), 😯(0.106), 😧(0.109), 😲(0.115), 😴(0.126), 😪(0.136), 😓(0.137), 😭(0.142), 😈(0.144), 😨(0.162), 😶(0.166), 😰(0.172), 😔(0.178), 😮(0.178), 🙉(0.186), 😷(0.193), 🙀(0.198), 😞(0.200), 😖(0.202), 😫(0.204), 🙅(0.208), 😤(0.213), 🙎(0.215), 😼(0.218), 😆(0.230), 😄(0.240), 😝(0.244), 🙈(0.247), 😸(0.256), 😁(0.258), 🙊(0.264), 😺(0.267), 😜(0.268), 😏(0.273), 😡(0.273), 😣(0.276), 😉(0.278), 😌(0.284), 😑(0.284), 🙋(0.287), 😎(0.289), 🙏(0.297), 😠(0.302), 🙆(0.303), 😃(0.335), 🙍(0.335), 😦(0.337), 🙌(0.337), 😿(0.338), 😩(0.339), 😐(0.340), 😒(0.341), 😀(0.343), 😾(0.351), 😕(0.358), 😇(0.363), 😛(0.373), 😻(0.381), 😽(0.382), 😋(0.386), 😊(0.396), 😍(0.423), 😘(0.445), 😚(0.454), 😗(0.487), 😙(0.510),\n",
"---------------------------------------------------\n",
" 😸(0.000), 😉(0.034), 😜(0.042), 😝(0.047), 😄(0.056), 🙀(0.059), 😁(0.069), 🙉(0.074), 🙆(0.074), 😎(0.082), 😆(0.086), 🙏(0.086), 🙊(0.100), 😮(0.104), 😈(0.114), 😃(0.114), 😼(0.125), 🙋(0.128), 😏(0.131), 🙈(0.135), 😌(0.147), 😀(0.153), 😇(0.162), 😂(0.164), 🙌(0.169), 😋(0.174), 😱(0.184), 😬(0.187), 😻(0.194), 😛(0.200), 😯(0.208), 😊(0.210), 😺(0.215), 🙇(0.216), 😅(0.222), 😹(0.226), 😍(0.242), 😥(0.249), 😵(0.256), 😽(0.263), 😘(0.276), 😚(0.284), 😳(0.288), 😟(0.290), 😢(0.332), 😙(0.335), 😗(0.345), 😧(0.355), 😲(0.355), 😴(0.382), 😪(0.391), 😓(0.392), 😭(0.398), 😰(0.401), 😶(0.408), 😨(0.410), 😔(0.434), 🙎(0.444), 😞(0.448), 😷(0.449), 🙅(0.452), 😖(0.456), 😫(0.457), 😤(0.464), 😡(0.516), 😣(0.526), 😑(0.527), 😠(0.558), 😦(0.581), 😐(0.583), 🙍(0.591), 😿(0.591), 😩(0.595), 😒(0.596), 😾(0.607), 😕(0.612),\n",
"---------------------------------------------------\n",
" 😧(0.000), 😲(0.015), 😨(0.056), 😴(0.057), 😶(0.057), 😭(0.079), 😪(0.080), 😳(0.080), 😓(0.082), 😢(0.088), 😔(0.097), 🙅(0.100), 😷(0.107), 😵(0.109), 😤(0.110), 😟(0.122), 😖(0.134), 😥(0.142), 😫(0.145), 🙇(0.149), 😹(0.149), 😞(0.155), 😯(0.163), 😰(0.171), 😑(0.176), 😱(0.181), 😅(0.182), 😬(0.185), 🙎(0.202), 😂(0.202), 😣(0.215), 😠(0.217), 😡(0.228), 😦(0.229), 😐(0.231), 😿(0.237), 😈(0.241), 😩(0.245), 😒(0.245), 🙍(0.247), 😕(0.260), 😮(0.263), 😾(0.265), 🙉(0.289), 🙀(0.296), 😼(0.326), 😆(0.337), 😏(0.344), 😄(0.346), 😝(0.349), 😸(0.355), 🙈(0.356), 😁(0.365), 😺(0.371), 😜(0.372), 🙊(0.372), 😉(0.380), 🙏(0.381), 😌(0.393), 🙋(0.395), 😎(0.395), 🙆(0.408), 😃(0.441), 🙌(0.446), 😀(0.451), 😇(0.471), 😛(0.482), 😽(0.488), 😻(0.490), 😋(0.494), 😊(0.505), 😍(0.531), 😘(0.553), 😚(0.563), 😗(0.594), 😙(0.619),\n",
"---------------------------------------------------\n",
" 😮(0.000), 😈(0.050), 🙀(0.055), 🙉(0.079), 😏(0.102), 😸(0.104), 😯(0.106), 😂(0.108), 🙏(0.119), 😱(0.120), 😝(0.124), 😄(0.127), 😬(0.131), 😉(0.137), 😜(0.138), 😆(0.142), 🙇(0.145), 😁(0.149), 😹(0.161), 😼(0.164), 🙊(0.174), 😅(0.175), 😎(0.175), 🙆(0.175), 😵(0.178), 😥(0.186), 🙈(0.190), 😳(0.190), 🙋(0.204), 😃(0.215), 😌(0.217), 😟(0.225), 😀(0.246), 🙌(0.255), 😺(0.257), 😇(0.259), 😢(0.259), 😲(0.261), 😧(0.263), 😋(0.275), 😻(0.288), 😛(0.290), 😴(0.299), 😊(0.304), 😪(0.312), 😶(0.313), 😓(0.313), 😭(0.318), 😨(0.318), 😍(0.336), 😽(0.337), 😰(0.343), 😔(0.351), 🙅(0.356), 😷(0.365), 😘(0.368), 😤(0.374), 😚(0.376), 😞(0.378), 😖(0.378), 😫(0.382), 🙎(0.387), 😙(0.430), 😗(0.431), 😑(0.431), 😡(0.450), 😣(0.453), 😠(0.475), 😦(0.484), 😐(0.485), 😿(0.501), 🙍(0.507), 😩(0.508), 😒(0.509), 😕(0.524), 😾(0.525),\n",
"---------------------------------------------------\n",
" 😽(0.000), 😛(0.084), 😘(0.088), 😍(0.095), 😚(0.096), 🙌(0.099), 😊(0.102), 😻(0.104), 😗(0.106), 😺(0.119), 😌(0.121), 😀(0.124), 😇(0.132), 🙋(0.136), 😙(0.143), 😋(0.147), 🙈(0.150), 🙊(0.166), 😃(0.173), 😼(0.179), 😎(0.183), 😁(0.195), 😆(0.196), 🙆(0.201), 😄(0.215), 😜(0.221), 😝(0.221), 😉(0.236), 🙉(0.259), 😸(0.263), 🙀(0.284), 😂(0.303), 😅(0.306), 😈(0.307), 😬(0.311), 😱(0.321), 😮(0.337), 😹(0.341), 🙏(0.343), 😥(0.346), 🙇(0.347), 😟(0.374), 😵(0.382), 😏(0.394), 😯(0.405), 😢(0.421), 😰(0.432), 😳(0.455), 🙎(0.462), 😓(0.480), 😪(0.480), 😴(0.484), 😧(0.488), 😭(0.490), 😲(0.496), 😞(0.502), 😫(0.521), 😔(0.526), 😖(0.530), 😨(0.536), 😷(0.544), 😡(0.544), 😶(0.545), 😣(0.570), 😤(0.578), 🙅(0.584), 😠(0.632), 😑(0.658), 🙍(0.663), 😾(0.675), 😩(0.679), 😒(0.684), 😿(0.691), 😕(0.702), 😦(0.708), 😐(0.711),\n",
"---------------------------------------------------\n",
" 🙀(0.000), 🙉(0.034), 😮(0.055), 😈(0.055), 😸(0.059), 😝(0.069), 😄(0.072), 😜(0.085), 😉(0.087), 😆(0.089), 😁(0.095), 😂(0.109), 🙏(0.112), 😼(0.117), 🙊(0.120), 😎(0.120), 🙆(0.123), 😏(0.127), 😱(0.128), 😬(0.133), 🙈(0.139), 🙋(0.150), 😯(0.151), 🙇(0.159), 😃(0.162), 😌(0.164), 😹(0.171), 😅(0.172), 😀(0.191), 😥(0.195), 😵(0.198), 🙌(0.200), 😇(0.205), 😺(0.212), 😋(0.221), 😳(0.229), 😻(0.234), 😛(0.235), 😟(0.236), 😊(0.250), 😢(0.276), 😍(0.281), 😽(0.284), 😲(0.296), 😧(0.296), 😘(0.313), 😚(0.322), 😴(0.324), 😪(0.334), 😓(0.335), 😭(0.341), 😶(0.349), 😰(0.350), 😨(0.351), 😙(0.375), 😔(0.376), 😗(0.376), 😷(0.391), 🙅(0.393), 🙎(0.393), 😞(0.393), 😖(0.399), 😫(0.401), 😤(0.406), 😡(0.463), 😑(0.469), 😣(0.470), 😠(0.500), 😦(0.522), 😐(0.524), 😿(0.532), 🙍(0.533), 😩(0.536), 😒(0.538), 😾(0.550), 😕(0.554),\n",
"---------------------------------------------------\n",
" 🙇(0.000), 😹(0.020), 😱(0.033), 😬(0.037), 😵(0.041), 😥(0.044), 😂(0.055), 😅(0.056), 😟(0.081), 😯(0.096), 😈(0.106), 😳(0.109), 😢(0.117), 😮(0.145), 🙉(0.145), 😧(0.149), 😲(0.153), 🙀(0.159), 😴(0.167), 😪(0.175), 😓(0.176), 😼(0.179), 😭(0.182), 😆(0.189), 😰(0.199), 😄(0.199), 😨(0.202), 😝(0.203), 😶(0.206), 🙈(0.209), 😸(0.216), 😁(0.217), 😔(0.218), 🙊(0.224), 😜(0.227), 😷(0.234), 😺(0.234), 😞(0.235), 😉(0.238), 😖(0.240), 😫(0.241), 🙎(0.243), 😏(0.244), 😌(0.245), 🙋(0.247), 😎(0.248), 🙅(0.248), 😤(0.253), 🙏(0.262), 🙆(0.262), 😃(0.294), 🙌(0.298), 😀(0.303), 😡(0.306), 😣(0.312), 😇(0.322), 😑(0.325), 😛(0.334), 😻(0.341), 😠(0.342), 😋(0.346), 😽(0.347), 😊(0.357), 🙍(0.374), 😦(0.377), 😿(0.379), 😩(0.380), 😐(0.380), 😒(0.382), 😍(0.384), 😾(0.391), 😕(0.398), 😘(0.407), 😚(0.417), 😗(0.452), 😙(0.473),\n",
"---------------------------------------------------\n",
" 😟(0.000), 😥(0.041), 😢(0.048), 😵(0.058), 😹(0.065), 😅(0.075), 🙇(0.081), 😬(0.103), 😱(0.108), 😓(0.111), 😪(0.111), 😴(0.111), 😰(0.118), 😭(0.119), 😧(0.122), 😂(0.126), 😳(0.132), 😲(0.133), 😔(0.157), 😞(0.158), 🙎(0.162), 😨(0.163), 😯(0.164), 😫(0.168), 😖(0.170), 😷(0.174), 😶(0.175), 😈(0.184), 😤(0.205), 🙅(0.212), 🙉(0.216), 😮(0.225), 😼(0.227), 😡(0.227), 🙀(0.236), 😣(0.236), 😆(0.248), 🙈(0.254), 😺(0.255), 😄(0.264), 😝(0.270), 😠(0.275), 🙊(0.279), 😁(0.279), 😑(0.285), 😌(0.290), 😸(0.290), 😜(0.294), 🙋(0.297), 😉(0.308), 🙍(0.308), 😎(0.309), 😩(0.317), 😒(0.321), 😿(0.322), 😾(0.323), 😏(0.324), 🙆(0.326), 😦(0.334), 😐(0.338), 😕(0.338), 🙏(0.341), 🙌(0.344), 😃(0.353), 😀(0.354), 😽(0.374), 😇(0.375), 😛(0.378), 😻(0.388), 😋(0.400), 😊(0.403), 😍(0.426), 😘(0.445), 😚(0.454), 😗(0.479), 😙(0.509),\n",
"---------------------------------------------------\n",
" 😯(0.000), 😳(0.086), 🙇(0.096), 😱(0.099), 😈(0.104), 😵(0.106), 😮(0.106), 😂(0.108), 😬(0.113), 😹(0.115), 😥(0.137), 😅(0.150), 🙀(0.151), 🙉(0.158), 😲(0.159), 😧(0.163), 😟(0.164), 😏(0.181), 😢(0.182), 😴(0.207), 😸(0.208), 😶(0.209), 😝(0.216), 😄(0.216), 😨(0.217), 😆(0.220), 🙏(0.220), 😪(0.224), 😓(0.225), 😼(0.226), 😭(0.228), 😜(0.235), 😉(0.238), 😁(0.238), 🙅(0.252), 🙊(0.256), 🙈(0.256), 😔(0.257), 😎(0.267), 😷(0.269), 😤(0.272), 🙆(0.273), 😰(0.277), 🙋(0.284), 😖(0.289), 😌(0.290), 😫(0.295), 😞(0.296), 😺(0.304), 😃(0.311), 🙎(0.319), 😑(0.325), 😀(0.334), 🙌(0.337), 😇(0.350), 😣(0.368), 😋(0.369), 😡(0.371), 😛(0.374), 😻(0.376), 😦(0.378), 😠(0.380), 😐(0.380), 😊(0.392), 😿(0.398), 😽(0.405), 😩(0.408), 😒(0.408), 🙍(0.410), 😍(0.422), 😕(0.423), 😾(0.428), 😘(0.451), 😚(0.460), 😗(0.506), 😙(0.515),\n",
"---------------------------------------------------\n",
" 😦(0.000), 😐(0.005), 😑(0.053), 😿(0.075), 😕(0.103), 😒(0.105), 😩(0.114), 🙅(0.130), 😤(0.130), 🙍(0.143), 😠(0.145), 😾(0.156), 😷(0.170), 😶(0.173), 😨(0.175), 😔(0.187), 😖(0.199), 😫(0.214), 😣(0.220), 😭(0.220), 😴(0.224), 😲(0.227), 😧(0.229), 😪(0.230), 😓(0.231), 😞(0.240), 😡(0.259), 😢(0.287), 😳(0.294), 🙎(0.305), 😰(0.307), 😟(0.334), 😵(0.337), 😥(0.365), 😹(0.376), 🙇(0.377), 😯(0.378), 😅(0.405), 😱(0.410), 😬(0.414), 😂(0.431), 😈(0.468), 😮(0.484), 🙉(0.517), 🙀(0.522), 😏(0.549), 😼(0.554), 😆(0.566), 😄(0.574), 😝(0.577), 😸(0.581), 🙈(0.583), 😺(0.589), 😁(0.594), 🙏(0.597), 😜(0.600), 🙊(0.601), 😉(0.608), 😌(0.619), 🙋(0.623), 😎(0.624), 🙆(0.636), 😃(0.670), 🙌(0.673), 😀(0.680), 😇(0.699), 😽(0.708), 😛(0.708), 😻(0.717), 😋(0.723), 😊(0.733), 😍(0.758), 😘(0.778), 😚(0.787), 😗(0.813), 😙(0.843),\n",
"---------------------------------------------------\n",
" 🙍(0.000), 😾(0.019), 😩(0.032), 😠(0.033), 😒(0.040), 😕(0.053), 😿(0.069), 😣(0.103), 😖(0.138), 😡(0.141), 😷(0.142), 😫(0.143), 😦(0.143), 😤(0.144), 😐(0.148), 😑(0.150), 😔(0.157), 😞(0.162), 🙅(0.179), 😭(0.192), 😨(0.197), 😓(0.199), 😪(0.200), 😴(0.209), 🙎(0.211), 😶(0.211), 😰(0.232), 😧(0.247), 😲(0.254), 😢(0.261), 😟(0.308), 😳(0.327), 😵(0.335), 😥(0.347), 😹(0.366), 🙇(0.374), 😅(0.383), 😬(0.406), 😱(0.407), 😯(0.410), 😂(0.428), 😈(0.478), 😮(0.507), 🙉(0.519), 🙀(0.533), 😼(0.534), 😺(0.546), 😆(0.555), 🙈(0.559), 😄(0.571), 😝(0.576), 🙊(0.586), 😁(0.586), 😸(0.591), 😏(0.591), 😌(0.594), 😜(0.600), 🙋(0.603), 😉(0.612), 😎(0.616), 🙏(0.626), 🙆(0.633), 🙌(0.648), 😀(0.660), 😃(0.661), 😽(0.663), 😛(0.681), 😇(0.681), 😻(0.693), 😊(0.707), 😋(0.707), 😍(0.728), 😘(0.742), 😚(0.751), 😗(0.765), 😙(0.805),\n",
"---------------------------------------------------\n",
" 😺(0.000), 🙈(0.080), 😌(0.086), 😼(0.095), 🙋(0.108), 😽(0.119), 🙊(0.121), 🙌(0.123), 😆(0.130), 😛(0.145), 😀(0.147), 😁(0.149), 😎(0.157), 😄(0.159), 😻(0.163), 😇(0.167), 😝(0.168), 😊(0.173), 😃(0.179), 🙉(0.180), 😜(0.181), 🙆(0.182), 😍(0.187), 😅(0.189), 😋(0.193), 😘(0.197), 😂(0.197), 😬(0.200), 😉(0.201), 😚(0.206), 😱(0.212), 🙀(0.212), 😸(0.215), 😈(0.216), 😗(0.224), 😹(0.226), 😥(0.229), 🙇(0.234), 😟(0.255), 😮(0.257), 😙(0.259), 😵(0.267), 🙏(0.301), 😢(0.302), 😯(0.304), 😰(0.317), 😏(0.336), 😳(0.343), 🙎(0.349), 😓(0.361), 😪(0.362), 😴(0.366), 😭(0.371), 😧(0.371), 😲(0.379), 😞(0.385), 😫(0.403), 😔(0.407), 😖(0.412), 😨(0.417), 😷(0.425), 😶(0.427), 😡(0.431), 😣(0.455), 😤(0.459), 🙅(0.466), 😠(0.514), 😑(0.540), 🙍(0.546), 😾(0.558), 😩(0.561), 😒(0.566), 😿(0.572), 😕(0.584), 😦(0.589), 😐(0.593),\n",
"---------------------------------------------------\n",
" 😾(0.000), 🙍(0.019), 😩(0.042), 😠(0.049), 😒(0.050), 😕(0.058), 😿(0.080), 😣(0.109), 😡(0.145), 😖(0.152), 😦(0.156), 😫(0.156), 😷(0.160), 😐(0.160), 😤(0.163), 😑(0.166), 😞(0.174), 😔(0.174), 🙅(0.198), 😭(0.209), 😨(0.215), 😓(0.215), 😪(0.216), 🙎(0.219), 😴(0.226), 😶(0.230), 😰(0.243), 😧(0.265), 😲(0.272), 😢(0.277), 😟(0.323), 😳(0.345), 😵(0.351), 😥(0.362), 😹(0.382), 🙇(0.391), 😅(0.398), 😬(0.422), 😱(0.423), 😯(0.428), 😂(0.444), 😈(0.495), 😮(0.525), 🙉(0.536), 😼(0.548), 🙀(0.550), 😺(0.558), 😆(0.571), 🙈(0.574), 😄(0.586), 😝(0.592), 🙊(0.601), 😁(0.602), 😸(0.607), 😌(0.608), 😏(0.609), 😜(0.616), 🙋(0.618), 😉(0.628), 😎(0.632), 🙏(0.644), 🙆(0.649), 🙌(0.662), 😀(0.675), 😽(0.675), 😃(0.676), 😛(0.694), 😇(0.696), 😻(0.707), 😊(0.721), 😋(0.722), 😍(0.741), 😘(0.755), 😚(0.764), 😗(0.776), 😙(0.817),\n",
"---------------------------------------------------\n",
" 😼(0.000), 🙈(0.031), 😆(0.040), 🙊(0.055), 😌(0.067), 😁(0.069), 🙋(0.070), 😄(0.070), 😝(0.080), 🙉(0.086), 😎(0.092), 😺(0.095), 😜(0.099), 🙆(0.115), 🙀(0.117), 😉(0.118), 🙌(0.119), 😸(0.125), 😀(0.127), 😈(0.129), 😂(0.129), 😃(0.132), 😬(0.141), 😇(0.148), 😱(0.149), 😅(0.152), 😛(0.155), 😻(0.163), 😮(0.164), 😋(0.173), 😹(0.178), 🙇(0.179), 😊(0.179), 😽(0.179), 😥(0.191), 😍(0.205), 🙏(0.210), 😵(0.218), 😯(0.226), 😟(0.227), 😘(0.230), 😚(0.239), 😏(0.242), 😢(0.275), 😗(0.280), 😳(0.282), 😙(0.295), 😰(0.319), 😧(0.326), 😲(0.332), 😴(0.335), 😪(0.337), 😓(0.337), 😭(0.346), 🙎(0.358), 😞(0.378), 😨(0.379), 😔(0.383), 😶(0.384), 😫(0.392), 😖(0.396), 😷(0.400), 🙅(0.426), 😤(0.427), 😡(0.437), 😣(0.454), 😠(0.501), 😑(0.502), 🙍(0.534), 😩(0.544), 😒(0.547), 😾(0.548), 😿(0.548), 😦(0.554), 😐(0.557), 😕(0.565),\n",
"---------------------------------------------------\n",
" 🙎(0.000), 😰(0.044), 😞(0.067), 😡(0.082), 😫(0.092), 😖(0.109), 😣(0.111), 😓(0.122), 😪(0.124), 😭(0.128), 😔(0.138), 😢(0.139), 😴(0.147), 😷(0.148), 😟(0.162), 😠(0.184), 😤(0.195), 😨(0.197), 😥(0.201), 😧(0.202), 🙍(0.211), 😵(0.215), 😲(0.217), 😾(0.219), 😶(0.220), 😅(0.222), 😹(0.226), 🙅(0.230), 😩(0.234), 😒(0.241), 🙇(0.243), 😿(0.258), 😕(0.259), 😬(0.260), 😳(0.263), 😱(0.268), 😑(0.273), 😂(0.285), 😦(0.305), 😐(0.310), 😯(0.319), 😈(0.344), 😺(0.349), 😼(0.358), 🙉(0.370), 🙈(0.379), 😮(0.387), 😆(0.388), 🙀(0.393), 😄(0.410), 😌(0.410), 🙊(0.413), 😝(0.417), 😁(0.421), 🙋(0.424), 😜(0.442), 😸(0.444), 😎(0.448), 😉(0.457), 🙌(0.462), 😽(0.462), 🙆(0.469), 😀(0.479), 😏(0.486), 😃(0.490), 😛(0.491), 😇(0.500), 🙏(0.502), 😻(0.506), 😊(0.518), 😋(0.527), 😍(0.535), 😘(0.546), 😚(0.554), 😗(0.560), 😙(0.605),\n",
"---------------------------------------------------\n",
" 😗(0.000), 😙(0.068), 😚(0.072), 😘(0.076), 😽(0.106), 😍(0.112), 😊(0.141), 😛(0.145), 😻(0.154), 🙌(0.177), 😇(0.189), 😋(0.189), 😀(0.192), 😌(0.216), 😺(0.224), 🙋(0.226), 😃(0.238), 🙈(0.250), 🙊(0.257), 😎(0.263), 🙆(0.274), 😼(0.280), 😁(0.283), 😆(0.290), 😜(0.303), 😄(0.304), 😝(0.309), 😉(0.314), 😸(0.345), 🙉(0.355), 🙀(0.376), 😈(0.405), 😂(0.407), 😅(0.411), 😬(0.416), 🙏(0.417), 😱(0.425), 😮(0.431), 😹(0.446), 🙇(0.452), 😥(0.452), 😏(0.475), 😟(0.479), 😵(0.487), 😯(0.506), 😢(0.526), 😰(0.533), 😳(0.559), 🙎(0.560), 😓(0.584), 😪(0.585), 😴(0.589), 😧(0.594), 😭(0.594), 😲(0.601), 😞(0.603), 😫(0.623), 😔(0.630), 😖(0.633), 😨(0.641), 😡(0.642), 😷(0.648), 😶(0.650), 😣(0.670), 😤(0.683), 🙅(0.690), 😠(0.734), 😑(0.764), 🙍(0.765), 😾(0.776), 😩(0.782), 😒(0.787), 😿(0.794), 😕(0.805), 😦(0.813), 😐(0.817),\n",
"---------------------------------------------------\n"
]
}
],
"source": [
"#test set\n",
"emojis = ed.list_emoticon_emojis\n",
"for e in emojis:\n",
" print(emoji_neighbourhood_with_distance(e,emojis))\n",
" print(\"---------------------------------------------------\") "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Prediction Distance"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"#### Read in stored sentiment predictions"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>Unnamed: 0</th>\n",
" <th>text</th>\n",
" <th>teacher</th>\n",
" <th>teacher_sentiment</th>\n",
" <th>predict</th>\n",
" <th>predicted_sentiment</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>35671</td>\n",
" <td>I feel like I care so much more in every situa...</td>\n",
" <td>😂</td>\n",
" <td>[0.46813021474490496, 0.24716181096977158, 0.2...</td>\n",
" <td>😢</td>\n",
" <td>[0.3881330192089081, 0.34921327233314514, 0.24...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>25683</td>\n",
" <td>I did not meat to add that '2' there...havent ...</td>\n",
" <td>😂</td>\n",
" <td>[0.46813021474490496, 0.24716181096977158, 0.2...</td>\n",
" <td>😂</td>\n",
" <td>[0.477517306804657, 0.2263115793466568, 0.2805...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>8985</td>\n",
" <td>never…</td>\n",
" <td>😊</td>\n",
" <td>[0.7040175768989329, 0.059322033898305086, 0.2...</td>\n",
" <td>😂</td>\n",
" <td>[0.4780172109603882, 0.24580059945583344, 0.25...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>5410</td>\n",
" <td>Lmao on me!!! Wtf was he supposed to say</td>\n",
" <td>😂</td>\n",
" <td>[0.46813021474490496, 0.24716181096977158, 0.2...</td>\n",
" <td>😭</td>\n",
" <td>[0.3319989740848541, 0.38802555203437805, 0.23...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>62611</td>\n",
" <td>This dude always help me get through my schoo...</td>\n",
" <td>😊</td>\n",
" <td>[0.7040175768989329, 0.059322033898305086, 0.2...</td>\n",
" <td>😂</td>\n",
" <td>[0.471467524766922, 0.19387008249759674, 0.299...</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" Unnamed: 0 text teacher \\\n",
"0 35671 I feel like I care so much more in every situa... 😂 \n",
"1 25683 I did not meat to add that '2' there...havent ... 😂 \n",
"2 8985 never… 😊 \n",
"3 5410 Lmao on me!!! Wtf was he supposed to say 😂 \n",
"4 62611 This dude always help me get through my schoo... 😊 \n",
"\n",
" teacher_sentiment predict \\\n",
"0 [0.46813021474490496, 0.24716181096977158, 0.2... 😢 \n",
"1 [0.46813021474490496, 0.24716181096977158, 0.2... 😂 \n",
"2 [0.7040175768989329, 0.059322033898305086, 0.2... 😂 \n",
"3 [0.46813021474490496, 0.24716181096977158, 0.2... 😭 \n",
"4 [0.7040175768989329, 0.059322033898305086, 0.2... 😂 \n",
"\n",
" predicted_sentiment \n",
"0 [0.3881330192089081, 0.34921327233314514, 0.24... \n",
"1 [0.477517306804657, 0.2263115793466568, 0.2805... \n",
"2 [0.4780172109603882, 0.24580059945583344, 0.25... \n",
"3 [0.3319989740848541, 0.38802555203437805, 0.23... \n",
"4 [0.471467524766922, 0.19387008249759674, 0.299... "
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pandas as pd\n",
"\n",
"df = pd.read_csv(\"test.csv\")\n",
"df.head()"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"\n",
"#np.array([x for x in df['teacher_sentiment']])\n",
"#[x.tolist() for x in df['teacher_sentiment'].]\n",
"teacher_sents_raw = df['teacher_sentiment']\n",
"teacher_sents = np.array([np.fromstring(x.replace('[','').replace(']',''),dtype=float, sep=',') for x in teacher_sents_raw])\n",
"\n",
"prediction_sents_raw = df['predicted_sentiment']\n",
"prediction_sents = np.array([np.fromstring(x.replace('[','').replace(']',''),dtype=float, sep=',') for x in prediction_sents_raw])\n",
"\n",
"teacher_emojis = np.array(df[\"teacher\"])\n",
"\n",
"texts = np.array(df[\"text\"])\n",
"#teacher_emojis[:20]\n",
"#teacher_emojis\n",
"#teacher_sents_raw = df['teacher_sentiment']\n",
"#teacher_sents = np.array([np.fromstring(x.replace('[','').replace(']',''),dtype=float, sep=',') for x in teacher_sents_raw])\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"import sys\n",
"def visualize_prediction_distance(teacher_vectors, predicted_vectors, teacher_emojis, emoji_dictionary):\n",
" \n",
" rank_distribution = {}\n",
" ranks = []\n",
" \n",
" for i in range(len(predicted_vectors)):\n",
" predicted_vector = predicted_vectors[i]\n",
" teached_vector = teacher_vectors[i]\n",
" error_dist = np.linalg.norm(predicted_vector-teached_vector)\n",
" distances = []\n",
" emojis = []\n",
" for emoji, vect in emoji_dictionary.items():\n",
" distances.append(np.linalg.norm(predicted_vector-vect))\n",
" emojis.append(emoji)\n",
" rank_dist = np.argsort(distances)\n",
" \n",
" emojis_sorted = np.array(emojis)[rank_dist]\n",
" \n",
" #calc rank\n",
" rank = 0\n",
" other_emojis = \"\"\n",
" found = False\n",
" for e in emojis_sorted:\n",
" if(e != teacher_emojis[i]):\n",
" rank+=1\n",
" other_emojis+=e\n",
" else:\n",
" found = True\n",
" break\n",
" if not found:\n",
" sys.stderr.write(\"ERROR: no match found\")\n",
" \n",
" \n",
" if not rank in rank_distribution:\n",
" rank_distribution[rank] = 0\n",
" rank_distribution[rank]+=1\n",
" \n",
" ranks.append(rank)\n",
" \n",
" outputstring = \"s\"+str(i)+\" teacher \"+teacher_emojis[i]+\" distErr = \"+ str(error_dist)+\" rankErr = \"+str(rank)+\" wrong predictions\"+str(other_emojis)+\" with sentence: \"+ str(texts[i])\n",
" print(outputstring)\n",
" print(rank_distribution)\n",
" return ranks, rank_distribution\n",
" #break\n",
" \n",
" \n",
" \n",
" "
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"s0 teacher 😂 distErr = 0.13525018941100722 rankErr = 3 wrong predictions😢😭😅 with sentence: I feel like I care so much more in every situation \n",
"s1 teacher 😂 distErr = 0.023249428729937592 rankErr = 0 wrong predictions with sentence: I did not meat to add that '2' there...havent seen the first seasin either..\n",
"s2 teacher 😊 distErr = 0.29367537599369925 rankErr = 14 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋 with sentence: never… \n",
"s3 teacher 😂 distErr = 0.20328777965509662 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Lmao on me!!! Wtf was he supposed to say \n",
"s4 teacher 😊 distErr = 0.2760243629418642 rankErr = 12 wrong predictions😂😅😁😉😎🙏😏😌😀😢🙌😋 with sentence: This dude always help me get through my school dayz with his music\n",
"s5 teacher 😊 distErr = 0.07873535188609064 rankErr = 5 wrong predictions😀🙌😌😎😋 with sentence: Happy B'Day Sir\n",
"s6 teacher 🙏 distErr = 0.24553783738156904 rankErr = 10 wrong predictions😂😅😢😁😭😉😌😎😏😔 with sentence: You need some good old fashioned Swedish Jesus\n",
"s7 teacher 😅 distErr = 0.14357793599962 rankErr = 4 wrong predictions😢😭😔😤 with sentence: these late shifts are making me not have a social life anymore \n",
"s8 teacher 😍 distErr = 0.1827706120477529 rankErr = 10 wrong predictions😁😌😎🙌😉😀😋😂😊😅 with sentence: Dc this weekend \n",
"s9 teacher 😊 distErr = 0.44658821102988083 rankErr = 17 wrong predictions😢😭😔😅😂😤😩😒😁😏😌😉😎🙏🙌😀😋 with sentence: Paul lad you'll make es blush \n",
"s10 teacher 😂 distErr = 0.030756117250274936 rankErr = 0 wrong predictions with sentence: Did you have a fun Halloween?\n",
"s11 teacher 😍 distErr = 0.07329702645310954 rankErr = 3 wrong predictions🙌😀😊 with sentence: Hi handsome \n",
"s12 teacher 😭 distErr = 0.08313506163443032 rankErr = 1 wrong predictions😢 with sentence: I'm not okay with this, I'm suing Snapchat \n",
"s13 teacher 😭 distErr = 0.10478336573442575 rankErr = 2 wrong predictions😢😅 with sentence: My parents be so mad I be buying new stuff &amp; still have shit in my closet that's brand new \n",
"s14 teacher 😂 distErr = 0.1656878574703719 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: One of the few songs that calms me down esp on FULL volume.It effectively helps me control my strong emotions ✌\n",
"s15 teacher 😂 distErr = 0.219772902693127 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: iPhone X Bouta Be The Last Phone We Ever Buy \n",
"s16 teacher 😭 distErr = 0.3683635795280717 rankErr = 15 wrong predictions😁😌😎😉🙌😀😂😋😊😅🙏😍😘😏😢 with sentence: Visited my main man today ❤ i miss u papa \n",
"s17 teacher 😍 distErr = 0.35951316301272895 rankErr = 16 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😀😤😋😊 with sentence: Donuts \n",
"s18 teacher 😘 distErr = 0.41035078029112115 rankErr = 19 wrong predictions😂😅😢😭😁😔😏😉😎😌🙏😤🙌😀😋😊😩😍😒 with sentence: Has anyone heard this by ? Who the fuck knew he could drop this shit ❤️ \n",
"s19 teacher 😍 distErr = 0.08641232678535342 rankErr = 5 wrong predictions🙌😀😊😋😌 with sentence: Wow superrbb\n",
"s20 teacher 😂 distErr = 0.15774464043327988 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Of course they don't. Their perfect model of moral conduct is Muhammad, the a… \n",
"s21 teacher 😍 distErr = 0.23588126385220046 rankErr = 12 wrong predictions😁😉😎😌😂😀🙏🙌😅😏😋😊 with sentence: Please pick me. Pick me. Pick me. Please. \n",
"s22 teacher 😭 distErr = 0.21530753246107018 rankErr = 5 wrong predictions😂😅😢😁😉 with sentence: shiid no crack is wack\n",
"s23 teacher 😩 distErr = 0.28402607595029034 rankErr = 6 wrong predictions😢😭😅😔😂😤 with sentence: Pj still sleeps like a newborn \n",
"s24 teacher 😌 distErr = 0.31673754770466106 rankErr = 9 wrong predictions😢😭😅😔😂😤😩😁😒 with sentence: An opinion doesn't mean you make sense first off or even right \n",
"s25 teacher 😘 distErr = 0.5726119353990328 rankErr = 19 wrong predictions😭😔😢😤😩😒😅😂😁😏😌😉😎🙏🙌😀😋😊😍 with sentence: Missyou too \n",
"s26 teacher 😩 distErr = 0.41792134855875734 rankErr = 18 wrong predictions😂😅😢😁😉😎😌😏😭🙏😔🙌😀😤😋😊😍😘 with sentence: I swear she did \n",
"s27 teacher 😉 distErr = 0.22442165725859106 rankErr = 5 wrong predictions😂😅😢😭😁 with sentence: Its true, he was the mutts (big-d) nuts. \n",
"s28 teacher 😭 distErr = 0.28650221924995717 rankErr = 15 wrong predictions😂😅😁😌😎😉🙌😀😢🙏😋😊😏😍😘 with sentence: is happening so happy\n",
"s29 teacher 😂 distErr = 0.10433385168281017 rankErr = 2 wrong predictions😢😅 with sentence: Saw that the first one said sosee you tmmrw and np\n",
"s30 teacher 😭 distErr = 0.21142814413010713 rankErr = 5 wrong predictions😂😅😢😁😉 with sentence: Aww my poor baby \n",
"s31 teacher 😍 distErr = 0.14508206601259488 rankErr = 8 wrong predictions😌🙌😀😎😁😊😋😉 with sentence: Just gorgeous \n",
"s32 teacher 😍 distErr = 0.09461047321140108 rankErr = 6 wrong predictions🙌😀😌😊😋😎 with sentence: If I was able to go to Demi Lovatos concert in Columbus Id ask her to marry me \n",
"s33 teacher 😍 distErr = 0.5283170904846959 rankErr = 18 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: Yesterday, while watching the trailers before Thor rolled, I found out smth awesomeA Wrinkle In Time is going to be on the big screen!! \n",
"s34 teacher 😩 distErr = 0.189173352702526 rankErr = 4 wrong predictions😭😔😤😢 with sentence: Wowww I transitioned and got called bald head \n",
"s35 teacher 😍 distErr = 0.2106747678973143 rankErr = 11 wrong predictions😁😌😎😉🙌😂😀😅😋😊🙏 with sentence: follow me please I'm so proud of you Liam, youre the best. I love you 57\n",
"s36 teacher 😭 distErr = 0.20118201647197587 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Im not dealing with African twitter tonight, yall will not kill me \n",
"s37 teacher 😔 distErr = 0.0489746585265814 rankErr = 1 wrong predictions😭 with sentence: So sad \n",
"s38 teacher 😂 distErr = 0.013111050461798114 rankErr = 0 wrong predictions with sentence: Why all y'alls girlfriends gotta follow me too?\n",
"s39 teacher 😩 distErr = 0.5850614318379955 rankErr = 18 wrong predictions😌😁🙌😎😀😉😊😋😍😂😘😅🙏😏😢😭😔😤 with sentence: Im so proud \n",
"s40 teacher 😭 distErr = 0.10506649155520315 rankErr = 2 wrong predictions😢😅 with sentence: So sad Halloweens over \n",
"s41 teacher 😅 distErr = 0.06083792678985474 rankErr = 0 wrong predictions with sentence: Only 3 more months of Pharm and Micro.. Will I survive?? \n",
"s42 teacher 😍 distErr = 0.37368285299194703 rankErr = 16 wrong predictions😅😂😢😭😁😔😉😌😎😏🙏😤🙌😀😋😊 with sentence: Eunwoooo whyy\n",
"s43 teacher 😒 distErr = 0.4524597060331592 rankErr = 19 wrong predictions😂😅😁😉😎😌😢😏🙏🙌😀😭😋😔😊😍😤😘😩 with sentence: Worst part of this is how good Spurs are defending and then theres 3 year 8s chasing Edin Dzeko last night \n",
"s44 teacher 😂 distErr = 0.1313273077621164 rankErr = 3 wrong predictions😢😅😭 with sentence: youre like a year late on that \n",
"s45 teacher 😂 distErr = 0.05640997232011634 rankErr = 1 wrong predictions😅 with sentence: Sorry \n",
"s46 teacher 🙏 distErr = 0.42076406633083363 rankErr = 13 wrong predictions😭😔😢😤😅😩😒😂😁😏😌😉😎 with sentence: it had to be spread \n",
"s47 teacher 😂 distErr = 0.16326646557246477 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Nightmare \n",
"s48 teacher 😂 distErr = 0.145783778118342 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Did you all REALLY think Dodgers were gonna win? \n",
"s49 teacher 😊 distErr = 0.24413693552292115 rankErr = 12 wrong predictions😂😁😅😉😎😌🙌😀🙏😏😢😋 with sentence: 3 weeks til Zoeys first birthday party \n",
"s50 teacher 😭 distErr = 0.1735879170488606 rankErr = 3 wrong predictions😅😂😢 with sentence: May be Pappu's soft bone\n",
"s51 teacher 😩 distErr = 0.4785263734649007 rankErr = 18 wrong predictions😂😅😁😌😎😉🙌😀😢🙏😏😋😊😍😭😘😔😤 with sentence: I haven't had in n out in awhile and it sounds so bomb rn \n",
"s52 teacher 😢 distErr = 0.18086268369208774 rankErr = 4 wrong predictions😅😂😁😌 with sentence: I was doing so well until she had the baby \n",
"s53 teacher 😢 distErr = 0.05753272101005225 rankErr = 1 wrong predictions😭 with sentence: Hate hearing that saying, always makes me tear up \n",
"s54 teacher 😔 distErr = 0.3470932861100838 rankErr = 16 wrong predictions😂😁😌😅😎😉🙌😀😋😊🙏😢😏😍😘😭 with sentence: sometime to be alone is better\n",
"s55 teacher 😎 distErr = 0.08952394533795711 rankErr = 6 wrong predictions🙌😀😌😊😋😍 with sentence: Yey kitakits topc summer jobbers! \n",
"s56 teacher 😩 distErr = 0.4356722080033362 rankErr = 18 wrong predictions😂😅😁😢😉😎😌😏🙏😭🙌😀😔😋😊😤😍😘 with sentence: Taking the Halloween decorations down \n",
"s57 teacher 😂 distErr = 0.026304859144257117 rankErr = 0 wrong predictions with sentence: overthinking sucks \n",
"s58 teacher 😁 distErr = 0.380674876876254 rankErr = 8 wrong predictions😭😔😢😤😅😩😒😂 with sentence: I'm off Sat thru Mon now. \n",
"s59 teacher 😍 distErr = 0.37949228252305134 rankErr = 16 wrong predictions😂😅😢😭😁😔😉😏😌😎🙏😤🙌😀😋😊 with sentence: I hope when Apple makes a standalone display again for Mac Pro that its a 30” 8K display. Ill be if it has ProMotion too.\n",
"s60 teacher 😍 distErr = 0.23194021828716316 rankErr = 11 wrong predictions😁😌😂😎😅😉🙌😀😋😊🙏 with sentence: thats my favorite series now \n",
"s61 teacher 😂 distErr = 0.040620786769232455 rankErr = 0 wrong predictions with sentence: This is like fringe English media rejecting popular and powerful Hindi and Regional media. HaHaHa \n",
"s62 teacher 😌 distErr = 0.16493818412236652 rankErr = 5 wrong predictions😂😅😁😉😎 with sentence: If Ive unfollowed then followed you back immediately here recently.. iz cool, I was just trying to mute you.. carry on. \n",
"s63 teacher 😂 distErr = 0.01358395794388912 rankErr = 0 wrong predictions with sentence: im dead \n",
"s64 teacher 😁 distErr = 0.05713378549043463 rankErr = 0 wrong predictions with sentence: loved your words in when you say about 1st tine you used a menstrual cup - crime scene \n",
"s65 teacher 😂 distErr = 0.17008033437387288 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Dodgers are dumb they should have started kershaw \n",
"s66 teacher 😘 distErr = 0.07266069351576389 rankErr = 5 wrong predictions😊🙌😍😀😋 with sentence: I am enjoying my day, thank you ☺ Enjoy your day too ☺ Take care too, dear best friend Love you BIG HUG \n",
"s67 teacher 😎 distErr = 0.27675615695978834 rankErr = 10 wrong predictions😅😂😢😭😔😤😁😉😌😏 with sentence: Nov. 1, 2017 stand up for whats right or sit down for whats wrong!\n",
"s68 teacher 😂 distErr = 0.04045378817629615 rankErr = 0 wrong predictions with sentence: This b^txxxh always made my dayAko diay ning ex \n",
"s69 teacher 🙏 distErr = 0.16144071827062645 rankErr = 7 wrong predictions😁😉😂😎😌😅😀 with sentence: Amen! Let us end it now. You are the greatest ever! Thank you \n",
"s70 teacher 😭 distErr = 0.21903911735997844 rankErr = 7 wrong predictions😂😅😢😁😉😌😎 with sentence: Poor will \n",
"s71 teacher 😂 distErr = 0.20891958554995455 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: I legit feel like the astros let the dodgers win the 6th game just to make it interesting for the last game...\n",
"s72 teacher 😂 distErr = 0.14937194138967255 rankErr = 4 wrong predictions😢😭😅😔 with sentence: You can mute me now I'm gonna start my q&amp;a thread \n",
"s73 teacher 😭 distErr = 0.34819668271428644 rankErr = 15 wrong predictions😁😌😎😉🙌😂😀😅😋😊🙏😍😏😘😢 with sentence: Ahhh I love her so much \n",
"s74 teacher 😂 distErr = 0.03392371572934091 rankErr = 0 wrong predictions with sentence: Talking about having us as your parents? \n",
"s75 teacher 😂 distErr = 0.09927319512565247 rankErr = 2 wrong predictions😢😅 with sentence: Currently have the most stereotypical yet super camp builders next door! currently all singing to Stronger-jelly… \n",
"s76 teacher 😩 distErr = 0.21375609716844052 rankErr = 5 wrong predictions😭😔😢😤😅 with sentence: Dude ugh can't wait for tomorrow\n",
"s77 teacher 😂 distErr = 0.1986648643396654 rankErr = 10 wrong predictions😎😁😉😀😌🙌😋😊🙏😍 with sentence: Lemme catch my breath \n",
"s78 teacher 🙌 distErr = 0.28786760086886387 rankErr = 11 wrong predictions😅😂😢😭😔😁😌😎😉😤😏 with sentence: has been working on this for a while now \n",
"s79 teacher 😊 distErr = 0.32556845479785546 rankErr = 15 wrong predictions😂😅😢😁😉😏😎😌🙏😭😔🙌😀😤😋 with sentence: huhu kaya mo yan chloe! Hope you have a great day today \n",
"s80 teacher 😂 distErr = 0.014595195678902294 rankErr = 0 wrong predictions with sentence: whats up? lol i need some box braids sho \n",
"s81 teacher 😩 distErr = 0.32316137849135884 rankErr = 12 wrong predictions😢😅😂😭😔😤😁😏😉😌😎🙏 with sentence: I hate going to the doctor\n",
"s82 teacher 😂 distErr = 0.07687711637927086 rankErr = 0 wrong predictions with sentence: should tag naomi but she's taken already \n",
"s83 teacher 😂 distErr = 0.02351815593819337 rankErr = 0 wrong predictions with sentence: It is, actually! \n",
"s84 teacher 😭 distErr = 0.053898224331871365 rankErr = 1 wrong predictions😔 with sentence: Yall so trendy \n",
"s85 teacher 😘 distErr = 0.2910396252863607 rankErr = 15 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😭 with sentence: Thalaivaaaaaaaa vera level no end to ur hardwork n success keep rocking Love u sooooo sooooo much … \n",
"s86 teacher 😢 distErr = 0.16679073880257725 rankErr = 3 wrong predictions😂😅😁 with sentence: daught… \n",
"s87 teacher 😁 distErr = 0.16815707610794342 rankErr = 3 wrong predictions😂😅😢 with sentence: Thanks to everyone who attended my Masterclass in Dublin for you guys rocked \n",
"s88 teacher 🙌 distErr = 0.07825572516879875 rankErr = 3 wrong predictions😌😁😎 with sentence: Im talking cranberry sauce and everything \n",
"s89 teacher 😍 distErr = 0.0843415201158697 rankErr = 5 wrong predictions🙌😀😊😌😋 with sentence: HAPPY BIHDAY Ash \n",
"s90 teacher 😭 distErr = 0.46635802869493875 rankErr = 15 wrong predictions🙌😀😊😌😍😋😘😎😁😉😂🙏😅😏😢 with sentence: Loewe still my favorite \n",
"s91 teacher 😩 distErr = 0.39802746981464404 rankErr = 18 wrong predictions😂😅😢😁😭😉😏😌😎😔🙏😤🙌😀😋😊😍😘 with sentence: No filter\n",
"s92 teacher 😍 distErr = 0.30480202221275765 rankErr = 15 wrong predictions😅😂😁😌😢😎😉🙌😀😭🙏😏😋😊😔 with sentence: My fangirl heart!!! \n",
"s93 teacher 😊 distErr = 0.4353164413779186 rankErr = 17 wrong predictions😢😭😅😔😂😤😩😒😁😏😌😉😎🙏🙌😀😋 with sentence: YES!!....after 5 valentines, we're still goin'\n",
"s94 teacher 😂 distErr = 0.09047366349662157 rankErr = 1 wrong predictions😁 with sentence: Hey don't run away from me because \n",
"s95 teacher 😍 distErr = 0.4432145266620004 rankErr = 18 wrong predictions😢😅😭😂😔😤😁😩😌😒😉😎😏🙏🙌😀😋😊 with sentence: Everybody swear they hate it, yet Im still seeing “stinka ” everywhere\n",
"s96 teacher 😭 distErr = 0.24401819204453404 rankErr = 11 wrong predictions😂😅😁😢😉😎😌😏🙏🙌😀 with sentence: Somebody gotta connect \n",
"s97 teacher 🙌 distErr = 0.04568730768263968 rankErr = 1 wrong predictions😀 with sentence: I'm glad you support the movement \n",
"s98 teacher 🙌 distErr = 0.3494987005978238 rankErr = 14 wrong predictions😢😅😂😭😔😤😁😌😉😏😎😩😒🙏 with sentence: I am probably gonna use the rest of my money in my bank acc to see you on tour!! Totally worth it! \n",
"s99 teacher 🙌 distErr = 0.23442306127291368 rankErr = 9 wrong predictions😂😅😁😢😌😉😎😏🙏 with sentence: The show must go on! \n",
"s100 teacher 😂 distErr = 0.016430300785740606 rankErr = 0 wrong predictions with sentence: This is savage aha \n",
"s101 teacher 😤 distErr = 0.4277522801420507 rankErr = 17 wrong predictions😁😎😌😉😂🙌😀😅😋🙏😊😏😍😘😢😭😔 with sentence: always make a cup of tea and forget about it\n",
"s102 teacher 😒 distErr = 0.3909690282647426 rankErr = 18 wrong predictions😂😅😢😭😁😔😉😌😎😏🙏😤🙌😀😋😊😍😩 with sentence: Lmao whats a win? \n",
"s103 teacher 😂 distErr = 0.020295074674728058 rankErr = 0 wrong predictions with sentence: Real Madrid should just bring on Memphis Depay \n",
"s104 teacher 🙌 distErr = 0.2442036205011681 rankErr = 10 wrong predictions😂😅😁😉😏🙏😎😌😢😀 with sentence: Your next ride is on me download Lyft &amp; use the code \"RDC77\" for $50 credit to save a life.\n",
"s105 teacher 😊 distErr = 0.027705606505952263 rankErr = 1 wrong predictions😍 with sentence: Happy birthday \n",
"s106 teacher 😩 distErr = 0.5718111610337724 rankErr = 18 wrong predictions😌😁😎🙌😀😉😋😊😂😅😍🙏😘😏😢😭😔😤 with sentence: Need to do a total of 200 vocab . flash cards &amp; only did 50 \n",
"s107 teacher 😂 distErr = 0.02306631563340452 rankErr = 0 wrong predictions with sentence: Just the looks \n",
"s108 teacher 😂 distErr = 0.03715678833139853 rankErr = 0 wrong predictions with sentence: dead. \n",
"s109 teacher 😒 distErr = 0.3245316605531714 rankErr = 13 wrong predictions😢😅😂😭😔😤😁😌😉😏😎🙏😩 with sentence: I've never liked any of mine either &amp; I've gotta look at my newest for the next 9 years. Resting bitch face sucks. \n",
"s110 teacher 😌 distErr = 0.18158176685845587 rankErr = 4 wrong predictions😂😅😁😢 with sentence: .................. you cant then \n",
"s111 teacher 😂 distErr = 0.02923319193025379 rankErr = 0 wrong predictions with sentence: One time this girl thought she was so cute, that I would let her hold like $200. wheres the “Yeet” gif? \n",
"s112 teacher 😂 distErr = 0.012311797331172833 rankErr = 0 wrong predictions with sentence: How is twitter free yall? \n",
"s113 teacher 😍 distErr = 0.2869292242856544 rankErr = 12 wrong predictions😅😂😌😁😢😎🙌😀😉😊😭😋 with sentence: See my baby! \n",
"s114 teacher 😍 distErr = 0.32981344273342666 rankErr = 16 wrong predictions😂😅😁😢😉😌😎😏🙏😭🙌😀😔😋😊😤 with sentence: Downtown parking changes Nov 6th! New multi-space meter machines &amp; ability to pay w/ smartphone More:… \n",
"s115 teacher 😌 distErr = 0.17834539274115097 rankErr = 4 wrong predictions😂😅😁😢 with sentence: i could honestly watch zoë vlogs all day long they're just so calming and make me so happy \n",
"s116 teacher 😭 distErr = 0.1398742860899451 rankErr = 3 wrong predictions😅😢😂 with sentence: fuck all that \n",
"s117 teacher 😊 distErr = 0.25224415348282014 rankErr = 12 wrong predictions😂😅😁😌😎😉🙌😀😢🙏😏😋 with sentence: .Oh okay \n",
"s118 teacher 😂 distErr = 0.1860193439740611 rankErr = 10 wrong predictions😌😎😁🙌😀😉😋😊😍😘 with sentence: I think so din \n",
"s119 teacher 😔 distErr = 0.08427062898269369 rankErr = 2 wrong predictions😢😭 with sentence: Im still heartbroken over the chocolate chip cookie that I accidentally threw away in my Wendys bag 6 days ago \n",
"s120 teacher 🙏 distErr = 0.36942937713723156 rankErr = 13 wrong predictions😢😭😔😅😤😂😩😒😁😌😏😉😎 with sentence: But why you had to fuck it up like that though??? ❤️ \n",
"s121 teacher 😋 distErr = 0.08502678456260841 rankErr = 4 wrong predictions😍😊😘🙌 with sentence: yummy \n",
"s122 teacher 😭 distErr = 0.2605589565720287 rankErr = 12 wrong predictions😂😅😁😌😎😉😢🙌😀🙏😏😋 with sentence: YES SAME I want it so bad period-style Shance AU with all the dramatic tension and stoic pining...sig… \n",
"s123 teacher 😊 distErr = 0.03374215684796602 rankErr = 0 wrong predictions with sentence: That's great! I published a short book of poetry but it didn't sell any, I got some to give to friends though \n",
"s124 teacher 😭 distErr = 0.236926440999947 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Philly is so crafty after they gentrify an area and try to rename it ! Like nigga this is down the bottom not mantua \n",
"s125 teacher 😔 distErr = 0.3425221598771188 rankErr = 16 wrong predictions😂😁😌😅😎😉🙌😀🙏😋😊😏😢😍😘😭 with sentence: I'm just craving a costume party....not necessarily halloween\n",
"s126 teacher 😊 distErr = 0.08778092387722998 rankErr = 6 wrong predictions🙌😌😀😎😁😋 with sentence: Let's go \n",
"s127 teacher 😂 distErr = 0.09413447823640982 rankErr = 2 wrong predictions😅😢 with sentence: This happens to me sometimes..But i try to b strong , atleast in my dreams ...\n",
"s128 teacher 😍 distErr = 0.23930069918586538 rankErr = 12 wrong predictions😁😂😌😎😅😉🙌😀🙏😋😊😏 with sentence: She is pretty ‼️ \n",
"s129 teacher 😂 distErr = 0.019359475386774915 rankErr = 0 wrong predictions with sentence: If I was your boss at rascals,I would fire you for being so stupid while wearing the company shirt \n",
"s130 teacher 😂 distErr = 0.26847640228813785 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: he talking too slick i woulda had to beat his ass \n",
"s131 teacher 😢 distErr = 0.04673514080862764 rankErr = 1 wrong predictions😭 with sentence: aww lyn this is so sad x \n",
"s132 teacher 😭 distErr = 0.07877984907700165 rankErr = 1 wrong predictions😢 with sentence: my personal deadline for getting this doujin done was December and I think that I'll be able to hit that \n",
"s133 teacher 😂 distErr = 0.0520777371754418 rankErr = 1 wrong predictions😅 with sentence: Dont make me laugh when Im trying to argue with you \n",
"s134 teacher 😭 distErr = 0.2929518930550374 rankErr = 14 wrong predictions😂😅😁😌😎😉🙌😀🙏😏😢😋😊😍 with sentence: The Phichit doll! I'm so happy they make... I hope they make Phichit nendo too \n",
"s135 teacher 😩 distErr = 0.4156739105639904 rankErr = 18 wrong predictions😂😅😢😁😉😏😎😌😭🙏😔🙌😀😤😋😊😍😘 with sentence: So hip, SHES my spirit animal \n",
"s136 teacher 😊 distErr = 0.07379696079869573 rankErr = 5 wrong predictions🙌😀😌😎😋 with sentence: Its the 1st of the month !!! Happy November \n",
"s137 teacher 😩 distErr = 0.16133364766142377 rankErr = 4 wrong predictions😔😭😤😢 with sentence: November is gon b all emotional for me to start I won't be able to go home for thanksgiving \n",
"s138 teacher 😍 distErr = 0.17455291001685055 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😂 with sentence: Lucky you saw him\n",
"s139 teacher 😔 distErr = 0.10631609954060632 rankErr = 2 wrong predictions😢😭 with sentence: You need a restraining order to get rid of ha ass\n",
"s140 teacher 😂 distErr = 0.032948193391514474 rankErr = 0 wrong predictions with sentence: actually nah, had this account for years. Never bought a follower on it. Got it all the way up to 111k with no hel… \n",
"s141 teacher 😅 distErr = 0.05114921488095053 rankErr = 0 wrong predictions with sentence: Looks like my Wee Precious is sugar high. Shouldnt let her drink coke at this time like. Shes hyperactive now l… \n",
"s142 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: KKody Belinger \n",
"s143 teacher 😂 distErr = 0.08626649529779748 rankErr = 1 wrong predictions😅 with sentence: Let me stop playin yall folks heads I aint talkin bout nobody fr I tryin something n it worked \n",
"s144 teacher 😂 distErr = 0.0892045136285607 rankErr = 1 wrong predictions😁 with sentence: I crack myself up at the GIFs I send \n",
"s145 teacher 😂 distErr = 0.08340974029741566 rankErr = 0 wrong predictions with sentence: Friends \n",
"s146 teacher 😂 distErr = 0.02199863142594324 rankErr = 0 wrong predictions with sentence: These Pakis camel Shaggers \n",
"s147 teacher 😂 distErr = 0.0629789156867859 rankErr = 0 wrong predictions with sentence: She always advise us \"do make sure you hit the Gym\" \n",
"s148 teacher 😂 distErr = 0.07085275930099687 rankErr = 1 wrong predictions😅 with sentence: lmao I can't believe you are walking down the street in a liama onesie \n",
"s149 teacher 😭 distErr = 0.12711237936851738 rankErr = 3 wrong predictions😢😅😂 with sentence: And everytime you leave me the quicker these tears dry \n",
"s150 teacher 😍 distErr = 0.3540627462026328 rankErr = 16 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😀😤😋😊 with sentence: NORAH IS MY FAV!!\n",
"s151 teacher 😭 distErr = 0.19929592578975205 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Dies peacefully \n",
"s152 teacher 😊 distErr = 0.08857631739971208 rankErr = 5 wrong predictions🙌😌😀😎😁 with sentence: Thanks for appreciating it ate, Ill try ❤️\n",
"s153 teacher 😉 distErr = 0.3478753405628908 rankErr = 10 wrong predictions😢😭😔😅😤😂😩😒😁😌 with sentence: @ We're ready for you \n",
"s154 teacher 😂 distErr = 0.05714696993394542 rankErr = 1 wrong predictions😅 with sentence: \"Bubble gum, nigga?\" \n",
"s155 teacher 😭 distErr = 0.1231871111515893 rankErr = 3 wrong predictions😢😅😂 with sentence: When pizza is life.. these were taken seconds apart \n",
"s156 teacher 😍 distErr = 0.2655273916240743 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: I want \n",
"s157 teacher 😂 distErr = 0.26653541673566256 rankErr = 11 wrong predictions🙌😀😊😋😍😌😘😎😁😉🙏 with sentence: Puig you have a problem \n",
"s158 teacher 😂 distErr = 0.06452213386160627 rankErr = 1 wrong predictions😅 with sentence: I saw that the year she did that lol I laughed &amp; died\n",
"s159 teacher 😎 distErr = 0.09305784492847581 rankErr = 2 wrong predictions😁😌 with sentence: I got eight hours of sleep last night so Im fine \n",
"s160 teacher 😂 distErr = 0.11756007638909861 rankErr = 2 wrong predictions😢😅 with sentence: which is only right \n",
"s161 teacher 😩 distErr = 0.5351923668315339 rankErr = 18 wrong predictions😌😁😎😂😉🙌😀😅😋😊😍🙏😘😏😢😭😔😤 with sentence: So damn cute \n",
"s162 teacher 😍 distErr = 0.5045270679894248 rankErr = 18 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: and the wings was golden crispy lmaooo Im on some really fat shit\n",
"s163 teacher 😂 distErr = 0.1475992704690127 rankErr = 6 wrong predictions😌😁😎🙌😀😉 with sentence: Liam why?? I love you sm but Bella Thorne? Come on WHY NOT ZENDAYA \n",
"s164 teacher 😎 distErr = 0.0639095610699201 rankErr = 3 wrong predictions😌🙌😀 with sentence: Thanks Alex \n",
"s165 teacher 😤 distErr = 0.4794848358044138 rankErr = 17 wrong predictions😁😎😌😉😀🙌😋😊😍😂🙏😘😅😏😢😭😔 with sentence: Thanks big homie love you bro ❤️\n",
"s166 teacher 😊 distErr = 0.3620243867670005 rankErr = 15 wrong predictions😅😂😢😭😔😁😤😉😌😎😏🙏🙌😀😋 with sentence: Shawty just texted me, said she wanna sex me... LOL SMILEY FACE\n",
"s167 teacher 😎 distErr = 0.21175935354873945 rankErr = 5 wrong predictions😅😂😌😁😢 with sentence: I will baby \n",
"s168 teacher 🙌 distErr = 0.23442306127291368 rankErr = 9 wrong predictions😂😅😁😢😌😉😎😏🙏 with sentence: This! \n",
"s169 teacher 🙏 distErr = 0.2053721608074137 rankErr = 10 wrong predictions😌😀😎🙌😁😋😉😊😍😘 with sentence: Make sure you go check out new music video \"I Know\" on YouTube. \n",
"s170 teacher 🙌 distErr = 0.2164673166051935 rankErr = 7 wrong predictions😅😂😁😌😢😎😉 with sentence: Write this down Queen. \n",
"s171 teacher 😤 distErr = 0.40403546555669606 rankErr = 17 wrong predictions😁😌😂😎😉😅🙌😀🙏😋😊😏😍😢😘😭😔 with sentence: HMU in dms I produce with another kid and got a dope engineer as well\n",
"s172 teacher 😭 distErr = 0.032569456387953596 rankErr = 0 wrong predictions with sentence: this me as a parent on Halloween \n",
"s173 teacher 🙌 distErr = 0.0641931716290133 rankErr = 3 wrong predictions😍😊😘 with sentence: Love it!\n",
"s174 teacher 😢 distErr = 0.13824278332994125 rankErr = 2 wrong predictions😂😅 with sentence: Nami I want a corny guy yaz' \n",
"s175 teacher 😁 distErr = 0.18954856799346545 rankErr = 3 wrong predictions😂😅😢 with sentence: year end target must be met. \n",
"s176 teacher 😒 distErr = 0.40143273192543916 rankErr = 19 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏😤🙌😀😋😊😍😘😩 with sentence: This update is taking forever \n",
"s177 teacher 😋 distErr = 0.28719085123147386 rankErr = 13 wrong predictions😂😅😁😉😢😎😌😏🙏🙌😭😀😔 with sentence: Best Arizona hands down has to be the fruit punch one \n",
"s178 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Eartha could never! \n",
"s179 teacher 😂 distErr = 0.010567427515278803 rankErr = 0 wrong predictions with sentence: Los is a ass \n",
"s180 teacher 😅 distErr = 0.052114107631697944 rankErr = 1 wrong predictions😂 with sentence: I wonder when will Pepi and Mark post again. Im starting hate them bec of JB lmao \n",
"s181 teacher 😩 distErr = 0.3303754170171436 rankErr = 12 wrong predictions😢😅😂😭😔😤😁😌😉😎😏🙏 with sentence: TOMORROW!!!! Y'ALL I'M NOT FUCKING READY AT ALL!!! THEY'RE SO PERFECT OMG I HOPE EVERYTHING GOES WELL \n",
"s182 teacher 😩 distErr = 0.4144910034250654 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😭😏🙏😔🙌😀😤😋😊😍😘 with sentence: This was so funny omg. I cant wait for the next video \n",
"s183 teacher 😂 distErr = 0.03259340899298924 rankErr = 0 wrong predictions with sentence: “Tissss the season to be jollly “ Im dying \n",
"s184 teacher 😂 distErr = 0.033885358296208486 rankErr = 0 wrong predictions with sentence: Someones saying i need to eat 1000 cals a day idk anymorr fck it im fat. go away then lol\n",
"s185 teacher 😀 distErr = 0.03931360655055408 rankErr = 2 wrong predictions🙌😊 with sentence: 6 Beautiful hrs every night! Up at 3 a.m. every day....\n",
"s186 teacher 😂 distErr = 0.012871253567930677 rankErr = 0 wrong predictions with sentence: A whole nother convo and we can't get into this tonight bro ctfuuu \n",
"s187 teacher 😭 distErr = 0.019308444153901143 rankErr = 0 wrong predictions with sentence: “Cavs only ready for the playoffs”First of all.... are they gon make it? \n",
"s188 teacher 😂 distErr = 0.10527228131984409 rankErr = 2 wrong predictions😌😁 with sentence: No you won't!!! \n",
"s189 teacher 😅 distErr = 0.07273733527865694 rankErr = 1 wrong predictions😂 with sentence: I'll actually do it this time \n",
"s190 teacher 😩 distErr = 0.7619152192068694 rankErr = 18 wrong predictions😘😍😊😋🙌😀😌😎😁😉🙏😂😅😏😢😭😔😤 with sentence: thanks love xx \n",
"s191 teacher 😊 distErr = 0.02906817536165018 rankErr = 0 wrong predictions with sentence: Good Morning All \n",
"s192 teacher 😂 distErr = 0.057566887908457244 rankErr = 0 wrong predictions with sentence: Every other day i ask my daddy for money so I can spend his and save mine and hes finally caught on\n",
"s193 teacher 😏 distErr = 0.22058784853198604 rankErr = 10 wrong predictions😂😅😁😌😎😉🙌😀😢🙏 with sentence: it's official: Whataburger &gt; In&amp;out. \n",
"s194 teacher 😂 distErr = 0.020224775214579892 rankErr = 0 wrong predictions with sentence: You think you need legal frame work all you need is to be labeled a terrorist.\n",
"s195 teacher 😒 distErr = 0.33718400270662613 rankErr = 14 wrong predictions😢😅😂😭😔😤😁😌😉😏😎🙏😩🙌 with sentence: Stop exaggerating \n",
"s196 teacher 😍 distErr = 0.06589265324326449 rankErr = 3 wrong predictions🙌😊😀 with sentence: i love this excerpt from milk &amp; honey \n",
"s197 teacher 🙌 distErr = 0.3459671832502329 rankErr = 14 wrong predictions😢😅😂😭😔😤😁😌😉😏😎😩🙏😒 with sentence: Before &amp; after! Damn that guy is good \n",
"s198 teacher 😍 distErr = 0.2555729863382718 rankErr = 13 wrong predictions😂😁😅😌😎😉🙌😀🙏😋😏😊😢 with sentence: Really good one \n",
"s199 teacher 😂 distErr = 0.021271100493562123 rankErr = 0 wrong predictions with sentence: The door-to-doors play themselves when they ask me if someone 18 or older is home. ✌\n",
"s200 teacher 😘 distErr = 0.1998002199014657 rankErr = 11 wrong predictions😌😁😎🙌😀😉😋😊😂😍😅 with sentence: Miss you Labyu \n",
"s201 teacher 😅 distErr = 0.15091256430970626 rankErr = 5 wrong predictions😁😉😎😂😌 with sentence: What do u mean \n",
"s202 teacher 🙏 distErr = 0.1948229631745204 rankErr = 7 wrong predictions😂😅😁😉😎😌😏 with sentence: Gonna stay here for tonight. Let's fight this Papang. You're stronger than you think you are. Laban tayoooo \n",
"s203 teacher 😭 distErr = 0.05928320729693878 rankErr = 2 wrong predictions😔😤 with sentence: The funniest ldn \n",
"s204 teacher 😂 distErr = 0.1687600477141517 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Ke Dele? \n",
"s205 teacher 😂 distErr = 0.029330012251953395 rankErr = 0 wrong predictions with sentence: Am I the only person that needs to use a mouse when using a laptop? Literally can't deal with touch pads lmao \n",
"s206 teacher 😩 distErr = 0.161947876852368 rankErr = 4 wrong predictions😔😭😤😢 with sentence: Not even out of bed yet and Im ready to get off of work today \n",
"s207 teacher 😍 distErr = 0.27348319842742946 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: Airport is history for KathNiel \n",
"s208 teacher 😭 distErr = 0.2770125994362781 rankErr = 10 wrong predictions😅😂😌😁😢😎🙌😀😉😊 with sentence: Anything for my baby. \n",
"s209 teacher 😒 distErr = 0.3982093411697052 rankErr = 19 wrong predictions😂😅😢😭😁😉😌😎😔😏🙏😤🙌😀😋😊😍😘😩 with sentence: It's funny how ppl think dat money suppose to come out ya ass I'm broke leave me alone ‼️‼️\n",
"s210 teacher 😏 distErr = 0.2869069956487245 rankErr = 13 wrong predictions🙌😀😌😊😎😋😁😍😉😘😂🙏😅 with sentence: Halloween 2K17 in the books @ Western Kentucky University \n",
"s211 teacher 😂 distErr = 0.10628771997455883 rankErr = 3 wrong predictions😁😌😎 with sentence: Aw thank you I dont even know what to do on here \n",
"s212 teacher 🙌 distErr = 0.23442306127291368 rankErr = 9 wrong predictions😂😅😁😢😌😉😎😏🙏 with sentence: Here for ALL of it \n",
"s213 teacher 😀 distErr = 0.14492097737137952 rankErr = 7 wrong predictions😁😌😎😂😉🙌😅 with sentence: Thats so cute \n",
"s214 teacher 😎 distErr = 0.1772897989302864 rankErr = 6 wrong predictions😂😅😁😉😏🙏 with sentence: next week \n",
"s215 teacher 😭 distErr = 0.18084621649667304 rankErr = 3 wrong predictions😅😂😢 with sentence: Because theyre bad people \n",
"s216 teacher 😘 distErr = 0.14824736832215152 rankErr = 9 wrong predictions😀🙌😌😎😁😋😊😉😍 with sentence: Hello \n",
"s217 teacher 😌 distErr = 0.14051271915717767 rankErr = 5 wrong predictions😂😁😅😉😎 with sentence: Women always feeding me \n",
"s218 teacher 😘 distErr = 0.3662661565251719 rankErr = 17 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😔😀😤😋😊😍 with sentence: this if youd like to see me smother with these . \n",
"s219 teacher 😔 distErr = 0.29401287592843345 rankErr = 14 wrong predictions😂😅😁😉😎😌😢😏🙏🙌😀😭😋😊 with sentence: I feel like there's hope but then, thinking logically follows. \n",
"s220 teacher 😂 distErr = 0.1043778074903027 rankErr = 2 wrong predictions😢😅 with sentence: nobody told me Kev was gone be in this shit \n",
"s221 teacher 😋 distErr = 0.4275701205190252 rankErr = 16 wrong predictions😢😭😅😔😂😤😩😒😁😏😌😉😎🙏🙌😀 with sentence: So... its Christmas time \n",
"s222 teacher 🙏 distErr = 0.29627437594139444 rankErr = 10 wrong predictions😍😊😘🙌😋😀😌😎😁😉 with sentence: we love GOD too ❤️\n",
"s223 teacher 😤 distErr = 0.35503777539573356 rankErr = 17 wrong predictions😂😅😁😉😎😌🙏😏🙌😀😢😋😊😭😍😘😔 with sentence: Then you're just a casual nerd. Real nerds like me scoff at your inferiority \n",
"s224 teacher 😩 distErr = 0.3697383436826117 rankErr = 16 wrong predictions😅😂😢😭😔😁😤😉😌😏😎🙏🙌😀😋😊 with sentence: I want a gf now a down ass female \n",
"s225 teacher 😒 distErr = 0.43259219839883717 rankErr = 19 wrong predictions😂😅😢😁😉😏🙏😎😌😭🙌😀😔😤😋😊😍😘😩 with sentence: Been catcalled on my way to uni, peak\n",
"s226 teacher 😏 distErr = 0.20395050369204712 rankErr = 7 wrong predictions😂😅😁😢😉😎😌 with sentence: Some facebookers love to be outraged and offended. If you're looking for drama, Facebook has it in abundance \n",
"s227 teacher 😎 distErr = 0.26373094190850005 rankErr = 9 wrong predictions😅😂😢😭😔😁😤😉😌 with sentence: dont have a short temper.ButI have a quick reaction to wrong action. \n",
"s228 teacher 😂 distErr = 0.020510800931441663 rankErr = 0 wrong predictions with sentence: How dare they call during a sprint . You did awesome!!!!\n",
"s229 teacher 😂 distErr = 0.2803635375136789 rankErr = 11 wrong predictions🙌😊😀😍😋😘😌😎😁😉🙏 with sentence: Treats \n",
"s230 teacher 😂 distErr = 0.04592386171379647 rankErr = 0 wrong predictions with sentence: A big red van nearly hit me yday when I was crossing the road in blanch. I've never called someone so many bad words in my entire life\n",
"s231 teacher 😘 distErr = 0.10795185631832034 rankErr = 7 wrong predictions🙌😀😊😌😋😍😎 with sentence: I love you and i miss youuu\n",
"s232 teacher 😭 distErr = 0.20513743505795448 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Bitches Be Mad When You Don't Feed Into They Bullshit \n",
"s233 teacher 😂 distErr = 0.058044595785535134 rankErr = 0 wrong predictions with sentence: Well thats one way to start a Wednesday morning \n",
"s234 teacher 😎 distErr = 0.06970846120313305 rankErr = 1 wrong predictions😁 with sentence: .... New Amerykah Pt. 2 is how Im rockin out til Jan.10.2018\n",
"s235 teacher 😘 distErr = 0.20632791688889007 rankErr = 12 wrong predictions😁😌😎😉🙌😀😋😊😂😍😅🙏 with sentence: Nice one.... \n",
"s236 teacher 😩 distErr = 0.41281543279599414 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😭😏🙏😔🙌😀😤😋😊😍😘 with sentence: It's just been less than 3 hours. What am I doing? \n",
"s237 teacher 😊 distErr = 0.2370103433846121 rankErr = 12 wrong predictions😂😁😅😌😎😉🙌😀🙏😏😢😋 with sentence: Thanks for the reply \n",
"s238 teacher 😏 distErr = 0.36075809732833797 rankErr = 9 wrong predictions😢😭😔😤😅😂😩😒😁 with sentence: ......tomorrow my Friday \n",
"s239 teacher 😭 distErr = 0.020941620028304672 rankErr = 0 wrong predictions with sentence: what's wrong \n",
"s240 teacher 😂 distErr = 0.02481168497510485 rankErr = 0 wrong predictions with sentence: Dear Lord! Give that kid a break, Jaeeee \n",
"s241 teacher 😊 distErr = 0.11358601365667566 rankErr = 7 wrong predictions😎😁😀😌🙌😉😋 with sentence: Congratulations Mrs. Rodon! Thanks for sharing such a great photo. We… \n",
"s242 teacher 😂 distErr = 0.04897169906136707 rankErr = 0 wrong predictions with sentence: Spiderman just watches \n",
"s243 teacher 😁 distErr = 0.1867506161261752 rankErr = 3 wrong predictions😂😅😢 with sentence: Bills getting paid , we eating good , feels good to have my ow shit again like fr blessed &amp; humble\n",
"s244 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: are always here. \n",
"s245 teacher 😂 distErr = 0.08303610246697377 rankErr = 1 wrong predictions😅 with sentence: \"Advanced age\" \n",
"s246 teacher 😂 distErr = 0.24119746377063608 rankErr = 7 wrong predictions😭😔😢😤😩😒😅 with sentence: NATE I STILL WANT YOUR DOG \n",
"s247 teacher 😉 distErr = 0.12746602504318946 rankErr = 5 wrong predictions😂😁😌😅😎 with sentence: Notte a te \n",
"s248 teacher 😂 distErr = 0.23180295298812706 rankErr = 11 wrong predictions🙌😀😌😎😋😊😁😍😉😘🙏 with sentence: Werpa kays Sir Dave Norms bay \n",
"s249 teacher 😂 distErr = 0.024178285903212107 rankErr = 0 wrong predictions with sentence: Lmao okay Im not the only one \n",
"s250 teacher 😍 distErr = 0.3077905416734905 rankErr = 15 wrong predictions😂😅😁😌😢😎😉🙌😀🙏😏😭😋😊😔 with sentence: Starbucks christmas menu is out and im v happy \n",
"s251 teacher 😘 distErr = 0.038359855115518884 rankErr = 1 wrong predictions😍 with sentence: Happy birthday to you hun!! \n",
"s252 teacher 😂 distErr = 0.08547828585072013 rankErr = 0 wrong predictions with sentence: I Love Tendy This Guy is Surely insane \n",
"s253 teacher 😂 distErr = 0.034583439116471264 rankErr = 0 wrong predictions with sentence: oh my god..!!! their convo.. \n",
"s254 teacher 😏 distErr = 0.21519816732994348 rankErr = 7 wrong predictions😂😅😢😁😉😎😌 with sentence: bitys in my DM ion want u \n",
"s255 teacher 😍 distErr = 0.33675625031548406 rankErr = 16 wrong predictions😂😅😢😁😉😌😎😏🙏😭🙌😀😔😋😤😊 with sentence: Lmao I got you baby \n",
"s256 teacher 😊 distErr = 0.12908233528571894 rankErr = 7 wrong predictions😌😁😎🙌😀😉😋 with sentence: good~night\n",
"s257 teacher 😂 distErr = 0.031221898294196318 rankErr = 0 wrong predictions with sentence: cant argue with stupid!! \n",
"s258 teacher 😅 distErr = 0.03873032629976542 rankErr = 1 wrong predictions😂 with sentence: Show me the stats that prove that pls \n",
"s259 teacher 😂 distErr = 0.0841609734314158 rankErr = 1 wrong predictions😅 with sentence: Literally \n",
"s260 teacher 😭 distErr = 0.3997508047691848 rankErr = 15 wrong predictions🙏😏😉😁😎😂😌😀😋🙌😅😊😍😘😢 with sentence: my hero\n",
"s261 teacher 😌 distErr = 0.022588741368422573 rankErr = 0 wrong predictions with sentence: Its a Post Malone kinda day. Stoney album on repeat \n",
"s262 teacher 😊 distErr = 0.45893065701109714 rankErr = 17 wrong predictions😢😭😔😅😤😂😩😒😁😏😌😉😎🙏🙌😀😋 with sentence: I loveeeeee when people are rude as fuck for no reason \n",
"s263 teacher 😂 distErr = 0.03460379166993618 rankErr = 0 wrong predictions with sentence: Youu talking toooo much.. \n",
"s264 teacher 😂 distErr = 0.34640205655488054 rankErr = 7 wrong predictions😤😔😩😒😭😢😅 with sentence: who hurt u\n",
"s265 teacher 😍 distErr = 0.12000101494386901 rankErr = 8 wrong predictions😀🙌😌😎😁😋😊😉 with sentence: look… \n",
"s266 teacher 😂 distErr = 0.2727808179716936 rankErr = 11 wrong predictions🙌😊😀😍😋😌😘😎😁😉🙏 with sentence: I could only have been happier if it was the \n",
"s267 teacher 🙌 distErr = 0.2636558068004807 rankErr = 11 wrong predictions😂😅😢😁😉😎😌😏😭🙏😔 with sentence: Yesss! Lets do drinks after work. :) let me know if you work in Burlingame \n",
"s268 teacher 😂 distErr = 0.07691504517972059 rankErr = 1 wrong predictions😅 with sentence: Yho, personal \n",
"s269 teacher 😊 distErr = 0.07450501724410301 rankErr = 5 wrong predictions😀🙌😌😎😋 with sentence: Thank you! \n",
"s270 teacher 😍 distErr = 0.5220592079924632 rankErr = 18 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: Can I have a hug please? \n",
"s271 teacher 😂 distErr = 0.21593847368160118 rankErr = 11 wrong predictions😀🙌😌😎😁😋😊😉😍😘🙏 with sentence: Agree... Ask his \"GF\"\n",
"s272 teacher 😭 distErr = 0.13559373966290483 rankErr = 3 wrong predictions😢😅😂 with sentence: Grandma was just tryna get her social security check. (I was lit on Halloween) \n",
"s273 teacher 😂 distErr = 0.05334624105225239 rankErr = 1 wrong predictions😅 with sentence: Dude hard for is the shiiiittt lol idk why but i like it \n",
"s274 teacher 😂 distErr = 0.0775299304874949 rankErr = 0 wrong predictions with sentence: I love how when my landlord came to collect rent today he saw the cheesecake I made and looked at my boyfriend and said \"you got a keeper\"\n",
"s275 teacher 😭 distErr = 0.1653569768189722 rankErr = 3 wrong predictions😅😂😢 with sentence: Im glad this is my baloch bhai y'all im proud n glad to have him Bye \n",
"s276 teacher 😂 distErr = 0.17629604891053477 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: Something's are meant to be personal Dang Nique! Charmaine just put you out there... Somethings are better left unsaid! \n",
"s277 teacher 😍 distErr = 0.328872661267333 rankErr = 16 wrong predictions😂😅😁😢😉😎😌😏🙏😭🙌😀😔😋😊😤 with sentence: bad bitch \n",
"s278 teacher 😁 distErr = 0.4123588172736433 rankErr = 8 wrong predictions😭😔😤😢😩😒😅😂 with sentence: look at discord pls, I need advice \n",
"s279 teacher 😒 distErr = 0.32364694097652125 rankErr = 13 wrong predictions😢😅😂😭😔😤😁😏😉😌😎🙏😩 with sentence: Nah I lied .... cause I'm hungry\n",
"s280 teacher 😭 distErr = 0.01858365481854293 rankErr = 0 wrong predictions with sentence: They can take me with you cuz im hurt \n",
"s281 teacher 😅 distErr = 0.08628824285320282 rankErr = 1 wrong predictions😢 with sentence: Feel like this is the general consensus \n",
"s282 teacher 😭 distErr = 0.27060553055097913 rankErr = 11 wrong predictions😂😅😁😉😏🙏😎😌😢😀🙌 with sentence: GUYSSSS I NEED YOUR HELP \n",
"s283 teacher 😂 distErr = 0.1188720203757572 rankErr = 4 wrong predictions😁😎😌😉 with sentence: Papa penny though \n",
"s284 teacher 😍 distErr = 0.1897641757074947 rankErr = 10 wrong predictions😌😁😎🙌😀😉😂😋😊😅 with sentence: Fugg freaking love this photo! They both look so Now can't wait for babies! So happy for them truly! \n",
"s285 teacher 😂 distErr = 0.03886165373858613 rankErr = 0 wrong predictions with sentence: And their pussy stank, they're catfishing \n",
"s286 teacher 😔 distErr = 0.2812472848317571 rankErr = 13 wrong predictions😂😅😁😌😢😉😎🙌🙏😀😏😭😋 with sentence: The thought of giving up comes so easily sometimes \n",
"s287 teacher 😂 distErr = 0.12755435693506315 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: Just seen a que call a delta his \"sawrah\" ... it made me smile \n",
"s288 teacher 😏 distErr = 0.22526290277713854 rankErr = 10 wrong predictions😂😅😁😌😉😎😢🙌🙏😀 with sentence: FOLLOW ME CUZ\n",
"s289 teacher 😀 distErr = 0.1569641294894843 rankErr = 7 wrong predictions😁😂😌😎😉😅🙌 with sentence: gentleman from HSBC called me and started investigation from me ..Thanks hope they find our money\n",
"s290 teacher 🙌 distErr = 0.10473888358542897 rankErr = 3 wrong predictions😌😁😎 with sentence: Perfect response!\n",
"s291 teacher 😢 distErr = 0.11032995696389657 rankErr = 2 wrong predictions😅😂 with sentence: I've cracked my phone screen today and I don't know how I've done it \n",
"s292 teacher 😂 distErr = 0.04606859621256412 rankErr = 0 wrong predictions with sentence: Nate how big and strong is Porzingis ? Lmaoooo Harden did not make him fall that bad by pushing him \n",
"s293 teacher 😂 distErr = 0.07664321527915632 rankErr = 0 wrong predictions with sentence: I went straight online \n",
"s294 teacher 😭 distErr = 0.012086904749764127 rankErr = 0 wrong predictions with sentence: Im in real life tears she really deadass rapping and I cant take it seriously rn. \n",
"s295 teacher 😭 distErr = 0.2889148338417664 rankErr = 14 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍 with sentence: i want \n",
"s296 teacher 😂 distErr = 0.05171852508383953 rankErr = 0 wrong predictions with sentence: wait til we get wine drunk once youre settled at your new place... then youll see\n",
"s297 teacher 😂 distErr = 0.0990781678582011 rankErr = 2 wrong predictions😁😌 with sentence: Aye people born 97-99 are funny af \n",
"s298 teacher 😎 distErr = 0.13196466273039756 rankErr = 4 wrong predictions😂😁😅😉 with sentence: Birthday month\n",
"s299 teacher 😍 distErr = 0.2869292242856544 rankErr = 12 wrong predictions😅😂😌😁😢😎🙌😀😉😊😭😋 with sentence: Cry baby \n",
"s300 teacher 😘 distErr = 0.41167777645939363 rankErr = 19 wrong predictions😅😂😢😭😔😁😤😉😌😎😏🙏🙌😀😋😊😩😒😍 with sentence: Words from my side nigga \n",
"s301 teacher 🙌 distErr = 0.2687483853386096 rankErr = 11 wrong predictions😅😂😢😁😭😌😉😎😔😏🙏 with sentence: the Dominican lady that's doing my hair is cakingggggg \n",
"s302 teacher 😭 distErr = 0.3483897883255338 rankErr = 15 wrong predictions😁😌😎😉🙌😂😀😅😋😊🙏😍😏😘😢 with sentence: Okay this my mood now that I done had a little prosecco in me \n",
"s303 teacher 😤 distErr = 0.47401102245576865 rankErr = 17 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅🙏😏😢😭😔 with sentence: Check it Out!📽SR-SZN Highlights Premium2018 QB Hs(TN) commitProfile… \n",
"s304 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Had any of yall? Because... \n",
"s305 teacher 😭 distErr = 0.4489368388592731 rankErr = 15 wrong predictions😀🙌😌😎😋😁😊😉😍😘🙏😂😅😏😢 with sentence: ur on time bb unlike me for urs ❤️ thank u ily!! hope cali is treating u great boo\n",
"s306 teacher 😒 distErr = 0.27228169404385816 rankErr = 7 wrong predictions😢😭😔😅😤😂😩 with sentence: someone stole another fucking pumpkin \n",
"s307 teacher 😂 distErr = 0.09852219441989694 rankErr = 2 wrong predictions😅😢 with sentence: Loool that look at the end though \n",
"s308 teacher 😅 distErr = 0.1298617861275595 rankErr = 3 wrong predictions😢😭😔 with sentence: Hispanics have cool cousins, creepy cousins, the cousins you didnt know were your cousins and the cousins you pretend arent your cousins\n",
"s309 teacher 😂 distErr = 0.06372791935978146 rankErr = 1 wrong predictions😅 with sentence: track 13 — the \"like me\" \n",
"s310 teacher 😍 distErr = 0.34253993881707007 rankErr = 16 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😔😀😤😋😊 with sentence: oh my \n",
"s311 teacher 😂 distErr = 0.22601966631856363 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: that is so rude wtf. he'd be getting broken up with \n",
"s312 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: That about sums it up \n",
"s313 teacher 😂 distErr = 0.050638275904003854 rankErr = 0 wrong predictions with sentence: Puberty hit him hard \n",
"s314 teacher 😂 distErr = 0.05026507028972158 rankErr = 0 wrong predictions with sentence: Y'all know IDGAF right \n",
"s315 teacher 🙌 distErr = 0.2904874343772351 rankErr = 12 wrong predictions😂😅😢😭😁😉😏😎😔😌🙏😤 with sentence: Im a old school And I cant help it! ... \n",
"s316 teacher 😌 distErr = 0.24865930324327934 rankErr = 7 wrong predictions😅😂😢😭😔😁😤 with sentence: you can talk to me about it then, you have my number \n",
"s317 teacher 🙏 distErr = 0.22851479688809806 rankErr = 9 wrong predictions😂😅😢😁😉😎😌😏😭 with sentence: Yessir thats the plan!! Thank you bro \n",
"s318 teacher 😁 distErr = 0.16594900917682198 rankErr = 3 wrong predictions😂😅😢 with sentence: Just one more glass before bed \n",
"s319 teacher 😭 distErr = 0.12748435314312018 rankErr = 3 wrong predictions😢😅😂 with sentence: WE PENSIONERS, ARE IN HELL GROCERIES IT'S ONLY A WISH\n",
"s320 teacher 😂 distErr = 0.04628979788102356 rankErr = 0 wrong predictions with sentence: Sorry, he didnt, but am sure he will soon...\n",
"s321 teacher 😢 distErr = 0.21651134911087033 rankErr = 9 wrong predictions😂😅😁😌😎😉🙌😀🙏 with sentence: Does not give birthday treats anymore? Just realized I never got an app message &amp; never got my drink/meal! \n",
"s322 teacher 🙏 distErr = 0.07104502962855476 rankErr = 1 wrong predictions😏 with sentence: It was the prayer sway! It always worksss!\n",
"s323 teacher 😂 distErr = 0.15678532379737847 rankErr = 4 wrong predictions😢😭😔😅 with sentence: Lol where do you work? Im looking for a second job\n",
"s324 teacher 😌 distErr = 0.20663271378885384 rankErr = 8 wrong predictions😂😅😁😉😏🙏😎😢 with sentence: First draft jadual final exam dah keluar \n",
"s325 teacher 😂 distErr = 0.03276206678173143 rankErr = 0 wrong predictions with sentence: Oh no Well Im glad you like them ha!\n",
"s326 teacher 😂 distErr = 0.018229310083720595 rankErr = 0 wrong predictions with sentence: i find this funny i get it, i'm weird \n",
"s327 teacher 🙏 distErr = 0.1329304683476695 rankErr = 5 wrong predictions😁😉😎😂😌 with sentence: Thanks bro appreciate it so much ❤️❤️\n",
"s328 teacher 😋 distErr = 0.3709684498949672 rankErr = 16 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀😩😒 with sentence: Thats how we tighten our bond ?¿ \n",
"s329 teacher 😂 distErr = 0.020683793931310566 rankErr = 0 wrong predictions with sentence: Lmao it's real lit we def need a corner or too though \n",
"s330 teacher 😎 distErr = 0.0632043916519861 rankErr = 2 wrong predictions😌😁 with sentence: Hitting them protein goals like \n",
"s331 teacher 😔 distErr = 0.5110251230679543 rankErr = 16 wrong predictions🙌😀😊😋😌😍😎😘😁😉🙏😂😅😏😢😭 with sentence: if you sing along , a lil' fucking louder , to a happy song...will you be alright?-bring me the horizon-\n",
"s332 teacher 😎 distErr = 0.2785573587805641 rankErr = 9 wrong predictions😅😢😂😭😔😤😁😌😉 with sentence: Sleeping peacefully tonight. \n",
"s333 teacher 😭 distErr = 0.12598501140204021 rankErr = 3 wrong predictions😢😅😂 with sentence: Really sorry for being inactive \n",
"s334 teacher 😢 distErr = 0.08306386095078468 rankErr = 1 wrong predictions😅 with sentence: save me \n",
"s335 teacher 😂 distErr = 0.22316389682529306 rankErr = 11 wrong predictions😀🙌😌😎😁😋😊😉😍😘🙏 with sentence: wow wow wow watch that mouth Chris \n",
"s336 teacher 😂 distErr = 0.03918723728933398 rankErr = 0 wrong predictions with sentence: no I will not stop sir \n",
"s337 teacher 😂 distErr = 0.03871335964104524 rankErr = 0 wrong predictions with sentence: Well why should he he dose not talk about you on the crew chat at all but you talk about him loads and loads tho \n",
"s338 teacher 😍 distErr = 0.05276865052496725 rankErr = 3 wrong predictions😊🙌😀 with sentence: My thoughts on these pictures is that he is my husband and that is our son. My favourite kind of view \n",
"s339 teacher 😂 distErr = 0.18807371142059315 rankErr = 10 wrong predictions😌🙌😁😀😎😊😋😉😍😘 with sentence: Thanks SharkbiteI miss you!!\n",
"s340 teacher 😭 distErr = 0.23894616533107063 rankErr = 9 wrong predictions😂😅😁😢😉😎😌😏🙏 with sentence: why does my brain want to shut off 2 days before my midterm \n",
"s341 teacher 😂 distErr = 0.03680042353466749 rankErr = 0 wrong predictions with sentence: Hell lets leave it plus nna I'm clueless when it comes to the Bible\n",
"s342 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: verbatim by blackbear \n",
"s343 teacher 🙏 distErr = 0.16094171032440396 rankErr = 8 wrong predictions😁😎😉😌😀🙌😋😊 with sentence: Forever Shellz ☝\n",
"s344 teacher 😍 distErr = 0.1692335063276865 rankErr = 8 wrong predictions😌🙌😁😎😀😊😉😋 with sentence: Gorgeous!! \n",
"s345 teacher 😊 distErr = 0.1705410067344062 rankErr = 8 wrong predictions😁😎😌😉🙌😀😂😋 with sentence: You are welcome! can't wait to see what you do next!\n",
"s346 teacher 😂 distErr = 0.06348819018963157 rankErr = 0 wrong predictions with sentence: Hardest question of the day MAKE WAY FOR TZH TRAILER\n",
"s347 teacher 😉 distErr = 0.189285301494625 rankErr = 5 wrong predictions😂😅😁😢😌 with sentence: Thank you very much. Its a stubborn thing but so am I Ill get there. Speak again soon and see whats spinning then.\n",
"s348 teacher 😀 distErr = 0.19268018107487256 rankErr = 7 wrong predictions😂😅😁😌😎😉🙌 with sentence: No, wished it was.I normally get the kids one of those for Xmas.x\n",
"s349 teacher 😭 distErr = 0.2569934041195099 rankErr = 11 wrong predictions😂😅😁😌😎😉😢🙌😀🙏😏 with sentence: Im about to take the BEST nap after this class \n",
"s350 teacher 😀 distErr = 0.24440428857370175 rankErr = 9 wrong predictions😅😂😢😁😌😎😉😭🙌 with sentence: FOX5ATLANTA reports PaulFromFox5: Come back to Atlanta soon GoodDayAtlanta \n",
"s351 teacher 😢 distErr = 0.3926708073868438 rankErr = 14 wrong predictions🙌😀😌😊😋😍😎😁😘😉😂🙏😅😏 with sentence: Last pic tho so cute \n",
"s352 teacher 😂 distErr = 0.08371618920171933 rankErr = 1 wrong predictions😁 with sentence: On god \n",
"s353 teacher 😭 distErr = 0.13255164140117545 rankErr = 3 wrong predictions😢😅😂 with sentence: Yall need to stop this \n",
"s354 teacher 😭 distErr = 0.23933862466881128 rankErr = 9 wrong predictions😅😂😁😢😌😎😉🙌😀 with sentence: Awhhhh i miss you tooooo ❤️\n",
"s355 teacher 😭 distErr = 0.03472102645440846 rankErr = 0 wrong predictions with sentence: Funniest thing I've seen in timee \n",
"s356 teacher 😂 distErr = 0.05158745286618302 rankErr = 0 wrong predictions with sentence: Me: All I want to be is to be loved...Mum: MOVE \n",
"s357 teacher 😊 distErr = 0.28431218847461975 rankErr = 13 wrong predictions😂😅😁😉😎😌😢😏🙏🙌😀😭😋 with sentence: 🖐more days till the greatest day of the month. \n",
"s358 teacher 🙌 distErr = 0.2826726131053804 rankErr = 12 wrong predictions😂😅😢😭😁😉😌😔😎😏🙏😤 with sentence: Okay you completely bodied this Eugene ❤️\n",
"s359 teacher 😁 distErr = 0.15958258267699582 rankErr = 2 wrong predictions😂😅 with sentence: and here we go \n",
"s360 teacher 😂 distErr = 0.19661147814537597 rankErr = 10 wrong predictions😌🙌😎😀😁😋😉😊😍😘 with sentence: Good luck to trying to get that price. \n",
"s361 teacher 😋 distErr = 0.34259654422172303 rankErr = 14 wrong predictions😅😂😢😭😔😁😌😉😎😤😏🙏🙌😀 with sentence: I just assumed you already did.\n",
"s362 teacher 😉 distErr = 0.07641584294563553 rankErr = 3 wrong predictions😁😎😌 with sentence: See anyone familiar? \n",
"s363 teacher 😊 distErr = 0.02606093743944176 rankErr = 0 wrong predictions with sentence: Thanks Ruth \n",
"s364 teacher 😂 distErr = 0.03830418897395096 rankErr = 0 wrong predictions with sentence: that darn BBC! \n",
"s365 teacher 😢 distErr = 0.07504642660652036 rankErr = 2 wrong predictions😭😔 with sentence: IM CRYING \n",
"s366 teacher 😂 distErr = 0.2555222996850329 rankErr = 10 wrong predictions🙌😀😊😌😋😍😎😘😁😉 with sentence: “Hellooo” \n",
"s367 teacher 🙏 distErr = 0.20682952201488478 rankErr = 7 wrong predictions😂😅😁😉😎😌😢 with sentence: Another day another breakthrough \n",
"s368 teacher 🙏 distErr = 0.06796370855688523 rankErr = 0 wrong predictions with sentence: Vape nation god bless ☝and pray to the vape gods\n",
"s369 teacher 😂 distErr = 0.21678959024158626 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: I was going to loose my head ... But read it twice Right now ✌\n",
"s370 teacher 😭 distErr = 0.07072015371826357 rankErr = 2 wrong predictions😔😤 with sentence: I have an exam tomorrow, bout to study tonight, at work &amp; right before class \n",
"s371 teacher 😂 distErr = 0.08463093021691759 rankErr = 0 wrong predictions with sentence: It's tough. I hit 9 out of 25 which I am happy with for a 1st go. But I could hardly hold the weight of the gun lol \n",
"s372 teacher 😂 distErr = 0.009005530829823638 rankErr = 0 wrong predictions with sentence: I changed it \n",
"s373 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: My husbands a div \n",
"s374 teacher 😎 distErr = 0.4404609041409804 rankErr = 12 wrong predictions😭😔😤😢😩😒😅😂😁😏😌😉 with sentence: 22 more days to go. \n",
"s375 teacher 😢 distErr = 0.09628862138904143 rankErr = 3 wrong predictions😔😭😤 with sentence: Things i need....Crystal Snow single, Wings Tour Japan DVD and 4th muster tix \n",
"s376 teacher 😂 distErr = 0.031185928971140947 rankErr = 0 wrong predictions with sentence: we don't know what we want\n",
"s377 teacher 😒 distErr = 0.3013364410264161 rankErr = 8 wrong predictions😢😭😅😂😔😤😁😩 with sentence: And that's why you don't trust garbage, terrible, awful pitchers that used to play with the Texas rangers! \n",
"s378 teacher 🙏 distErr = 0.16878500639478408 rankErr = 6 wrong predictions😂😁😅😉😎😌 with sentence: We appreciate the support bruv \n",
"s379 teacher 😊 distErr = 0.23479571451093267 rankErr = 12 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😋😏 with sentence: Meet Bruno.. our latest training puppy and super smart!! Gorgeous too \n",
"s380 teacher 😂 distErr = 0.057001261921940265 rankErr = 1 wrong predictions😅 with sentence: Haha, I had the exact opposite experience in Japan. The water and seat were heated, not a fan lol. Where do I turn it off?! \n",
"s381 teacher 😭 distErr = 0.059659992396231556 rankErr = 1 wrong predictions😔 with sentence: Idk if it's just me , but as SOON as I eat any dairy or specifically drink iced coffee, I be farting up a storm &amp; I get sleepy\n",
"s382 teacher 😉 distErr = 0.1924400025526071 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Just have to say..dealing with the ignorance of the inbreds..called tRumptards...the \"mute\" button..brings such..relief\n",
"s383 teacher 😊 distErr = 0.037638144144854245 rankErr = 2 wrong predictions🙌😀 with sentence: Happy ThursdaySri Rama JayamGood Morning akka and all \n",
"s384 teacher 😍 distErr = 0.36533209184651555 rankErr = 16 wrong predictions😅😂😢😭😁😌😉😔😎😏🙏😤🙌😀😋😊 with sentence: You are mine day dream \n",
"s385 teacher 😂 distErr = 0.029283204298761408 rankErr = 0 wrong predictions with sentence: My colleague gave me 30 cubes with a msg 'for conspiring to make us fat' \n",
"s386 teacher 😊 distErr = 0.19442498420429585 rankErr = 10 wrong predictions😁😌😎😉😂🙌😀😅😋🙏 with sentence: Yes, mine too. Hope u do \n",
"s387 teacher 😍 distErr = 0.40751946690217294 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀😩😒😋😊 with sentence: Matching with my son \n",
"s388 teacher 😂 distErr = 0.2412911257604886 rankErr = 7 wrong predictions😭😔😢😤😩😒😅 with sentence: “Why you acting bratty?” MEEEEE \n",
"s389 teacher 😂 distErr = 0.28263495528022614 rankErr = 11 wrong predictions😊🙌😀😍😋😘😌😎😁😉🙏 with sentence: I was thinking that\n",
"s390 teacher 😂 distErr = 0.025630514574924844 rankErr = 0 wrong predictions with sentence: I almost yelled yes!!! On a crowded train \n",
"s391 teacher 😔 distErr = 0.2627967384997788 rankErr = 10 wrong predictions😂😅😢😁😉😏😎🙏😌😭 with sentence: I'm cognizant of the fact that my stresses are so trivial in the grand scheme of things, but I'm still so upset. How do I make it all stop?\n",
"s392 teacher 🙏 distErr = 0.4008375775079498 rankErr = 13 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉😎 with sentence: Since were alone, please choose me to be able to hug Niall, this would mean the whole world! \n",
"s393 teacher 😍 distErr = 0.1673196526638619 rankErr = 8 wrong predictions😁😎😌😀🙌😉😋😊 with sentence: Wow 'd and following. \n",
"s394 teacher 😭 distErr = 0.08036491082219874 rankErr = 1 wrong predictions😢 with sentence: I GET TO SEE MY MAN TONIGHT!!! I miss him so much \n",
"s395 teacher 😩 distErr = 0.38900840289054894 rankErr = 17 wrong predictions😂😅😢😭😁😏😔😉🙏😎😌😤🙌😀😋😊😍 with sentence: I wouldnt go to group and theyd tell me they were gonna keep me longer if I didnt start participating \n",
"s396 teacher 😭 distErr = 0.05866144124451219 rankErr = 0 wrong predictions with sentence: Wheres Jose I need him to help me study for my test \n",
"s397 teacher 😭 distErr = 0.10623395439327883 rankErr = 2 wrong predictions😢😅 with sentence: SUPER HELLA AF jealous of anyone that got to see Post Malone \n",
"s398 teacher 😤 distErr = 0.3964293654173484 rankErr = 17 wrong predictions😁😂😉😎😌😅🙏😀🙌😏😋😊😢😍😘😭😔 with sentence: When they are too much.. and instantly you snap with their dramas. \n",
"s399 teacher 😂 distErr = 0.013860330672070164 rankErr = 0 wrong predictions with sentence: When you know what's right and are the gatekeeper you know every trick in the book \n",
"s400 teacher 😍 distErr = 0.3245992819192724 rankErr = 16 wrong predictions😅😂😢😁😌😎😉😭🙌😀🙏😔😏😋😊😤 with sentence: Laid Up &amp; Watched Netflix . \n",
"s401 teacher 🙏 distErr = 0.22549768569708337 rankErr = 8 wrong predictions😂😅😢😁😉😎😌😏 with sentence: 1,000. gotta free the family. \n",
"s402 teacher 😂 distErr = 0.2688408716179265 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: I felt it for you. \n",
"s403 teacher 😁 distErr = 0.19217839334913242 rankErr = 3 wrong predictions😂😅😢 with sentence: I have no idea who you are. Came upon this by accident. But you appear to be a major league asshole POS. Bye\n",
"s404 teacher 😭 distErr = 0.052415041578284395 rankErr = 1 wrong predictions😢 with sentence: I dont feel good at all \n",
"s405 teacher 😀 distErr = 0.2524013601026134 rankErr = 7 wrong predictions😏🙏😉😁😎😂😌 with sentence: Gotcha! \n",
"s406 teacher 😘 distErr = 0.18342760280470458 rankErr = 10 wrong predictions😌😁😎🙌😀😉😋😊😍😂 with sentence: His Smile After Hitting That huge Six \n",
"s407 teacher 😂 distErr = 0.0843814716559167 rankErr = 0 wrong predictions with sentence: The way I got curved \n",
"s408 teacher 😭 distErr = 0.347266901710062 rankErr = 15 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏😍😘😏😢 with sentence: george\n",
"s409 teacher 😂 distErr = 0.08886795335409998 rankErr = 2 wrong predictions😅😢 with sentence: Idwc pisses me off cause 1. Hes usually right bout black women i fuck with 2. He always trying pawn me off on white women \n",
"s410 teacher 🙌 distErr = 0.0771228753445336 rankErr = 3 wrong predictions😍😊😘 with sentence: YASSS It's time for a great show CDSavageSquad:Porsche giveaway sen \n",
"s411 teacher 😂 distErr = 0.029321311434170032 rankErr = 0 wrong predictions with sentence: You're funny \n",
"s412 teacher 😢 distErr = 0.034824376284308914 rankErr = 0 wrong predictions with sentence: Wanna go home naaa\n",
"s413 teacher 😂 distErr = 0.11867222324023437 rankErr = 4 wrong predictions😁😌😎😉 with sentence: The coolest one around yo \n",
"s414 teacher 😍 distErr = 0.23930069918586538 rankErr = 12 wrong predictions😁😂😌😎😅😉🙌😀🙏😋😊😏 with sentence: So pretty \n",
"s415 teacher 😁 distErr = 0.1954619185392805 rankErr = 3 wrong predictions😂😅😢 with sentence: I sure will when you see my request my name starts with a E and ends with a N I won't say the full name… \n",
"s416 teacher 😔 distErr = 0.17912558677129858 rankErr = 4 wrong predictions😅😢😂😭 with sentence: And why did it have to sting me in my pinky \n",
"s417 teacher 😂 distErr = 0.14589649796433649 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: You know LONDON but you go to Hampstead to get cheaper items \n",
"s418 teacher 😍 distErr = 0.21408149832290294 rankErr = 11 wrong predictions😁😌😎😉😂🙌😀😅😋😊🙏 with sentence: Listen here. You are beautiful. Look at that profile picture. are you real? \n",
"s419 teacher 😅 distErr = 0.12725933120077498 rankErr = 5 wrong predictions😂😁😉😎😌 with sentence: Anyways I love this fake relationship so much y'all can stay mad I guess. \n",
"s420 teacher 🙏 distErr = 0.05651740800343182 rankErr = 0 wrong predictions with sentence: Amen\n",
"s421 teacher 😭 distErr = 0.027879882056251522 rankErr = 0 wrong predictions with sentence: Words can't even describe how much I miss my babe just wanna be w him right now ❤️\n",
"s422 teacher 🙌 distErr = 0.05347040634655345 rankErr = 2 wrong predictions😊😍 with sentence: YASSS It's time for show R6RiCo : \n",
"s423 teacher 😭 distErr = 0.3317888737933777 rankErr = 15 wrong predictions😁😌😎😂😉😅🙌😀😋🙏😊😏😍😘😢 with sentence: Demi Lovato is going on tour and I am DETERMINED to see her if she comes to Texas ♥️\n",
"s424 teacher 😂 distErr = 0.17171433996612948 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: That's fucked up \n",
"s425 teacher 😊 distErr = 0.04862097760902602 rankErr = 2 wrong predictions🙌😀 with sentence: We miss you too, ate Camille! We hope you can visit us soon \n",
"s426 teacher 😭 distErr = 0.2549387876467955 rankErr = 11 wrong predictions😂😅😁😌😉😎😢🙏😏🙌😀 with sentence: In France you love muslims and immigrants to not be considered as fascist \n",
"s427 teacher 😂 distErr = 0.10039455573230198 rankErr = 2 wrong predictions😁😌 with sentence: only an Asian would go this far.... \n",
"s428 teacher 😁 distErr = 0.24601050440207378 rankErr = 6 wrong predictions😅😢😂😭😔😤 with sentence: it really is \n",
"s429 teacher 😂 distErr = 0.1297627468708172 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: Keep holding onto that Took yall 100+ Years\n",
"s430 teacher 😅 distErr = 0.12247789774052573 rankErr = 3 wrong predictions😢😭😔 with sentence: people have found out about my diet coke addiction.\n",
"s431 teacher 😉 distErr = 0.11230233975974131 rankErr = 5 wrong predictions😌😁😎🙌😀 with sentence: I'm doing starting today! I love this . \n",
"s432 teacher 😂 distErr = 0.2304797760682652 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: This shits got me crying like a lil bitch \n",
"s433 teacher 😭 distErr = 0.10868165056962385 rankErr = 2 wrong predictions😢😅 with sentence: I dont think I ever been more upset than the time Jims Steak ran outta steak \n",
"s434 teacher 😍 distErr = 0.26509313199012596 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😏😢😋😊 with sentence: my bestie is bad \n",
"s435 teacher 😂 distErr = 0.08258241128194899 rankErr = 1 wrong predictions😅 with sentence: The funniest shit I heard was Charlemagne said Wendy William's had seen the angel from the Crossroads video. \n",
"s436 teacher 😏 distErr = 0.27564862410046365 rankErr = 13 wrong predictions🙌😀😌😎😁😋😊😍😉😘😂🙏😅 with sentence: Good morning! Here too! So no work !\n",
"s437 teacher 😎 distErr = 0.3571749432610328 rankErr = 12 wrong predictions😢😭😔😅😤😂😩😒😁😌😏😉 with sentence: Guess whos hair is a uniform color again!!! Back to jet black ! \n",
"s438 teacher 😂 distErr = 0.21348654399496197 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: I want the last word \n",
"s439 teacher 😂 distErr = 0.304026881054335 rankErr = 7 wrong predictions😔😤😭😩😒😢😅 with sentence: he hates vegetables \n",
"s440 teacher 😂 distErr = 0.09397367420461841 rankErr = 1 wrong predictions😁 with sentence: I made my boyfriend watch Mean Girls with me when we were in Colorado and he can literally quote it better than I can. \n",
"s441 teacher 😔 distErr = 0.06763847994220638 rankErr = 2 wrong predictions😭😢 with sentence: Been working so much, trying to pay for school and rent. Like I'm tempted to get another job to try and buy Demi tickets, cuz I'm broke. \n",
"s442 teacher 😂 distErr = 0.018357558918064593 rankErr = 0 wrong predictions with sentence: Anybody can go to the warriors and fit in \n",
"s443 teacher 😢 distErr = 0.04927073976980291 rankErr = 0 wrong predictions with sentence: shet gusto ko mag thailand ☹️ take me back \n",
"s444 teacher 😂 distErr = 0.045745823809373413 rankErr = 0 wrong predictions with sentence: I hate when niggas twitters private !!!!!!!!!! Yeah Juan this is for you \n",
"s445 teacher 😊 distErr = 0.37440210278822966 rankErr = 17 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀😩😒😋 with sentence: i cant wait to get my nails done\n",
"s446 teacher 🙌 distErr = 0.27559454067684214 rankErr = 11 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔 with sentence: our Mc Lido Hotel JHB South R120 at computicket \n",
"s447 teacher 😂 distErr = 0.019982237096890395 rankErr = 0 wrong predictions with sentence: Nah FAM \n",
"s448 teacher 😒 distErr = 0.28511020119774183 rankErr = 7 wrong predictions😢😭😅😔😂😤😩 with sentence: Right, like come on \n",
"s449 teacher 😂 distErr = 0.045243720149312 rankErr = 0 wrong predictions with sentence: lmao my boy done grew up on me\n",
"s450 teacher 😏 distErr = 0.22322916522402048 rankErr = 11 wrong predictions😁😂😌😎😅😉🙌😀🙏😋😊 with sentence: ur a cracker now? \n",
"s451 teacher 😍 distErr = 0.27141172686714665 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: i cant wait to buy a house with michael \n",
"s452 teacher 😉 distErr = 0.0960580696266348 rankErr = 5 wrong predictions😌😁😎🙌😀 with sentence: That's usually the case for super fun games, especially \n",
"s453 teacher 😂 distErr = 0.020886104162356204 rankErr = 0 wrong predictions with sentence: Jade Brady your competition is heating up \n",
"s454 teacher 😂 distErr = 0.09949960783360572 rankErr = 2 wrong predictions😅😢 with sentence: Why are you being so dramatic. A little fight has never really hurt nobody. sa ipateng ka rona. \n",
"s455 teacher 😁 distErr = 0.16008891507024697 rankErr = 2 wrong predictions😂😅 with sentence: Sir,When u sick doc ask tp eat only such dish, our economy is sick thats why govt ask to eat only khichdi.\n",
"s456 teacher 😍 distErr = 0.08428514578587969 rankErr = 4 wrong predictions🙌😀😊😌 with sentence: MY FAVORITE \n",
"s457 teacher 😩 distErr = 0.4258656126474254 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😏🙏😭🙌😀😔😋😤😊😍😘 with sentence: They had a bread stand set up today with roasted red pepper humus out... bihhhh\n",
"s458 teacher 😘 distErr = 0.31682232531091176 rankErr = 15 wrong predictions😂😁😉😅😎🙏😌😏😀🙌😋😢😊😍😭 with sentence: saumya mam sorry to you what happened to your father we pray that he is happy wherever he is : we love mam \n",
"s459 teacher 😔 distErr = 0.2176674958362432 rankErr = 5 wrong predictions😅😂😢😭😁 with sentence: Sorry \n",
"s460 teacher 😩 distErr = 0.6183754202204557 rankErr = 18 wrong predictions😎😌😁😀🙌😉😋😊😍😘🙏😂😅😏😢😭😔😤 with sentence: Ik Im growing up I cant sleep all day or all night unless I get my luh baby cuffed up next to me, if she aint Im on the run \n",
"s461 teacher 😏 distErr = 0.23082257117031252 rankErr = 12 wrong predictions😁😌😎😂😉😅🙌😀😋😊🙏😍 with sentence: Meanwhile Param-Harshita will be conversing over their dresscode for todays chat session! bff wala same pinch… \n",
"s462 teacher 😂 distErr = 0.15320752993638337 rankErr = 4 wrong predictions😢😭😅😔 with sentence: what about every other arizona team? least the dodgers made the play offs last 4/5 \n",
"s463 teacher 😂 distErr = 0.02700958847929713 rankErr = 0 wrong predictions with sentence: Wow girl byeeeeee we aint got time for that \n",
"s464 teacher 😒 distErr = 0.513585466167484 rankErr = 19 wrong predictions😁😂😌😎😅😉🙌😀🙏😋😊😏😢😍😘😭😔😤😩 with sentence: Mxim! You're never getting an oreo mcflurry from me\n",
"s465 teacher 😅 distErr = 0.10522422117675746 rankErr = 2 wrong predictions😂😁 with sentence: Walking dead new frontier so lit .. Episode 5 tomorrow.. And some dota 2 new patch.. After work \n",
"s466 teacher 😂 distErr = 0.03895163428157909 rankErr = 0 wrong predictions with sentence: Dats hard \n",
"s467 teacher 😂 distErr = 0.15903201477369913 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Hate this 1st of the month shite but ............ \n",
"s468 teacher 😂 distErr = 0.028111003876935478 rankErr = 0 wrong predictions with sentence: Really? Wheres there 3 countries missing that have had teams win the European Cup? \n",
"s469 teacher 😂 distErr = 0.014559593935140487 rankErr = 0 wrong predictions with sentence: I remember twitter funerals \n",
"s470 teacher 😂 distErr = 0.1316857716514654 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: The laugh I let out when I read this ⚰️ \n",
"s471 teacher 😂 distErr = 0.021620246382036714 rankErr = 0 wrong predictions with sentence: Haha I have no idea . We do share a brain \n",
"s472 teacher 😘 distErr = 0.24838496406495694 rankErr = 13 wrong predictions😁😉😎😌😀😂🙌🙏😋😅😏😊😍 with sentence: looks great \n",
"s473 teacher 😍 distErr = 0.08195746861597578 rankErr = 5 wrong predictions🙌😀😊😌😋 with sentence: chris browns new album \n",
"s474 teacher 😅 distErr = 0.049081306763237256 rankErr = 0 wrong predictions with sentence: And i thought they were on vacation \n",
"s475 teacher 😩 distErr = 0.26011861212879395 rankErr = 6 wrong predictions😢😭😔😅😤😂 with sentence: I Cant Wait Till My Schedule Changes Next Week \n",
"s476 teacher 😂 distErr = 0.005956042089299673 rankErr = 0 wrong predictions with sentence: Did I just hear Sevilla or Moscow fans singing a version of Will Grigg on fire? \n",
"s477 teacher 😭 distErr = 0.4197129431657524 rankErr = 15 wrong predictions😌🙌😀😎😁😊😋😉😍😘😂😅🙏😏😢 with sentence: I love fries \n",
"s478 teacher 😉 distErr = 0.09841616830973621 rankErr = 5 wrong predictions😌😁😎🙌😀 with sentence: If you ever need someone to interview concerning the subject of (TNG) slash... \n",
"s479 teacher 😍 distErr = 0.04114602383524007 rankErr = 0 wrong predictions with sentence: love you\n",
"s480 teacher 😒 distErr = 0.1864743230720784 rankErr = 5 wrong predictions😭😔😤😢😩 with sentence: Black on black hate is disgusting \n",
"s481 teacher 😤 distErr = 0.12949257336700842 rankErr = 3 wrong predictions😢😭😔 with sentence: Trying on a shirt that I haven't worn in two years wasn't fun \n",
"s482 teacher 😘 distErr = 0.17120276656696662 rankErr = 9 wrong predictions😌😎😁🙌😀😉😋😊😍 with sentence: Hope it's mine you'll be thinking of \n",
"s483 teacher 🙏 distErr = 0.23909323045047678 rankErr = 9 wrong predictions😂😅😢😁😭😉😌😎😏 with sentence: Can't fold or cry when you go through shit the struggle suppose to make you go harder \n",
"s484 teacher 😭 distErr = 0.3828993907561972 rankErr = 15 wrong predictions😁😎😌😉🙌😀😋😊😂😍🙏😅😘😏😢 with sentence: hes still with the army necklace \n",
"s485 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: What?\n",
"s486 teacher 😊 distErr = 0.4241075944551587 rankErr = 17 wrong predictions😢😅😭😂😔😤😁😩😒😏😌😉😎🙏🙌😀😋 with sentence: You're pro-life?Interesting.\n",
"s487 teacher 😭 distErr = 0.42304441284865324 rankErr = 15 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂🙏😅😏😢 with sentence: shet too much beauty in 2 pics \n",
"s488 teacher 😭 distErr = 0.15879119724224797 rankErr = 3 wrong predictions😅😂😢 with sentence: Bitchhhhhhhh thanksgiving is this month \n",
"s489 teacher 😂 distErr = 0.08696377811245078 rankErr = 2 wrong predictions😅😢 with sentence: A month ago I wouldnt have found this funny but I started watching friends like a week ago and its hilarious \n",
"s490 teacher 😂 distErr = 0.13065240444470264 rankErr = 6 wrong predictions😌😁😎🙌😉😀 with sentence: can't wait to see you sister!\n",
"s491 teacher 😭 distErr = 0.07050845198783219 rankErr = 1 wrong predictions😢 with sentence: I want fish &amp; shrimp fried rice from Que's \n",
"s492 teacher 😍 distErr = 0.1421420688198447 rankErr = 8 wrong predictions😎😁😀😌🙌😉😋😊 with sentence: congratulations! Excellent progress! \n",
"s493 teacher 😂 distErr = 0.05267368366791147 rankErr = 0 wrong predictions with sentence: People really upset cause people celebrating they hometown team for winning the World Series, Dumb \n",
"s494 teacher 😉 distErr = 0.1678101143402272 rankErr = 5 wrong predictions😂😅😁😌😎 with sentence: im high off you babe \n",
"s495 teacher 😂 distErr = 0.11654523647172917 rankErr = 4 wrong predictions😁😎😉😌 with sentence: with her fan \n",
"s496 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: never that \n",
"s497 teacher 😒 distErr = 0.5962330883425784 rankErr = 19 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅🙏😏😢😭😔😤😩 with sentence: Im done with Tyrese \n",
"s498 teacher 😩 distErr = 0.22400584334799745 rankErr = 6 wrong predictions😭😢😔😤😅😂 with sentence: I want a Dog for Christmas \n",
"s499 teacher 😍 distErr = 0.25957580756312276 rankErr = 13 wrong predictions😂😅😌😁😎😉🙌😀😢😋😊🙏😏 with sentence: Sir seemed to having a good company Looking Adorable &amp; Handsome as always \n",
"s500 teacher 😉 distErr = 0.08644105132071248 rankErr = 3 wrong predictions😁😎😌 with sentence: It is ok to be biased towards our teams\n",
"s501 teacher 😂 distErr = 0.15366801171744054 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Y'all outta control \n",
"s502 teacher 😂 distErr = 0.19370473871044525 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: My mum was right about every one of them! \n",
"s503 teacher 😂 distErr = 0.2033736696654205 rankErr = 11 wrong predictions😎😌😀😁🙌😉😋😊😍😘🙏 with sentence: iam waiting for a grandslam!!\n",
"s504 teacher 😭 distErr = 0.2779381758127708 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: We know bitch mind ya business \n",
"s505 teacher 😩 distErr = 0.19403608692933333 rankErr = 4 wrong predictions😭😔😢😤 with sentence: So sad..\n",
"s506 teacher 😌 distErr = 0.35283762602644414 rankErr = 10 wrong predictions😢😭😔😅😤😂😩😒😁😏 with sentence: Get outta work early, nap with mama bear it is\n",
"s507 teacher 😍 distErr = 0.47633454803802117 rankErr = 18 wrong predictions😢😭😔😅😤😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: Hate my life never allowed out again \n",
"s508 teacher 😁 distErr = 0.10081568420939407 rankErr = 1 wrong predictions😂 with sentence: I love Pamela's face moving from being Joan to herself \n",
"s509 teacher 😤 distErr = 0.25811291540306625 rankErr = 10 wrong predictions😂😅😢😭😁😔😉😌😎😏 with sentence: I think your phones broken \n",
"s510 teacher 😍 distErr = 0.3496525722477249 rankErr = 16 wrong predictions😅😂😢😁😭😌😎😉😔😏🙌🙏😀😤😋😊 with sentence: He has my heart oh my god his smileeee ♥️ he makes my heart so happy \n",
"s511 teacher 😩 distErr = 0.17876721915965146 rankErr = 4 wrong predictions😔😭😤😢 with sentence: Really need gym but really want bed \n",
"s512 teacher 🙏 distErr = 0.21230536146016615 rankErr = 11 wrong predictions😌😎🙌😁😀😉😋😊😍😘😂 with sentence: Thank You God for waking me up today \n",
"s513 teacher 😂 distErr = 0.11405162419529817 rankErr = 4 wrong predictions😁😌😎😉 with sentence: It's so relaxing knowing that I don't have to do a repeat of last year and stay up all night watching the exits of Beddow for drunk people \n",
"s514 teacher 😢 distErr = 0.057284476570980146 rankErr = 1 wrong predictions😭 with sentence: the guy will start to feel sharp headche and stomach acge immediately..\n",
"s515 teacher 😂 distErr = 0.02256589923132058 rankErr = 0 wrong predictions with sentence: say na river plate \n",
"s516 teacher 😊 distErr = 0.08768731174047109 rankErr = 6 wrong predictions🙌😌😀😎😁😋 with sentence: Thank you Orlaíth, will do all the best! \n",
"s517 teacher 😁 distErr = 0.16623180031142806 rankErr = 3 wrong predictions😅😂😢 with sentence: H-town \n",
"s518 teacher 😍 distErr = 0.3754259201753168 rankErr = 16 wrong predictions😅😂😢😭😁😔😉😌😎😏😤🙏🙌😀😋😊 with sentence: This Spurs game \n",
"s519 teacher 😢 distErr = 0.1615699942476325 rankErr = 2 wrong predictions😂😅 with sentence: Of course so sorry, that was near you.. so much bad news its hard to keep up \n",
"s520 teacher 😘 distErr = 0.14036467965345192 rankErr = 9 wrong predictions🙌😌😀😎😁😋😊😍😉 with sentence: toooootally late, lol but happy birthday babe! \n",
"s521 teacher 😂 distErr = 0.07374668174010891 rankErr = 0 wrong predictions with sentence: Beating LA \n",
"s522 teacher 😘 distErr = 0.011660641178430436 rankErr = 0 wrong predictions with sentence: happy birthday gf!! celebrate accordingly, love u always ❤️ \n",
"s523 teacher 😤 distErr = 0.2770485141950758 rankErr = 11 wrong predictions😂😅😢😁😭😉😏😎😌🙏😔 with sentence: time 2 bulk \n",
"s524 teacher 🙌 distErr = 0.1577676446389245 rankErr = 6 wrong predictions😁😂😎😉😌😅 with sentence: Its November so that means January is two months away\n",
"s525 teacher 😔 distErr = 0.052913948495091324 rankErr = 1 wrong predictions😤 with sentence: There are so many sins I can never ever atone for \n",
"s526 teacher 😂 distErr = 0.032934498644244616 rankErr = 0 wrong predictions with sentence: She needs to put her arms down jk dont @ me \n",
"s527 teacher 😒 distErr = 0.3110004952736459 rankErr = 9 wrong predictions😢😅😭😂😔😤😁😌😩 with sentence: I should've named my son\n",
"s528 teacher 😩 distErr = 0.42887095166294714 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😏🙏😭🙌😀😔😋😤😊😍😘 with sentence: I want a baby, actually won't boys \n",
"s529 teacher 😉 distErr = 0.08754245970235054 rankErr = 5 wrong predictions😎😁😌😀🙌 with sentence: I hope she's putting small doses of arsenic in his dinner every night \n",
"s530 teacher 🙏 distErr = 0.281581988859464 rankErr = 11 wrong predictions😅😂😢😭😔😁😤😉😌😎😏 with sentence: IDGAF how inadequate you made me feel, I'm handsome and I got hella kings to tell me so \n",
"s531 teacher 😂 distErr = 0.08469578182443355 rankErr = 1 wrong predictions😅 with sentence: there's a dance off scene between two cheerleaders in like the 8th episode and that's when i decided i'd had enough \n",
"s532 teacher 😂 distErr = 0.02722762461175544 rankErr = 0 wrong predictions with sentence: That shit look fun as hell to me \n",
"s533 teacher 😭 distErr = 0.17961138053035247 rankErr = 3 wrong predictions😅😂😢 with sentence: Missed a whole exam ☹️ KMS\n",
"s534 teacher 😁 distErr = 0.3484745644529448 rankErr = 8 wrong predictions😢😭😔😤😅😂😩😒 with sentence: Honestly karma is so real\n",
"s535 teacher 😏 distErr = 0.22526293810734055 rankErr = 10 wrong predictions😂😅😁😌😎😉🙌😀🙏😢 with sentence: I never like these kinda hashtags. Please come up with something new team. \n",
"s536 teacher 😌 distErr = 0.05379504805237958 rankErr = 1 wrong predictions😁 with sentence: Last night was a spooky one heres to the end of spooky szn its time to be thankful \n",
"s537 teacher 😂 distErr = 0.019044530468690764 rankErr = 0 wrong predictions with sentence: Bihh Im dead \n",
"s538 teacher 😂 distErr = 0.027440382603775765 rankErr = 0 wrong predictions with sentence: Entire tl is all about you what have you done?\n",
"s539 teacher 😂 distErr = 0.04050599574572432 rankErr = 0 wrong predictions with sentence: Thats a joke that never gets old \n",
"s540 teacher 😉 distErr = 0.11091757738341804 rankErr = 4 wrong predictions😁😂😌😎 with sentence: Hi Tyler, thanks for following me. Ive written about 12 Christian Childrens Books! They are better than Disney CartoonsJs!\n",
"s541 teacher 😂 distErr = 0.03495852020346853 rankErr = 1 wrong predictions😅 with sentence: they say olive, either you like em or hate em one of the objekts in food i never learn to love\n",
"s542 teacher 😂 distErr = 0.04539238875278328 rankErr = 0 wrong predictions with sentence: You know it\n",
"s543 teacher 😊 distErr = 0.09678930223394913 rankErr = 5 wrong predictions😌🙌😀😎😁 with sentence: On To The Next One!!!!!! Robin Hood The Musical: A Tale of Love and Revenge.… \n",
"s544 teacher 😂 distErr = 0.04507056401449858 rankErr = 1 wrong predictions😅 with sentence: this so sweet \n",
"s545 teacher 😔 distErr = 0.1191516073746333 rankErr = 2 wrong predictions😢😭 with sentence: Ex-Mariners \n",
"s546 teacher 😩 distErr = 0.42764206795859366 rankErr = 18 wrong predictions😂😅😢😁😉😎😌😏🙏😭🙌😀😔😤😋😊😍😘 with sentence: I dont \n",
"s547 teacher 😂 distErr = 0.06506070524914652 rankErr = 1 wrong predictions😅 with sentence: Dont know who dis is but she look iconic af \n",
"s548 teacher 😩 distErr = 0.41566283380800195 rankErr = 18 wrong predictions😂😅😢😁😏😉😎😭🙏😌😔🙌😀😤😋😊😍😘 with sentence: i aint make it to Taco Bell FML \n",
"s549 teacher 😋 distErr = 0.30717580365327185 rankErr = 14 wrong predictions😂😅😢😁😉😎😌😏😭🙏😔🙌😀😤 with sentence: BUSS THAT PUSSY OPEN LIKE A COCONUT \n",
"s550 teacher 😂 distErr = 0.03469704406901686 rankErr = 0 wrong predictions with sentence: You need to bring Jihoon along for the obvs reasons . Bring them to Murni!! Or are there b… \n",
"s551 teacher 😎 distErr = 0.22539092614692272 rankErr = 7 wrong predictions😂😅😢😁😭😉😌 with sentence: Nah u Assume, explode, and then argue. Then u ask the question. That shit work. Ion know why im still single tho fam \n",
"s552 teacher 😍 distErr = 0.2028482985247711 rankErr = 10 wrong predictions😌😁😎🙌😉😀😂😅😋😊 with sentence: Only 4 perfs left of Dirty Rotten Scoundrels Absolutely LOVE this show. A new fave don't miss it! \n",
"s553 teacher 😏 distErr = 0.23150605523042986 rankErr = 8 wrong predictions😂😅😢😁😌😉😎😭 with sentence: think the same! \n",
"s554 teacher 😂 distErr = 0.037340625836963334 rankErr = 0 wrong predictions with sentence: Yup, the devil owns my soul \n",
"s555 teacher 🙌 distErr = 0.058317106114621 rankErr = 2 wrong predictions😊😍 with sentence: YASSS It's time for a great show smokay_420: \n",
"s556 teacher 😂 distErr = 0.0652863427066216 rankErr = 1 wrong predictions😅 with sentence: I got away from a speeding ticket because of this \n",
"s557 teacher 😂 distErr = 0.15563357892860194 rankErr = 4 wrong predictions😢😭😔😅 with sentence: The last one got me gone \n",
"s558 teacher 😂 distErr = 0.17240396565506147 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: my dad just said the only thing i know in english its \"okay\" fuck me \n",
"s559 teacher 🙏 distErr = 0.04792814412330597 rankErr = 0 wrong predictions with sentence: help pls\n",
"s560 teacher 😭 distErr = 0.2714311856818678 rankErr = 13 wrong predictions😂😅😁😉😌😎😢🙏🙌😀😏😋😊 with sentence: Someone make plans w me tonight \n",
"s561 teacher 😭 distErr = 0.0988496476031434 rankErr = 1 wrong predictions😢 with sentence: if my boyfriend think ima stop being friends w a dude cause he said so... he's absolutely right \n",
"s562 teacher 😊 distErr = 0.31073332867096437 rankErr = 15 wrong predictions😂😅😁😢😉😎😌😏🙏😭🙌😀😔😋😤 with sentence: Dear white people, we want the land and our language back . \n",
"s563 teacher 😔 distErr = 0.30127325395066873 rankErr = 15 wrong predictions😂😅😁😉😎😌😢🙏😏🙌😀😋😭😊😍 with sentence: Hey I would really appreciate a new pair of sneakers, im really struggling to buy some I hate to ask and i hope you understand\n",
"s564 teacher 😂 distErr = 0.146349653644331 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Omg lmao your replys are crazy \n",
"s565 teacher 😊 distErr = 0.05213499612066688 rankErr = 2 wrong predictions🙌😀 with sentence: Smile. It intimidates those who wish to destroy you \n",
"s566 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: take out a loan \n",
"s567 teacher 😀 distErr = 0.09388684152723446 rankErr = 4 wrong predictions😌😁😎🙌 with sentence: Now eagerly awaiting pictures when you plan that day trip \n",
"s568 teacher 😂 distErr = 0.02758713121857798 rankErr = 0 wrong predictions with sentence: ❤️ Outstanding!\n",
"s569 teacher 😂 distErr = 0.14082974046587393 rankErr = 4 wrong predictions😢😭😅😔 with sentence: out of college early due to me and my friends not having nothing to do during study \n",
"s570 teacher 😂 distErr = 0.016934760598155234 rankErr = 0 wrong predictions with sentence: Yep bakit \n",
"s571 teacher 😊 distErr = 0.45943629963605237 rankErr = 17 wrong predictions😢😭😔😅😤😂😩😒😁😏😌😉😎🙏🙌😀😋 with sentence: you dont need these hoes ❤️ I got you back fuck those who cheat\n",
"s572 teacher 😋 distErr = 0.32909417738673596 rankErr = 14 wrong predictions😅😂😢😭😁😉😌😔😎😏🙏😤🙌😀 with sentence: My to brother \n",
"s573 teacher 😒 distErr = 0.36428190702438357 rankErr = 16 wrong predictions😅😂😢😭😔😁😤😉😌😏😎🙏🙌😀😋😩 with sentence: Now I gotta hear all these shitty Angel, Giant and Padre fans say shit all year like their teams actually were good this year \n",
"s574 teacher 😭 distErr = 0.3475658543844639 rankErr = 15 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏😍😘😏😢 with sentence: I love how I clicked on this tweet notif like I click on my moms texts, right away. loving Niall since day 1 ❤️ \n",
"s575 teacher 😍 distErr = 0.06924218541055244 rankErr = 4 wrong predictions🙌😀😊😋 with sentence: Had brownies and ice cream earlier \n",
"s576 teacher 😍 distErr = 0.05539864289163883 rankErr = 3 wrong predictions😊🙌😀 with sentence: Looking At All The Flicks From The Weekend \n",
"s577 teacher 😌 distErr = 0.13851743706739614 rankErr = 3 wrong predictions😂😅😁 with sentence: Saturday was too fun for my liking \n",
"s578 teacher 😭 distErr = 0.20646337598845008 rankErr = 4 wrong predictions😅😂😢😁 with sentence: Did yall see that ring? \n",
"s579 teacher 🙏 distErr = 0.30985297659216926 rankErr = 11 wrong predictions😢😅😂😭😔😤😁😏😉😌😎 with sentence: Jah Jah please work on me, father God still work on me \n",
"s580 teacher 😂 distErr = 0.05158326800029112 rankErr = 1 wrong predictions😅 with sentence: Slow yo role shorty \n",
"s581 teacher 😂 distErr = 0.08845089960459661 rankErr = 2 wrong predictions😅😢 with sentence: Really \n",
"s582 teacher 😎 distErr = 0.13699302033333813 rankErr = 3 wrong predictions😂😁😉 with sentence: MAKE WAY FOR TZH TRAILER \n",
"s583 teacher 😂 distErr = 0.11797881177061427 rankErr = 2 wrong predictions😢😅 with sentence: Yea how to text people back to apparently \n",
"s584 teacher 😂 distErr = 0.13651659714477105 rankErr = 3 wrong predictions😢😭😅 with sentence: YOURE RUINING IT FOR EVERYONE SHUT UP \n",
"s585 teacher 😂 distErr = 0.04975671091132039 rankErr = 1 wrong predictions😅 with sentence: yes i was like wtf \n",
"s586 teacher 🙌 distErr = 0.3909516291657312 rankErr = 14 wrong predictions😢😭😔😅😤😂😩😒😁😌😏😉😎🙏 with sentence: My Sub 3... \n",
"s587 teacher 😭 distErr = 0.053264836690539503 rankErr = 1 wrong predictions😢 with sentence: Lmaoooo my sis said “she need a refund on the good pussy she gave up “ bc he turned out not to be shit \n",
"s588 teacher 😅 distErr = 0.06866748253672388 rankErr = 1 wrong predictions😂 with sentence: many I could list. \n",
"s589 teacher 😊 distErr = 0.5185346462290681 rankErr = 17 wrong predictions😭😔😢😤😅😩😒😂😁😏😌😉😎🙏🙌😀😋 with sentence: Ohh. Well u could take a bubble bath. \n",
"s590 teacher 😩 distErr = 0.36722203136760906 rankErr = 16 wrong predictions😅😂😢😭😔😁😤😌😉😎😏🙏🙌😀😋😊 with sentence: My entire family since 1987 for weddings, baby showers, family reunions, Easter, Christmas and thanksgiving \n",
"s591 teacher 😉 distErr = 0.167314920568631 rankErr = 4 wrong predictions😂😅😁😌 with sentence: To writers- have any small town boys in your stories? Totally just listened to “Small Town Boy” and thought of this \n",
"s592 teacher 😂 distErr = 0.039522899571673376 rankErr = 0 wrong predictions with sentence: DELETE TGIS IM NEVER GONNA UNSEE THIS \n",
"s593 teacher 😭 distErr = 0.2058958270120328 rankErr = 4 wrong predictions😂😅😢😁 with sentence: a week ago already \n",
"s594 teacher 😂 distErr = 0.20966034101159214 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: He's a horrible horrible dad \n",
"s595 teacher 😢 distErr = 0.16679073880257725 rankErr = 3 wrong predictions😂😅😁 with sentence: me two.. \n",
"s596 teacher 🙌 distErr = 0.24103501322645146 rankErr = 10 wrong predictions😂😅😢😁😌😉😎😭😏🙏 with sentence: - Constellations \n",
"s597 teacher 😁 distErr = 0.18547319786423672 rankErr = 3 wrong predictions😂😅😢 with sentence: I need some more lip scrub \n",
"s598 teacher 😂 distErr = 0.03047181665568454 rankErr = 0 wrong predictions with sentence: farmers and farmers Girona and Spurs back to back. See my life \n",
"s599 teacher 🙌 distErr = 0.17767009768234437 rankErr = 6 wrong predictions😂😁😅😌😎😉 with sentence: they might shoot the whole damn crowd if you fuck with me! \n",
"s600 teacher 😭 distErr = 0.22983449955526958 rankErr = 9 wrong predictions😂😅😢😁😉😎😌😏🙏 with sentence: its a drake line\n",
"s601 teacher 😂 distErr = 0.26314906167962626 rankErr = 10 wrong predictions🙌😀😊😌😍😋😘😎😁😉 with sentence: Me: I am drawing our love \n",
"s602 teacher 😂 distErr = 0.1226875425895627 rankErr = 4 wrong predictions😁😉😎😌 with sentence: I spotted taejin at the back \n",
"s603 teacher 😘 distErr = 0.2768788790386212 rankErr = 14 wrong predictions😂😁😌😅😎😉🙌😀🙏😋😏😊😢😍 with sentence: I love you too to momma T I had a rough day but I'm good now pray for me tho ❤️\n",
"s604 teacher 😭 distErr = 0.2325762027354896 rankErr = 8 wrong predictions😂😅😁😢😌😉😎😏 with sentence: STOPPPPP \n",
"s605 teacher 😘 distErr = 0.24860448181446165 rankErr = 13 wrong predictions😁😎😉😌😂😀🙌🙏😅😋😊😏😍 with sentence: Maybe just a tad \n",
"s606 teacher 😔 distErr = 0.3439531245863027 rankErr = 16 wrong predictions😂😁😉😎😅😌🙏😏😀🙌😋😢😊😍😘😭 with sentence: Maybe Spurrier should be Tennessees AD...... \n",
"s607 teacher 😍 distErr = 0.2483263116347357 rankErr = 12 wrong predictions😁😂😎😉😌😅🙌😀🙏😏😋😊 with sentence: haha definitely not complaining. so much cute \n",
"s608 teacher 😂 distErr = 0.11241694684436221 rankErr = 3 wrong predictions😁😌😎 with sentence: I know, I ❤it and this one too! It makes me SO happy! \n",
"s609 teacher 😂 distErr = 0.09761566672813506 rankErr = 2 wrong predictions😁😉 with sentence: Yup gotta be \n",
"s610 teacher 😔 distErr = 0.045220936324923036 rankErr = 1 wrong predictions😭 with sentence: Im really sorry \n",
"s611 teacher 🙌 distErr = 0.2672179288366937 rankErr = 11 wrong predictions😂😅😢😁😉😎😌😭😏🙏😔 with sentence: Boy I stg I gotta supportive mother &amp; father \n",
"s612 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: gatto Gollum\n",
"s613 teacher 😭 distErr = 0.43405462960151175 rankErr = 15 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂🙏😅😏😢 with sentence: Ugh I was really looking forward to the trip this weekend \n",
"s614 teacher 😂 distErr = 0.049358876997548685 rankErr = 0 wrong predictions with sentence: ion even need a phone no more tbh \n",
"s615 teacher 😘 distErr = 0.4348822692218695 rankErr = 19 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😩😀😒😋😊😍 with sentence: Awe we miss you too anak \n",
"s616 teacher 😭 distErr = 0.3230763712652433 rankErr = 15 wrong predictions😁😂😉😎😌😅🙏😀🙌😏😋😊😢😍😘 with sentence: 2018 is continuing V2 Resell is still alive\n",
"s617 teacher 😭 distErr = 0.5099844388643194 rankErr = 15 wrong predictions😍😊😘🙌😀😋😌😎😁😉😂🙏😅😏😢 with sentence: i love you so much❤\n",
"s618 teacher 😊 distErr = 0.1012058474638182 rankErr = 7 wrong predictions😌😀😎🙌😁😋😉 with sentence: My pleasure \n",
"s619 teacher 😂 distErr = 0.09658856301426043 rankErr = 2 wrong predictions😅😢 with sentence: Same acrylic nail you know.. I am screaming \n",
"s620 teacher 😒 distErr = 0.6407618338540837 rankErr = 19 wrong predictions🙌😀😌😎😁😋😊😉😍😘😂🙏😅😏😢😭😔😤😩 with sentence: This lady been starring at me since I got to this place \n",
"s621 teacher 😢 distErr = 0.05139772101340841 rankErr = 1 wrong predictions😭 with sentence: missing my lay baby this morning\n",
"s622 teacher 😭 distErr = 0.29793404402937806 rankErr = 15 wrong predictions😂😁😅😉😎😌🙌😀🙏😏😋😢😊😍😘 with sentence: Poorly foxy best get better soon kids could t cope without her \n",
"s623 teacher 😩 distErr = 0.5020298719072028 rankErr = 18 wrong predictions😂😁😅😌😎😉🙌😀🙏😏😋😊😢😍😘😭😔😤 with sentence: Yes. He really is\n",
"s624 teacher 😭 distErr = 0.3876299207065765 rankErr = 15 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅🙏😏😢 with sentence: do not do that, I love the two bands \n",
"s625 teacher 😂 distErr = 0.0771324860093125 rankErr = 0 wrong predictions with sentence: “this is what i do, its really not easy” \n",
"s626 teacher 😏 distErr = 0.24419388274414994 rankErr = 13 wrong predictions😌😁😎🙌😀😉😋😂😊😅😍🙏😘 with sentence: would you be interested in a role like this???? \n",
"s627 teacher 😩 distErr = 0.17349161021697182 rankErr = 4 wrong predictions😔😭😤😢 with sentence: I wish I had more nerdy friends no one wants to Thor with me \n",
"s628 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Im waitinnng \n",
"s629 teacher 😭 distErr = 0.48781060520416564 rankErr = 15 wrong predictions🙌😊😀😍😋😌😘😎😁😉🙏😂😅😏😢 with sentence: Lovveee you guys to the moon and back❤\n",
"s630 teacher 😂 distErr = 0.052952557655110505 rankErr = 1 wrong predictions😅 with sentence: Omg no.. \n",
"s631 teacher 😉 distErr = 0.09363655343548417 rankErr = 5 wrong predictions😌😎😁😀🙌 with sentence: Waiting for the result.. to you.\n",
"s632 teacher 😂 distErr = 0.047170574063086966 rankErr = 1 wrong predictions😅 with sentence: GEEZUS. Im trying this! \n",
"s633 teacher 😍 distErr = 0.2983165900221678 rankErr = 15 wrong predictions😂😅😁😌😎😉😢🙌😀🙏😏😭😋😊😔 with sentence: I'm just tryna be loved and spoiled that's all \n",
"s634 teacher 🙏 distErr = 0.2090334655009845 rankErr = 12 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅 with sentence: iwe nana I'm thinking about you\n",
"s635 teacher 😭 distErr = 0.02904924661754098 rankErr = 0 wrong predictions with sentence: Their words are too rude. i cant stand anymore:( huhu fighting exolss!!!\n",
"s636 teacher 🙌 distErr = 0.27141014899082416 rankErr = 11 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔 with sentence: Exactly \n",
"s637 teacher 😂 distErr = 0.03180304940626452 rankErr = 0 wrong predictions with sentence: Im weak! 🗣\n",
"s638 teacher 😂 distErr = 0.07811120311039228 rankErr = 1 wrong predictions😅 with sentence: We think evra is playing. But nigga is actually mad \n",
"s639 teacher 😊 distErr = 0.3166254082320327 rankErr = 15 wrong predictions😅😂😢😁😌😭😉😎😔😏🙏🙌😀😤😋 with sentence: Seeing Kev always puts me in a good mood \n",
"s640 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Do you ! \n",
"s641 teacher 😩 distErr = 0.3117416295314944 rankErr = 10 wrong predictions😢😅😭😂😔😤😁😌😉😏 with sentence: I want group homes like in every state\n",
"s642 teacher 😂 distErr = 0.06184065660119111 rankErr = 0 wrong predictions with sentence: A Photographer and Settling Down \n",
"s643 teacher 😂 distErr = 0.062202661634962804 rankErr = 0 wrong predictions with sentence: Yes, I'm like thirsty.. if I get 10 likes in 15 minutes, I delete it \n",
"s644 teacher 😂 distErr = 0.06514055285117536 rankErr = 0 wrong predictions with sentence: Date last night \"wow very conservative nurse\" Ya dude, these are blue scrubs w/ sneakers. So comfy. Someone asked if I had just left work \n",
"s645 teacher 😂 distErr = 0.10222618554840944 rankErr = 3 wrong predictions😁😎😉 with sentence: my tosh my knees my shoulder my head\n",
"s646 teacher 😁 distErr = 0.15958258267699582 rankErr = 2 wrong predictions😂😅 with sentence: Niiice! \n",
"s647 teacher 😢 distErr = 0.1341240139841368 rankErr = 2 wrong predictions😂😅 with sentence: Is the woman of the year going to do the worst choice of the year too? Please don't \n",
"s648 teacher 😩 distErr = 0.3987521686732113 rankErr = 18 wrong predictions😂😅😢😁😭😉😏😎😌😔🙏😤🙌😀😋😊😍😘 with sentence: No more face time \n",
"s649 teacher 😀 distErr = 0.22645049005296522 rankErr = 9 wrong predictions😂😅😁😉😎😏🙏😌😢 with sentence: World Series 2017: Los Angeles Dodgers vs. Houston Astros Game 7!!4K live stream!Please share! (via FOX... \n",
"s650 teacher 😢 distErr = 0.13656268533295984 rankErr = 2 wrong predictions😅😂 with sentence: Our Country, just another day. \n",
"s651 teacher 😂 distErr = 0.12278239180389264 rankErr = 4 wrong predictions😁😌😎😉 with sentence: My New Video \n",
"s652 teacher 😭 distErr = 0.22925632367460258 rankErr = 9 wrong predictions😂😅😢😁😉😌😎😏🙏 with sentence: I need a good quote \n",
"s653 teacher 😢 distErr = 0.3710485220751547 rankErr = 14 wrong predictions😀🙌😎😌😁😋😊😉😍😘🙏😂😅😏 with sentence: No I'm so glad you got to meet Kennedy tho. She just joined and is already awesome in the lab. Enjoy the meeting!\n",
"s654 teacher 😂 distErr = 0.028643455016090856 rankErr = 0 wrong predictions with sentence: Dustin a funny lil nigga \n",
"s655 teacher 😂 distErr = 0.12940167918955608 rankErr = 3 wrong predictions😢😅😭 with sentence: Why do I feel guilt when I need to take of from work?? Everyone else does it consecutively and with ease \n",
"s656 teacher 😅 distErr = 0.04473953506090599 rankErr = 1 wrong predictions😂 with sentence: I may be using the Disney Now app to watch the Proud Family.\n",
"s657 teacher 😂 distErr = 0.03745830074070739 rankErr = 0 wrong predictions with sentence: Just had chloe think real hard about this one \n",
"s658 teacher 😂 distErr = 0.04539238875278328 rankErr = 0 wrong predictions with sentence: u know \n",
"s659 teacher 😘 distErr = 0.31231958978573254 rankErr = 16 wrong predictions😂😅😁😌😎😉😢🙌😀🙏😏😋😊😭😍😔 with sentence: who's rattled your cage today??\n",
"s660 teacher 😂 distErr = 0.1610394816541858 rankErr = 8 wrong predictions😌😁😎🙌😀😉😊😋 with sentence: I love this one sorry \n",
"s661 teacher 😂 distErr = 0.026899286170750217 rankErr = 0 wrong predictions with sentence: Thats what im saying \n",
"s662 teacher 😂 distErr = 0.037801636166425866 rankErr = 0 wrong predictions with sentence: On me thats a given lmao I didnt even have to put it \n",
"s663 teacher 😭 distErr = 0.029126907719061818 rankErr = 0 wrong predictions with sentence: Wanna take a nap again. \n",
"s664 teacher 😒 distErr = 0.41291087542553545 rankErr = 19 wrong predictions😂😅😢😁😉😭😎😌😏🙏😔🙌😀😤😋😊😍😘😩 with sentence: Unfortunately, it's a different James \n",
"s665 teacher 😂 distErr = 0.06573337316685171 rankErr = 1 wrong predictions😅 with sentence: I thinks she was horrified of crota and she became blind. Byf where you at? \n",
"s666 teacher 😂 distErr = 0.1473865021350709 rankErr = 3 wrong predictions😢😅😭 with sentence: I can't wait anymore for your new album!! ❤ I love u\n",
"s667 teacher 😭 distErr = 0.18287763725418565 rankErr = 3 wrong predictions😅😂😢 with sentence: Dont do that .. I dont need to get fussed out she can see your tweets but no mine cause we blocked each other \n",
"s668 teacher 😂 distErr = 0.2350539479964675 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: Waking up with a cricked neck just aint the pattern for today \n",
"s669 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Myself \n",
"s670 teacher 😂 distErr = 0.03338760588446193 rankErr = 0 wrong predictions with sentence: There isn't that much OCD in the world , for your mind to be like thatJust relax &amp; do things 1 day and w… \n",
"s671 teacher 😂 distErr = 0.03635788934413083 rankErr = 1 wrong predictions😅 with sentence: What's happening here you 2 \n",
"s672 teacher 😩 distErr = 0.39434496973609034 rankErr = 18 wrong predictions😂😅😢😭😁😉😌😔😎😏🙏😤🙌😀😋😊😍😘 with sentence: Guiiiiiiise! I have a half pound of snickerdoodles. Someone save me from myself \n",
"s673 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: This is me \n",
"s674 teacher 😂 distErr = 0.13803286322103459 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: I dont even remember coming on last night, its all a blur after that \n",
"s675 teacher 😭 distErr = 0.25196594076242534 rankErr = 11 wrong predictions😂😅😁😉😎😢😌😏🙏🙌😀 with sentence: You know Im definitely coming to get him cause I gotta pick my turkey up \n",
"s676 teacher 😂 distErr = 0.18994057907037248 rankErr = 10 wrong predictions😌😎😁🙌😀😉😋😊😍😘 with sentence: We see Chris loves pizza just as much as you ❤️ \n",
"s677 teacher 😂 distErr = 0.03155239766473902 rankErr = 0 wrong predictions with sentence: this is why I walk around with my eyes closed so stop asking \n",
"s678 teacher 😂 distErr = 0.14517149916497535 rankErr = 4 wrong predictions😢😭😅😔 with sentence: As if to imply there is an equal English term for all terms in a text, as an example. \n",
"s679 teacher 😂 distErr = 0.01652496350401909 rankErr = 0 wrong predictions with sentence: . did you guys know about ? \n",
"s680 teacher 😊 distErr = 0.050973891617328335 rankErr = 1 wrong predictions🙌 with sentence: Attn Merry Christmas \n",
"s681 teacher 😢 distErr = 0.16679073880257725 rankErr = 3 wrong predictions😂😅😁 with sentence: Haays \n",
"s682 teacher 😘 distErr = 0.13344844809916612 rankErr = 9 wrong predictions😀🙌😌😎😋😊😁😍😉 with sentence: Thank you \n",
"s683 teacher 😀 distErr = 0.2403931909630836 rankErr = 11 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭 with sentence: Do they have something in Tahiti?\n",
"s684 teacher 😭 distErr = 0.06982247057918907 rankErr = 1 wrong predictions😢 with sentence: damn joey really just roasted me \n",
"s685 teacher 😌 distErr = 0.13972933046313918 rankErr = 5 wrong predictions😂😅😁😉😎 with sentence: yeah\n",
"s686 teacher 😭 distErr = 0.27354089527641956 rankErr = 13 wrong predictions😂😅😁😌😉😎🙌😢😀🙏😏😋😊 with sentence: are you gonna post pics of your costume im \n",
"s687 teacher 😂 distErr = 0.22279944433394952 rankErr = 10 wrong predictions🙌😌😀😎😊😁😋😍😉😘 with sentence: I love this hashtag\n",
"s688 teacher 😎 distErr = 0.3415175253303601 rankErr = 12 wrong predictions😢😭😅😔😂😤😩😒😁😏😌😉 with sentence: I know you want to grow your hair long! \n",
"s689 teacher 😁 distErr = 0.33197789205619677 rankErr = 8 wrong predictions😢😭😔😅😤😂😩😒 with sentence: Straight to the point. Do you like Klare-unnie? \n",
"s690 teacher 😅 distErr = 0.06901855640966933 rankErr = 1 wrong predictions😂 with sentence: Schade \n",
"s691 teacher 😂 distErr = 0.041299014767670054 rankErr = 0 wrong predictions with sentence: Lets go \n",
"s692 teacher 😂 distErr = 0.025791229878781925 rankErr = 0 wrong predictions with sentence: Ne be\n",
"s693 teacher 😂 distErr = 0.015153341896311887 rankErr = 0 wrong predictions with sentence: Lol please share! via DM\n",
"s694 teacher 😂 distErr = 0.15988978748752566 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Oh joy sounds like a great night for them!\n",
"s695 teacher 🙏 distErr = 0.21327400393393459 rankErr = 8 wrong predictions😂😁😅😌😎😉🙌😀 with sentence: Let's go on to win this \n",
"s696 teacher 😂 distErr = 0.14620080726720722 rankErr = 4 wrong predictions😢😭😅😔 with sentence: London is white \n",
"s697 teacher 😩 distErr = 0.5858594380365085 rankErr = 18 wrong predictions😁😌😎😉🙌😀😋😊😂😍🙏😅😘😏😢😭😔😤 with sentence: Almost ten in the shoebox it's not easy even hustling that much \n",
"s698 teacher 🙌 distErr = 0.34994470431457103 rankErr = 14 wrong predictions😢😅😂😭😔😤😁😌😉😏😎😩😒🙏 with sentence: When your dad tells you he hasnt smoked a cigarette in 10 days \n",
"s699 teacher 😊 distErr = 0.04966414474115931 rankErr = 2 wrong predictions🙌😀 with sentence: I am soo happy \n",
"s700 teacher 😂 distErr = 0.10489596199034672 rankErr = 2 wrong predictions😢😅 with sentence: i've got 10 friend requests on my current acc guys please im not sure if im keeping this acc yet\n",
"s701 teacher 😅 distErr = 0.11657004159924149 rankErr = 2 wrong predictions😂😁 with sentence: Good luck! The struggle is too real \n",
"s702 teacher 😌 distErr = 0.1104006563194583 rankErr = 6 wrong predictions😊😍🙌😘😀😋 with sentence: I just love 's good morning/goodnight tweets \n",
"s703 teacher 😭 distErr = 0.020901241834705535 rankErr = 0 wrong predictions with sentence: Walked back into work like why tf did I walk in here \n",
"s704 teacher 😍 distErr = 0.05605499619100242 rankErr = 3 wrong predictions😊🙌😀 with sentence: Morning View \n",
"s705 teacher 😂 distErr = 0.1428920912667268 rankErr = 4 wrong predictions😢😭😅😔 with sentence: because she doesnt have a penis \n",
"s706 teacher 😂 distErr = 0.01801976962615919 rankErr = 0 wrong predictions with sentence: Lolz \n",
"s707 teacher 😂 distErr = 0.06183223012010992 rankErr = 1 wrong predictions😅 with sentence: Oh lol, I never knew .. Idk why I thought it was a Saturday last year\n",
"s708 teacher 😂 distErr = 0.1794260159083399 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Lol shes dreamin right now of gettin rough wi me ...... n so are u x\n",
"s709 teacher 🙏 distErr = 0.21157492721474416 rankErr = 8 wrong predictions😂😅😁😌😉😎😢🙌 with sentence: A snippet from my TEDxCUD talk. Full version should be out soon. I'm blessed and humbled \n",
"s710 teacher 😊 distErr = 0.044011517640464334 rankErr = 1 wrong predictions😍 with sentence: Love it ! \n",
"s711 teacher 😘 distErr = 0.22393295183286177 rankErr = 12 wrong predictions😌😁😎🙌😉😀😂😅😋😊😍🙏 with sentence: thanks for your wish \n",
"s712 teacher 😭 distErr = 0.24380324503669484 rankErr = 11 wrong predictions😂😅😁😢😌😉😎🙌🙏😏😀 with sentence: SO hyped for WW2 \n",
"s713 teacher 🙌 distErr = 0.2623782069226642 rankErr = 11 wrong predictions😂😅😢😁😌😉😭😎😏🙏😔 with sentence: Stranger Things nailed their choice of music. Honestly. \n",
"s714 teacher 😍 distErr = 0.031067567905336737 rankErr = 1 wrong predictions😊 with sentence: Amazing \n",
"s715 teacher 😂 distErr = 0.14902436901526106 rankErr = 4 wrong predictions😢😭😅😔 with sentence: people be so mad when they only hyu when they need something but you don't reply\n",
"s716 teacher 😂 distErr = 0.10263275447194065 rankErr = 3 wrong predictions😁😌😎 with sentence: I don't even have anyone to go to these homecoming events with \n",
"s717 teacher 😂 distErr = 0.03463108332358106 rankErr = 0 wrong predictions with sentence: How do you spew this stuff with a straight face?! Are you kidding me? \n",
"s718 teacher 😭 distErr = 0.2324975099096025 rankErr = 6 wrong predictions😅😂😢😌😁😎 with sentence: I miss yall too \n",
"s719 teacher 😏 distErr = 0.3167880968248365 rankErr = 9 wrong predictions😢😭😅😔😂😤😩😒😁 with sentence: My sister is telling one of her friends about her personal growth over the years \"I learned that every action doesn't need a reaction\" \n",
"s720 teacher 😤 distErr = 0.1562215463823845 rankErr = 4 wrong predictions😢😭😔😅 with sentence: honestly its hard AF finding someone you vibe w/ literally the second you meet \n",
"s721 teacher 😎 distErr = 0.38933385861925107 rankErr = 12 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉 with sentence: I aint trynna make friends bitch Im trynna eat \n",
"s722 teacher 😍 distErr = 0.04688533221148644 rankErr = 1 wrong predictions😊 with sentence: Netflix adicionou Frozen aaaaa vou assistir \n",
"s723 teacher 🙌 distErr = 0.39920817794624647 rankErr = 14 wrong predictions😢😭😔😅😤😂😩😒😁😏😌😉😎🙏 with sentence: Reminiscing on all of the vacations/trips/getaways I've been on in 2017 Let's these last two months be full of adventure \n",
"s724 teacher 😋 distErr = 0.28446745716131916 rankErr = 13 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔 with sentence: tagaytay boooound \n",
"s725 teacher 😭 distErr = 0.2608617489931384 rankErr = 10 wrong predictions😅😂😁😌😎😉😢🙌😀🙏 with sentence: i love my two moms ❤\n",
"s726 teacher 😂 distErr = 0.176527492146171 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: yeooo this is why is my wce \n",
"s727 teacher 😩 distErr = 0.6050600129319279 rankErr = 18 wrong predictions😉😁😎😌😀🙏🙌😋😊😂😏😍😅😘😢😭😔😤 with sentence: Will she just be my babygirl already \n",
"s728 teacher 😭 distErr = 0.2205749755750366 rankErr = 7 wrong predictions😂😅😢😁😌😉😎 with sentence: Pictures of me 2 years ago \n",
"s729 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: this is me omyghad \n",
"s730 teacher 😂 distErr = 0.022725303610129123 rankErr = 0 wrong predictions with sentence: Gonna make a new version of “Rally Round the Flag” but change red black and green to red white and blue .\n",
"s731 teacher 😍 distErr = 0.07521500034170797 rankErr = 4 wrong predictions🙌😀😊😌 with sentence: THANK YOU FOR GOOD VIBES BABY \n",
"s732 teacher 😭 distErr = 0.22704080126749251 rankErr = 7 wrong predictions😂😅😢😁😌😉😎 with sentence: Watching the World Series just makes me sad theres no more baseball until April \n",
"s733 teacher 😁 distErr = 0.15908685450149596 rankErr = 8 wrong predictions😊😍🙌😘😀😋😌😎 with sentence: Hey Mark I love Cracker barrel too; you inspired me to try the dumplings. LOVE THEM \n",
"s734 teacher 😍 distErr = 0.09578378742275105 rankErr = 5 wrong predictions🙌😌😀😊😋 with sentence: morning handsome \n",
"s735 teacher 😍 distErr = 0.35363568785402333 rankErr = 16 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔🙌😀😤😋😊 with sentence: Oh dont make me think Taylor \n",
"s736 teacher 🙌 distErr = 0.2741053187741504 rankErr = 11 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏 with sentence: Get you a man that cooks for you \n",
"s737 teacher 😅 distErr = 0.22295675638143975 rankErr = 6 wrong predictions😔😭😤😢😩😒 with sentence: Don't feel bad you are at least taller than me \n",
"s738 teacher 😂 distErr = 0.2279141556675908 rankErr = 10 wrong predictions🙌😌😀😊😎😋😁😍😘😉 with sentence: She's cute \n",
"s739 teacher 😂 distErr = 0.13949370356091048 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Lmao they're fucking bullies \n",
"s740 teacher 😂 distErr = 0.14564516770721797 rankErr = 4 wrong predictions😢😭😅😔 with sentence: But ur white ? \n",
"s741 teacher 😂 distErr = 0.10602487018293899 rankErr = 2 wrong predictions😢😅 with sentence: You can stop being salty bro\n",
"s742 teacher 😭 distErr = 0.43124486137929063 rankErr = 15 wrong predictions😌🙌😀😎😁😊😋😍😉😘😂🙏😅😏😢 with sentence: Its good though \n",
"s743 teacher 😂 distErr = 0.04718326208990143 rankErr = 0 wrong predictions with sentence: Spotify decided to play only dirty songs while my co-worker was in here. \n",
"s744 teacher 😌 distErr = 0.2495103522505318 rankErr = 9 wrong predictions😅😂😢😭😔😁😉😏😤 with sentence: shawarma rice next time \n",
"s745 teacher 😘 distErr = 0.34328997457826227 rankErr = 17 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤😍 with sentence: Its them not u \n",
"s746 teacher 😂 distErr = 0.037915377874615616 rankErr = 0 wrong predictions with sentence: Intimidated? By me? *shock* \n",
"s747 teacher 😌 distErr = 0.203281388937695 rankErr = 4 wrong predictions😅😂😢😁 with sentence: My life good rn \n",
"s748 teacher 😂 distErr = 0.17171433996612948 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: They done fucked up \n",
"s749 teacher 😭 distErr = 0.1123147149516242 rankErr = 2 wrong predictions😢😅 with sentence: Boy fuck you alone killed me I aint read shit else \n",
"s750 teacher 😂 distErr = 0.16925440301572423 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: It's beautiful! Can't wait for next beautiful attack.. WTF\n",
"s751 teacher 😩 distErr = 0.23177221847916643 rankErr = 6 wrong predictions😭😢😔😤😅😂 with sentence: My hair is so straight , I dont like it anymore \n",
"s752 teacher 😍 distErr = 0.4094206792421247 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😌😉😏😎🙏🙌😀😩😒😋😊 with sentence: Heres a Jungkook blanket. \n",
"s753 teacher 😂 distErr = 0.09613916321280311 rankErr = 2 wrong predictions😅😢 with sentence: You need a break! Relax for a week! Cancel EVERYTHING and go on a spontaneous trip, it'll be fun \n",
"s754 teacher 😩 distErr = 0.4276907824750878 rankErr = 18 wrong predictions😂😅😢😁😌😉😎😭😏🙏🙌😀😔😋😊😤😍😘 with sentence: In loveee \n",
"s755 teacher 😭 distErr = 0.2975821840131186 rankErr = 15 wrong predictions😂😁😅😌😎😉🙌😀🙏😏😋😢😊😍😘 with sentence: My tag boyfriend + girlfriend for hire + happy break up = anshaket \n",
"s756 teacher 😂 distErr = 0.21238882192967956 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: sorry, gonna have to figure this one out\n",
"s757 teacher 😭 distErr = 0.16498590264806928 rankErr = 3 wrong predictions😅😂😢 with sentence: on online shopping to be exact. The total amount drives me crazy. It even exceeds a return AA flight tix to seoul (if bought last min)\n",
"s758 teacher 😂 distErr = 0.12208532807925736 rankErr = 4 wrong predictions😁😌😎😉 with sentence: Some of this Chris Brown album is decent I cant even lie \n",
"s759 teacher 😂 distErr = 0.017603092298124005 rankErr = 0 wrong predictions with sentence: “You know how your mouth waters when you barbecue a steak? I wonder if vegetarians feel that way when they cut the grass..” that is Vern \n",
"s760 teacher 😤 distErr = 0.26698228963066634 rankErr = 11 wrong predictions😂😅😢😭😁😉😔😌😏😎🙏 with sentence: It took us two fking hours to put up this plastic/paper thing \n",
"s761 teacher 😂 distErr = 0.02447661651034432 rankErr = 0 wrong predictions with sentence: Hahahah the ole dick slap \n",
"s762 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: why is the greenery on the top... \n",
"s763 teacher 😂 distErr = 0.16988997689321456 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: Thats Messis beard \n",
"s764 teacher 😂 distErr = 0.07367509558906372 rankErr = 0 wrong predictions with sentence: Love it Cheers bro\n",
"s765 teacher 🙌 distErr = 0.3179308903522422 rankErr = 12 wrong predictions😅😂😢😭😔😤😁😏😉😌😎🙏 with sentence: \"all plaid w the pots, ric flair w the thots (WOO!), its ludacris how much she drop\" -- \n",
"s766 teacher 😘 distErr = 0.39023731847536425 rankErr = 17 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏😤🙌😀😋😊😍 with sentence: Have fun !❣️✈️ \n",
"s767 teacher 🙌 distErr = 0.09450933797690454 rankErr = 2 wrong predictions😌😁 with sentence: ❤Love cannot be contained. Love knows no barriers, no bounds. Love connects… \n",
"s768 teacher 🙏 distErr = 0.28093274119496564 rankErr = 11 wrong predictions😅😂😢😭😔😁😤😉😌😎😏 with sentence: Capital punishment should make a come back \n",
"s769 teacher 😘 distErr = 0.3329441299962606 rankErr = 17 wrong predictions😂😅😁😌😉😢😎🙌🙏😏😀😭😋😊😔😍😤 with sentence: Oh my bae so innocent like a kid luv u .. good night \n",
"s770 teacher 😩 distErr = 0.22767601223573805 rankErr = 6 wrong predictions😭😢😔😤😅😂 with sentence: I literally went 10 hours without a blunt and I'm googling shit \n",
"s771 teacher 😊 distErr = 0.04350139287222422 rankErr = 2 wrong predictions🙌😀 with sentence: Congrats ulit and have a safe flight! \n",
"s772 teacher 😂 distErr = 0.058428178219976735 rankErr = 1 wrong predictions😅 with sentence: Her voice honestly reminds me of cruella or something she ridiculous, wa… \n",
"s773 teacher 😂 distErr = 0.03333679779843161 rankErr = 0 wrong predictions with sentence: Madrid fans wya? \n",
"s774 teacher 😂 distErr = 0.04297994462579654 rankErr = 0 wrong predictions with sentence: some fans said in comments I've read that maybe Taka loves 69. \n",
"s775 teacher 😭 distErr = 0.05410810361478427 rankErr = 1 wrong predictions😢 with sentence: I missed the twttr world Miss ka ba? Putangina\n",
"s776 teacher 😍 distErr = 0.2870297274824769 rankErr = 12 wrong predictions🙏😉😏😁😎😂😌😀🙌😋😅😊 with sentence: Amen❤ \n",
"s777 teacher 😭 distErr = 0.35366727606043963 rankErr = 15 wrong predictions😁😎😌😉😂😀🙌😅😋🙏😊😏😍😘😢 with sentence: 61 days til I'm 23 \n",
"s778 teacher 😭 distErr = 0.14363990955531422 rankErr = 3 wrong predictions😅😢😂 with sentence: WANT THIS SO BAD \n",
"s779 teacher 😘 distErr = 0.34328997457826227 rankErr = 17 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤😍 with sentence: Commented \n",
"s780 teacher 😩 distErr = 0.19290704109001341 rankErr = 4 wrong predictions😭😔😢😤 with sentence: That's me. Now I've done it myself and I feel so bad. \n",
"s781 teacher 😂 distErr = 0.1496985883674133 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Ah good time for a spelling mistake. Can't wait to again in December \n",
"s782 teacher 😍 distErr = 0.2390649001179619 rankErr = 12 wrong predictions😁😂😌😎😉😅🙌😀🙏😋😊😏 with sentence: Omg your smile ❤️\n",
"s783 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Of of \n",
"s784 teacher 🙌 distErr = 0.12746101147443573 rankErr = 5 wrong predictions😁😌😎😉😂 with sentence: im too hyped over Donald singing just cant wait to be king \n",
"s785 teacher 😍 distErr = 0.40001821356624184 rankErr = 18 wrong predictions😂😅😢😭😏😁😔😉🙏😎😤😌🙌😀😋😊😩😒 with sentence: Yesss gooooool \n",
"s786 teacher 😍 distErr = 0.4865582407998008 rankErr = 18 wrong predictions😢😭😔😅😤😂😩😒😁😌😏😉😎🙏🙌😀😋😊 with sentence: Got me some .. can't wait to rock this tank \n",
"s787 teacher 😂 distErr = 0.302529696291546 rankErr = 11 wrong predictions😊😍😘🙌😀😋😌😎😁😉🙏 with sentence: thanks babe \n",
"s788 teacher 😍 distErr = 0.19453139031616326 rankErr = 10 wrong predictions😌😁😎🙌😉😀😂😋😅😊 with sentence: Maryssa is a pretty girl \n",
"s789 teacher 😂 distErr = 0.10688910163393861 rankErr = 2 wrong predictions😢😅 with sentence: Haha ised to be more but i deleted a 800 off IG and deleted all my messages awhile ago but i dont fuck with anybody \n",
"s790 teacher 😂 distErr = 0.013848583814705459 rankErr = 0 wrong predictions with sentence: So really its not that bad because nobody else can count to four either \n",
"s791 teacher 😍 distErr = 0.14226738786659984 rankErr = 8 wrong predictions😌😎😁😀🙌😉😋😊 with sentence: Abram spotted! \n",
"s792 teacher 😘 distErr = 0.13344844809916612 rankErr = 9 wrong predictions😀🙌😌😎😋😊😁😍😉 with sentence: Thank you \n",
"s793 teacher 😭 distErr = 0.05062988757736179 rankErr = 1 wrong predictions😢 with sentence: Just wanna get in my bed \n",
"s794 teacher 🙌 distErr = 0.24652132046043174 rankErr = 10 wrong predictions😂😅😢😁😉😌😎😏🙏😭 with sentence: This Insidious triple feature on AMC right now \n",
"s795 teacher 😂 distErr = 0.08405759278625223 rankErr = 0 wrong predictions with sentence: You know the love is real when two friends call each other nerds \n",
"s796 teacher 😂 distErr = 0.04604934968186388 rankErr = 1 wrong predictions😅 with sentence: Well idk about you but that looks more like the blade of a pencil sharpner than a razor blade to me. \n",
"s797 teacher 😭 distErr = 0.1601239490442169 rankErr = 3 wrong predictions😅😂😢 with sentence: LMFAOOOO \n",
"s798 teacher 😎 distErr = 0.21926735918395046 rankErr = 7 wrong predictions😂😅😢😁😉😭😏 with sentence: That's exactly what that bar says tho. ..... and, U're so welcum.\n",
"s799 teacher 😂 distErr = 0.17435758791015735 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: I literally died laughing because shes so right \n",
"s800 teacher 😌 distErr = 0.13348422480544178 rankErr = 3 wrong predictions😂😅😁 with sentence: Recent Most are from today ✏ \n",
"s801 teacher 😂 distErr = 0.17477440822141208 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Lolol, now that u point it out, it really is a Tsusumu-sans cosplay ! \n",
"s802 teacher 😍 distErr = 0.1605243492686118 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: sex is nice and all, but I just LOVE the pin-up style \n",
"s803 teacher 😂 distErr = 0.02197307452144289 rankErr = 0 wrong predictions with sentence: Ya LYING!! Ya know Beyoncé can't fucking act bro \n",
"s804 teacher 😊 distErr = 0.20002199855305292 rankErr = 10 wrong predictions😁😌😎😂😉😅🙌😀😋🙏 with sentence: thats true \n",
"s805 teacher 😂 distErr = 0.10058652485787507 rankErr = 2 wrong predictions😁😌 with sentence: His sweater gonna say where my hos at my sweater gonna say ho \n",
"s806 teacher 🙏 distErr = 0.2137997898907721 rankErr = 11 wrong predictions😌🙌😎😀😁😉😋😊😍😘😂 with sentence: That yhu make it thru to alive Happy New Monthlet be safe… \n",
"s807 teacher 😍 distErr = 0.4813277815544006 rankErr = 18 wrong predictions😢😭😔😅😤😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: My Birthday Cake ❤️ \n",
"s808 teacher 😉 distErr = 0.12057416683732809 rankErr = 8 wrong predictions😀🙌😌😎😋😊😁😍 with sentence: Thank you \n",
"s809 teacher 😩 distErr = 0.42211930551747967 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😏😭🙏🙌😔😀😤😋😊😍😘 with sentence: I crack the screen on every iPhone I purchase \n",
"s810 teacher 🙏 distErr = 0.2485422995512594 rankErr = 10 wrong predictions😂😅😢😭😁😉😔😏😎😌 with sentence: whoever hit shordy petty, I would've came out n confessed once I seen her condition, world is so fucked up, I pray for mines everyday \n",
"s811 teacher 😭 distErr = 0.09767790282881675 rankErr = 1 wrong predictions😢 with sentence: My back is sore\n",
"s812 teacher 😂 distErr = 0.07990720673900975 rankErr = 1 wrong predictions😅 with sentence: Well played.\n",
"s813 teacher 😂 distErr = 0.2227864195195259 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: You wrong for that \n",
"s814 teacher 🙌 distErr = 0.07082873328474845 rankErr = 4 wrong predictions😎😁😌😀 with sentence: Haha! Thanks Itza! Appreciate it. \n",
"s815 teacher 😊 distErr = 0.3325510294312348 rankErr = 15 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😤😀😋 with sentence: I had a sword fight with j.k rowling \n",
"s816 teacher 😌 distErr = 0.22601889046570645 rankErr = 8 wrong predictions😂😅😢😁😉😏😭😎 with sentence: Who cares where it's from it has big bobs and is T H I C C \n",
"s817 teacher 🙏 distErr = 0.23260147633425948 rankErr = 9 wrong predictions😂😅😁😌😎😉😢🙌😀 with sentence: Thank you Claudia for retweeting my poem! \n",
"s818 teacher 😢 distErr = 0.16086561469535676 rankErr = 2 wrong predictions😂😅 with sentence: Omfg if I actually had the ability to pump out 31 drawings in a single day... \n",
"s819 teacher 😢 distErr = 0.13147953481687075 rankErr = 2 wrong predictions😂😅 with sentence: ITS NOT MY FAULT THE DODGERS LOST THO \n",
"s820 teacher 😍 distErr = 0.16092283757969986 rankErr = 8 wrong predictions😌😁🙌😎😀😉😊😋 with sentence: excited na ko sa saturday / worship night\n",
"s821 teacher 😢 distErr = 0.09604419236619127 rankErr = 2 wrong predictions😅😂 with sentence: is so insfiring I'm emo ryt now \n",
"s822 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Bollox \n",
"s823 teacher 😎 distErr = 0.20842397575258756 rankErr = 6 wrong predictions😂😅😢😁😉😏 with sentence: arman pure ho gaye....? Anyway Munna looking cool \n",
"s824 teacher 😍 distErr = 0.14310894342235383 rankErr = 8 wrong predictions😌😎😁😀🙌😉😋😊 with sentence: Aweee a little you \n",
"s825 teacher 😩 distErr = 0.246468681837766 rankErr = 6 wrong predictions😢😭😔😤😅😂 with sentence: ooooo bitch im tryna go home\n",
"s826 teacher 🙏 distErr = 0.23812792727190316 rankErr = 9 wrong predictions😂😅😢😁😭😉😏😎😌 with sentence: Hahahah... funniest thing heard in recent times... u r great bro.. \n",
"s827 teacher 😂 distErr = 0.1342533364427563 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: Lovely isn't it . Considering it myself \n",
"s828 teacher 😍 distErr = 0.3400078549835035 rankErr = 16 wrong predictions😂😅😢😁😌😉😎😭😏🙏😔🙌😀😤😋😊 with sentence: Whattttt did I do to deserve u \n",
"s829 teacher 😊 distErr = 0.1536089360659533 rankErr = 7 wrong predictions😁😌😎🙌😉😀😋 with sentence: Goodmorning . \n",
"s830 teacher 😒 distErr = 0.38563624769362925 rankErr = 18 wrong predictions😂😅😢😭😁😔😉😌😏😎😤🙏🙌😀😋😊😍😩 with sentence: It's a reason to not date niggas in ya town bc them n them mothers run down on u when it's all over \n",
"s831 teacher 🙌 distErr = 0.13036925408579397 rankErr = 5 wrong predictions😁😌😎😉😂 with sentence: Ill be good for EDC \n",
"s832 teacher 😘 distErr = 0.38113641821858174 rankErr = 17 wrong predictions😂😅😢😁😉😭😎😌😏🙏😔🙌😀😤😋😊😍 with sentence: some ppl just so interested in my life they gotta report it to others. sorry im happy and youre miserable drowning in your sorrows✌\n",
"s833 teacher 🙏 distErr = 0.16673245014654559 rankErr = 7 wrong predictions😁😂😉😎😌😅😀 with sentence: I think this is temporary formula bcz of nehraji farewell \n",
"s834 teacher 😂 distErr = 0.02408466709563859 rankErr = 0 wrong predictions with sentence: I need to go on a serious drinking ban \n",
"s835 teacher 😂 distErr = 0.0290458873843256 rankErr = 0 wrong predictions with sentence: Pretty sure I just got blacklisted from Devil. \n",
"s836 teacher 🙏 distErr = 0.1832611923367796 rankErr = 10 wrong predictions😁😎😌😉🙌😀😂😋😊😅 with sentence: No holding back. . \n",
"s837 teacher 😏 distErr = 0.2937137028001167 rankErr = 13 wrong predictions🙌😀😌😊😋😎😍😁😘😉🙏😂😅 with sentence: I just keep him satisfied through the weekend \n",
"s838 teacher 😂 distErr = 0.03083020739772581 rankErr = 0 wrong predictions with sentence: Oh lord, the fake account replies \n",
"s839 teacher 😊 distErr = 0.39766341257049975 rankErr = 17 wrong predictions😢😅😂😭😔😤😁😌😉😏😎🙏😩😒🙌😀😋 with sentence: You're preaching to the choir man.Go on Fox&amp;Friends or Hannity and tell them that\n",
"s840 teacher 😩 distErr = 0.25776023726187464 rankErr = 6 wrong predictions😢😭😔😅😤😂 with sentence: Broke out the uggs today. It's so cold \n",
"s841 teacher 😂 distErr = 0.09126778001652952 rankErr = 2 wrong predictions😅😢 with sentence: I dont want that nigga so quit bringing him up \n",
"s842 teacher 😩 distErr = 0.6222604172998683 rankErr = 18 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂🙏😅😏😢😭😔😤 with sentence: SHE LOOOOOKKKSSSS AMAZZING LIKE WOW MAMI SALICE! ❤️❤️❤️❤️❤️ \n",
"s843 teacher 😭 distErr = 0.09473453458340576 rankErr = 1 wrong predictions😢 with sentence: Its cold enough \n",
"s844 teacher 😭 distErr = 0.03296644159118038 rankErr = 0 wrong predictions with sentence: I will seriously never get the chance to see Im broke as hell. So sad.\n",
"s845 teacher 😅 distErr = 0.051145427097730595 rankErr = 1 wrong predictions😂 with sentence: thankyouuuhehe\n",
"s846 teacher 😭 distErr = 0.16948133692838538 rankErr = 3 wrong predictions😅😂😢 with sentence: Shoot I volunteer to go with you ! \n",
"s847 teacher 😂 distErr = 0.021302765784274334 rankErr = 0 wrong predictions with sentence: So tat v dont become aunty national \n",
"s848 teacher 😂 distErr = 0.02593196623313397 rankErr = 0 wrong predictions with sentence: I want to join although I'm very fucking far behind (stalking you and replying to all your tweets, can you tell I miss you? )\n",
"s849 teacher 😍 distErr = 0.4957333813577976 rankErr = 18 wrong predictions😢😭😔😤😅😂😩😒😁😌😏😉😎🙏🙌😀😋😊 with sentence: The type of boyfriend/girlfriend i want \n",
"s850 teacher 😎 distErr = 0.322908645311927 rankErr = 12 wrong predictions😢😅😭😂😔😤😁😏😩😒😉😌 with sentence: It's like this: your Kdrama crush vs the guy who fed you hopia for 5 years straight. \n",
"s851 teacher 😂 distErr = 0.03507149997062189 rankErr = 0 wrong predictions with sentence: can I just say y'all coming @ me for that post - I legit just said they were cute and even clarified I didn't think they were dating chill\n",
"s852 teacher 😍 distErr = 0.08963077302199972 rankErr = 6 wrong predictions🙌😀😌😊😋😎 with sentence: the weekend de sza \n",
"s853 teacher 😭 distErr = 0.08713134121121559 rankErr = 1 wrong predictions😢 with sentence: I threw my phone! \n",
"s854 teacher 😍 distErr = 0.24603706926700927 rankErr = 12 wrong predictions😁😂😌😎😉😅🙌😀🙏😋😏😊 with sentence: got to be under baby all day \n",
"s855 teacher 😘 distErr = 0.10189407181691151 rankErr = 7 wrong predictions🙌😀😊😋😍😌😎 with sentence: thanks for the pic gonna put it to good use later\n",
"s856 teacher 😀 distErr = 0.02919272010086163 rankErr = 1 wrong predictions🙌 with sentence: Happy All Saints Day! \n",
"s857 teacher 😂 distErr = 0.025147350503270605 rankErr = 0 wrong predictions with sentence: I mean you can if you want I dont mind \n",
"s858 teacher 😂 distErr = 0.033006202608685704 rankErr = 0 wrong predictions with sentence: the truth\n",
"s859 teacher 😊 distErr = 0.1536089360659533 rankErr = 7 wrong predictions😁😌😎🙌😉😀😋 with sentence: goodmorning \n",
"s860 teacher 😂 distErr = 0.03190007098247036 rankErr = 0 wrong predictions with sentence: its jinminkook, the mighty trio. dont ever doubt \n",
"s861 teacher 😍 distErr = 0.21913754835477411 rankErr = 10 wrong predictions😌😁😎😂🙌😉😅😀😋😊 with sentence: I GOT MY BABY WILL \n",
"s862 teacher 😩 distErr = 0.39283972833289105 rankErr = 18 wrong predictions😅😂😢😭😁😌😉😔😎😏🙏😤🙌😀😋😊😍😘 with sentence: wait wuuut? did i just spoiled myself \n",
"s863 teacher 😭 distErr = 0.13579767334973122 rankErr = 3 wrong predictions😅😢😂 with sentence: Honestly I know Im still gonna be friends with everyone but Im really gonna miss Ron. He was my fav manager \n",
"s864 teacher 😒 distErr = 0.4102218291371018 rankErr = 19 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔🙌😀😤😋😊😍😘😩 with sentence: Oh pls don't me \n",
"s865 teacher 😘 distErr = 0.3375949024000557 rankErr = 16 wrong predictions😂😁😅😉😎😏🙏😌😀🙌😢😋😊😭😍😔 with sentence: constantly inspiring me man!!!\n",
"s866 teacher 😍 distErr = 0.1389048532987329 rankErr = 8 wrong predictions😎😌😀😁🙌😉😋😊 with sentence: waiting to cyu onscreen once again\n",
"s867 teacher 😩 distErr = 0.3923630149177717 rankErr = 18 wrong predictions😅😂😢😭😁😌😉😔😎😏🙏😤🙌😀😋😊😍😘 with sentence: When thats supposed to be its purpose even lawd \n",
"s868 teacher 😅 distErr = 0.08753171752048731 rankErr = 1 wrong predictions😢 with sentence: Its crazy to think my baby sister is bout to be 21 \n",
"s869 teacher 😍 distErr = 0.04183027077005921 rankErr = 1 wrong predictions😊 with sentence: A king \n",
"s870 teacher 😂 distErr = 0.029483728423326295 rankErr = 0 wrong predictions with sentence: Dying omg \n",
"s871 teacher 🙏 distErr = 0.029160243882282187 rankErr = 0 wrong predictions with sentence: Love how humble they are \n",
"s872 teacher 😂 distErr = 0.053847222953022446 rankErr = 0 wrong predictions with sentence: WOW YOU GUYS ARE CRAZY SKHUMBA HAD TO SAY EMPTY \n",
"s873 teacher 😂 distErr = 0.011620318147673971 rankErr = 0 wrong predictions with sentence: Ahahah i'm popular only on tumblr i tried following more people at some times like the 2 years of d&amp;e… \n",
"s874 teacher 🙌 distErr = 0.07124248187645542 rankErr = 4 wrong predictions😎😁😌😀 with sentence: realy?… \n",
"s875 teacher 😋 distErr = 0.2617706299010063 rankErr = 11 wrong predictions😂😅😁😉😎😌😢🙏😏🙌😀 with sentence: Tomorrow, Restore will be serving delicious Garden Minestrone Soup, and a mouthwatering Greek Pasta Salad!\n",
"s876 teacher 😭 distErr = 0.4691439311652627 rankErr = 15 wrong predictions🙌😀😊😌😋😎😍😁😘😉🙏😂😅😏😢 with sentence: That moment when Brie Bella likes your photo!!!!!! ❤️ \n",
"s877 teacher 😂 distErr = 0.06064439720080841 rankErr = 1 wrong predictions😅 with sentence: bruh Eddie found that dude Trippy on Worldstar &amp; proceeded to tag me in it. Like his music is trashhhhhh\n",
"s878 teacher 😭 distErr = 0.2975063077966603 rankErr = 15 wrong predictions😂😁😅😎😉😌🙌😀🙏😏😋😢😊😍😘 with sentence: I needed this before Winston attacked \n",
"s879 teacher 😔 distErr = 0.15957957165270367 rankErr = 4 wrong predictions😢😅😂😭 with sentence: I Hate overthinking about things \n",
"s880 teacher 😂 distErr = 0.05547334656780551 rankErr = 0 wrong predictions with sentence: Ordering the tackiest diamonte covered dress for the weekend and finding out the party is a themed Metal Ceilidh spot the scheme wain\n",
"s881 teacher 🙏 distErr = 0.05651740800343182 rankErr = 0 wrong predictions with sentence: Amen \n",
"s882 teacher 😅 distErr = 0.060898621508129955 rankErr = 0 wrong predictions with sentence: Just need to find a job, place to live, roommates ect\n",
"s883 teacher 😂 distErr = 0.019284099496494855 rankErr = 0 wrong predictions with sentence: Because you have like 50 of them that you havent signed \n",
"s884 teacher 😭 distErr = 0.03731802945026774 rankErr = 0 wrong predictions with sentence: And she said its how she feels about me! Im crying...\n",
"s885 teacher 😀 distErr = 0.239199618062683 rankErr = 10 wrong predictions😂😅😁😢😉😌😎😏🙏🙌 with sentence: haha.. Of course.. but kal Rajma Chawal banaye the.. so emotions me beh gaya.. \n",
"s886 teacher 😔 distErr = 0.26050019539754393 rankErr = 10 wrong predictions😂😅😢😏😁😉🙏😭😎😌 with sentence: so if the exams were marked like the assignments = gg\n",
"s887 teacher 🙌 distErr = 0.01530233455938785 rankErr = 0 wrong predictions with sentence: Go boo\n",
"s888 teacher 😍 distErr = 0.26681735715761 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😏😢😋😊 with sentence: Omg look at L \n",
"s889 teacher 😂 distErr = 0.013324907758583108 rankErr = 0 wrong predictions with sentence: the caption \n",
"s890 teacher 😏 distErr = 0.2734030172931737 rankErr = 7 wrong predictions😅😢😂😭😔😤😁 with sentence: I'm calling Astros..it's time. \n",
"s891 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: The gallows \n",
"s892 teacher 😁 distErr = 0.18598784976986724 rankErr = 3 wrong predictions😂😅😢 with sentence: -And I mean getting stoned in the biblical sense!\n",
"s893 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Its me \n",
"s894 teacher 😌 distErr = 0.10927860579702284 rankErr = 6 wrong predictions😍😊😘🙌😀😋 with sentence: Confess your love for me, testify ❤️\n",
"s895 teacher 😅 distErr = 0.12394659874489596 rankErr = 2 wrong predictions😂😁 with sentence: My notifs going mad cause tom tweeted his acc and Zoe replied \n",
"s896 teacher 😭 distErr = 0.0072012736889106995 rankErr = 0 wrong predictions with sentence: I pray for her health. But Wendy Williams really just dropped \n",
"s897 teacher 😩 distErr = 0.4352305326488812 rankErr = 18 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤😍😘 with sentence: pus-on\n",
"s898 teacher 😎 distErr = 0.10662610723830424 rankErr = 3 wrong predictions😁😌😂 with sentence: Shes just needed a on her @ Gili Islands \n",
"s899 teacher 😂 distErr = 0.018533202398898434 rankErr = 0 wrong predictions with sentence: Lmao first off I do and Your just salty because Your losing \n",
"s900 teacher 😎 distErr = 0.3024583071517713 rankErr = 10 wrong predictions😢😅😂😭😔😤😁😌😉😏 with sentence: When's the dvd out come on you fucking spurs \n",
"s901 teacher 😁 distErr = 0.04687632874328201 rankErr = 0 wrong predictions with sentence: I do exceedingly nice seething \n",
"s902 teacher 🙏 distErr = 0.04799229897542522 rankErr = 1 wrong predictions😏 with sentence: Sending so much prayer!! ♥️\n",
"s903 teacher 😁 distErr = 0.19164421803051312 rankErr = 3 wrong predictions😂😅😢 with sentence: Sure. Am all done. \n",
"s904 teacher 😂 distErr = 0.10296457008784923 rankErr = 2 wrong predictions😅😢 with sentence: Can't believe my dad has managed to get 18 months free on Netflix \n",
"s905 teacher 😔 distErr = 0.10504353612163306 rankErr = 2 wrong predictions😢😭 with sentence: To make my life even worse got a job interview for a sports coaching job Wednesday but need to take my qualifications which are in the bin\n",
"s906 teacher 😂 distErr = 0.17677931441985031 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: unreal\n",
"s907 teacher 😎 distErr = 0.0669870998878086 rankErr = 1 wrong predictions😁 with sentence: With pleasure xxx\n",
"s908 teacher 😘 distErr = 0.02040173606227514 rankErr = 1 wrong predictions😍 with sentence: Happy birthday !!! Stay pretty and fab!!! Miss youuuuu \n",
"s909 teacher 😩 distErr = 0.48521178039666274 rankErr = 18 wrong predictions😂😅😁😌😎😉🙌😀😢🙏😋😊😏😍😘😭😔😤 with sentence: Missing my baby \n",
"s910 teacher 😂 distErr = 0.09457836154100138 rankErr = 2 wrong predictions😅😢 with sentence: yeah I hate you \n",
"s911 teacher 😔 distErr = 0.045806290368173935 rankErr = 0 wrong predictions with sentence: I'm terrified \n",
"s912 teacher 🙏 distErr = 0.05651740800343182 rankErr = 0 wrong predictions with sentence: Amen \n",
"s913 teacher 😅 distErr = 0.10248386013389069 rankErr = 2 wrong predictions😢😭 with sentence: Im scared but I've still try \n",
"s914 teacher 😭 distErr = 0.03448347744819863 rankErr = 0 wrong predictions with sentence: Oh My God!! I am crying. ❤️❤️ \n",
"s915 teacher 😂 distErr = 0.3044851985464726 rankErr = 10 wrong predictions😍😊😘🙌😀😋😌😎😁😉 with sentence: I love her \n",
"s916 teacher 😩 distErr = 0.3143499246988767 rankErr = 11 wrong predictions😢😅😭😂😔😤😁😌😏😉😎 with sentence: Thinking of getting a Tattoo for every heartbreak. Ink will never dissapoint me.\n",
"s917 teacher 😌 distErr = 0.07602916512154775 rankErr = 5 wrong predictions🙌😀😊😋😍 with sentence: show me later \n",
"s918 teacher 😍 distErr = 0.10544788466146102 rankErr = 4 wrong predictions🙌😌😀😊 with sentence: Happy Gorgeous ❤ \n",
"s919 teacher 😘 distErr = 0.05669539001275653 rankErr = 2 wrong predictions😊😍 with sentence: Happy birthday from Argentina. Have an amazing day \n",
"s920 teacher 😂 distErr = 0.03726041783724297 rankErr = 0 wrong predictions with sentence: “Its November Im tryina get stuffed” biiiitch me too tf\n",
"s921 teacher 😢 distErr = 0.13778777272928983 rankErr = 2 wrong predictions😂😅 with sentence: We are currently reliant on fossil fuels for 91% of our electricity \n",
"s922 teacher 😤 distErr = 0.30702122098319107 rankErr = 15 wrong predictions😂😅😢😁😌😉😎😭😏🙏🙌😀😔😋😊 with sentence: I need these bitches to come on \n",
"s923 teacher 😁 distErr = 0.14379818485875648 rankErr = 8 wrong predictions😊🙌😍😀😋😘😌😎 with sentence: Happy bday to my best bud, hope it's a good one \n",
"s924 teacher 😀 distErr = 0.2668957602417148 rankErr = 12 wrong predictions😂😅😢😁😉😌😎😭😏🙏😔🙌 with sentence: Good comedy \n",
"s925 teacher 😂 distErr = 0.019455050246703107 rankErr = 0 wrong predictions with sentence: Like he should \n",
"s926 teacher 😭 distErr = 0.2101902655257045 rankErr = 5 wrong predictions😂😅😢😁😉 with sentence: Why did Dance Academy have to go so hard with Sammy's death\n",
"s927 teacher 😂 distErr = 0.1798418284553298 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: she don't approve of my antics y'all \n",
"s928 teacher 😅 distErr = 0.17371906804489803 rankErr = 9 wrong predictions😁😉😎😌😂🙏😀🙌😏 with sentence: And modi was the first person to walk on the surface of moon. \n",
"s929 teacher 😊 distErr = 0.17427807291336792 rankErr = 9 wrong predictions😁😌😎😉🙌😀😂😅😋 with sentence: pls : meet-up in York (2/12, 10:30am at Cosy Club). Message me/ if youre interested \n",
"s930 teacher 😂 distErr = 0.04999712193085158 rankErr = 1 wrong predictions😅 with sentence: YES! Its so bad for me now. Im like come ON, Im only 25. Hahaha\n",
"s931 teacher 😏 distErr = 0.23079538729980814 rankErr = 10 wrong predictions😂😅😁😌😎😉😢🙌😀🙏 with sentence: The best part of having a minivan for 11 months is a lot of space ... anyone want to take a nap????\n",
"s932 teacher 😍 distErr = 0.18863868490698585 rankErr = 10 wrong predictions😌😁😎🙌😉😀😂😋😊😅 with sentence: Good news \n",
"s933 teacher 😂 distErr = 0.26476442396770905 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: Pmo.Personalized.Girlfriend is triggered \n",
"s934 teacher 😍 distErr = 0.1345345184549128 rankErr = 8 wrong predictions😌🙌😀😎😁😊😋😉 with sentence: Neon party \n",
"s935 teacher 🙏 distErr = 0.17738984852932738 rankErr = 9 wrong predictions😎😁😌😀😉🙌😋😊😍 with sentence: Lord, You are amazing! \n",
"s936 teacher 😩 distErr = 0.41596528894963153 rankErr = 18 wrong predictions😅😂😢😁😌😎😉😭🙌😏😔🙏😀😤😋😊😍😘 with sentence: want my brushes to come in already\n",
"s937 teacher 😩 distErr = 0.4939014398250449 rankErr = 18 wrong predictions😂😁😅😉😎😌🙌🙏😀😏😢😋😊😍😭😘😔😤 with sentence: Not a good start for the Boys in Blue \n",
"s938 teacher 😍 distErr = 0.11040755226972518 rankErr = 7 wrong predictions🙌😌😀😊😎😋😁 with sentence: cute \n",
"s939 teacher 😂 distErr = 0.03630991072674084 rankErr = 0 wrong predictions with sentence: Houston why are we like this \n",
"s940 teacher 😉 distErr = 0.19027937867173267 rankErr = 5 wrong predictions😂😅😢😁😏 with sentence: Go all the way - ban home depot. \n",
"s941 teacher 😘 distErr = 0.35142644058811057 rankErr = 17 wrong predictions😅😂😢😁😌😎😉😭🙌😏😀🙏😔😋😤😊😍 with sentence: EONNI I MISS U SO MUCHHHH TOO\n",
"s942 teacher 😂 distErr = 0.07462912256264112 rankErr = 0 wrong predictions with sentence: aren't u going to give up?\n",
"s943 teacher 😂 distErr = 0.029070011139030044 rankErr = 0 wrong predictions with sentence: the most exercise i do is clear railonly Jade \n",
"s944 teacher 😂 distErr = 0.11253640632679583 rankErr = 3 wrong predictions😁😌😎 with sentence: I am old too so I rest on weekends at home watching Netflix these days \n",
"s945 teacher 😂 distErr = 0.025524949028616916 rankErr = 0 wrong predictions with sentence: AND WHEN HAS A SOMALI EVER CLAIMED EGYPT? EGYPT????? \n",
"s946 teacher 😊 distErr = 0.5183453156926469 rankErr = 17 wrong predictions😭😔😢😤😅😩😒😂😁😏😌😉😎🙏🙌😀😋 with sentence: with my bffl having deep convos \n",
"s947 teacher 😩 distErr = 0.5404327495036058 rankErr = 18 wrong predictions😁😎😌😉😂🙌😀😅😋🙏😊😏😍😘😢😭😔😤 with sentence: Had to stay before we came up \n",
"s948 teacher 😂 distErr = 0.04862156229732359 rankErr = 0 wrong predictions with sentence: U mean British Columbia? District of Columbia? Either am reassured since I live in Colombia NOT Columbia … \n",
"s949 teacher 😁 distErr = 0.07085437830073917 rankErr = 0 wrong predictions with sentence: Happy Halloween bb! ! You have a same buzz cut as eleven\n",
"s950 teacher 😊 distErr = 0.16041156193317804 rankErr = 8 wrong predictions😌😁😎🙌😀😉😂😋 with sentence: Awwwww.Thank you so much friend!❤️\n",
"s951 teacher 😭 distErr = 0.21886851310116107 rankErr = 7 wrong predictions😂😅😢😁😉😏😎 with sentence: i treat shayd nicer than anybody tbh \n",
"s952 teacher 😤 distErr = 0.23126815217730648 rankErr = 5 wrong predictions😅😂😢😭😔 with sentence: Tryna cuff a chick that gonna steal my sweatshirts and not give them back when I ask nicely \n",
"s953 teacher 😊 distErr = 0.3361062198485223 rankErr = 15 wrong predictions😂😅😢😭😁😉😌😎😔😏🙏😤🙌😀😋 with sentence: Lol will do\n",
"s954 teacher 😂 distErr = 0.2115156245743648 rankErr = 11 wrong predictions😌😀🙌😎😁😋😊😉😍😘🙏 with sentence: One out away and they are all giddy \n",
"s955 teacher 😅 distErr = 0.15879221218318784 rankErr = 7 wrong predictions😁😎😉😌😂😀🙌 with sentence: Wow that must be so cool for you to see \n",
"s956 teacher 😂 distErr = 0.2482721634151769 rankErr = 11 wrong predictions🙌😀😊😌😋😎😍😁😘😉🙏 with sentence: Yeppers way to go Lukes marketing team!\n",
"s957 teacher 😂 distErr = 0.023796146274241373 rankErr = 0 wrong predictions with sentence: Were they for you or for the kids? Is what she may ask \n",
"s958 teacher 😂 distErr = 0.1511318726830616 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Omg I've done many grammar errors lmao just ignore them and vote ❤\n",
"s959 teacher 😂 distErr = 0.040237829323495906 rankErr = 0 wrong predictions with sentence: I'm the purple and you the green one Booboo hihihihi \n",
"s960 teacher 😌 distErr = 0.10549090124207897 rankErr = 2 wrong predictions😁😂 with sentence: me intentionally showing up late so everyone can see the look i have on \n",
"s961 teacher 😀 distErr = 0.26981577551685093 rankErr = 12 wrong predictions😂😅😢😁😉😎😏😌😭🙏😔🙌 with sentence: Just be glad it didn't delete your bank account \n",
"s962 teacher 😎 distErr = 0.18174641291362864 rankErr = 5 wrong predictions😂😅😁😌😢 with sentence: Fave \n",
"s963 teacher 😉 distErr = 0.18138548015636896 rankErr = 9 wrong predictions😊😍🙌😋😀😘😌😎😁 with sentence: Enjoy missy \n",
"s964 teacher 😘 distErr = 0.09389961416824669 rankErr = 6 wrong predictions🙌😀😊😋😍😌 with sentence: Good morning Martin miss ya too \n",
"s965 teacher 🙏 distErr = 0.18683170443442393 rankErr = 10 wrong predictions😁😌😎😉🙌😀😂😋😊😅 with sentence: Don't forget to get your tickets here: RSVP for the JHB leg of \n",
"s966 teacher 😂 distErr = 0.15135227354863504 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Your boyfriend \n",
"s967 teacher 😂 distErr = 0.04230093556692171 rankErr = 0 wrong predictions with sentence: Did she say effortry?!?!? \n",
"s968 teacher 😂 distErr = 0.030399337443728993 rankErr = 0 wrong predictions with sentence: Lmao the fuck \n",
"s969 teacher 😂 distErr = 0.18659333406015 rankErr = 10 wrong predictions😎😁😉😌😀🙌😋😊🙏😍 with sentence: How is Houston already winning \n",
"s970 teacher 🙏 distErr = 0.24247229501723894 rankErr = 10 wrong predictions🙌😀😊😋😌😍😎😁😘😉 with sentence: Wow wow wow \n",
"s971 teacher 😂 distErr = 0.057410935407922706 rankErr = 1 wrong predictions😅 with sentence: A shorty told me she take a couple shots before she go \n",
"s972 teacher 😂 distErr = 0.011234186088859571 rankErr = 0 wrong predictions with sentence: dude said \"got room\" \n",
"s973 teacher 😢 distErr = 0.20296850946044723 rankErr = 8 wrong predictions😂😅😁😌😎😉🙌😀 with sentence: Leyvels girl❤❤Wish I was as confident as you. Slay girl\n",
"s974 teacher 😂 distErr = 0.2826692164508585 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: me on Sat night \n",
"s975 teacher 😂 distErr = 0.0915283243025865 rankErr = 2 wrong predictions😅😢 with sentence: goodbye tulog, hello school works (plates), goodbye 8hrs sleep, hello 3hrs sleep \n",
"s976 teacher 😂 distErr = 0.026030375939448406 rankErr = 0 wrong predictions with sentence: we threw them all away tho ):\n",
"s977 teacher 😂 distErr = 0.03830188617769282 rankErr = 0 wrong predictions with sentence: Brian McCann Is so absurdly slow \n",
"s978 teacher 😍 distErr = 0.12728084204342088 rankErr = 8 wrong predictions😌😀🙌😎😁😋😊😉 with sentence: Hello November Hubby made this \n",
"s979 teacher 😭 distErr = 0.23568620916932181 rankErr = 9 wrong predictions😂😅😁😢😉😌😎😏🙏 with sentence: Tee deleted her tweet cause she know she sounded like a damn stalker or a lesbo. Whichever you prefer \n",
"s980 teacher 😤 distErr = 0.20766582114870785 rankErr = 5 wrong predictions😢😅😂😭😔 with sentence: thats nice i wish i was dixie cups \n",
"s981 teacher 😂 distErr = 0.05017165930613841 rankErr = 1 wrong predictions😅 with sentence: Stop doing this to ROMAn abramovich's team \n",
"s982 teacher 😉 distErr = 0.15827454014320755 rankErr = 9 wrong predictions😊🙌😀😋😍😘😌😎😁 with sentence: Happy Birthday Sharukh Sir \n",
"s983 teacher 😭 distErr = 0.45445778582754975 rankErr = 15 wrong predictions😀🙌😌😎😋😊😁😍😉😘🙏😂😅😏😢 with sentence: Thank you! \n",
"s984 teacher 😁 distErr = 0.26405018210912024 rankErr = 6 wrong predictions😢😅😂😭😔😤 with sentence: I'm sooo excited hehehe Iesh and Beef reunited\n",
"s985 teacher 😂 distErr = 0.07224867098232922 rankErr = 1 wrong predictions😅 with sentence: Old rice \n",
"s986 teacher 🙌 distErr = 0.08615589091080539 rankErr = 3 wrong predictions😌😁😎 with sentence: Thank you barista friends \n",
"s987 teacher 😂 distErr = 0.03002734231470876 rankErr = 0 wrong predictions with sentence: Jong oppaaaa it's awkward.\n",
"s988 teacher 😂 distErr = 0.21144247359326723 rankErr = 10 wrong predictions😌🙌😀😎😁😋😊😉😍😘 with sentence: I followed the story hawu I asked around these streets as well issa confirmed \n",
"s989 teacher 😀 distErr = 0.1651636953547791 rankErr = 7 wrong predictions😁😂😎😌😉😅🙌 with sentence: After what's in the gift?, What's this? What's this? - Let me tease you about a new projet that comes soon \n",
"s990 teacher 🙌 distErr = 0.12222542769539743 rankErr = 5 wrong predictions😁😎😌😉😀 with sentence: Shout out to for FREE TACOS!!! Come on 4 pm!!! \n",
"s991 teacher 🙌 distErr = 0.27219687795088493 rankErr = 11 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔 with sentence: Riverdale fans, watch Lili Reinhart run around NYFW while talking all about Betty Cooper, Veronica Lodge and more ❤ \n",
"s992 teacher 😌 distErr = 0.05203173740728074 rankErr = 2 wrong predictions🙌😀 with sentence: Its finally November \n",
"s993 teacher 😊 distErr = 0.20046637000955084 rankErr = 9 wrong predictions😁😌😎😂😉😅🙌😀😋 with sentence: He looks so great &amp; so happy. Warms my heart to see that for sure.❤️ \n",
"s994 teacher 😂 distErr = 0.09768173695877198 rankErr = 2 wrong predictions😅😢 with sentence: Fuck you \n",
"s995 teacher 😂 distErr = 0.03364644528945325 rankErr = 0 wrong predictions with sentence: Why this bitch think she can mug me might make me call my shooter in the Atl she a come with da drac \n",
"s996 teacher 😅 distErr = 0.055746031584577346 rankErr = 1 wrong predictions😂 with sentence: I was dying.... she even went ahead to grab her ass \n",
"s997 teacher 🙏 distErr = 0.07169069776219301 rankErr = 1 wrong predictions😉 with sentence: Thankful for another 24\n",
"s998 teacher 😩 distErr = 0.2948692738825827 rankErr = 6 wrong predictions😢😭😅😔😂😤 with sentence: dont fuck up &amp; then squint and grab your nuts like you didnt fuck up \n",
"s999 teacher 😎 distErr = 0.11823567623272713 rankErr = 3 wrong predictions😁😂😌 with sentence: LSD when listening to music?? lol You gonna hear the boiling sounds in your brain then not music.. \n",
"s1000 teacher 🙏 distErr = 0.1968921125310466 rankErr = 7 wrong predictions😂😅😁😉😏😢😎 with sentence: Appreciate you bro! \n",
"s1001 teacher 😍 distErr = 0.34309246583255515 rankErr = 16 wrong predictions😂😅😢😁😉😌😎😭😏🙏😔🙌😀😤😋😊 with sentence: Dry Ice \n",
"s1002 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: jusko butterbeer \n",
"s1003 teacher 😂 distErr = 0.10206668702273489 rankErr = 2 wrong predictions😢😅 with sentence: DAWGGGGG PLEASE STOP NOW \n",
"s1004 teacher 😢 distErr = 0.0866400949323421 rankErr = 1 wrong predictions😅 with sentence: too much love can kill you. \n",
"s1005 teacher 😢 distErr = 0.0841258230035758 rankErr = 2 wrong predictions😭😔 with sentence: It's too cold I just need a hug.\n",
"s1006 teacher 😂 distErr = 0.11131414705982269 rankErr = 2 wrong predictions😢😅 with sentence: omg this made me feel way better \n",
"s1007 teacher 😂 distErr = 0.2498983178560287 rankErr = 7 wrong predictions😭😔😤😢😩😒😅 with sentence: Can't believe I'm taking advice from tia\n",
"s1008 teacher 😂 distErr = 0.04973297142724652 rankErr = 0 wrong predictions with sentence: smart ass meets smart ass . let them have they concert at home blair\n",
"s1009 teacher 😊 distErr = 0.2116308996052556 rankErr = 10 wrong predictions😁😂😌😎😉😅🙌😀🙏😋 with sentence: Just casually failing Bio.Its fine.. Im fine. \n",
"s1010 teacher 😍 distErr = 0.12000101494386901 rankErr = 8 wrong predictions😀🙌😌😎😁😋😊😉 with sentence: Look at this. LOOKATIT \n",
"s1011 teacher 😅 distErr = 0.22847884673120342 rankErr = 12 wrong predictions😌🙌😀😎😁😊😋😉😍😘😂🙏 with sentence: I love your little gems of insight \n",
"s1012 teacher 😭 distErr = 0.23211477128018196 rankErr = 8 wrong predictions😂😅😢😁😌😉😎😏 with sentence: My dil is theek?\n",
"s1013 teacher 😍 distErr = 0.2655273916240743 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: I want in\n",
"s1014 teacher 😂 distErr = 0.027570776726653746 rankErr = 0 wrong predictions with sentence: lmao this bitch made nigga is pretty funny \n",
"s1015 teacher 😏 distErr = 0.35363269907470535 rankErr = 13 wrong predictions😊😍😘🙌😀😋😌😎😁😉🙏😂😅 with sentence: thanks babe \n",
"s1016 teacher 😂 distErr = 0.010326846340489972 rankErr = 0 wrong predictions with sentence: Some times I used tweezers \n",
"s1017 teacher 😂 distErr = 0.07600471245368264 rankErr = 0 wrong predictions with sentence: Oh yes you do!!! Go on, tell the world, \n",
"s1018 teacher 😭 distErr = 0.033849055847818076 rankErr = 1 wrong predictions😔 with sentence: This nephews got a friend in me \n",
"s1019 teacher 😊 distErr = 0.17671701495353923 rankErr = 9 wrong predictions😌😁😎🙌😉😀😂😅😋 with sentence: The new mymood collection will be available in December...☺️☺️ \n",
"s1020 teacher 😭 distErr = 0.2770125994362781 rankErr = 10 wrong predictions😅😂😌😁😢😎🙌😀😉😊 with sentence: Im so such a cry baby \n",
"s1021 teacher 😭 distErr = 0.09867454563490352 rankErr = 1 wrong predictions😢 with sentence: pasta and cheese \n",
"s1022 teacher 😏 distErr = 0.2727713109105414 rankErr = 13 wrong predictions🙌😀😌😎😁😋😊😉😍😘🙏😂😅 with sentence: sounds great! \n",
"s1023 teacher 😭 distErr = 0.2768834694633165 rankErr = 12 wrong predictions😂😅😁😉😎😏🙏😌😢😀🙌😋 with sentence: Its fair to say I ruined my life a few times this year , roll on 2018\n",
"s1024 teacher 😩 distErr = 0.44823515336831804 rankErr = 18 wrong predictions😂😅😁😉😎😢😌😏🙏🙌😀😭😋😔😊😤😍😘 with sentence: The plan has always been Early Childhood Special Education.But I found a MA program that has certification for Elementry. So like...gah. \n",
"s1025 teacher 😂 distErr = 0.040079687243419156 rankErr = 0 wrong predictions with sentence: Im never joking with you again\n",
"s1026 teacher 🙏 distErr = 0.15911403217111683 rankErr = 8 wrong predictions😁😎😉😌😀🙌😋😂 with sentence: great.. \n",
"s1027 teacher 🙏 distErr = 0.28334983549660997 rankErr = 11 wrong predictions😅😂😢😭😔😁😤😌😉😎😏 with sentence: He got kicked* just took an L Goodluck yall \n",
"s1028 teacher 😂 distErr = 0.027385614877635567 rankErr = 0 wrong predictions with sentence: Bitchhh \n",
"s1029 teacher 😊 distErr = 0.3000783375017899 rankErr = 14 wrong predictions😂😅😁😉😎😏😢🙏😌🙌😀😭😋😔 with sentence: If you value your life experiences over things you own, youre on team Kiiah! \n",
"s1030 teacher 😭 distErr = 0.04945682126478474 rankErr = 1 wrong predictions😔 with sentence: I really just want to go home with my man and cuddle and sleep but we both at work \n",
"s1031 teacher 😎 distErr = 0.16301072662910757 rankErr = 5 wrong predictions😂😅😁😉😏 with sentence: Haha maybe...but I dont know any of them so who cares \n",
"s1032 teacher 😂 distErr = 0.032548901571584396 rankErr = 0 wrong predictions with sentence: Can we talk about how great American accent is because I just found out he's Australian \n",
"s1033 teacher 😏 distErr = 0.23112347920982992 rankErr = 11 wrong predictions😁😂😌😎😅😉🙌😀😋🙏😊 with sentence: R we still getting a honeymoon suite? \n",
"s1034 teacher 😂 distErr = 0.19709002832738576 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Idk I think my base \n",
"s1035 teacher 😂 distErr = 0.07062752433345178 rankErr = 1 wrong predictions😅 with sentence: Neither did I \n",
"s1036 teacher 😂 distErr = 0.19685734114842238 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: That's right. Get all the heart from your member.. \n",
"s1037 teacher 😒 distErr = 0.6478707500697094 rankErr = 19 wrong predictions🙌😀😌😎😊😋😁😍😉😘😂🙏😅😏😢😭😔😤😩 with sentence: I can not find the outfit I wanna wear for my birthday no where \n",
"s1038 teacher 😊 distErr = 0.31748376711678933 rankErr = 15 wrong predictions😂😅😢😁😌😉😎😭😏🙏😔🙌😀😤😋 with sentence: Hey LaGuardia, the video is for Florida Blue health plan. Cute puppy, but I'd rather see what your daughters are up to \n",
"s1039 teacher 😂 distErr = 0.10507251515415673 rankErr = 3 wrong predictions😁😌😎 with sentence: My poor baby!! It was only a matter of time haha \n",
"s1040 teacher 😩 distErr = 0.1848852798078079 rankErr = 4 wrong predictions😭😔😤😢 with sentence: Need coffee \n",
"s1041 teacher 😂 distErr = 0.13446117219926804 rankErr = 3 wrong predictions😢😅😭 with sentence: They're all still bitter omg, shame on them \n",
"s1042 teacher 😂 distErr = 0.053992278742149465 rankErr = 1 wrong predictions😅 with sentence: It's leaving the 13th \n",
"s1043 teacher 😂 distErr = 0.07521683115459063 rankErr = 1 wrong predictions😅 with sentence: LMAOOO GET YU OUTTA THERE \n",
"s1044 teacher 😂 distErr = 0.0268300531804475 rankErr = 0 wrong predictions with sentence: it's 4 real nuba\n",
"s1045 teacher 😭 distErr = 0.025739605648689223 rankErr = 0 wrong predictions with sentence: I'm at the point in the semester where getting up for class is a punishment \n",
"s1046 teacher 😅 distErr = 0.07488484824081595 rankErr = 1 wrong predictions😂 with sentence: tbh idrk you im sorry :—( pero ang ganda nyo sa header mo\n",
"s1047 teacher 😂 distErr = 0.2786948662719006 rankErr = 10 wrong predictions🙌😊😍😌😘😀😋😎😁😉 with sentence: I LOVE YOU!!! THANK YOU BABY!!!! \n",
"s1048 teacher 😍 distErr = 0.23814972230255252 rankErr = 12 wrong predictions😁😂😌😎😅😉🙌😀😋🙏😊😏 with sentence: Birthday Girl..... \n",
"s1049 teacher 😂 distErr = 0.055848428431728984 rankErr = 0 wrong predictions with sentence: Its on commercials rn Ill periscope in a tiny bit when its back \n",
"s1050 teacher 😂 distErr = 0.12204145511563944 rankErr = 4 wrong predictions😉😁😎🙏 with sentence: No worries. And it's closer than some of my JSTOR searches \n",
"s1051 teacher 😌 distErr = 0.21323630290024814 rankErr = 7 wrong predictions😂😏🙏😅😉😁😎 with sentence: exams completed this week. I can finally breathe\n",
"s1052 teacher 😂 distErr = 0.212413422324715 rankErr = 10 wrong predictions😌🙌😀😎😁😊😋😍😉😘 with sentence: Only at art schools \n",
"s1053 teacher 😂 distErr = 0.24552419807936274 rankErr = 7 wrong predictions😭😔😤😢😩😒😅 with sentence: Yabona wena!!...you know my pain \n",
"s1054 teacher 😌 distErr = 0.04887182915497213 rankErr = 2 wrong predictions😎😁 with sentence: For the record I had three costumes this year for Halloween. \n",
"s1055 teacher 😂 distErr = 0.17796616553223268 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: im trashed i dont remember shit from last night my dick smells like sex so idk\n",
"s1056 teacher 😂 distErr = 0.07279679863166824 rankErr = 0 wrong predictions with sentence: whine all you want, wontak is mine \n",
"s1057 teacher 😂 distErr = 0.06283598020989414 rankErr = 0 wrong predictions with sentence: someone hang out w me and lets sesh lol \n",
"s1058 teacher 😉 distErr = 0.3007561227190615 rankErr = 8 wrong predictions😢😅😂😭😔😤😁😌 with sentence: Im always right\n",
"s1059 teacher 😭 distErr = 0.0663253795447927 rankErr = 1 wrong predictions😢 with sentence: Wooooo, news to me \n",
"s1060 teacher 😂 distErr = 0.052350735513130166 rankErr = 0 wrong predictions with sentence: Got one of those big box combos from Taco Bell cuz I was gonna save some for later but ummm... I kinda ate it all. \n",
"s1061 teacher 😭 distErr = 0.2098544255123152 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Not everyone you lose is a loss \n",
"s1062 teacher 😂 distErr = 0.0304371746275063 rankErr = 0 wrong predictions with sentence: Lets talk about how sandy hook was fake then \n",
"s1063 teacher 😁 distErr = 0.12820636674740774 rankErr = 2 wrong predictions😂😅 with sentence: what an ass (pun intended)! Luckily your body doesn't define the beauty in you ❤\n",
"s1064 teacher 😩 distErr = 0.3764413615152411 rankErr = 16 wrong predictions😅😂😢😭😔😁😌😉😎😤😏🙏🙌😀😋😊 with sentence: Tweeting from grave \n",
"s1065 teacher 😂 distErr = 0.12361412173616251 rankErr = 3 wrong predictions😢😅😭 with sentence: Imagine Netflix doing a Stranger Things spinoff series about Babysitting Steve. \n",
"s1066 teacher 😭 distErr = 0.012052424859572175 rankErr = 0 wrong predictions with sentence: i dont wanna work a double tomorrow \n",
"s1067 teacher 😂 distErr = 0.0176626062554482 rankErr = 0 wrong predictions with sentence: this has 66 likes right now, don't want to change it but I want to like \n",
"s1068 teacher 😩 distErr = 0.5102436011969118 rankErr = 18 wrong predictions😂😁😌😎😉😅🙌😀🙏😏😋😊😢😍😘😭😔😤 with sentence: hahahaha nah stop the one in the pink coat sends me west \n",
"s1069 teacher 😭 distErr = 0.16191682294269064 rankErr = 3 wrong predictions😅😂😢 with sentence: Correas proposal my emotions\n",
"s1070 teacher 😍 distErr = 0.09398505115243203 rankErr = 6 wrong predictions🙌😀😌😊😋😎 with sentence: My only captain\n",
"s1071 teacher 😎 distErr = 0.0583922870834606 rankErr = 2 wrong predictions😌😁 with sentence: jennyfrthablock look at my new purchase!!! \n",
"s1072 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: tchoinnnnnn\n",
"s1073 teacher 😭 distErr = 0.21351098855566658 rankErr = 7 wrong predictions😂😅😢😁😉😌😎 with sentence: We're losing to a team that's lost to everyone .\n",
"s1074 teacher 😂 distErr = 0.011689266027514604 rankErr = 0 wrong predictions with sentence: I'm cool, don't bother me.\n",
"s1075 teacher 😂 distErr = 0.015763765936857844 rankErr = 0 wrong predictions with sentence: What and the time arsenal won the league at shite Hart Lane and that you havent won a title since the 60s \n",
"s1076 teacher 😭 distErr = 0.3525522589919377 rankErr = 15 wrong predictions😁😎😉😌😂😀🙌😅🙏😋😊😏😍😘😢 with sentence: OH WOW IT CAME TOGETHER SO WELL!! Great job! \n",
"s1077 teacher 😂 distErr = 0.030263418304927892 rankErr = 0 wrong predictions with sentence: \"still clean as a bitch\" \n",
"s1078 teacher 😭 distErr = 0.10127755602602852 rankErr = 2 wrong predictions😢😅 with sentence: what kind of dog is this? \n",
"s1079 teacher 😭 distErr = 0.2077451953632264 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Lol dress up just to go to a kitchen like nah fuck that give me some gifts and spread some love \n",
"s1080 teacher 😂 distErr = 0.09838460048302701 rankErr = 1 wrong predictions😁 with sentence: Started late then Debs? Who you follow before Forest?\n",
"s1081 teacher 😂 distErr = 0.11905450183308175 rankErr = 2 wrong predictions😢😅 with sentence: Getting in a hot tube like this \n",
"s1082 teacher 😭 distErr = 0.3188302480142269 rankErr = 15 wrong predictions😁😂😎😌😉😅🙌😀🙏😋😏😊😍😢😘 with sentence: Forever wishing I had more Twix and also Arbys \n",
"s1083 teacher 😂 distErr = 0.09131499643133753 rankErr = 1 wrong predictions😁 with sentence: ya omg thats what i meant when i say they “work together”\n",
"s1084 teacher 🙏 distErr = 0.23354011626063687 rankErr = 10 wrong predictions🙌😀😌😊😋😎😁😍😉😘 with sentence: Of course, bro thank you for the love ❤️\n",
"s1085 teacher 😅 distErr = 0.0567820530815011 rankErr = 1 wrong predictions😂 with sentence: I wish I could get paid to not go to work \n",
"s1086 teacher 😉 distErr = 0.1372529900133449 rankErr = 3 wrong predictions😂😅😁 with sentence: You dont suck , your just too awesome to date \n",
"s1087 teacher 😂 distErr = 0.03881806438077427 rankErr = 0 wrong predictions with sentence: probably draw em in Rd of 16 and he'll score a hat trick\n",
"s1088 teacher 😭 distErr = 0.045480765636382224 rankErr = 0 wrong predictions with sentence: This song transition takes me out every time \n",
"s1089 teacher 😍 distErr = 0.3782894552869592 rankErr = 17 wrong predictions😅😂😢😭😔😁😌😉😎😤😏🙏🙌😀😋😊😩 with sentence: kim yuna x park bogum for coca cola two of my favessss looked sooooo cute together ❤ © \n",
"s1090 teacher 😁 distErr = 0.05562091275569049 rankErr = 1 wrong predictions😌 with sentence: Ok thanks so 5 hours \n",
"s1091 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Highlighted in the newsletter! Connect with us: \n",
"s1092 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Same \n",
"s1093 teacher 😂 distErr = 0.24845530610428565 rankErr = 7 wrong predictions😭😔😤😢😩😒😅 with sentence: Im right, youre wrong and theres nothing you can do about it THE FIBRES ARE FUSED TO MY HEAD \n",
"s1094 teacher 😀 distErr = 0.047365791273243446 rankErr = 2 wrong predictions😌🙌 with sentence: Happy November \n",
"s1095 teacher 😎 distErr = 0.07351931838450373 rankErr = 1 wrong predictions😁 with sentence: Thoughts on this \n",
"s1096 teacher 😀 distErr = 0.2403931909630836 rankErr = 11 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭 with sentence: Thanx✌\n",
"s1097 teacher 😂 distErr = 0.035496364662108294 rankErr = 0 wrong predictions with sentence: sis you funny as hell \n",
"s1098 teacher 😢 distErr = 0.1683314610870097 rankErr = 3 wrong predictions😂😅😁 with sentence: Sitting here in tears staring at the screen just lost without you. I learned my lesson. I won't mess up again CL. Come back please.\n",
"s1099 teacher 😘 distErr = 0.14575786933654486 rankErr = 9 wrong predictions😌🙌😀😎😁😊😋😍😉 with sentence: Night babe \n",
"s1100 teacher 😍 distErr = 0.04375330128315676 rankErr = 1 wrong predictions😊 with sentence: Im not very happy about it! But you guys are perfect \n",
"s1101 teacher 😂 distErr = 0.04790254369715441 rankErr = 0 wrong predictions with sentence: \"Fuck you, Sadness\" hahahaha \n",
"s1102 teacher 🙏 distErr = 0.08640424698589812 rankErr = 0 wrong predictions with sentence: Yo! My latest eBook has my favourite hacks for getting clients. Can I send you a link to it? (It'll be free for you) \n",
"s1103 teacher 😒 distErr = 0.27136005205496944 rankErr = 7 wrong predictions😢😭😔😅😤😂😩 with sentence: Only thing I like better about android is how the updating works. Doesnt make you reset your whole phone again \n",
"s1104 teacher 🙌 distErr = 0.37081423339025743 rankErr = 14 wrong predictions😢😭😅😔😂😤😩😒😁😌😏😉😎🙏 with sentence: My momma woke me up with a text that said I put money in your account \n",
"s1105 teacher 😅 distErr = 0.04190431660853296 rankErr = 0 wrong predictions with sentence: I cant believe next week is my birthday this year went by so fast lol\n",
"s1106 teacher 😋 distErr = 0.34034125968766527 rankErr = 14 wrong predictions😅😂😢😭😁😔😉😌😎😏😤🙏🙌😀 with sentence: One of my favorites backwards by \n",
"s1107 teacher 😍 distErr = 0.29479580148435536 rankErr = 14 wrong predictions😂😅😁😌😎😉😢🙌😀🙏😏😭😋😊 with sentence: YOU NEED TO STEP UP YOUR GAME OML \n",
"s1108 teacher 😩 distErr = 0.48143306712326933 rankErr = 18 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😭😘😔😤 with sentence: Goal in the Dortmund game for £167 no fucking luck at all\n",
"s1109 teacher 😂 distErr = 0.038452376718712204 rankErr = 0 wrong predictions with sentence: And the fight begins \n",
"s1110 teacher 😘 distErr = 0.3933007993743403 rankErr = 17 wrong predictions😂😅😢😭😁😉😌😔😎😏🙏😤🙌😀😋😊😍 with sentence: I told all my ex girls cant nobody take my place \n",
"s1111 teacher 😅 distErr = 0.047643097385584796 rankErr = 1 wrong predictions😂 with sentence: You think so? \n",
"s1112 teacher 😂 distErr = 0.21667340439707297 rankErr = 10 wrong predictions😌🙌😀😎😁😋😊😍😉😘 with sentence: Looking flights to be out\n",
"s1113 teacher 😂 distErr = 0.03971897448395739 rankErr = 1 wrong predictions😅 with sentence: With Free WiFi Missing buddy irrudha.. \n",
"s1114 teacher 😒 distErr = 0.5016484245078274 rankErr = 19 wrong predictions😂😁😅😌😎😉🙌😀🙏😏😋😢😊😍😘😭😔😤😩 with sentence: He high key had me aggravated at him more than once in this season though \n",
"s1115 teacher 😭 distErr = 0.22648832905454713 rankErr = 9 wrong predictions😂😅😢😁😉😎😏😌🙏 with sentence: Wanted to throw a party this weekend then I remembered someone has to clean after the party &amp; ppl need a bathroom \n",
"s1116 teacher 😂 distErr = 0.0417279929682469 rankErr = 1 wrong predictions😅 with sentence: I was so drunk at our Halloween party its just sad \n",
"s1117 teacher 😂 distErr = 0.19808142741436438 rankErr = 10 wrong predictions😌🙌😎😀😁😋😉😊😍😘 with sentence: Sturridge lost a leg, would get injured opening packs \n",
"s1118 teacher 😀 distErr = 0.07330376451303582 rankErr = 4 wrong predictions😌😁😎🙌 with sentence: hopefully it will get released after the song reaches on Billboard Hot 100 \n",
"s1119 teacher 😍 distErr = 0.16151527811864305 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: He's so fluffy. \n",
"s1120 teacher 😋 distErr = 0.18857084525786444 rankErr = 10 wrong predictions😁😉😎😂😌🙏😀🙌😅😏 with sentence: + It would be amazing to go there though!! Will you be there to guide me through the journey, Oppa? \n",
"s1121 teacher 😂 distErr = 0.05207241914789883 rankErr = 1 wrong predictions😅 with sentence: My thoughts right now \n",
"s1122 teacher 😋 distErr = 0.3443279093798341 rankErr = 14 wrong predictions😅😂😢😭😁😔😉😌😎😏😤🙏🙌😀 with sentence: Behave royal and smart with everyone,ButAlways behave local and silly with your dear ones. \n",
"s1123 teacher 😏 distErr = 0.2329025446108402 rankErr = 12 wrong predictions😁😌😎😂😉🙌😀😅😋😊🙏😍 with sentence: Jorginho has never missed a penalty in his senior career; 9 taken, 9 scored! EASY. EASY. EASY! \n",
"s1124 teacher 😍 distErr = 0.43254444852004736 rankErr = 18 wrong predictions😢😅😭😂😔😤😁😌😉😎😏😩😒🙏🙌😀😋😊 with sentence: have really comfy merch. \n",
"s1125 teacher 😂 distErr = 0.2662404626226576 rankErr = 11 wrong predictions🙌😀😊😋😍😌😘😎😁😉🙏 with sentence: Stanley in the back \n",
"s1126 teacher 😂 distErr = 0.02866497955831236 rankErr = 0 wrong predictions with sentence: What the hell did i just witness \n",
"s1127 teacher 🙌 distErr = 0.26716247849464125 rankErr = 11 wrong predictions😂😅😢😁😉😭😌😎😏🙏😔 with sentence: This is priceless\n",
"s1128 teacher 😂 distErr = 0.02449142521278533 rankErr = 0 wrong predictions with sentence: tbh cool ng icon mo pati header pati dimples \n",
"s1129 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Everyone do \n",
"s1130 teacher 😂 distErr = 0.20989890572134162 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: facts i literally had tears come out my eyes\n",
"s1131 teacher 😅 distErr = 0.08221322757733122 rankErr = 1 wrong predictions😂 with sentence: I need to unmute all my dms \n",
"s1132 teacher 😍 distErr = 0.08539494230985933 rankErr = 6 wrong predictions🙌😀😊😋😌😎 with sentence: Chris Browns new albumyes plzzz\n",
"s1133 teacher 😘 distErr = 0.2751702623803568 rankErr = 14 wrong predictions😁😂😎😉😌😅🙌😀🙏😏😋😊😍😢 with sentence: Couldnt resist \n",
"s1134 teacher 😀 distErr = 0.38476947277666407 rankErr = 15 wrong predictions😢😭😅😔😂😤😩😒😁😌😉😎😏🙏🙌 with sentence: Found it.. just under the wing! \n",
"s1135 teacher 😭 distErr = 0.3894614450752265 rankErr = 15 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅🙏😏😢 with sentence: Oh my gosh I bawl my eyes out every single time I watch PS I Love You\n",
"s1136 teacher 😢 distErr = 0.11784505157706127 rankErr = 3 wrong predictions😔😭😤 with sentence: Mbn to be laid up.\n",
"s1137 teacher 😘 distErr = 0.36783601889511347 rankErr = 17 wrong predictions😂😅😢😁😉😎😌😏🙏😭🙌😀😔😤😋😊😍 with sentence: hope your b… \n",
"s1138 teacher 😭 distErr = 0.2782659696380545 rankErr = 13 wrong predictions😂😅😁😉😎😌🙏🙌😏😀😢😋😊 with sentence: JOHN HAS MY POST NOTIFICATIONS ON FOR IG weirdo\n",
"s1139 teacher 😭 distErr = 0.11507440365638834 rankErr = 2 wrong predictions😢😅 with sentence: That movie. \n",
"s1140 teacher 🙌 distErr = 0.3064360896807238 rankErr = 12 wrong predictions😅😂😢😭😔😁😤😌😉😎😏🙏 with sentence: Oh yes! I was all over it and plum distraught about it!! I just finished her show today and all is well! \n",
"s1141 teacher 😂 distErr = 0.021236395811724842 rankErr = 0 wrong predictions with sentence: Classic Bean! \n",
"s1142 teacher 😍 distErr = 0.39895477678998437 rankErr = 18 wrong predictions😅😂😢😭😔😤😁😉😌😏😎🙏🙌😀😩😒😋😊 with sentence: OH MY GOODNESS go check out \n",
"s1143 teacher 😂 distErr = 0.11318361137014878 rankErr = 2 wrong predictions😢😅 with sentence: They won't make it past round of 16. \n",
"s1144 teacher 😢 distErr = 0.14760082583941816 rankErr = 2 wrong predictions😂😅 with sentence: On the whole 90's baby gang nem \n",
"s1145 teacher 😩 distErr = 0.553861226629539 rankErr = 18 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏😍😘😏😢😭😔😤 with sentence: I forgot to get my space heater out the trunk \n",
"s1146 teacher 😂 distErr = 0.05844446380061704 rankErr = 0 wrong predictions with sentence: I do love pussy \n",
"s1147 teacher 😘 distErr = 0.18338018524060487 rankErr = 10 wrong predictions😎😁😀😉😌🙌😋😊😍🙏 with sentence: Thank you kins!! God bless you too \n",
"s1148 teacher 😅 distErr = 0.21045644072375 rankErr = 11 wrong predictions😌🙌😀😁😎😊😋😉😍😘😂 with sentence: It's cute, but I get jealous.. \n",
"s1149 teacher 😂 distErr = 0.016362246313289506 rankErr = 0 wrong predictions with sentence: im too funny idc idc \n",
"s1150 teacher 😒 distErr = 0.4071862631039973 rankErr = 19 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔🙌😀😤😋😊😍😘😩 with sentence: Thats real speed at receiver there. \n",
"s1151 teacher 😂 distErr = 0.030439332465051306 rankErr = 0 wrong predictions with sentence: Cackling IRL\n",
"s1152 teacher 😂 distErr = 0.020048818851080816 rankErr = 0 wrong predictions with sentence: Ion regret anything if it happened shid lol \n",
"s1153 teacher 😤 distErr = 0.27301405864093803 rankErr = 11 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏 with sentence: mets taking it all next year \n",
"s1154 teacher 😂 distErr = 0.17448845599100316 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: uh oh, Jared. There's a bus coming and it's got your name on it. Looks like your daddy in law wants YOU under it. … \n",
"s1155 teacher 😊 distErr = 0.31240754626083644 rankErr = 11 wrong predictions🙏😏😉😁😎😂😀😋😌🙌😅 with sentence: amin \n",
"s1156 teacher 😂 distErr = 0.11403701580858018 rankErr = 2 wrong predictions😢😅 with sentence: dont do me like that. I started &amp; couldnt stop\n",
"s1157 teacher 🙏 distErr = 0.22198764586426456 rankErr = 12 wrong predictions😌🙌😎😁😀😉😋😊😍😘😂😅 with sentence: Yeah bitch wassss extra... I take back what I said thank u for opening my eyes \n",
"s1158 teacher 😭 distErr = 0.0277315298884101 rankErr = 0 wrong predictions with sentence: Minseok is aging backwards!! ❤️\n",
"s1159 teacher 😭 distErr = 0.223195328898353 rankErr = 8 wrong predictions😂😅😢😁😉😎😌😏 with sentence: Period I hope every hoe that dont like me see this \n",
"s1160 teacher 😩 distErr = 0.39343474649756804 rankErr = 18 wrong predictions😂😅😢😭😁😉😌😔😎😏🙏😤🙌😀😋😊😍😘 with sentence: Daniel Howell was found dead \n",
"s1161 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: grit on a thowow \n",
"s1162 teacher 😍 distErr = 0.5099621099632506 rankErr = 18 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: November babies \n",
"s1163 teacher 😩 distErr = 0.3686882026144803 rankErr = 16 wrong predictions😅😂😢😭😔😁😌😤😉😎😏🙏🙌😀😋😊 with sentence: She made me stop hiding her . I was enjoying being low key \n",
"s1164 teacher 😂 distErr = 0.06493323091428581 rankErr = 0 wrong predictions with sentence: whip your ass after the visitors have left just for staring at the rare food she cooked for them\n",
"s1165 teacher 😊 distErr = 0.3041668178811597 rankErr = 14 wrong predictions😂😅😢😁😉😌😎😏😭🙏🙌😀😔😋 with sentence: I love checking my bank account and seeing that I got paid \n",
"s1166 teacher 😂 distErr = 0.19991428364080688 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Not even sorry that I loved seeing that lass crying because Real are getting beat \n",
"s1167 teacher 😂 distErr = 0.03443563154062099 rankErr = 0 wrong predictions with sentence: Have no clue\n",
"s1168 teacher 😍 distErr = 0.22787690912138542 rankErr = 12 wrong predictions😁😌😎😂😉😅🙌😀😋😊🙏😏 with sentence: Blade runner had some great visual storytelling candy for my eyes \n",
"s1169 teacher 🙌 distErr = 0.024470029034943518 rankErr = 0 wrong predictions with sentence: Thanks you to our participants in the very 1st annual Reds Barbershop \"Online \"Pumpkin… \n",
"s1170 teacher 😂 distErr = 0.0267929512368533 rankErr = 0 wrong predictions with sentence: Jade will be excited \n",
"s1171 teacher 😂 distErr = 0.012196226104891036 rankErr = 0 wrong predictions with sentence: He was trying so hard to find answer other then the Eagles are the best team \n",
"s1172 teacher 😂 distErr = 0.05041425450035094 rankErr = 0 wrong predictions with sentence: people really get mad at you for not agreeing with their opinion and think that youre being judgmental. im literally asking a question \n",
"s1173 teacher 😘 distErr = 0.42966377773226816 rankErr = 19 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀😩😒😋😊😍 with sentence: I will never hate on another female if you pretty you pretty I give props when its due okayyy\n",
"s1174 teacher 😍 distErr = 0.475212246038728 rankErr = 18 wrong predictions😢😭😔😅😤😂😩😒😁😌😏😉😎🙏🙌😀😋😊 with sentence: No it really isn't!! I am using manifestation and the law of attraction even more so at the minute \n",
"s1175 teacher 😂 distErr = 0.2224620064393254 rankErr = 11 wrong predictions🙌😀😌😎😁😋😊😉😍😘🙏 with sentence: Lets be honest, this was Akias idea... Hes in his element \n",
"s1176 teacher 😭 distErr = 0.3196306888445883 rankErr = 15 wrong predictions😁😂😉😎😌😅🙏😀🙌😏😋😊😢😍😘 with sentence: We gonn' discuss this on the phone \n",
"s1177 teacher 😂 distErr = 0.050530525586126945 rankErr = 1 wrong predictions😅 with sentence: On a scale of 1-10 im fucking drunk, but then again, its been a cracker so who cares \n",
"s1178 teacher 😂 distErr = 0.06062653878361731 rankErr = 1 wrong predictions😅 with sentence: they really taking it \n",
"s1179 teacher 😍 distErr = 0.3702813240826487 rankErr = 16 wrong predictions😅😂😢😭😁😔😌😉😎😏😤🙏🙌😀😋😊 with sentence: OMG BEES \n",
"s1180 teacher 😂 distErr = 0.13531435589610188 rankErr = 3 wrong predictions😢😅😭 with sentence: Damn \n",
"s1181 teacher 😔 distErr = 0.1381404789350271 rankErr = 4 wrong predictions😢😅😭😂 with sentence: I need to start putting reminders on my phone , I've missed 3 events, this week already .\n",
"s1182 teacher 🙌 distErr = 0.08704952542289224 rankErr = 3 wrong predictions😌😁😎 with sentence: Helllll yes I have two three day weekends at the end of the year, b2b too \n",
"s1183 teacher 😂 distErr = 0.08930607852375884 rankErr = 2 wrong predictions😅😢 with sentence: IS THIS WHAT YOU LOOK LIKE \n",
"s1184 teacher 😀 distErr = 0.4633000667909128 rankErr = 15 wrong predictions😭😔😢😤😅😩😒😂😁😏😌😉😎🙏🙌 with sentence: a cheese burger, but it's gone now \n",
"s1185 teacher 😂 distErr = 0.014434462141914678 rankErr = 0 wrong predictions with sentence: Im so hyped I just ordered my World Series hat lol \n",
"s1186 teacher 😂 distErr = 0.03171593330009034 rankErr = 0 wrong predictions with sentence: O shit Someone bout to steal yo girl \n",
"s1187 teacher 😊 distErr = 0.15983554331901334 rankErr = 8 wrong predictions😌😁😎🙌😀😉😂😋 with sentence: ahh ok thank you \n",
"s1188 teacher 😍 distErr = 0.38580081062856925 rankErr = 18 wrong predictions😅😂😢😭😔😁😉😌😤😎😏🙏🙌😀😋😊😩😒 with sentence: She literally made my night!\n",
"s1189 teacher 😂 distErr = 0.014977424109118015 rankErr = 0 wrong predictions with sentence: Dodger Fans shitty I love it!\n",
"s1190 teacher 😤 distErr = 0.3916609577627594 rankErr = 17 wrong predictions😁😂😉😎😌😅🙌😀🙏😏😋😊😢😍😘😭😔 with sentence: best team in the league \n",
"s1191 teacher 😂 distErr = 0.1116812841721063 rankErr = 2 wrong predictions😢😅 with sentence: y did u wait 2 days to reply \n",
"s1192 teacher 😂 distErr = 0.20929485207106868 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: OMG! Please cut cut cut it out. This HAS to be a joke! \n",
"s1193 teacher 😘 distErr = 0.518328756290171 rankErr = 19 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊😍 with sentence: super charming &amp; adorbs. friendly \n",
"s1194 teacher 😌 distErr = 0.19844463807052062 rankErr = 5 wrong predictions😂😅😢😁😉 with sentence: Or at work \n",
"s1195 teacher 😢 distErr = 0.23266026636151282 rankErr = 10 wrong predictions😂😁😉😅😎😌🙏😏😀🙌 with sentence: You ever forget to change from your boxers to spandies on leg day and you're reminded every single squat when you hear/feel them rip \n",
"s1196 teacher 😂 distErr = 0.15413277924687543 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Masks \n",
"s1197 teacher 😌 distErr = 0.06179887007921526 rankErr = 1 wrong predictions😁 with sentence: got my midterm grades back and Im very happy with myself \n",
"s1198 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: they find out everything \n",
"s1199 teacher 🙏 distErr = 0.26355165166194844 rankErr = 11 wrong predictions😅😂😢😁😌😭😎😉😔🙌😏 with sentence: Lakers bringing the Championship home \n",
"s1200 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Im deaaaaaaaddddd \n",
"s1201 teacher 😂 distErr = 0.045277982267478936 rankErr = 0 wrong predictions with sentence: What he fuckkkk VY nails changed it up in there \n",
"s1202 teacher 😂 distErr = 0.0304675524577006 rankErr = 0 wrong predictions with sentence: He has so many skills i didn't see this one coming\n",
"s1203 teacher 😂 distErr = 0.07148322690408827 rankErr = 0 wrong predictions with sentence: Haha Ill hold ya to it\n",
"s1204 teacher 😤 distErr = 0.2806422947914161 rankErr = 13 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😀 with sentence: it's some serious shit \n",
"s1205 teacher 😢 distErr = 0.059092539516002233 rankErr = 2 wrong predictions😭😔 with sentence: Stranger Things wont load \n",
"s1206 teacher 😏 distErr = 0.2671084675842553 rankErr = 13 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂😅🙏 with sentence: I'm just enjoying the silence. \n",
"s1207 teacher 😂 distErr = 0.18416525935641126 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Im crying \n",
"s1208 teacher 😀 distErr = 0.024368753705816617 rankErr = 1 wrong predictions🙌 with sentence: Congrats on the new gig! Excellent station! Give and a happy hello for me!\n",
"s1209 teacher 😩 distErr = 0.5152075698435606 rankErr = 18 wrong predictions😁😂😌😎😉😅🙌😀🙏😋😊😏😍😢😘😭😔😤 with sentence: Lordy, plz bless me with a fineee man like any of these handsome fellas \n",
"s1210 teacher 😂 distErr = 0.2675181478171881 rankErr = 11 wrong predictions🙌😀😊😋😍😌😘😎😁😉🙏 with sentence: Phenomenal!! \n",
"s1211 teacher 😘 distErr = 0.07067717230079308 rankErr = 4 wrong predictions😊😍🙌😀 with sentence: Thanku so much ! Baxot lovely \n",
"s1212 teacher 😋 distErr = 0.14481907366221547 rankErr = 6 wrong predictions😌😁😎🙌😀😉 with sentence: I can't wait til bina's birthday \n",
"s1213 teacher 😂 distErr = 0.16455919962558047 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: My 15-16 yr old Jelena heart is living rn ❤️\n",
"s1214 teacher 😂 distErr = 0.045316090129007024 rankErr = 1 wrong predictions😅 with sentence: Best one I've seen!! \n",
"s1215 teacher 😅 distErr = 0.18779131555235798 rankErr = 10 wrong predictions😁😉😎😌🙏😂😀🙌😏😋 with sentence: God uses someone to help other people. God is good all the time. Its great that armys still remember God. ☺ \n",
"s1216 teacher 😂 distErr = 0.024565704131883716 rankErr = 0 wrong predictions with sentence: Ill buy those leggings to hoop in tho \n",
"s1217 teacher 😍 distErr = 0.11040755226972518 rankErr = 7 wrong predictions🙌😌😀😊😎😋😁 with sentence: Thats so cute \n",
"s1218 teacher 😂 distErr = 0.1092307052548458 rankErr = 2 wrong predictions😁😌 with sentence: ay I love Christmas me \n",
"s1219 teacher 😭 distErr = 0.2554197892122635 rankErr = 11 wrong predictions😂😅😁😉😎😌😢😏🙏🙌😀 with sentence: Lmao we know \n",
"s1220 teacher 😉 distErr = 0.10536041480271399 rankErr = 7 wrong predictions😌🙌😀😎😁😋😊 with sentence: Aww shucks Al! Youre not a bad date yourself ! So many great takeaways from tonig… \n",
"s1221 teacher 🙏 distErr = 0.19360590105768763 rankErr = 9 wrong predictions😁😌😎😂😉🙌😅😀😋 with sentence: (1) LILUZIVE Answer: \"If you keep your feet from breaking the Sabbath and from doing as you please on My Holy day, if you call the\n",
"s1222 teacher 😭 distErr = 0.21329834183298607 rankErr = 7 wrong predictions😂😅😢😁😌😉😎 with sentence: Im not even interested in nobody else, shit brazy\n",
"s1223 teacher 🙏 distErr = 0.22347696955587312 rankErr = 11 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂 with sentence: Thank you! And yes maam, will do ❤️.\n",
"s1224 teacher 😍 distErr = 0.35037506820792114 rankErr = 16 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😀😤😋😊 with sentence: rdy to get tik tok famous ugh \n",
"s1225 teacher 😂 distErr = 0.3068706722987602 rankErr = 7 wrong predictions😔😤😭😩😒😢😅 with sentence: Instagram is gettin slick ! You can choose who you want to hide on recent search \n",
"s1226 teacher 😂 distErr = 0.09955927349606931 rankErr = 1 wrong predictions😁 with sentence: the commentary is killing meeeeee \n",
"s1227 teacher 😀 distErr = 0.128668499176884 rankErr = 4 wrong predictions😁😉😎😌 with sentence: this is awesome \n",
"s1228 teacher 🙏 distErr = 0.16583992762386546 rankErr = 8 wrong predictions😁😉😂😎😌😅😀🙌 with sentence: My heart aches every single time I hear of another tragedy...And makes me realize how precious each day of life is &amp; the world\n",
"s1229 teacher 😩 distErr = 0.4559164265432405 rankErr = 18 wrong predictions😂😅😁😉😎😌😢😏🙏🙌😀😭😋😊😔😍😤😘 with sentence: Im taken so I cancelled all gay activities until further notice \n",
"s1230 teacher 🙌 distErr = 0.2689626148534168 rankErr = 11 wrong predictions😂😅😢😁😉😎😏😭😌🙏😔 with sentence: \"Don't let the things you can't do overshadow the things you can\" \n",
"s1231 teacher 😎 distErr = 0.20040127975250613 rankErr = 5 wrong predictions😂😅😁😢😉 with sentence: Seems fair enough...\n",
"s1232 teacher 😂 distErr = 0.08248611005498041 rankErr = 1 wrong predictions😅 with sentence: It really be like this\n",
"s1233 teacher 😭 distErr = 0.3216463002611975 rankErr = 15 wrong predictions😁😂😎😉😌😅🙌😀🙏😏😋😊😍😢😘 with sentence: Guys... please bring me cool drink \n",
"s1234 teacher 😭 distErr = 0.0956146774396176 rankErr = 1 wrong predictions😢 with sentence: I think i had a panic attack in my sleep \n",
"s1235 teacher 😂 distErr = 0.03231305209363709 rankErr = 0 wrong predictions with sentence: My cars name is peaches cause she gotta big back end\n",
"s1236 teacher 😂 distErr = 0.04469524172397404 rankErr = 0 wrong predictions with sentence: Lets start the maduguang ilong \n",
"s1237 teacher 😂 distErr = 0.1080512204119762 rankErr = 2 wrong predictions😢😅 with sentence: I don't need you, I just wanted you .\n",
"s1238 teacher 😉 distErr = 0.1654206942315777 rankErr = 9 wrong predictions😊🙌😀😍😋😘😌😎😁 with sentence: HAPPY BIHDAY INDAY wish u all the best Take care always \n",
"s1239 teacher 😋 distErr = 0.055145691103807334 rankErr = 3 wrong predictions🙌😊😀 with sentence: tbh i'm kilig ng slight when u call me bebe hihi so ayun sana ur always happy \n",
"s1240 teacher 😔 distErr = 0.1040911274983169 rankErr = 2 wrong predictions😢😭 with sentence: I want pero i'm tamad \n",
"s1241 teacher 😩 distErr = 0.5686077940845697 rankErr = 18 wrong predictions😌😁😎🙌😀😉😋😂😊😅😍😘🙏😏😢😭😔😤 with sentence: I wanna go New York \n",
"s1242 teacher 😂 distErr = 0.12039612886218168 rankErr = 3 wrong predictions😢😅😭 with sentence: Omg I love you this video is still the funniest thing of my life\n",
"s1243 teacher 😁 distErr = 0.23536060005343587 rankErr = 5 wrong predictions😅😂😢😭😔 with sentence: Frappe is life! \n",
"s1244 teacher 😂 distErr = 0.012470358783353421 rankErr = 0 wrong predictions with sentence: Ever need a confidence boost? Set up a plenty of fish account \n",
"s1245 teacher 😂 distErr = 0.01976564028452097 rankErr = 0 wrong predictions with sentence: Me meo con Dustin \n",
"s1246 teacher 😊 distErr = 0.04327375122781971 rankErr = 1 wrong predictions😍 with sentence: everything is beautiful once you have a positive outlook on everything\n",
"s1247 teacher 😭 distErr = 0.22957247429354413 rankErr = 7 wrong predictions😂😅😢😁😌😉😎 with sentence: She just wanted to make a cute dance video omg \n",
"s1248 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: I cant unsee it \n",
"s1249 teacher 😍 distErr = 0.38681443380880876 rankErr = 18 wrong predictions😅😂😢😭😔😁😉😤😌😎😏🙏🙌😀😋😊😩😒 with sentence: She look just like u \n",
"s1250 teacher 😭 distErr = 0.054540729700679684 rankErr = 1 wrong predictions😢 with sentence: My son be smelling so good. I literally lay my face in his neck at night \n",
"s1251 teacher 😏 distErr = 0.42029846642150037 rankErr = 9 wrong predictions😔😭😤😢😩😒😅😂😁 with sentence: It was just gonna be another night with the boys, making some noise... Then she walks in \n",
"s1252 teacher 😅 distErr = 0.16608017970691702 rankErr = 9 wrong predictions😌😁😎🙌😀😉😂😋😊 with sentence: I made my boyfriend check the other side of my room for monsters, Im 18 going on 8 \n",
"s1253 teacher 😉 distErr = 0.12281232044231716 rankErr = 8 wrong predictions🙌😌😀😎😁😊😋😍 with sentence: Morning \n",
"s1254 teacher 😉 distErr = 0.12822456706593044 rankErr = 3 wrong predictions😂😁😅 with sentence: You know Im gonna subscribe to JuJus YouTube page! \n",
"s1255 teacher 🙌 distErr = 0.06646267565628303 rankErr = 3 wrong predictions😌😁😎 with sentence: Thank you for having us over to chat about the EU, and the civic society! See you at opening! ❤️\n",
"s1256 teacher 😭 distErr = 0.1691162976182061 rankErr = 3 wrong predictions😅😂😢 with sentence: Wish I was gonna a be home why did I have to go to school out of state. \n",
"s1257 teacher 😉 distErr = 0.2725097296580052 rankErr = 8 wrong predictions😅😢😂😭😔😤😁😌 with sentence: Im tryna fuck you &amp; ya bestie \n",
"s1258 teacher 😁 distErr = 0.05869332314984782 rankErr = 1 wrong predictions😌 with sentence: Thank you so much Abbey!! ❤️\n",
"s1259 teacher 😔 distErr = 0.06640131566159058 rankErr = 2 wrong predictions😭😢 with sentence: Aww man this hurt me \n",
"s1260 teacher 🙏 distErr = 0.1736966643060282 rankErr = 9 wrong predictions😁😎😌😉😀🙌😋😂😊 with sentence: Hope I have a bigtomorrow when I wake &amp; look at the total $$ in my Gnight world. May you be blessed with crypto prosperity\n",
"s1261 teacher 😒 distErr = 0.41334162150578496 rankErr = 19 wrong predictions😂😅😢😁😉😭😌😎😏🙏😔🙌😀😤😋😊😍😘😩 with sentence: My boss talking about no cells. Yeah right.\n",
"s1262 teacher 😎 distErr = 0.4008661438762167 rankErr = 12 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉 with sentence: Really dont understand the FOMO with $BTC right now at ATH. Buying more $RPX $CVC $NEO $ZRX right now \n",
"s1263 teacher 😂 distErr = 0.040649546208619165 rankErr = 0 wrong predictions with sentence: I got that tho... but I got no meats \n",
"s1264 teacher 😊 distErr = 0.40474779951818374 rankErr = 17 wrong predictions😢😅😂😭😔😤😁😏😉😌😎🙏😩😒🙌😀😋 with sentence: Thought of the day \n",
"s1265 teacher 😘 distErr = 0.11981900468103342 rankErr = 8 wrong predictions🙌😀😊😌😋😎😍😁 with sentence: Congrats guys knew you could do it and super pleased with xx\n",
"s1266 teacher 😩 distErr = 0.2161994627242025 rankErr = 5 wrong predictions😭😔😢😤😅 with sentence: If bae say he doesn't like me going somewhere, guess where I'm NOT going? ..theree \n",
"s1267 teacher 😏 distErr = 0.23677595604112645 rankErr = 8 wrong predictions😂😅😢😭😁😉😔😌 with sentence: Butt getting bigger after.......I notice it \n",
"s1268 teacher 🙌 distErr = 0.23442306127291368 rankErr = 9 wrong predictions😂😅😁😢😌😉😎😏🙏 with sentence: never \n",
"s1269 teacher 😭 distErr = 0.3485065082615111 rankErr = 15 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏😍😏😘😢 with sentence: Girrrrrll!! This storyline is everything ! His interaction with everyone when they realize is making me \n",
"s1270 teacher 😭 distErr = 0.20918923570628545 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Now I do need a swipe \n",
"s1271 teacher 😂 distErr = 0.18992881976732837 rankErr = 10 wrong predictions😌😎😁🙌😀😉😋😊😍😘 with sentence: \"There are lies, damned lies, and statistics.\" \n",
"s1272 teacher 😍 distErr = 0.37135722243146846 rankErr = 16 wrong predictions😅😂😢😭😁😔😌😉😎😏😤🙏🙌😀😋😊 with sentence: Ah right. If thats what happens then it has to be Aaron?! Cant see him risking his life for anyone else \n",
"s1273 teacher 😭 distErr = 0.21186711571021 rankErr = 5 wrong predictions😅😂😢😁😌 with sentence: Ugh... I needglasses!\n",
"s1274 teacher 😊 distErr = 0.14641836708948908 rankErr = 6 wrong predictions😌😁😎🙌😀😉 with sentence: My boyfriend spoils me\n",
"s1275 teacher 😊 distErr = 0.12899865520422674 rankErr = 7 wrong predictions😎😁😌😀😉🙌😋 with sentence: I haven't been on Twitter a lot, so enjoy this picture of a fabulous pig \n",
"s1276 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Same \n",
"s1277 teacher 😭 distErr = 0.1294656902288381 rankErr = 3 wrong predictions😢😅😂 with sentence: Driving at night it so scary \n",
"s1278 teacher 😍 distErr = 0.10905734839368994 rankErr = 7 wrong predictions🙌😀😌😎😋😊😁 with sentence: Looking forward to attending the tomorrow with so many of women I love and admire. \n",
"s1279 teacher 😍 distErr = 0.11496191872302688 rankErr = 7 wrong predictions🙌😌😀😎😁😊😋 with sentence: Morning battles . . . . . . . \n",
"s1280 teacher 😩 distErr = 0.22017983972179686 rankErr = 6 wrong predictions😭😢😔😤😅😂 with sentence: My sky bill was £110 this month skint all ready\n",
"s1281 teacher 😎 distErr = 0.0940357557616393 rankErr = 1 wrong predictions😁 with sentence: Sounds exciting!!! Can I join this club \n",
"s1282 teacher 😍 distErr = 0.23930069918586538 rankErr = 12 wrong predictions😁😂😌😎😅😉🙌😀🙏😋😊😏 with sentence: B so pretty \n",
"s1283 teacher 😂 distErr = 0.14354840679724754 rankErr = 4 wrong predictions😢😭😅😔 with sentence: This mf ... who wouldve thought lil old Tiana with the famous smooth ... someone come get this boy ... you not the famous bettis \n",
"s1284 teacher 😩 distErr = 0.5316861507682497 rankErr = 18 wrong predictions😁😉😎😂😌😅😀🙌🙏😏😋😊😍😢😘😭😔😤 with sentence: Thats the part that got me \n",
"s1285 teacher 😁 distErr = 0.03022340062820904 rankErr = 0 wrong predictions with sentence: Glad my story could be of service lol \n",
"s1286 teacher 😂 distErr = 0.04455553917002584 rankErr = 1 wrong predictions😅 with sentence: Better get my hair chopped and buy a wig for Mr LBUK! \n",
"s1287 teacher 😂 distErr = 0.0633498314199023 rankErr = 1 wrong predictions😅 with sentence: stop bro!\n",
"s1288 teacher 😤 distErr = 0.2950729591730143 rankErr = 13 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😔😀 with sentence: Good shit you got this! \n",
"s1289 teacher 😘 distErr = 0.6152033096030186 rankErr = 19 wrong predictions😔😭😤😢😩😒😅😂😁😏😌😉😎🙏🙌😀😋😊😍 with sentence: Missed you too!! See you on sat \n",
"s1290 teacher 😍 distErr = 0.12968737917660328 rankErr = 8 wrong predictions😌🙌😀😎😁😊😋😉 with sentence: so happy☺ \n",
"s1291 teacher 😍 distErr = 0.10731804812381765 rankErr = 7 wrong predictions🙌😌😀😎😊😋😁 with sentence: omg btob is winning so much im so \n",
"s1292 teacher 😂 distErr = 0.11044946458471643 rankErr = 3 wrong predictions😁😌😎 with sentence: I freaking love this comic \n",
"s1293 teacher 😒 distErr = 0.4179448468003959 rankErr = 19 wrong predictions😂😅😢😁😉😏😎😭🙏😌😔🙌😀😤😋😊😍😘😩 with sentence: What's the endgame here Do you forsee yourself getting land at the end of this or \n",
"s1294 teacher 😘 distErr = 0.20052632482092977 rankErr = 11 wrong predictions😌😁😎🙌😀😉😊😋😂😅😍 with sentence: Thank you beb!!! Miss u \n",
"s1295 teacher 😍 distErr = 0.6069853869664377 rankErr = 18 wrong predictions😔😤😭😢😩😒😅😂😁😏😌😉😎🙏🙌😀😋😊 with sentence: He's so adorable . \n",
"s1296 teacher 😂 distErr = 0.240217711937653 rankErr = 7 wrong predictions😭😔😢😤😩😒😅 with sentence: Damn you beat me to it\n",
"s1297 teacher 😂 distErr = 0.32192983920264956 rankErr = 7 wrong predictions😔😤😭😩😒😢😅 with sentence: She looked good &amp; all but I'm tired of her hot dog legs \n",
"s1298 teacher 😂 distErr = 0.2937438307696902 rankErr = 11 wrong predictions😊😍🙌😀😋😘😌😎😁😉🙏 with sentence: Im just wondering what side Christina is on \n",
"s1299 teacher 😩 distErr = 0.19163880189151986 rankErr = 4 wrong predictions😭😔😤😢 with sentence: Hate waking up horny \n",
"s1300 teacher 😉 distErr = 0.07872666381270124 rankErr = 1 wrong predictions😁 with sentence: You are my new hero. Instant follow. \n",
"s1301 teacher 😭 distErr = 0.34166378882211634 rankErr = 15 wrong predictions😌😁😎🙌😉😂😀😅😋😊😍🙏😘😏😢 with sentence: Suddenly miss taengsic \n",
"s1302 teacher 😎 distErr = 0.13284760927279704 rankErr = 4 wrong predictions😂😁😅😌 with sentence: Verlander finally got his ring too \n",
"s1303 teacher 😁 distErr = 0.20497727621860617 rankErr = 4 wrong predictions😂😅😢😭 with sentence: anybody down for conspiracy videos, pizza, big red and cuddles? \n",
"s1304 teacher 😂 distErr = 0.13620297394816805 rankErr = 6 wrong predictions😌😁😎🙌😉😀 with sentence: I put the sister thing in my name \n",
"s1305 teacher 😌 distErr = 0.09706666565436502 rankErr = 2 wrong predictions😁😎 with sentence: Ya Boy Andrew Fontenot \n",
"s1306 teacher 😩 distErr = 0.2931851851086246 rankErr = 6 wrong predictions😢😭😅😔😂😤 with sentence: I'm going to the mall again. \n",
"s1307 teacher 😂 distErr = 0.1853094442267713 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Just checked my card &amp; I'm negative $99 fml.\n",
"s1308 teacher 😊 distErr = 0.3592116757466987 rankErr = 15 wrong predictions😅😂😢😭😔😁😉😌😤😎😏🙏🙌😀😋 with sentence: Awe, I want too so much &amp; we can feast on pink &amp; red Starbursts.\n",
"s1309 teacher 😋 distErr = 0.28920837151710854 rankErr = 13 wrong predictions😂😅😁😢😌😉😎😏🙏😭🙌😀😔 with sentence: Dagomba boobs.Boobs with tribal marks \n",
"s1310 teacher 😂 distErr = 0.12522694045092617 rankErr = 3 wrong predictions😌😁😎 with sentence: Damn, a lot has changed since MC Lyte, Roxanne Shante, Queen Latifah and Monie Love......and it's not a good thi… \n",
"s1311 teacher 😂 distErr = 0.1789556995165267 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: Anytime dear \n",
"s1312 teacher 😊 distErr = 0.31986634212398934 rankErr = 15 wrong predictions😂😅😢😁😉😎😏😌🙏😭🙌😀😔😤😋 with sentence: Hows about sharing a vegetarian plate? Asking for a friend. \n",
"s1313 teacher 😍 distErr = 0.19743608083488182 rankErr = 10 wrong predictions😌😁😎🙌😉😀😂😅😋😊 with sentence: OMG YOUR VOICE IS SO PERFECT \n",
"s1314 teacher 😊 distErr = 0.35087475844372107 rankErr = 15 wrong predictions😂😅😢😭😁😔😉😏😌😎🙏😤🙌😀😋 with sentence: Be an asshole and honk repetitively at me after the light has been green for 1 second and Ill make sure you dont make the light \n",
"s1315 teacher 😂 distErr = 0.22322182250313213 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: id rather start Jered Weaver than Darvish even tho Weaver aint on the dodgers \n",
"s1316 teacher 😍 distErr = 0.41430406218682725 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😉😏😌😎🙏🙌😀😩😒😋😊 with sentence: All I need to know is: can sit me in this same spot and cut my hair? \n",
"s1317 teacher 😏 distErr = 0.24301176327090113 rankErr = 9 wrong predictions😂😅😢😭😁😉😌😔😎 with sentence: I post this tweet 1 time in 4, or 25.0% of the time.\n",
"s1318 teacher 🙌 distErr = 0.01808725188822011 rankErr = 0 wrong predictions with sentence: this new video is amazing, fantastic job \n",
"s1319 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Guuuyssss... \n",
"s1320 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: I am too \n",
"s1321 teacher 😂 distErr = 0.03131638184032865 rankErr = 0 wrong predictions with sentence: IDC R Kelly Be Jamming... W/ His Rapist Ass \n",
"s1322 teacher 😢 distErr = 0.23814215401581254 rankErr = 12 wrong predictions😂😁😉😎😅😌🙏🙌😀😏😋😊 with sentence: Ill do ANYTHING for a M&amp;G pick some barbzzz as wel\n",
"s1323 teacher 😂 distErr = 0.043565367893608466 rankErr = 0 wrong predictions with sentence: I pray o. When i done win 2 trophies already. 3rd one December\n",
"s1324 teacher 😂 distErr = 0.027587012744072582 rankErr = 0 wrong predictions with sentence: Man Yells \"CNN is Fake News\" at Anderson Cooper via \n",
"s1325 teacher 😢 distErr = 0.12097331203083878 rankErr = 2 wrong predictions😅😂 with sentence: They really got me workin so much\n",
"s1326 teacher 😔 distErr = 0.07935025471376475 rankErr = 2 wrong predictions😭😢 with sentence: Gone but never forgotten. RIP shady shell \n",
"s1327 teacher 😂 distErr = 0.060217936697999734 rankErr = 1 wrong predictions😅 with sentence: please get a key lol Im having withdrawals from not watching you play this game \n",
"s1328 teacher 😂 distErr = 0.030889880024449957 rankErr = 0 wrong predictions with sentence: Idk why Im laughing so hard at that video \n",
"s1329 teacher 😍 distErr = 0.11734673461169844 rankErr = 7 wrong predictions😌🙌😀😎😁😊😋 with sentence: Wowwwwwww ummmahhh pic of the brother &amp; sisterly affection &amp; love &amp; support... love you❤ \n",
"s1330 teacher 😍 distErr = 0.3591192332413359 rankErr = 16 wrong predictions😂😅😢😁😉😭😎😌😏🙏😔🙌😀😤😋😊 with sentence: EVERDAY I AM REMINDED THAT I'M UGLY \n",
"s1331 teacher 😂 distErr = 0.03217708820409655 rankErr = 0 wrong predictions with sentence: Nawwwww why even ask that \n",
"s1332 teacher 😩 distErr = 0.4178977123648003 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😭😏🙏😔🙌😀😤😋😊😍😘 with sentence: They grow up so fast! \n",
"s1333 teacher 😂 distErr = 0.19361247022249647 rankErr = 10 wrong predictions😌😎🙌😁😀😉😋😊😍😘 with sentence: I was looking for . I found and am happy. okay almost. Must A little save next month I think. \n",
"s1334 teacher 😍 distErr = 0.2625611183762772 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😏😢😋😊 with sentence: If you know me, u know how OBSESSED I AM with this song and how I scream when I sing it \n",
"s1335 teacher 😌 distErr = 0.09929647256001513 rankErr = 3 wrong predictions😁😉😎 with sentence: looks great \n",
"s1336 teacher 😍 distErr = 0.06841582515963703 rankErr = 3 wrong predictions🙌😀😊 with sentence: How beautiful is she? so proud of my girl \n",
"s1337 teacher 😍 distErr = 0.318859553148594 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😀😭😔😋😊😤 with sentence: I know!! I got so excited when she said yes as well! Gonna miss his face \n",
"s1338 teacher 😂 distErr = 0.0152818150953976 rankErr = 0 wrong predictions with sentence: Noooo this gif noooo\n",
"s1339 teacher 😂 distErr = 0.2341993171212679 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: My son doesnt even know...he yall too much\n",
"s1340 teacher 😂 distErr = 0.25245171731738003 rankErr = 7 wrong predictions😭😔😤😢😩😒😅 with sentence: Iike a damn snitch \n",
"s1341 teacher 🙌 distErr = 0.05338844097877909 rankErr = 2 wrong predictions😊😍 with sentence: good morning and thank god \n",
"s1342 teacher 😂 distErr = 0.30662916136147195 rankErr = 7 wrong predictions😔😤😭😩😒😢😅 with sentence: You lying\n",
"s1343 teacher 🙏 distErr = 0.22203659867218212 rankErr = 7 wrong predictions😂😅😢😁😏😉😭 with sentence: ~ you got me wondering why ii like it rough i, I like it rough ~ &lt;3 ^*Rest In Peace grandma*^ \n",
"s1344 teacher 😍 distErr = 0.41711457377679945 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😉😏😌😎🙏🙌😀😩😒😋😊 with sentence: Gotttt mf damn \n",
"s1345 teacher 😂 distErr = 0.03341891269805444 rankErr = 0 wrong predictions with sentence: remember when we tried to immitate this.... \n",
"s1346 teacher 😩 distErr = 0.23698974948445883 rankErr = 6 wrong predictions😭😢😔😤😅😂 with sentence: But their neck \n",
"s1347 teacher 😂 distErr = 0.23454112310443678 rankErr = 11 wrong predictions😀🙌😌😎😋😊😁😍😉😘🙏 with sentence: Hey is this me \n",
"s1348 teacher 😊 distErr = 0.15728112485920084 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😂 with sentence: I just rubbed some cream in when I got home. \n",
"s1349 teacher 😘 distErr = 0.13424182260059467 rankErr = 9 wrong predictions🙌😌😀😎😊😋😁😍😉 with sentence: Just be happy \n",
"s1350 teacher 😎 distErr = 0.31559088754213493 rankErr = 12 wrong predictions😢😅😭😂😔😤😁😏😌😉😩😒 with sentence: My frnd Uncle. \n",
"s1351 teacher 😁 distErr = 0.1561556974032667 rankErr = 2 wrong predictions😂😅 with sentence: I'm a bad man \n",
"s1352 teacher 😋 distErr = 0.23859456079691296 rankErr = 11 wrong predictions😂😅😁😉😎😌🙌😀🙏😏😢 with sentence: Today was a dam good day\n",
"s1353 teacher 😎 distErr = 0.15259357074912958 rankErr = 6 wrong predictions😂😁😉😅😏🙏 with sentence: I have to find a way to wear this to the job! I love this shirt. \n",
"s1354 teacher 😀 distErr = 0.09746933719268203 rankErr = 5 wrong predictions😁😌😎🙌😉 with sentence: My dear Queen Nnohaj... check your site when you can. I just sent you my response to \"A Mummy Among Us.\"\n",
"s1355 teacher 😂 distErr = 0.005428322005570654 rankErr = 0 wrong predictions with sentence: Ha!!! Keep me posted on how that turns out for you. \n",
"s1356 teacher 😊 distErr = 0.18385876066733733 rankErr = 9 wrong predictions😁😌😎😉😂🙌😀😅😋 with sentence: You have a good wife there Benny ...one of the best!!\n",
"s1357 teacher 😢 distErr = 0.12702215837375283 rankErr = 2 wrong predictions😅😂 with sentence: Sorry for being inactive! I'll make sure to be active now! Sorry sorry\n",
"s1358 teacher 😂 distErr = 0.2512018688194175 rankErr = 11 wrong predictions😀🙌😊😋😌😎😍😁😘😉🙏 with sentence: I know I'm very sexy ❤️❤️❤️❤️. \n",
"s1359 teacher 😂 distErr = 0.0229643972811587 rankErr = 0 wrong predictions with sentence: The fact that this Hyejin girl is from tje Philippines and is 13yrs old. Yikes I'm so scared \n",
"s1360 teacher 😢 distErr = 0.07430667177732499 rankErr = 0 wrong predictions with sentence: Ohhh nooo RIP ! \n",
"s1361 teacher 😅 distErr = 0.034008581437795435 rankErr = 0 wrong predictions with sentence: Wisdome tooth pls be good to me \n",
"s1362 teacher 😁 distErr = 0.10648048330113377 rankErr = 7 wrong predictions🙌😀😌😊😋😎😍 with sentence: Followed\n",
"s1363 teacher 😂 distErr = 0.15530405212114926 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Thanks nat! Fingers crossed its not a resit though it will definitely be you and then we can celebrate!x\n",
"s1364 teacher 😀 distErr = 0.16820892715162053 rankErr = 7 wrong predictions😂😁😌😅😎😉🙌 with sentence: 90's kids Song \n",
"s1365 teacher 🙌 distErr = 0.2720351066422092 rankErr = 11 wrong predictions😂😅😢😁😉😏😎😭😌🙏😔 with sentence: “I literally love Justin Verlander” -Jose Altuve ❤️\n",
"s1366 teacher 😂 distErr = 0.03715678833139853 rankErr = 0 wrong predictions with sentence: Im dead\n",
"s1367 teacher 😘 distErr = 0.04622706438494058 rankErr = 2 wrong predictions😍😊 with sentence: Happy birthday myca alonzo \n",
"s1368 teacher 😂 distErr = 0.14479329466231683 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: I want to be twin sister \n",
"s1369 teacher 😅 distErr = 0.05034758293461035 rankErr = 0 wrong predictions with sentence: + my dad gave us money to buy to celebrate na malinis na room ko wtf hahahha \n",
"s1370 teacher 😍 distErr = 0.29157201832235935 rankErr = 14 wrong predictions😂😅😁😉😎😌🙏😢🙌😏😀😋😊😭 with sentence: Thanksss ya dear for telling this..finallly our wish of B scenario came true\n",
"s1371 teacher 😘 distErr = 0.13344844809916612 rankErr = 9 wrong predictions😀🙌😌😎😋😊😁😍😉 with sentence: Thank you tirahhh\n",
"s1372 teacher 😂 distErr = 0.06178751613795363 rankErr = 0 wrong predictions with sentence: I remember when I first started trading bitcoin and everyone told me it's a scam and I'll lose all my money...\n",
"s1373 teacher 😂 distErr = 0.15950406165358968 rankErr = 8 wrong predictions😁😎😌😉😀🙌😋😊 with sentence: fam your name... \n",
"s1374 teacher 🙏 distErr = 0.21190483079874836 rankErr = 8 wrong predictions😂😅😁😢😉😎😌😏 with sentence: I don't care about my job sir... I care about you\" \n",
"s1375 teacher 😍 distErr = 0.37267297835992946 rankErr = 16 wrong predictions😅😂😢😭😁😔😌😉😎😤😏🙏🙌😀😋😊 with sentence: Can we just take a moment to appreciate that my mom looks like a fucking Queen \n",
"s1376 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Same.\n",
"s1377 teacher 🙏 distErr = 0.08708370794447018 rankErr = 1 wrong predictions😏 with sentence: Done help me too\n",
"s1378 teacher 😭 distErr = 0.3285929026413949 rankErr = 15 wrong predictions😁😌😎😂😉😅🙌😀😋🙏😊😏😍😘😢 with sentence: Chris Brown got 45 tracks on One album? I cant even do it \n",
"s1379 teacher 😭 distErr = 0.19327381619558676 rankErr = 3 wrong predictions😂😅😢 with sentence: What a shitty costume lmfaoooooo all the things you coulda done \n",
"s1380 teacher 😍 distErr = 0.2570919232850023 rankErr = 12 wrong predictions😂😅😌😁😎😉🙌😀😢😋😊🙏 with sentence: YOU ARE SOO DAMN CUTE WITH TAHT CURLY HAIR U LIL SHEEP \n",
"s1381 teacher 😁 distErr = 0.15958258267699582 rankErr = 2 wrong predictions😂😅 with sentence: cuddleeeeeee \n",
"s1382 teacher 🙏 distErr = 0.15992381103448136 rankErr = 5 wrong predictions😂😅😁😉😏 with sentence: Your good dawg, trust the process and god has plan for you\n",
"s1383 teacher 😔 distErr = 0.08270641966921774 rankErr = 2 wrong predictions😢😭 with sentence: Tomorrow's not Friday \n",
"s1384 teacher 😎 distErr = 0.06513935862879708 rankErr = 2 wrong predictions😌😁 with sentence: Someone come over to our new place \n",
"s1385 teacher 😭 distErr = 0.22747048615713902 rankErr = 9 wrong predictions😂😅😢😁😉😎😌😏🙏 with sentence: And i have a freaking presentation to be done but im nervous as hell! I should just be calm and relax \n",
"s1386 teacher 😂 distErr = 0.21008493387014082 rankErr = 11 wrong predictions😌😀🙌😎😁😋😊😉😍😘🙏 with sentence: most of the times yes \n",
"s1387 teacher 😎 distErr = 0.06319104981612159 rankErr = 3 wrong predictions😀🙌😌 with sentence: hey Madison \n",
"s1388 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: I would be \n",
"s1389 teacher 😭 distErr = 0.2106832670479761 rankErr = 5 wrong predictions😂😅😢😁😉 with sentence: Nah man she's taking the piss \n",
"s1390 teacher 😂 distErr = 0.1808316744220829 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: that a yes Cort?\n",
"s1391 teacher 😏 distErr = 0.21809965521408387 rankErr = 7 wrong predictions😂😅😢😁😉😭😎 with sentence: i got a CD and it says up on the housetop which I always remembered but my dad argued that its rooftop Conspiracy theory?\n",
"s1392 teacher 😒 distErr = 0.36819987789107045 rankErr = 17 wrong predictions😅😂😢😭😔😁😤😌😉😎😏🙏🙌😀😋😊😩 with sentence: Seeeee it did it again \n",
"s1393 teacher 😂 distErr = 0.029407527815288357 rankErr = 0 wrong predictions with sentence: Twitter really be having me weak\n",
"s1394 teacher 😂 distErr = 0.09254789140628734 rankErr = 1 wrong predictions😁 with sentence: Maybe dawg ..\n",
"s1395 teacher 😭 distErr = 0.4852486430377209 rankErr = 15 wrong predictions🙌😀😊😋😍😌😘😎😁😉🙏😂😅😏😢 with sentence: pr hommes ou?\n",
"s1396 teacher 😂 distErr = 0.03341206947079507 rankErr = 0 wrong predictions with sentence: Hello shiffi no pick my call again ooo!!!! Madrid boy are u there!!!! \n",
"s1397 teacher 😩 distErr = 0.412071151923758 rankErr = 18 wrong predictions😂😅😢😁😉😭😌😎😏🙏😔🙌😀😤😋😊😍😘 with sentence: I just watched a little boy, about 8yrs old, eat 12, TWELVE pieces of candy between Benning Road and Eastern Market \n",
"s1398 teacher 😂 distErr = 0.049752967318423484 rankErr = 0 wrong predictions with sentence: Jobless? This is their full time job. You know they get paid for this, right? \n",
"s1399 teacher 😭 distErr = 0.3306533758942926 rankErr = 15 wrong predictions😁😌😎😂😉😅🙌😀😋🙏😊😏😍😘😢 with sentence: You all better have told him you liked his costume and said happy Halloween \n",
"s1400 teacher 😂 distErr = 0.04874700931908271 rankErr = 0 wrong predictions with sentence: when did drake retire?? \n",
"s1401 teacher 🙏 distErr = 0.20247549021926237 rankErr = 8 wrong predictions😂😁😅😌😎😉🙌😀 with sentence: Your Q&amp;A yesterday gave me life. Im enjoying the honest character arcs &amp; cant wait to see how the season unfolds!\n",
"s1402 teacher 😭 distErr = 0.27641039552756863 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀😢🙏😏😋😊 with sentence: Omggggg Ive been looking for this video \n",
"s1403 teacher 😢 distErr = 0.17028806655171638 rankErr = 3 wrong predictions😂😅😁 with sentence: Can't find and Shane and Friends podcast on Spotify \n",
"s1404 teacher 😊 distErr = 0.3289814400537701 rankErr = 15 wrong predictions😂😅😢😁😉😭😌😎😏🙏😔🙌😀😤😋 with sentence: Congress is paying oops playing well. \n",
"s1405 teacher 😉 distErr = 0.18008523761859935 rankErr = 4 wrong predictions😂😅😁😢 with sentence: What Then we must have a naked man then \n",
"s1406 teacher 😎 distErr = 0.10876888015890805 rankErr = 7 wrong predictions😊🙌😀😋😍😌😘 with sentence: star bisnis get for your capitalwin trading contest 24000$… \n",
"s1407 teacher 😭 distErr = 0.2466135484892933 rankErr = 11 wrong predictions😂😅😁😉😢😎😌😏🙏🙌😀 with sentence: Hook a fan dying to see you with tickets \n",
"s1408 teacher 😂 distErr = 0.1808316744220829 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: That's a yes then ! \n",
"s1409 teacher 😭 distErr = 0.2897819648730285 rankErr = 15 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😘 with sentence: BELTRAN AND VERLANDER HAVE RINGS! \n",
"s1410 teacher 😂 distErr = 0.06612851120204905 rankErr = 0 wrong predictions with sentence: Since it's suggested you cum on topdo the driving \n",
"s1411 teacher 😍 distErr = 0.04114602383524007 rankErr = 0 wrong predictions with sentence: Wehhhhh i'm in love w that mashup \n",
"s1412 teacher 😔 distErr = 0.13966014692261594 rankErr = 4 wrong predictions😢😅😭😂 with sentence: Omg my heart \n",
"s1413 teacher 😊 distErr = 0.14893194244793256 rankErr = 7 wrong predictions😁😎😉😌😀🙌😋 with sentence: Congratulations on your for your film, Outstanding. SO pleased for you. \n",
"s1414 teacher 😂 distErr = 0.11029876341892758 rankErr = 2 wrong predictions😢😅 with sentence: Sooooo strong\n",
"s1415 teacher 😍 distErr = 0.0991090071129928 rankErr = 6 wrong predictions🙌😀😌😊😋😎 with sentence: YOURE DOING AMAZING SWEETIE \n",
"s1416 teacher 😭 distErr = 0.21223913074266798 rankErr = 5 wrong predictions😂😅😢😁😉 with sentence: Please DM me\n",
"s1417 teacher 😘 distErr = 0.32279228325758985 rankErr = 16 wrong predictions😂😅😁😉😎😌🙏😏😢🙌😀😋😊😭😍😔 with sentence: love u maine! \n",
"s1418 teacher 😒 distErr = 0.30090931370494844 rankErr = 8 wrong predictions😢😭😅😂😔😤😁😩 with sentence: Hittingthat person with Annika's chandniThis is disgusting -_-\n",
"s1419 teacher 😭 distErr = 0.3464918893878737 rankErr = 15 wrong predictions😌😁😎😉🙌😀😂😅😋😊😍🙏😘😏😢 with sentence: That's one of my faved song FaberDrive entitled When I'm With You. Listen to it.\n",
"s1420 teacher 😂 distErr = 0.02286256352965887 rankErr = 0 wrong predictions with sentence: I didn't see this\n",
"s1421 teacher 😂 distErr = 0.1334731163450724 rankErr = 3 wrong predictions😢😅😭 with sentence: Black-ish is one of the funniest shows \n",
"s1422 teacher 😎 distErr = 0.22445590553266345 rankErr = 7 wrong predictions😅😂😢😁😭😌😉 with sentence: So excited that got announcedbut its heart breaking its the last city!Excited 2c how many shows are added \n",
"s1423 teacher 😎 distErr = 0.1896393607352068 rankErr = 6 wrong predictions😂😅😁😢😌😉 with sentence: b24 gostou \n",
"s1424 teacher 😂 distErr = 0.04317119858137559 rankErr = 0 wrong predictions with sentence: Like bitch u posted on social media . Bitch Halloween was last night u dressed up early \n",
"s1425 teacher 😍 distErr = 0.4325463340277346 rankErr = 18 wrong predictions😅😢😂😭😔😤😏😁😉🙏😎😌😩😒🙌😀😋😊 with sentence: Yoooo the third one \n",
"s1426 teacher 😊 distErr = 0.30268932393971454 rankErr = 14 wrong predictions😂😅😢😁😌😉😎😭😏🙏🙌😀😔😋 with sentence: This actually just makes me extremely happy \n",
"s1427 teacher 😂 distErr = 0.22056337288748384 rankErr = 11 wrong predictions😀🙌😌😎😁😋😊😉😍😘🙏 with sentence: \"Trying to make the world a little more beautiful\" \n",
"s1428 teacher 😂 distErr = 0.23230005182578806 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: wowww ya parents dont wanna beat Jamm up\n",
"s1429 teacher 😂 distErr = 0.1425509506011782 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Big basket of a hand bag \n",
"s1430 teacher 😍 distErr = 0.2924189211570286 rankErr = 14 wrong predictions😂😅😁😌😉😎😢🙌🙏😀😏😋😊😭 with sentence: No lo puedo evitar... Me podes Elvis Presley - Cant help falling in love with you \n",
"s1431 teacher 🙌 distErr = 0.0641931716290133 rankErr = 3 wrong predictions😍😊😘 with sentence: I'm in love with it ❤️\n",
"s1432 teacher 🙏 distErr = 0.04792801852648121 rankErr = 0 wrong predictions with sentence: Never heard beats like this just tryna shoot my shot and work! \n",
"s1433 teacher 😂 distErr = 0.2011490802663014 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: LMFAOOOOOOO u a cold nigga dawg \n",
"s1434 teacher 😭 distErr = 0.02312755410637363 rankErr = 1 wrong predictions😔 with sentence: I DUNNO WHAT HAPPENED \n",
"s1435 teacher 😂 distErr = 0.028841032314483067 rankErr = 0 wrong predictions with sentence: Hi to my first friend in shs! Thanks for being so real and lowkey mabait. Muling ibalik... lol joke \n",
"s1436 teacher 😂 distErr = 0.043257883778360345 rankErr = 0 wrong predictions with sentence: Lmfao skating was the only thing I was elite at I still got it too u buggin\n",
"s1437 teacher 🙌 distErr = 0.13561200886372854 rankErr = 6 wrong predictions😁😉😎😌😀😂 with sentence: dat awesome.. \n",
"s1438 teacher 😂 distErr = 0.20314178889316878 rankErr = 10 wrong predictions😌🙌😀😎😁😋😊😉😍😘 with sentence: Klopp using Milner, Can, Hendo, Grujic and Ox in midfield last few minutes \n",
"s1439 teacher 😔 distErr = 0.11000438469199524 rankErr = 2 wrong predictions😢😭 with sentence: I wanna feel your guts too \n",
"s1440 teacher 😭 distErr = 0.1570274170171479 rankErr = 3 wrong predictions😅😂😢 with sentence: Dr.M pls dont ask me historical dates on spore I wasnt raised there He prolly spent more time in my country than I did lel\n",
"s1441 teacher 😂 distErr = 0.1678632347247004 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: What happened \n",
"s1442 teacher 😂 distErr = 0.098101724037517 rankErr = 2 wrong predictions😅😢 with sentence: Gone head drop tht he I'm skipping school\n",
"s1443 teacher 😅 distErr = 0.08854402045453809 rankErr = 1 wrong predictions😢 with sentence: Anxiety levels are through the roof right now \n",
"s1444 teacher 😂 distErr = 0.01981130187989187 rankErr = 0 wrong predictions with sentence: What a week for Real Madrid.... about as bad as Kevin Spaceys \n",
"s1445 teacher 🙏 distErr = 0.24542538953985804 rankErr = 10 wrong predictions🙌😀😌😊😋😍😎😁😘😉 with sentence: Jay Jagannath Good morning friends.. \n",
"s1446 teacher 🙏 distErr = 0.37266291759900616 rankErr = 13 wrong predictions😢😭😔😅😤😂😩😒😁😌😏😉😎 with sentence: 11/18 it's going ZOWN \n",
"s1447 teacher 😂 distErr = 0.015974880750984393 rankErr = 0 wrong predictions with sentence: iconic trio daw \n",
"s1448 teacher 😂 distErr = 0.30997284756451 rankErr = 11 wrong predictions😊😍😘🙌😀😋😌😎😁😉🙏 with sentence: Careful who you're pinching, Oilers. \n",
"s1449 teacher 😍 distErr = 0.4190334533361323 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😌😉😏😎🙏🙌😩😒😀😋😊 with sentence: I'M CRYING SO HARD \n",
"s1450 teacher 😒 distErr = 0.30361216651823975 rankErr = 8 wrong predictions😢😅😭😂😔😤😁😩 with sentence: hate when I have to tell him something but I'm mad \n",
"s1451 teacher 😊 distErr = 0.08263630283692734 rankErr = 6 wrong predictions😀🙌😌😎😋😁 with sentence: Nerd here: Hey Sunny, how was your Halloween? - - Bruno Mars\n",
"s1452 teacher 😍 distErr = 0.35583809845650366 rankErr = 16 wrong predictions😂😅😢😁😉😏😎😌😭🙏😔🙌😀😤😋😊 with sentence: FIDGET FINGER SPINNERS, MINI HAND STRESS POCKET TOY, FOCUS, ADHD \n",
"s1453 teacher 😂 distErr = 0.20300015352871736 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Seldom right but never wrong eh chez \n",
"s1454 teacher 😭 distErr = 0.25401783591704347 rankErr = 11 wrong predictions😂😅😁😌😉😎😢🙌😀🙏😏 with sentence: i hope so too, i didnt loose a family member .. thank god but i lost my first actual pet \n",
"s1455 teacher 😭 distErr = 0.1898854726787896 rankErr = 3 wrong predictions😂😅😢 with sentence: Oh god, not you too etz\n",
"s1456 teacher 😂 distErr = 0.11756007638909861 rankErr = 2 wrong predictions😢😅 with sentence: Right \n",
"s1457 teacher 😂 distErr = 0.2244462479378315 rankErr = 11 wrong predictions🙌😀😌😎😋😁😊😍😉😘🙏 with sentence: Awww, no! Hey, but at least you got them! We hope you're enjoying your new shoes! *MC \n",
"s1458 teacher 😂 distErr = 0.042824791428072086 rankErr = 0 wrong predictions with sentence: This is so cute I love SHIT like this \n",
"s1459 teacher 😍 distErr = 0.3667093555731239 rankErr = 16 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏😤🙌😀😋😊 with sentence: Lmao I did say that first hour its true\n",
"s1460 teacher 🙌 distErr = 0.056647004457213865 rankErr = 1 wrong predictions😌 with sentence: You're the only one who writes my name like that Thanks \n",
"s1461 teacher 🙏 distErr = 0.1488224776049986 rankErr = 5 wrong predictions😂😁😉😎😅 with sentence: Yesss babee he is soo powerful and God is goood\n",
"s1462 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Yeayy \n",
"s1463 teacher 😉 distErr = 0.14621136765030315 rankErr = 5 wrong predictions😂😅😁😌😎 with sentence: Todays episode review \n",
"s1464 teacher 😭 distErr = 0.01936453032209964 rankErr = 0 wrong predictions with sentence: Wtf Is Wrong With Mirranda \n",
"s1465 teacher 😏 distErr = 0.22475499980067598 rankErr = 8 wrong predictions😂😅😢😁😉😭😌😎 with sentence: Lmao this is our year just watch \n",
"s1466 teacher 😋 distErr = 0.06628710477156566 rankErr = 4 wrong predictions😊🙌😀😍 with sentence: Wet and yummy \n",
"s1467 teacher 😂 distErr = 0.04702444927078619 rankErr = 1 wrong predictions😅 with sentence: Excuse me miss, I don't mean to bother you, but you got a fat ass. \n",
"s1468 teacher 🙏 distErr = 0.126400332629845 rankErr = 1 wrong predictions😏 with sentence: Rest In Peace soldiers of WWIII \n",
"s1469 teacher 😉 distErr = 0.25190876593122435 rankErr = 7 wrong predictions😅😂😢😭😔😁😤 with sentence: . you know thats a Liverpool pub, so you gotta go, right?! \n",
"s1470 teacher 😂 distErr = 0.20189406131156223 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Yes, I do exist and speak up very often!!\n",
"s1471 teacher 😭 distErr = 0.2017804139344548 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Btchs don't be wanting they bd until they see him making another btch happy 🗣🗣🗣 let that kid get a step mama\n",
"s1472 teacher 😊 distErr = 0.20340053405455563 rankErr = 11 wrong predictions😁😉😎😌😂😀🙌🙏😅😋😏 with sentence: Another sembreak wasted \n",
"s1473 teacher 😎 distErr = 0.061155235669173406 rankErr = 3 wrong predictions🙌😀😌 with sentence: Happy Bday boss, come back soon to argentina please! \n",
"s1474 teacher 😂 distErr = 0.026103153347055073 rankErr = 0 wrong predictions with sentence: Elementary!!!!!Grow-up!!!!! I cant with some of yall on here Toooooo Funny!!! \n",
"s1475 teacher 😤 distErr = 0.10666714371758326 rankErr = 3 wrong predictions😭😢😔 with sentence: Why did I dream about meeting nf last night it felt so real\n",
"s1476 teacher 😂 distErr = 0.16602127613529707 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: I must be stopped, V! Bring my normal self back. \n",
"s1477 teacher 😭 distErr = 0.19805749859100835 rankErr = 4 wrong predictions😅😂😢😁 with sentence: Missing Shorvori \n",
"s1478 teacher 😂 distErr = 0.29448424039000626 rankErr = 11 wrong predictions😊😍🙌😀😘😋😌😎😁😉🙏 with sentence: Thanks? \n",
"s1479 teacher 😂 distErr = 0.14869006912168975 rankErr = 7 wrong predictions😁😌😎😉🙌😀😋 with sentence: Modern Coffee Table m-SOLD!Kitchen Trolley &amp; Carpet left If you buy it, may FREE KANTOT! Haha BUY IT NOW! Par… \n",
"s1480 teacher 😂 distErr = 0.05171343468685661 rankErr = 0 wrong predictions with sentence: Lol exactly. The worst part is he wanted it for free \n",
"s1481 teacher 😂 distErr = 0.2918330792630865 rankErr = 7 wrong predictions😔😤😭😢😩😒😅 with sentence: wanking arm?!? \n",
"s1482 teacher 😅 distErr = 0.23388087717238842 rankErr = 12 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂🙏 with sentence: They airball 95% of the time \n",
"s1483 teacher 😌 distErr = 0.3614748506772087 rankErr = 10 wrong predictions😢😭😔😤😅😂😩😒😁😏 with sentence: Hays \n",
"s1484 teacher 😔 distErr = 0.23477292185858176 rankErr = 8 wrong predictions😅😂😢😁😭😌😉😎 with sentence: Missing you ! \n",
"s1485 teacher 😂 distErr = 0.22545105142407248 rankErr = 11 wrong predictions😀🙌😌😎😋😁😊😉😍😘🙏 with sentence: Happy birthday Pauline!!! Here's a video of you getting lit in Mexico! \n",
"s1486 teacher 😂 distErr = 0.013720990666469627 rankErr = 0 wrong predictions with sentence: Lmfaoooooo why they gotta do him like that \n",
"s1487 teacher 🙏 distErr = 0.2340570023241369 rankErr = 8 wrong predictions😂😅😁😢😌😉😎😏 with sentence: Mine too \n",
"s1488 teacher 😂 distErr = 0.01802199247804071 rankErr = 0 wrong predictions with sentence: one step closer na kami \n",
"s1489 teacher 😍 distErr = 0.07572380186725239 rankErr = 4 wrong predictions🙌😀😊😌 with sentence: Pictures please. \n",
"s1490 teacher 😘 distErr = 0.055026334869393276 rankErr = 2 wrong predictions😊😍 with sentence: Fighting aeris \n",
"s1491 teacher 😂 distErr = 0.1545228914386698 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Yeah we've gone down this street so do I ❤️\n",
"s1492 teacher 😂 distErr = 0.18240837758515738 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: he also said that you are slow like a turtle hahaha but im sorry ㅋㅋㅋ\n",
"s1493 teacher 😩 distErr = 0.34039226569069414 rankErr = 14 wrong predictions😅😢😂😭😔😤😁😌😉😏😎🙏🙌😀 with sentence: Lmaoo yesterday my mom told me to go straight home after work &amp; read the Bible \n",
"s1494 teacher 😀 distErr = 0.21851227587584762 rankErr = 10 wrong predictions😂😅😁😉😌😎😢🙏😏🙌 with sentence: Hi Smart, when will be the release of iPhone X at Smart Wireless and Online Stores? \n",
"s1495 teacher 😅 distErr = 0.2310032800793186 rankErr = 12 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂🙏 with sentence: Happy November 1st, or otherwise known as the day every senior has been dreading for months \n",
"s1496 teacher 😂 distErr = 0.21946046215570517 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: And if Emily feels the same then sorry Ethan \n",
"s1497 teacher 😭 distErr = 0.074573449368119 rankErr = 1 wrong predictions😢 with sentence: I just want 8 hours of sleep like everyone else is that too much to ask for? \n",
"s1498 teacher 😍 distErr = 0.11040755226972518 rankErr = 7 wrong predictions🙌😌😀😊😎😋😁 with sentence: So cute \n",
"s1499 teacher 🙌 distErr = 0.23442306127291368 rankErr = 9 wrong predictions😂😅😁😢😌😉😎😏🙏 with sentence: PREACHHH\n",
"s1500 teacher 🙏 distErr = 0.1800131461836872 rankErr = 5 wrong predictions😂😅😏😁😉 with sentence: WOW .... Dont know where its located but looks devastating. Prayers to all involved .\n",
"s1501 teacher 😂 distErr = 0.15087053806561262 rankErr = 4 wrong predictions😢😭😅😔 with sentence: I wish people actually think I'm younger than my 16 yr old sister and I hate it lol\n",
"s1502 teacher 🙏 distErr = 0.19241831393752531 rankErr = 8 wrong predictions😂😁😅😌😎😉🙌😀 with sentence: November be a blessing to yo baby 🗣️\n",
"s1503 teacher 😘 distErr = 0.13344844809916612 rankErr = 9 wrong predictions😀🙌😌😎😋😊😁😍😉 with sentence: thank you \n",
"s1504 teacher 😌 distErr = 0.25185302705354384 rankErr = 9 wrong predictions😂😅😢😭😔😁😉😏😤 with sentence: Dam can't even win a game cus ppl start acting ALLL kinds of different \n",
"s1505 teacher 😂 distErr = 0.01930941710685548 rankErr = 0 wrong predictions with sentence: My professor just laughed at me for not knowing when the next test is..my response \"I take my L's on a week to week basis\" \n",
"s1506 teacher 😁 distErr = 0.021022756044502395 rankErr = 0 wrong predictions with sentence: check your dm! tks\n",
"s1507 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Weirddd \n",
"s1508 teacher 😩 distErr = 0.44163889063730294 rankErr = 18 wrong predictions😂😅😏😁😉🙏😢😎😌😭😀🙌😔😋😤😊😍😘 with sentence: Why is it so hard for me to swallow pills \n",
"s1509 teacher 😍 distErr = 0.18823286615155144 rankErr = 10 wrong predictions😌😁🙌😎😀😉😂😊😅😋 with sentence: Will cancel the search party. I love candles ❤x\n",
"s1510 teacher 😂 distErr = 0.02935114603352837 rankErr = 0 wrong predictions with sentence: Bro my sisters are funny\n",
"s1511 teacher 😂 distErr = 0.024932625263106512 rankErr = 0 wrong predictions with sentence: They see me rollin, they hatin \n",
"s1512 teacher 😊 distErr = 0.1375952388094293 rankErr = 7 wrong predictions😁😌😎🙌😀😉😋 with sentence: The rainbow is so prettyyyyy~ double ones some more. Enjoy Swiss!! \n",
"s1513 teacher 😊 distErr = 0.31189829959472226 rankErr = 15 wrong predictions😅😂😢😁😌😎😉😭🙌😔😏🙏😀😤😋 with sentence: it doesn't matter anymore. It has been dispatched now \n",
"s1514 teacher 😩 distErr = 0.3905403617939217 rankErr = 18 wrong predictions😅😂😢😭😁😌😔😉😎😏🙏😤🙌😀😋😊😍😘 with sentence: Biiihhhh riiiiight!!\n",
"s1515 teacher 😂 distErr = 0.10895039212159921 rankErr = 2 wrong predictions😌😁 with sentence: today's show is tooooooooooo much guys \n",
"s1516 teacher 😭 distErr = 0.34351499621742954 rankErr = 15 wrong predictions😌🙌😁😅😎😀😂😊😉😍😋😘😢🙏😏 with sentence: Im fine \n",
"s1517 teacher 😂 distErr = 0.0841609734314158 rankErr = 1 wrong predictions😅 with sentence: I literally already am \n",
"s1518 teacher 😂 distErr = 0.05199394729000273 rankErr = 1 wrong predictions😅 with sentence: talking to ky is funny asf bc she think she knows every damn thing with her smart ass mouth. \n",
"s1519 teacher 🙏 distErr = 0.17717798019628714 rankErr = 5 wrong predictions😂😅😁😉😏 with sentence: Lifes great man... fr \n",
"s1520 teacher 😂 distErr = 0.11756007638909861 rankErr = 2 wrong predictions😢😅 with sentence: That's right!!! \n",
"s1521 teacher 😭 distErr = 0.11708714351255473 rankErr = 2 wrong predictions😢😅 with sentence: Torn between studying and editing a new video. \n",
"s1522 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: STILL \n",
"s1523 teacher 😍 distErr = 0.5436933547782061 rankErr = 18 wrong predictions😭😔😢😤😅😩😒😂😁😏😌😉😎🙏🙌😀😋😊 with sentence: I NEED! Where can I get them at by tomorrow? \n",
"s1524 teacher 😂 distErr = 0.1083641339628515 rankErr = 0 wrong predictions with sentence: You know I stay out the way\n",
"s1525 teacher 😀 distErr = 0.1704154439185061 rankErr = 7 wrong predictions😂😁😅😌😎😉🙌 with sentence: Welcome Sam Speek Spanish?\n",
"s1526 teacher 😘 distErr = 0.3756536919644611 rankErr = 17 wrong predictions😂😅😢😁😭😌😉😎😔😏🙏🙌😀😤😋😊😍 with sentence: See you girl!!\n",
"s1527 teacher 🙏 distErr = 0.1922331431839244 rankErr = 7 wrong predictions😂😅😁😉😎😌🙌 with sentence: Ihy it's Sunday ☹️☹️☹️ but thanks burned chicken nugget \n",
"s1528 teacher 😍 distErr = 0.2208892299607708 rankErr = 12 wrong predictions😁😎😉😌😂😀🙌😅🙏😋😊😏 with sentence: I think we can all agree that Marli is everyones forever \n",
"s1529 teacher 😂 distErr = 0.10554232242354009 rankErr = 2 wrong predictions😢😅 with sentence: Saw this and thought of Jacob \n",
"s1530 teacher 😂 distErr = 0.17712017996271195 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: Save 10 years worth of wages by retirement \n",
"s1531 teacher 😅 distErr = 0.1559092585802059 rankErr = 4 wrong predictions😢😭😔😤 with sentence: Bae you like anime too? ♥️\n",
"s1532 teacher 😂 distErr = 0.08485362661161654 rankErr = 0 wrong predictions with sentence: You cooked grant that day that's for sure \n",
"s1533 teacher 🙏 distErr = 0.16124799536095052 rankErr = 7 wrong predictions😁😎😉😌😀😂🙌 with sentence: I'm literally hoping 2018 is nothing like 2017 \n",
"s1534 teacher 😀 distErr = 0.03579844550119708 rankErr = 1 wrong predictions🙌 with sentence: 18 minutes into my shift n Im hiding already \n",
"s1535 teacher 😭 distErr = 0.2448373749177188 rankErr = 11 wrong predictions😂😅😁😌😢😎😉🙌😀🙏😏 with sentence: Not only her, i mean all of my caring friendsss. Thankyou \n",
"s1536 teacher 😢 distErr = 0.08325063030359385 rankErr = 1 wrong predictions😅 with sentence: Hey Ive had these boots for less than 3 weeks and theyve split already \n",
"s1537 teacher 😂 distErr = 0.03888137976797691 rankErr = 0 wrong predictions with sentence: Yh true but I aint coming by myslef cus 1: I wouldnt be allowed and 2: I would be scared\n",
"s1538 teacher 😂 distErr = 0.04501401042262422 rankErr = 0 wrong predictions with sentence: Haha don't blame ya pal \n",
"s1539 teacher 😭 distErr = 0.031557196387424366 rankErr = 0 wrong predictions with sentence: Sike idk . \n",
"s1540 teacher 😂 distErr = 0.029997248785615445 rankErr = 0 wrong predictions with sentence: Ee to wrong number hai. \n",
"s1541 teacher 😍 distErr = 0.4770572667066233 rankErr = 18 wrong predictions😢😭😔😅😤😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: 24 dayys\n",
"s1542 teacher 😂 distErr = 0.2580264638090648 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: He cant even walk down the steps girl byeeeee \n",
"s1543 teacher 😁 distErr = 0.1967986652581111 rankErr = 4 wrong predictions😂😅😏😢 with sentence: I wish I had more time to troll a troll.... but i have a life \n",
"s1544 teacher 😂 distErr = 0.20335525772136157 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Thats IF my siblings have kids \n",
"s1545 teacher 😭 distErr = 0.20007526767577868 rankErr = 4 wrong predictions😅😂😢😁 with sentence: Thank you Michael miss you too !! \n",
"s1546 teacher 😭 distErr = 0.15750197641389443 rankErr = 3 wrong predictions😅😂😢 with sentence: ya girl is ugly crying \n",
"s1547 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Wheres the glockenspiel? \n",
"s1548 teacher 😁 distErr = 0.1605235909540007 rankErr = 2 wrong predictions😂😅 with sentence: Same thing happens to me too lol \n",
"s1549 teacher 😂 distErr = 0.01699251401246116 rankErr = 0 wrong predictions with sentence: Had to mute this conversation. Cant have wild animals coming at me \n",
"s1550 teacher 😁 distErr = 0.2509156200603794 rankErr = 6 wrong predictions😅😢😂😭😔😤 with sentence: Well I cant argue with that. But I will cheer against you tonight. I dont even follow baseball that much but TEXAS!!! \n",
"s1551 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: shiiiid! \n",
"s1552 teacher 😍 distErr = 0.3441668151814751 rankErr = 16 wrong predictions😂😅😢😁😉😎😌😏🙏😭🙌😀😔😤😋😊 with sentence: Video calls \n",
"s1553 teacher 😍 distErr = 0.04114602383524007 rankErr = 0 wrong predictions with sentence: Love it \n",
"s1554 teacher 😭 distErr = 0.09111822343614376 rankErr = 1 wrong predictions😢 with sentence: When Your Girlfriend Made You Mad But Yall Talk it Out AND She Sent Nudes After ❤️\n",
"s1555 teacher 😭 distErr = 0.16398359135986704 rankErr = 3 wrong predictions😅😂😢 with sentence: I shouldnt be up \n",
"s1556 teacher 😊 distErr = 0.11006661763786942 rankErr = 7 wrong predictions😌🙌😎😀😁😋😉 with sentence: showing progressive as always leadership again \n",
"s1557 teacher 😂 distErr = 0.12946660802583054 rankErr = 3 wrong predictions😢😅😭 with sentence: He knew it was gone he didnt even look \n",
"s1558 teacher 😂 distErr = 0.024780493472631667 rankErr = 0 wrong predictions with sentence: Damn =( the fake unfollowed me . you gotta fanboy.\n",
"s1559 teacher 😢 distErr = 0.07560260668779772 rankErr = 1 wrong predictions😅 with sentence: I love cant believe Elvis is dead very tearful last episode. will be missed.… \n",
"s1560 teacher 😂 distErr = 0.04755545027799403 rankErr = 0 wrong predictions with sentence: Dont try to race me on the highway if your car beat up \n",
"s1561 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Sonya, I GASPED, PLEASE WE NEEEEEEEED THIS \n",
"s1562 teacher 😊 distErr = 0.02906817536165018 rankErr = 0 wrong predictions with sentence: Good Morning \n",
"s1563 teacher 😂 distErr = 0.1155414937174539 rankErr = 2 wrong predictions😢😅 with sentence: Yea I like where Im at now I deal with a lot less bullshit I only talk to employees \n",
"s1564 teacher 🙏 distErr = 0.10891517514996502 rankErr = 3 wrong predictions😉😁😎 with sentence: Can we expect Ellipsis B sides anytime soon \n",
"s1565 teacher 😭 distErr = 0.5321372137783744 rankErr = 15 wrong predictions😍😊😘😋🙌😀😌😎😁😉🙏😂😅😏😢 with sentence: Happy birthday to me \n",
"s1566 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Stfuuuu \n",
"s1567 teacher 😍 distErr = 0.46378513305000213 rankErr = 18 wrong predictions😢😭😅😔😂😤😩😒😁😌😏😉😎🙏🙌😀😋😊 with sentence: Soooo after starting our lob carb diet a week and a half ago Ive lost 3.5lbs \n",
"s1568 teacher 🙏 distErr = 0.22646791586501433 rankErr = 10 wrong predictions😀🙌😌😎😋😊😁😍😉😘 with sentence: Thank you! \n",
"s1569 teacher 😂 distErr = 0.027218519495993066 rankErr = 0 wrong predictions with sentence: Akere you'll tell us the budget mchana\n",
"s1570 teacher 😍 distErr = 0.4045135486406111 rankErr = 18 wrong predictions😅😂😢😭😔😤😁😉😌😏😎🙏🙌😀😩😒😋😊 with sentence: My Highschool!!! \n",
"s1571 teacher 😏 distErr = 0.25760941290150136 rankErr = 13 wrong predictions😌😁😎🙌😀😉😂😅😋😊😍😘🙏 with sentence: stop looking so good\n",
"s1572 teacher 😍 distErr = 0.5111114734870347 rankErr = 18 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: My dream vehicle but in white \n",
"s1573 teacher 😌 distErr = 0.37122264404883437 rankErr = 9 wrong predictions😢😭😔😤😅😂😩😒😁 with sentence: You &amp; I both \n",
"s1574 teacher 😂 distErr = 0.017137341438561094 rankErr = 0 wrong predictions with sentence: It's not like you guys have been together long or anything \n",
"s1575 teacher 🙌 distErr = 0.17317233217435085 rankErr = 6 wrong predictions😂😅😁😌😎😉 with sentence: such a good feeling knowing you got people you can always rely on \n",
"s1576 teacher 😘 distErr = 0.33791339544753685 rankErr = 16 wrong predictions😂😅😁😉😎😌😏🙏😢😀🙌😋😭😊😔😍 with sentence: now i know\n",
"s1577 teacher 😭 distErr = 0.09597069967218073 rankErr = 1 wrong predictions😢 with sentence: Now she'll always be late \n",
"s1578 teacher 😁 distErr = 0.2051269762429739 rankErr = 4 wrong predictions😅😂😢😭 with sentence: Irrelevant to the point I challenged Rabia on. Read her tweet again, more slowly this time \n",
"s1579 teacher 😂 distErr = 0.0226494549395619 rankErr = 0 wrong predictions with sentence: she's so irritating she not even cute\n",
"s1580 teacher 😢 distErr = 0.08116303777588935 rankErr = 2 wrong predictions😭😔 with sentence: FONDANT CAKE PLEASE I REALLY WANT ONE TALAGA❤\n",
"s1581 teacher 😂 distErr = 0.1502434773274219 rankErr = 7 wrong predictions😁😌😎😉🙌😀😋 with sentence: vo pta h doctor k baare m bol Ra tha Honestly that's one of the best topic \n",
"s1582 teacher 😍 distErr = 0.4485219805797744 rankErr = 18 wrong predictions😢😅😭😂😔😤😁😏😩😒😌😉😎🙏🙌😀😋😊 with sentence: ITS LIIIIIT DIS MY FAV DISNEY MOVIE ❤️❤️❤️ \n",
"s1583 teacher 😋 distErr = 0.32664349955759814 rankErr = 14 wrong predictions😂😅😢😭😁😉😌😎😔😏🙏😤🙌😀 with sentence: Clearly the best month of the year \n",
"s1584 teacher 😂 distErr = 0.04071002507047257 rankErr = 0 wrong predictions with sentence: I'm done \"he called me a roach with lip injections\" \n",
"s1585 teacher 😭 distErr = 0.20669958574987765 rankErr = 4 wrong predictions😂😅😢😁 with sentence: same but thats what I heard tho \n",
"s1586 teacher 😍 distErr = 0.4604119434322843 rankErr = 18 wrong predictions😢😭😅😔😂😤😩😒😁😌😏😉😎🙏🙌😀😋😊 with sentence: Flawless gleeeeeee \n",
"s1587 teacher 😂 distErr = 0.20057684248888957 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: U failed to share that part Bruh I drove back to the crib to get (cont) \n",
"s1588 teacher 😤 distErr = 0.16424719447184777 rankErr = 5 wrong predictions😢😭😅😔😂 with sentence: GO AWAY, already! We dont want to see you anymore! Youve done enough! \n",
"s1589 teacher 😒 distErr = 0.4388205090155219 rankErr = 19 wrong predictions😂😅😁😢😉😏😎🙏😌😭🙌😀😔😋😤😊😍😘😩 with sentence: I don't need rating &amp; promotion, I need rest kind of week for me. \n",
"s1590 teacher 😎 distErr = 0.13776106855787126 rankErr = 4 wrong predictions😂😅😁😌 with sentence: I really be chillin in my own lil world \n",
"s1591 teacher 😂 distErr = 0.05043234754164382 rankErr = 0 wrong predictions with sentence: My sister asked me why am I rooting for the astros and not the packers what what\n",
"s1592 teacher 😭 distErr = 0.42378944747902336 rankErr = 15 wrong predictions😎😌😁😀🙌😉😋😊😍😘🙏😂😅😏😢 with sentence: Wow ♥️ , I got mine too x\n",
"s1593 teacher 😊 distErr = 0.13635778857918743 rankErr = 7 wrong predictions😌😁😎🙌😀😉😋 with sentence: Okay \n",
"s1594 teacher 😍 distErr = 0.015281333348489705 rankErr = 0 wrong predictions with sentence: happy 50th birthday to my hardworking, loving, and amazing kickass popo. i love and miss you. \n",
"s1595 teacher 😍 distErr = 0.14847256233627978 rankErr = 8 wrong predictions😎😌😁😀🙌😉😋😊 with sentence: Of course \n",
"s1596 teacher 😁 distErr = 0.2658156851285224 rankErr = 6 wrong predictions😢😅😂😭😔😤 with sentence: Smile to you @ Starbucks Thailand \n",
"s1597 teacher 😂 distErr = 0.17665055641258762 rankErr = 9 wrong predictions😁😌😎😀🙌😉😋😊😍 with sentence: Our Halloween costume \n",
"s1598 teacher 😊 distErr = 0.09886732745740467 rankErr = 6 wrong predictions😌🙌😀😎😁😋 with sentence: Tickets booked \n",
"s1599 teacher 😭 distErr = 0.33345822744633824 rankErr = 15 wrong predictions😁😌😎😂😉🙌😅😀😋😊🙏😍😏😘😢 with sentence: Ohhhhh ma gosh \n",
"s1600 teacher 😎 distErr = 0.2069702559886522 rankErr = 6 wrong predictions😂😅😢😁😉😌 with sentence: I reallllly like this one.\n",
"s1601 teacher 😂 distErr = 0.025371214281156476 rankErr = 0 wrong predictions with sentence: Ohh no what were they doing!?\n",
"s1602 teacher 😭 distErr = 0.365183431320613 rankErr = 15 wrong predictions😁😌😎😉🙌😀😂😋😊😅😍🙏😘😏😢 with sentence: Weh! Now this one is dark.. \n",
"s1603 teacher 😍 distErr = 0.2774946625336215 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: holy shit those visuals \n",
"s1604 teacher 🙌 distErr = 0.2647815932736222 rankErr = 10 wrong predictions😂😅😢😁😉😏😎🙏😌😭 with sentence: this guy is on your side tonight!!! Time to wake up the bats for Game 7! \n",
"s1605 teacher 🙏 distErr = 0.2118418770376034 rankErr = 11 wrong predictions😌😎🙌😁😀😉😋😊😍😘😂 with sentence: Isang book ni john green for christmas please \n",
"s1606 teacher 😩 distErr = 0.41976533250319936 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😔😀😤😋😊😍😘 with sentence: Ya so crazy \n",
"s1607 teacher 😂 distErr = 0.025405513967584226 rankErr = 0 wrong predictions with sentence: “Archies definitely shook” Im dying \n",
"s1608 teacher 😂 distErr = 0.04666310005443825 rankErr = 0 wrong predictions with sentence: Me And GOT GIRLFRIENDS WITH THE SAME NAME JUST SPELLED DIFFERENT \n",
"s1609 teacher 😂 distErr = 0.01354975314468787 rankErr = 0 wrong predictions with sentence: Niggas got paper skin &amp; glass bones \n",
"s1610 teacher 😌 distErr = 0.038042156211565877 rankErr = 0 wrong predictions with sentence: I'm not i just fangirl over his gwaponess pero i know some of his lines \n",
"s1611 teacher 😍 distErr = 0.25739656458795984 rankErr = 13 wrong predictions😁😂😉😎😌😅🙏😀🙌😏😋😊😢 with sentence: guess not as comfortable as you travel - but I'm on my way from VIENNA to SALZBURG! C u tonight again… \n",
"s1612 teacher 😭 distErr = 0.3280259759055354 rankErr = 15 wrong predictions😁😌😎😂😉😅🙌😀😋🙏😊😏😍😘😢 with sentence: I hope we really get new music \n",
"s1613 teacher 😂 distErr = 0.016726661711891622 rankErr = 0 wrong predictions with sentence: burnt allllllll da way out \n",
"s1614 teacher 😂 distErr = 0.07035637422162633 rankErr = 1 wrong predictions😅 with sentence: Bored to death of people who watch daytime telly all day &amp; tweet about it. Erm.... try working? Problem solved \n",
"s1615 teacher 😂 distErr = 0.018430259163700738 rankErr = 0 wrong predictions with sentence: My little brother told me “you should play football after college cause youre fast and can catch.” Ill give it a shot dude\n",
"s1616 teacher 😂 distErr = 0.19317197358520297 rankErr = 10 wrong predictions😌😎🙌😁😀😉😋😊😍😘 with sentence: yes austin\n",
"s1617 teacher 😂 distErr = 0.027213427994113172 rankErr = 0 wrong predictions with sentence: u damn near go like that too\n",
"s1618 teacher 😂 distErr = 0.09902543659443896 rankErr = 2 wrong predictions😅😢 with sentence: Lmfao Angie kills me \n",
"s1619 teacher 😂 distErr = 0.15918726839762978 rankErr = 5 wrong predictions😉🙏😁😏😎 with sentence: Google \n",
"s1620 teacher 😂 distErr = 0.019219412579921272 rankErr = 0 wrong predictions with sentence: I just got into a fight\n",
"s1621 teacher 😩 distErr = 0.3283579251676489 rankErr = 12 wrong predictions😢😅😂😭😔😤😁😏😉😌😎🙏 with sentence: My son sleeps all day and all night... please wake up, I want to play. \n",
"s1622 teacher 😂 distErr = 0.03593472864466198 rankErr = 0 wrong predictions with sentence: Little finger?\n",
"s1623 teacher 😂 distErr = 0.06505828351352626 rankErr = 1 wrong predictions😅 with sentence: Gotta be quicker than that. Already liked and commented \n",
"s1624 teacher 😘 distErr = 0.3312989953568272 rankErr = 17 wrong predictions😅😂😢😌😁😎😭😉🙌😀😔😊😋🙏😏😍😤 with sentence: Miss you\n",
"s1625 teacher 😁 distErr = 0.20738436491266599 rankErr = 4 wrong predictions😅😂😢😭 with sentence: 2018 IS TWO AWAY &amp; I STILL THINK 2009 WAS LIKE 2 YEARS AGO.\n",
"s1626 teacher 😢 distErr = 0.16009410103052635 rankErr = 2 wrong predictions😂😅 with sentence: Not even much of a baseball fan but I waited all my life to see my city win a major sports championship \n",
"s1627 teacher 😊 distErr = 0.47834412967932116 rankErr = 17 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋 with sentence: There was no white Aaliyah however there are black Barbie dolls\n",
"s1628 teacher 😉 distErr = 0.16392206628726436 rankErr = 4 wrong predictions😂😅😁😌 with sentence: Wait.... What....That is Skyrim in the back. Sorry I was distracted by something else. \n",
"s1629 teacher 😂 distErr = 0.11953905417697473 rankErr = 2 wrong predictions😢😅 with sentence: So Katelyn done drove round this round about 4 times in senatobia Im so tickled lordddddd\n",
"s1630 teacher 😂 distErr = 0.03641895657339378 rankErr = 0 wrong predictions with sentence: No idea, i just typed \"wig\" \n",
"s1631 teacher 😂 distErr = 0.04006490380094046 rankErr = 0 wrong predictions with sentence: I-armys can't relate, we can even watch it w subs \n",
"s1632 teacher 😊 distErr = 0.25612054583174176 rankErr = 12 wrong predictions😂😁😅😉😎😌🙏😏😀🙌😢😋 with sentence: coffee after show drinkies my treat \n",
"s1633 teacher 😎 distErr = 0.07411720854656224 rankErr = 5 wrong predictions🙌😀😌😊😋 with sentence: HAPPY HUMP DAY with MI HERMANO HECTOR \n",
"s1634 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: She was guh\n",
"s1635 teacher 😂 distErr = 0.10627581095005684 rankErr = 2 wrong predictions😢😅 with sentence: I wonder which Hollywood celebrity will get exposed tomorrow?At this rate, there will be now more actors available for movies \n",
"s1636 teacher 😂 distErr = 0.04211646544869279 rankErr = 0 wrong predictions with sentence: Oh boy❤\n",
"s1637 teacher 😩 distErr = 0.48249267881589414 rankErr = 18 wrong predictions😂😅😁😌😎😉🙌😀😢😋🙏😊😏😍😭😘😔😤 with sentence: I want a new car. \n",
"s1638 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: I cry \n",
"s1639 teacher 😭 distErr = 0.09568414408881022 rankErr = 1 wrong predictions😢 with sentence: i just wanna cry, eat a bagel and listen to anywhere the whole day long. I cant believe that im going to see you for real! ❤️\n",
"s1640 teacher 🙌 distErr = 0.05771751235240004 rankErr = 1 wrong predictions😌 with sentence: Happy First day of November Tweethearts!! ❤\n",
"s1641 teacher 😍 distErr = 0.1528861229013054 rankErr = 8 wrong predictions😌😁🙌😎😀😉😋😊 with sentence: Holy fuck Im in love \n",
"s1642 teacher 😂 distErr = 0.20106126521399675 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: LMFAOOO I am he really made my day better I was seconds away from throwing my comput… \n",
"s1643 teacher 😂 distErr = 0.1260203924505307 rankErr = 5 wrong predictions😁😌😎😉🙌 with sentence: Sing this on the 1st faithfully \n",
"s1644 teacher 😍 distErr = 0.16685865698786903 rankErr = 8 wrong predictions😁😌😎🙌😀😉😋😊 with sentence: Welcome November\n",
"s1645 teacher 🙏 distErr = 0.2340570023241369 rankErr = 8 wrong predictions😂😅😁😢😌😉😎😏 with sentence: bitte \n",
"s1646 teacher 😅 distErr = 0.24860595983684758 rankErr = 6 wrong predictions😔😤😭😢😩😒 with sentence: This rain trynna put me down but I can't go cause I got hella work to do \n",
"s1647 teacher 😂 distErr = 0.044677441123566725 rankErr = 0 wrong predictions with sentence: barista: “one venti green tea latte with soy for.. Rhanielle?” \n",
"s1648 teacher 😋 distErr = 0.12955041821768148 rankErr = 6 wrong predictions😌😁😎🙌😀😉 with sentence: Happy birthday babe miss u! Walang ganap? :(( anyway stay pretty and palaban juk haha love you! One message away lang me mwa\n",
"s1649 teacher 😊 distErr = 0.30777549981713237 rankErr = 14 wrong predictions😂😅😁😉😢😎😏😌🙏😭🙌😀😔😋 with sentence: That explains it \n",
"s1650 teacher 😂 distErr = 0.25592327305269547 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: I need to fix my headlight I'm lagging it\n",
"s1651 teacher 😩 distErr = 0.44213772364527204 rankErr = 18 wrong predictions😂😅😁😢😉😎😌😏🙏🙌😀😭😔😋😊😤😍😘 with sentence: Been all day \n",
"s1652 teacher 😏 distErr = 0.23397767225634572 rankErr = 8 wrong predictions😂😅😢😁😭😉😌😎 with sentence: Now that's what I'm talking about \n",
"s1653 teacher 😍 distErr = 0.035942459897030904 rankErr = 1 wrong predictions😊 with sentence: TWICE\n",
"s1654 teacher 😂 distErr = 0.08811380986342382 rankErr = 1 wrong predictions😁 with sentence: This dude. \n",
"s1655 teacher 😘 distErr = 0.3119365920993773 rankErr = 15 wrong predictions😂😅😁😉😎😌🙏🙌😏😀😢😋😊😭😍 with sentence: When you love someone, always make it a point to say it, show it and prove it to them. - \n",
"s1656 teacher 😭 distErr = 0.3594969949482418 rankErr = 15 wrong predictions😁😌😎😉🙌😀😂😋😅😊🙏😍😏😘😢 with sentence: the beginning LMAO “ you in my hood homie, MS gang “ \n",
"s1657 teacher 😍 distErr = 0.2398120422656453 rankErr = 12 wrong predictions😁😂😎😌😉😅🙌😀🙏😋😏😊 with sentence: Yessssss It's my birthday month....It's the month of Thanksgiving andddddd I get paid 3 times In this month... \n",
"s1658 teacher 😤 distErr = 0.1730637217164092 rankErr = 5 wrong predictions😢😭😅😔😂 with sentence: you just so stupid deplorable idiot doesnt know whats \n",
"s1659 teacher 😂 distErr = 0.02053083258884811 rankErr = 0 wrong predictions with sentence: Selling my 24/7 messy dog for free and has 100% discount. Legit seller here \n",
"s1660 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Same!\n",
"s1661 teacher 😎 distErr = 0.13111051458839842 rankErr = 7 wrong predictions😊😍🙌😀😘😋😌 with sentence: Thanks \n",
"s1662 teacher 😭 distErr = 0.23192173361645785 rankErr = 7 wrong predictions😂😅😢😁😌😉😎 with sentence: posted a cute ass video of us and I legit cried my eyes out\n",
"s1663 teacher 😉 distErr = 0.20447096569654874 rankErr = 4 wrong predictions😂😅😢😁 with sentence: No punch intended neh \n",
"s1664 teacher 🙏 distErr = 0.23084196515505467 rankErr = 8 wrong predictions😂😅😢😁😌😉😎😏 with sentence: Sometimes the best person to talk to...vent to...is our creator \n",
"s1665 teacher 😩 distErr = 0.32371791013843154 rankErr = 12 wrong predictions😢😅😂😭😔😤😁😌😉😏😎🙏 with sentence: I thought for a secs. Twas u \n",
"s1666 teacher 😌 distErr = 0.06294126651330925 rankErr = 2 wrong predictions😁😎 with sentence: indeed I agree ☝ \n",
"s1667 teacher 😂 distErr = 0.04418919938526657 rankErr = 1 wrong predictions😅 with sentence: Everybody that's hating there team wasn't even in the series \n",
"s1668 teacher 😂 distErr = 0.22706786838800755 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: WAIT WALKED OVWE WHERE\n",
"s1669 teacher 😩 distErr = 0.2764368173612703 rankErr = 6 wrong predictions😢😭😔😅😤😂 with sentence: Is there anythinggggg worse than people touching you and that when youre gunna be sick I dont want my back rubbed fuck off !\n",
"s1670 teacher 😍 distErr = 0.20389684388304444 rankErr = 11 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏 with sentence: A little reading for my ILP and a healthy snack! \n",
"s1671 teacher 🙌 distErr = 0.04012545653912012 rankErr = 1 wrong predictions😌 with sentence: Aaron, you are amazing \n",
"s1672 teacher 😁 distErr = 0.19209181393885844 rankErr = 3 wrong predictions😂😅😢 with sentence: ...searching job postings in Germany... \n",
"s1673 teacher 😎 distErr = 0.08967733397695418 rankErr = 6 wrong predictions🙌😀😊😌😋😍 with sentence: Depends on the driver, so always a gamble \n",
"s1674 teacher 😂 distErr = 0.1882977809815481 rankErr = 10 wrong predictions😌🙌😎😁😀😉😋😊😍😘 with sentence: ahem \n",
"s1675 teacher 😂 distErr = 0.04992324507768381 rankErr = 1 wrong predictions😅 with sentence: Should i buy 2 ver but then i really have shortage of money for this week \n",
"s1676 teacher 😂 distErr = 0.026094442954315757 rankErr = 0 wrong predictions with sentence: Ally.\n",
"s1677 teacher 😉 distErr = 0.12057416683732809 rankErr = 8 wrong predictions😀🙌😌😎😋😊😁😍 with sentence: Thank you, Bea! See you on the 12th? ❤️\n",
"s1678 teacher 😢 distErr = 0.24841341178410556 rankErr = 13 wrong predictions😁😂😌😎😉😅🙌😀🙏😋😊😏😍 with sentence: I've been in the waiting room for tickets for 23 mins now \n",
"s1679 teacher 😩 distErr = 0.47233731920155714 rankErr = 18 wrong predictions😂😅😁😌😎😉🙌😀😢🙏😏😋😊😭😍😘😔😤 with sentence: Been sitting in the family room talking to my cousin for like 4 hours❤ I'm going to miss this when we move out\n",
"s1680 teacher 😂 distErr = 0.018546292017313164 rankErr = 0 wrong predictions with sentence: TAKE my MONEY brilliant inventions from markdebonis . This clip is from his set that won… \n",
"s1681 teacher 😀 distErr = 0.041972010213712725 rankErr = 2 wrong predictions😌🙌 with sentence: yeahh… \n",
"s1682 teacher 😭 distErr = 0.01679892584258872 rankErr = 0 wrong predictions with sentence: tryna be like this w somebody daughter \n",
"s1683 teacher 😂 distErr = 0.054517315795697484 rankErr = 0 wrong predictions with sentence: Omg Naa she swept them between the whole from her fridge and her sides\n",
"s1684 teacher 😂 distErr = 0.028791358904694118 rankErr = 0 wrong predictions with sentence: Hoh! Man can never be hot \n",
"s1685 teacher 😔 distErr = 0.3285344899574445 rankErr = 14 wrong predictions😂😏🙏😉😅😁😎😌😢😀🙌😋😭😊 with sentence: I mean, I get to talk about the stuff that comes out of humans everyday, not lizards though. I dont get paid for that \n",
"s1686 teacher 😘 distErr = 0.20161525237893949 rankErr = 12 wrong predictions😌😁😎🙌😀😉😋😊😂😍😅🙏 with sentence: Happiest bday to d most fantabulous sophisticated director da!! D most talented director until now have seen \n",
"s1687 teacher 😂 distErr = 0.05713973971066118 rankErr = 1 wrong predictions😅 with sentence: Ima dm you cause I dont want no one doing brujeria on me by knowing too much. \n",
"s1688 teacher 😭 distErr = 0.1793714235261542 rankErr = 3 wrong predictions😅😂😢 with sentence: My phone is finally fixed, after so long \n",
"s1689 teacher 😂 distErr = 0.10945676130388819 rankErr = 2 wrong predictions😢😅 with sentence: Chill foe \n",
"s1690 teacher 😭 distErr = 0.26567252870439484 rankErr = 12 wrong predictions😂😅😁😌😉😎😢🙌😀🙏😏😋 with sentence: Im soooo hyped \n",
"s1691 teacher 😒 distErr = 0.2949704504140957 rankErr = 7 wrong predictions😢😭😅😔😂😤😩 with sentence: The biggest lie I ever heard:\"No one is above the law\"\n",
"s1692 teacher 😀 distErr = 0.14238780771784185 rankErr = 6 wrong predictions😁😌😎😉😂🙌 with sentence: and will rock those scenes! We all know Danny always sees his old father pic from the family photo.\n",
"s1693 teacher 😀 distErr = 0.2495949465801352 rankErr = 11 wrong predictions😂😅😢😁😌😉😎😭😏🙏🙌 with sentence: think the same! \n",
"s1694 teacher 😂 distErr = 0.023148562071509015 rankErr = 0 wrong predictions with sentence: I was about to say \n",
"s1695 teacher 😂 distErr = 0.024283245295334717 rankErr = 0 wrong predictions with sentence: Yo this be me oss...SOBER \n",
"s1696 teacher 😊 distErr = 0.1651936067949001 rankErr = 8 wrong predictions😁😌😎😉🙌😀😂😋 with sentence: NOVEMBER JUST DO YOUR THING! -GoodMorning☀\n",
"s1697 teacher 😍 distErr = 0.3125556740844698 rankErr = 15 wrong predictions😂😅😁😉😎😌😢😏🙏🙌😀😭😋😊😔 with sentence: Ayy looks like the wizard is in his workshop \n",
"s1698 teacher 😅 distErr = 0.07216543379000924 rankErr = 1 wrong predictions😂 with sentence: It'll be like Ovaltine for the eyes \n",
"s1699 teacher 😊 distErr = 0.3139306212149928 rankErr = 15 wrong predictions😂😅😢😁😉😎😌😏🙏😭🙌😀😔😋😤 with sentence: Let them beards grow and prosper this month fellas \n",
"s1700 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Thalaivi is back \n",
"s1701 teacher 😂 distErr = 0.032105248292226315 rankErr = 0 wrong predictions with sentence: If I could just quit smoking and drinking I would be rich \n",
"s1702 teacher 😭 distErr = 0.14316084277701016 rankErr = 3 wrong predictions😅😢😂 with sentence: Noooo Bob \n",
"s1703 teacher 😂 distErr = 0.03632016804867264 rankErr = 0 wrong predictions with sentence: I only ate half and then asked for a to go box so I can taste it again tomorrow \n",
"s1704 teacher 😒 distErr = 0.493902555100204 rankErr = 19 wrong predictions😂😁😅😉😎😌🙏😏😀🙌😢😋😊😍😭😘😔😤😩 with sentence: youre laughter implies you arent taking me serious before I even make my point!\n",
"s1705 teacher 🙌 distErr = 0.19813536620161054 rankErr = 7 wrong predictions😂😅😁😉😎😌🙏 with sentence: Blessed man..\n",
"s1706 teacher 😎 distErr = 0.05806557034650686 rankErr = 2 wrong predictions😁😌 with sentence: Ashish Nehra Trending \n",
"s1707 teacher 🙌 distErr = 0.058317106114621 rankErr = 2 wrong predictions😊😍 with sentence: YASSS It's time for a great show LoV꒱Spell〆ღ: \n",
"s1708 teacher 😊 distErr = 0.2231226165391119 rankErr = 11 wrong predictions😂😁😌😎😅😉🙌😀🙏😋😏 with sentence: Pagi dek have a nice day\n",
"s1709 teacher 😔 distErr = 0.3910726596228763 rankErr = 16 wrong predictions😁😎😌😉🙌😀😂😅😋😊🙏😍😏😘😢😭 with sentence: for leaving u. twas all my fault ps. imy\n",
"s1710 teacher 😩 distErr = 0.6055110169568856 rankErr = 18 wrong predictions😌🙌😎😀😁😋😊😉😍😘😂😅🙏😏😢😭😔😤 with sentence: so excited about bedroom floor music video!! You are killing it. Love you since 2011 \n",
"s1711 teacher 🙏 distErr = 0.05651740800343182 rankErr = 0 wrong predictions with sentence: Amen. \n",
"s1712 teacher 😂 distErr = 0.018014683079808663 rankErr = 0 wrong predictions with sentence: just gotta play aorund with it\n",
"s1713 teacher 😂 distErr = 0.02187398182223508 rankErr = 0 wrong predictions with sentence: im cryingg \n",
"s1714 teacher 😋 distErr = 0.2743116811555559 rankErr = 12 wrong predictions😂😅😁😉😌😎😢😏🙏🙌😀😭 with sentence: A golf pic. But a shot that I didnt see anyone else post so Im pretty sure its mine. Ill dm you. \n",
"s1715 teacher 😉 distErr = 0.377985408301446 rankErr = 11 wrong predictions😢😭😔😤😅😂😩😒😁😏😌 with sentence: Yall gotta learn everybody dont hold the same respect for that shit like yall do &amp; some of us will BAT TF OUT YOU for thinking we do \n",
"s1716 teacher 🙌 distErr = 0.06890109324792294 rankErr = 3 wrong predictions😌😎😁 with sentence: FIFAcom: ManCity: The goal that broke the record (cc aguerosergiokun) \n",
"s1717 teacher 😒 distErr = 0.3272755104982758 rankErr = 13 wrong predictions😢😅😂😭😔😤😁😌😉😏😎🙏😩 with sentence: What the heck wifi..\n",
"s1718 teacher 😏 distErr = 0.29084559862217013 rankErr = 7 wrong predictions😢😅😂😭😔😤😁 with sentence: I don't know wtf else to do? \n",
"s1719 teacher 😌 distErr = 0.37494857401339593 rankErr = 10 wrong predictions😭😢😔😤😅😂😩😒😁😏 with sentence: I'm High Asl I'm Just Tryna Nail \n",
"s1720 teacher 😂 distErr = 0.025365438569986343 rankErr = 0 wrong predictions with sentence: no money \n",
"s1721 teacher 🙏 distErr = 0.13532493739500923 rankErr = 6 wrong predictions😁😉😎😌😀🙌 with sentence: New month, New Blessings Thank you to all our clients for choosing from our array of services. \n",
"s1722 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: It should be medu vada \n",
"s1723 teacher 😂 distErr = 0.022605380818420888 rankErr = 0 wrong predictions with sentence: yall so trash and im so dumb \n",
"s1724 teacher 😭 distErr = 0.38543202930486287 rankErr = 15 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅🙏😏😢 with sentence: Not ready for semster 2 sey... 6-10pm ???? \n",
"s1725 teacher 😂 distErr = 0.2018254416686976 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Platos Closet!!\n",
"s1726 teacher 😂 distErr = 0.031148223211848194 rankErr = 0 wrong predictions with sentence: Yay! Lecture 5 is this week right or am I doin the wrong work \n",
"s1727 teacher 😂 distErr = 0.03214827755581202 rankErr = 0 wrong predictions with sentence: HIS PAUSE \n",
"s1728 teacher 😂 distErr = 0.3206000777305355 rankErr = 7 wrong predictions😤😔😭😩😒😢😅 with sentence: Such disrespect \n",
"s1729 teacher 😌 distErr = 0.45421661199216457 rankErr = 10 wrong predictions😔😭😤😢😩😒😅😂😁😏 with sentence: I got bath and body work coupons going to get plugins and some candles \n",
"s1730 teacher 😂 distErr = 0.2328480129715204 rankErr = 10 wrong predictions🙌😀😌😊😎😋😁😍😘😉 with sentence: Me ga The mainest\n",
"s1731 teacher 😂 distErr = 0.07535626537738997 rankErr = 1 wrong predictions😅 with sentence: Cam thinks he isnt gonna watch the Grinch with me... BOY IS HE WRONG\n",
"s1732 teacher 😉 distErr = 0.21184409365878476 rankErr = 5 wrong predictions😂😅😢😁😭 with sentence: Oh suuuuuuure.... \"accidentally\" Lol.\n",
"s1733 teacher 😎 distErr = 0.2428379130672039 rankErr = 9 wrong predictions😂😅😢😭😁😔😉😌😏 with sentence: This is without a doubt the only man that would touch Hillary. She probably pays him to. She's used to pay to play\n",
"s1734 teacher 😀 distErr = 0.03637984643685622 rankErr = 1 wrong predictions🙌 with sentence: Really enjoyed meeting you &amp; hearing about your fantastic work! Always good to learn more about the wonderful \n",
"s1735 teacher 😩 distErr = 0.43567298140644956 rankErr = 18 wrong predictions😂😅😁😢😉😌😎😏🙏😭🙌😀😔😋😊😤😍😘 with sentence: Youre living it up .\n",
"s1736 teacher 😩 distErr = 0.46895879058104606 rankErr = 18 wrong predictions😂😅😁😌😎😉🙌😢😀🙏😏😋😊😭😍😘😔😤 with sentence: Dinner is really good as fuck I should cook more often \n",
"s1737 teacher 😂 distErr = 0.20018102285504805 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: My heart bigger than my body, shit gon end up killing me or sum shit\n",
"s1738 teacher 😍 distErr = 0.4377171748839165 rankErr = 18 wrong predictions😢😅😭😂😔😤😁😌😏😉😎😩😒🙏🙌😀😋😊 with sentence: Naaah the level of energy I've had this week needs to return next week as well pls! \n",
"s1739 teacher 😭 distErr = 0.02411237646573403 rankErr = 0 wrong predictions with sentence: My stomach is cramping so fucking bad \n",
"s1740 teacher 😂 distErr = 0.03865801419054481 rankErr = 0 wrong predictions with sentence: wish I could tweet that photo from the other day but I'd get skinned alive\n",
"s1741 teacher 😍 distErr = 0.16182323180181055 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Season tickets confirmed \n",
"s1742 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Kayness \n",
"s1743 teacher 😅 distErr = 0.02440193471797884 rankErr = 0 wrong predictions with sentence: Caroline Kristiansen is a model London student (22 Photos) \n",
"s1744 teacher 😁 distErr = 0.1332744539527619 rankErr = 2 wrong predictions😂😅 with sentence: u know \n",
"s1745 teacher 😂 distErr = 0.07688833435928397 rankErr = 0 wrong predictions with sentence: charot \n",
"s1746 teacher 😎 distErr = 0.3382441892290909 rankErr = 12 wrong predictions😢😭😅😔😂😤😩😒😁😏😌😉 with sentence: YES, THAT MEANS BEING ABLE TO BEND, SIT, TURN, MANUVER IN ANY POSITION, RIGHT?!?! I WANT THAT!!!!\n",
"s1747 teacher 😂 distErr = 0.3170397794457283 rankErr = 7 wrong predictions😔😤😭😩😒😢😅 with sentence: Me as a parent \n",
"s1748 teacher 😊 distErr = 0.09572706781847017 rankErr = 6 wrong predictions😌🙌😀😎😁😋 with sentence: Atz Lee you're such a trooper , love the show but my super hero is always game &amp;as nails lo… \n",
"s1749 teacher 😍 distErr = 0.382897720427464 rankErr = 18 wrong predictions😅😂😢😭😔😁😉😌😤😎😏🙏🙌😀😋😊😩😒 with sentence: You poking friend ❤️ \n",
"s1750 teacher 😁 distErr = 0.13591941632621377 rankErr = 2 wrong predictions😂😅 with sentence: ...and btw I have lots of zippos \n",
"s1751 teacher 😍 distErr = 0.1667119461321703 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: you are just my idol love me some Mary\n",
"s1752 teacher 😂 distErr = 0.023938166897291047 rankErr = 0 wrong predictions with sentence: Only half my games were double doubles I suck \n",
"s1753 teacher 😂 distErr = 0.06587006364529142 rankErr = 1 wrong predictions😅 with sentence: These dumb asses man \n",
"s1754 teacher 🙏 distErr = 0.27500621227922395 rankErr = 11 wrong predictions😅😂😢😭😔😁😤😉😌😎😏 with sentence: cameo from a young stallion in this \n",
"s1755 teacher 😊 distErr = 0.2465236097583251 rankErr = 12 wrong predictions😂😁😉😅😎😌🙏😏😀🙌😋😢 with sentence: Its amazing how much my life has changed in a year and Im so greatful for every change made. Im the happiest Ive been in awhile ❤️\n",
"s1756 teacher 😀 distErr = 0.08693005249462489 rankErr = 4 wrong predictions😌😁😎🙌 with sentence: Anja Novkovics thesis work revolves around the alleyway directly behind the J.W. McConnell bldg, she's looking for memories of the space! \n",
"s1757 teacher 😍 distErr = 0.2652147002552922 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: Me seeing pics of my abusive ex with a kitten:Awww I hope she scratches your eyes out\n",
"s1758 teacher 😍 distErr = 0.25064661426361107 rankErr = 13 wrong predictions😂😁😌😅😎😉🙌😀🙏😋😏😊😢 with sentence: Stros\n",
"s1759 teacher 😂 distErr = 0.017522582534264395 rankErr = 0 wrong predictions with sentence: Yeah okay LOL except work connected through the Arctic and down towards Argentina \n",
"s1760 teacher 😩 distErr = 0.4352305326488812 rankErr = 18 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤😍😘 with sentence: Neither are these hoessss🗣 \n",
"s1761 teacher 😭 distErr = 0.1803224093578033 rankErr = 3 wrong predictions😅😂😢 with sentence: Sorry girl, just gave them all away. People are quick \n",
"s1762 teacher 😌 distErr = 0.44596380855632684 rankErr = 10 wrong predictions😔😭😤😢😩😒😅😂😁😏 with sentence: Mannnn you play all day!!! I like that idea though. I might just keep it sis..I wanna find out he gender first\n",
"s1763 teacher 😂 distErr = 0.3247317825632559 rankErr = 7 wrong predictions😔😤😭😩😒😢😅 with sentence: i missed class on tuesday bc i hurt my back so i emailed my professor and he offered to bring me a yoga mat to lay on tomorrow ❤️\n",
"s1764 teacher 😭 distErr = 0.3821545683062486 rankErr = 15 wrong predictions😌😁😎🙌😀😉😋😊😂😍😅😘🙏😏😢 with sentence: I'm so glad this video resurfaced \n",
"s1765 teacher 😂 distErr = 0.22628047531758305 rankErr = 10 wrong predictions🙌😀😌😎😊😋😁😍😉😘 with sentence: KO is such a dope\n",
"s1766 teacher 😂 distErr = 0.1764225320505389 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: I blocked oomf on my phone for a reason &amp; he got the nerve to DM me up here just to continue this same pointless argument man gone\n",
"s1767 teacher 😂 distErr = 0.2041551256245285 rankErr = 10 wrong predictions😌😎😀🙌😁😋😉😊😍😘 with sentence: *giggle \n",
"s1768 teacher 🙌 distErr = 0.23442306127291368 rankErr = 9 wrong predictions😂😅😁😢😌😉😎😏🙏 with sentence: slayyyy \n",
"s1769 teacher 😩 distErr = 0.34962755563157144 rankErr = 14 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀 with sentence: I shouldn't have drunk that large coffee now I can't go back to sleep \n",
"s1770 teacher 😌 distErr = 0.10645474173497185 rankErr = 3 wrong predictions😁😉😎 with sentence: Last ep for st2 ❤️\n",
"s1771 teacher 😊 distErr = 0.20747649049035188 rankErr = 9 wrong predictions😁😌😂😎😅😉🙌😀😋 with sentence: Awwwww, I haven't Thank you \n",
"s1772 teacher 🙌 distErr = 0.2650033197999028 rankErr = 10 wrong predictions😅😂😢😁😭😌😉😎😔😏 with sentence: Live in studio with multi-platinum artist \n",
"s1773 teacher 😩 distErr = 0.3777016774974853 rankErr = 16 wrong predictions😅😂😢😭😔😁😉😌😎😏😤🙏🙌😀😋😊 with sentence: Travis said we was gone win today at his show yesterday, wow my president \n",
"s1774 teacher 😉 distErr = 0.31359638889090397 rankErr = 10 wrong predictions😢😅😭😂😔😤😁😩😏😒 with sentence: I give them points for trying. Sick of white oldguys myself. \n",
"s1775 teacher 😂 distErr = 0.024787100691747225 rankErr = 0 wrong predictions with sentence: Thanks bro lol \n",
"s1776 teacher 😍 distErr = 0.3944865105747923 rankErr = 18 wrong predictions😅😂😢😭😔😁😤😌😉😎😏🙏🙌😀😋😩😒😊 with sentence: the bag obsessed with it \n",
"s1777 teacher 😍 distErr = 0.22285361554490574 rankErr = 12 wrong predictions😁😉😎😌😂😀🙌🙏😋😅😏😊 with sentence: How do you patience?? What?many good\n",
"s1778 teacher 😍 distErr = 0.5182633149938289 rankErr = 18 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: is heejin in l*ve \n",
"s1779 teacher 😭 distErr = 0.13932104060302153 rankErr = 3 wrong predictions😅😢😂 with sentence: Im so Sorry bb stay strong ❤️\n",
"s1780 teacher 😂 distErr = 0.0299153294824181 rankErr = 0 wrong predictions with sentence: Talking &amp; sharing about cameras \n",
"s1781 teacher 😭 distErr = 0.24248214879885882 rankErr = 9 wrong predictions😂😅😁😢😉😎😏😌🙏 with sentence: it was asking for it g\n",
"s1782 teacher 😊 distErr = 0.23451876547860864 rankErr = 12 wrong predictions😂😁😅😎😉😌🙌😀🙏😏😋😢 with sentence: Post pics when I wake up \n",
"s1783 teacher 😘 distErr = 0.40300118378591354 rankErr = 19 wrong predictions😂😅😢😭😁😔😉😏😌😎🙏😤🙌😀😋😊😍😩😒 with sentence: I see u kid \n",
"s1784 teacher 😂 distErr = 0.12204946881929828 rankErr = 4 wrong predictions😁😌😎😉 with sentence: shes beautiful yall really haters, Capital H \n",
"s1785 teacher 😂 distErr = 0.0698562590995538 rankErr = 0 wrong predictions with sentence: aM FKXNSK SCREAMING ODM \n",
"s1786 teacher 😂 distErr = 0.04301695999433238 rankErr = 0 wrong predictions with sentence: How Blake can remember all these wordy songs I will never understand, at least I can follow on the chorus \n",
"s1787 teacher 😂 distErr = 0.03859740956776827 rankErr = 0 wrong predictions with sentence: this is crazy, i hated my roommate too but i would never fuckin do this shit this girl def had nothing better to do \n",
"s1788 teacher 😭 distErr = 0.15874832753662918 rankErr = 3 wrong predictions😅😂😢 with sentence: Lol you said you wanted to just pubstomp Im sorry \n",
"s1789 teacher 😍 distErr = 0.193263230044305 rankErr = 10 wrong predictions😁😌😎😉🙌😀😂😋😊😅 with sentence: YOU LOOK SO GOOD \n",
"s1790 teacher 😉 distErr = 0.3182744542062837 rankErr = 10 wrong predictions😢😭😅😂😔😤😁😩😒😏 with sentence: life\n",
"s1791 teacher 😂 distErr = 0.13835648515123194 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: how can someone forget this \n",
"s1792 teacher 😂 distErr = 0.06172251440296677 rankErr = 0 wrong predictions with sentence: Arent we all? \n",
"s1793 teacher 😂 distErr = 0.20443230828429224 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Hate him \n",
"s1794 teacher 😍 distErr = 0.20234013285082922 rankErr = 11 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏 with sentence: if June loves dogs as much as you .. I definitely see her doing this! \n",
"s1795 teacher 😂 distErr = 0.09987312233803372 rankErr = 2 wrong predictions😅😢 with sentence: So true\n",
"s1796 teacher 😉 distErr = 0.0907889097442067 rankErr = 2 wrong predictions😁😎 with sentence: All of you guys are moving here n there.. Me still in one state \n",
"s1797 teacher 😁 distErr = 0.15074104285709136 rankErr = 8 wrong predictions😊😍🙌😀😋😘😌😎 with sentence: Keep voting for BTS as artist of the year. Army fighting \n",
"s1798 teacher 😂 distErr = 0.0957957892431355 rankErr = 2 wrong predictions😅😢 with sentence: ASJDHKF I thought it was me \n",
"s1799 teacher 😂 distErr = 0.302529696291546 rankErr = 11 wrong predictions😊😍😘🙌😀😋😌😎😁😉🙏 with sentence: Thanks, babe! ❤\n",
"s1800 teacher 😩 distErr = 0.665308111654092 rankErr = 18 wrong predictions🙌😀😊😌😋😎😍😁😘😉🙏😂😅😏😢😭😔😤 with sentence: I want some seafood \n",
"s1801 teacher 😊 distErr = 0.21590890817983432 rankErr = 10 wrong predictions😁😂😌😎😉😅🙌😀🙏😋 with sentence: Awhhhhhhh that mattt guy must be pretty badasss for you to be soooo sweet to him \n",
"s1802 teacher 😍 distErr = 0.35025446716350517 rankErr = 16 wrong predictions😅😂😢😁😭😌😉😎😔😏🙏🙌😀😤😋😊 with sentence: Omg! Congratsssssss, cant wait to see her \n",
"s1803 teacher 😩 distErr = 0.4211666415401383 rankErr = 18 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😀😔😤😋😊😍😘 with sentence: I am struggling to check in on my app \n",
"s1804 teacher 😅 distErr = 0.04897435292150202 rankErr = 1 wrong predictions😂 with sentence: yeahhhh!!!! Por fin. \n",
"s1805 teacher 😂 distErr = 0.023840955955311008 rankErr = 0 wrong predictions with sentence: when girls wake up in the morning after sleepovers we don't even talk to each other for a good 20 minutes we just sit on our phones\n",
"s1806 teacher 😎 distErr = 0.09236916172408917 rankErr = 5 wrong predictions🙌😀😌😊😋 with sentence: Obvio \n",
"s1807 teacher 😩 distErr = 0.4352305326488812 rankErr = 18 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤😍😘 with sentence: Me too \n",
"s1808 teacher 😒 distErr = 0.4110143005304505 rankErr = 19 wrong predictions😂😅😢😁😌😭😉😎😏😔🙏🙌😀😤😋😊😍😘😩 with sentence: my brain just won't fucking quit giving me a hard time today\n",
"s1809 teacher 😍 distErr = 0.25061661679799946 rankErr = 13 wrong predictions😁😂😎😌😉😅🙌😀🙏😏😋😊😢 with sentence: ALE ALE ALEThere is a PUPPY BRUNCH in Dubai this Friday. Dress your puppers up &amp; enjoy a magical day… \n",
"s1810 teacher 😭 distErr = 0.18328527996004942 rankErr = 3 wrong predictions😅😂😢 with sentence: Really missing my adventure partner\n",
"s1811 teacher 😂 distErr = 0.09987312233803372 rankErr = 2 wrong predictions😅😢 with sentence: True\n",
"s1812 teacher 😊 distErr = 0.21978797894918686 rankErr = 11 wrong predictions😁😂😉😎😌😅🙌😀🙏😏😋 with sentence: His lane is the best \n",
"s1813 teacher 😭 distErr = 0.1545114860020339 rankErr = 3 wrong predictions😅😂😢 with sentence: srslah jeans rm10...... \n",
"s1814 teacher 😂 distErr = 0.1283063206437303 rankErr = 3 wrong predictions😢😅😭 with sentence: I'm a broke stallion \n",
"s1815 teacher 🙏 distErr = 0.22646791586501433 rankErr = 10 wrong predictions😀🙌😌😎😋😊😁😍😉😘 with sentence: Thank you \n",
"s1816 teacher 😂 distErr = 0.04185721210785417 rankErr = 1 wrong predictions😅 with sentence: Yall remember Uncle P? \n",
"s1817 teacher 😍 distErr = 0.40734729130983255 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀😩😒😋😊 with sentence: Holiday cups are heree \n",
"s1818 teacher 😂 distErr = 0.23520324867102751 rankErr = 10 wrong predictions🙌😀😌😊😋😎😁😍😘😉 with sentence: \" your headband can't cover more than 1/3 of your forehead\" BITCH WHAT \n",
"s1819 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Tiara is such a crybaby \n",
"s1820 teacher 😤 distErr = 0.1713170811479026 rankErr = 5 wrong predictions😢😭😅😔😂 with sentence: Skipping cuffing szn this year, its in my Duffy szn\n",
"s1821 teacher 😂 distErr = 0.059783234591336894 rankErr = 1 wrong predictions😅 with sentence: Sounding like coach Lydia \n",
"s1822 teacher 😊 distErr = 0.29367537599369925 rankErr = 14 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋 with sentence: I'm here \n",
"s1823 teacher 🙏 distErr = 0.24636825480582164 rankErr = 10 wrong predictions😂😅😢😁😭😉😌😎😏😔 with sentence: i will be at somebody college playing basketball next fall. \n",
"s1824 teacher 😭 distErr = 0.33945565752840223 rankErr = 15 wrong predictions😁😎😌😉😂🙌😀😅😋🙏😊😏😍😘😢 with sentence: CORREA PROPOSING TO HIS GF IS SOMETHING I DIDNT KNOW I NEED IN MY LIFE \n",
"s1825 teacher 😭 distErr = 0.12623684553815526 rankErr = 3 wrong predictions😢😅😂 with sentence: Your website is down \n",
"s1826 teacher 😂 distErr = 0.12907260161858727 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: Yes come next year We will be unstoppable \n",
"s1827 teacher 😊 distErr = 0.3913318108679494 rankErr = 17 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😩😒😀😋 with sentence: show the doubters how to love themselves. they need it more than the hate. \n",
"s1828 teacher 😂 distErr = 0.23908129112713108 rankErr = 7 wrong predictions😭😔😢😤😩😒😅 with sentence: Dont try to fwm I will ignore the shit out of you \n",
"s1829 teacher 😂 distErr = 0.17658543775530436 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: If you had an \"outstanding\" talk with Mitsuku, how about trying out \"Cleverbot\" who replaced George? \n",
"s1830 teacher 😊 distErr = 0.14980619523729422 rankErr = 7 wrong predictions😁😎😌😉😀🙌😋 with sentence: I CANT WAIT! Its going to be great \n",
"s1831 teacher 😂 distErr = 0.05223030271226856 rankErr = 0 wrong predictions with sentence: I mean.. Would you blame him? -Patrick \n",
"s1832 teacher 😂 distErr = 0.10003046819326727 rankErr = 2 wrong predictions😁😌 with sentence: Kodwa sibheka ukuthi kwahambani the bafo.Only if we were told the truth\n",
"s1833 teacher 😩 distErr = 0.48752635426348334 rankErr = 18 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😭😘😔😤 with sentence: I want some more\n",
"s1834 teacher 😁 distErr = 0.18401751842982048 rankErr = 3 wrong predictions😂😅😢 with sentence: She knew what she was getting herself into trump's the one losing hope.\n",
"s1835 teacher 😂 distErr = 0.021420323559527513 rankErr = 0 wrong predictions with sentence: Sorina is freaking sending me Christmas videos already. Weirdo \n",
"s1836 teacher 😂 distErr = 0.1562144172969066 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Lindsay “why does he look so sad?”Me “thats you” \n",
"s1837 teacher 😂 distErr = 0.023184421757885536 rankErr = 0 wrong predictions with sentence: Save me a room for sleepovers \n",
"s1838 teacher 😒 distErr = 0.5270372737234145 rankErr = 19 wrong predictions😁😂😌😎😉😅🙌😀🙏😋😊😏😍😢😘😭😔😤😩 with sentence: Is it just me or does anyone else always forget their to go box at restaurants \n",
"s1839 teacher 😏 distErr = 0.2177139582187842 rankErr = 7 wrong predictions😂😅😢😁😉😎😌 with sentence: Niggas lie women lie but my call history , text messages and Dm's dont \n",
"s1840 teacher 😔 distErr = 0.2381677226992248 rankErr = 9 wrong predictions😂😅😢😁😭😉😌😎😏 with sentence: the more I dive deep into these fandom thing, the more toxic it becomes. Its sad \n",
"s1841 teacher 😭 distErr = 0.43444082825003305 rankErr = 15 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂🙏😅😏😢 with sentence: Just look at her looking at him \n",
"s1842 teacher 😍 distErr = 0.3721519601755412 rankErr = 16 wrong predictions😂😅😢😭😁😔😉😌😎😏🙏😤🙌😀😋😊 with sentence: And to lead me on the 4231 path \n",
"s1843 teacher 😎 distErr = 0.26057225967546876 rankErr = 9 wrong predictions😅😂😢😭😔😁😤😉😌 with sentence: Every now and then I think of cutting my hair, then I wash moisturize and twist it see length and be like hell nawl.\n",
"s1844 teacher 😭 distErr = 0.11587758330535473 rankErr = 4 wrong predictions😤😔😩😒 with sentence: I can't find my mod \n",
"s1845 teacher 😂 distErr = 0.1603551636277255 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Guy: Can i take your number Girl: No i have a boyfriend.Guy: Doesnt your boyfriend allow you to have friends. \n",
"s1846 teacher 😒 distErr = 0.34114620227619763 rankErr = 15 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀😩 with sentence: having such fucked up dreams again \n",
"s1847 teacher 😘 distErr = 0.06704990012671011 rankErr = 4 wrong predictions😊😍🙌😀 with sentence: Thanks \n",
"s1848 teacher 😌 distErr = 0.29546532437477746 rankErr = 7 wrong predictions😢😅😂😭😔😤😁 with sentence: I live for morning pumps. 18 OZ to start the day! \n",
"s1849 teacher 😢 distErr = 0.11489385433417543 rankErr = 2 wrong predictions😅😂 with sentence: Finished Gilmore Girls for the 4th time hahahahaha now what do I do :(\n",
"s1850 teacher 😂 distErr = 0.27453013577432356 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: askies \n",
"s1851 teacher 😂 distErr = 0.15825285414002202 rankErr = 4 wrong predictions😢😭😔😅 with sentence: get it done please do then let all these people see you for what you are\n",
"s1852 teacher 😂 distErr = 0.1832368688309603 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Santa Claus is fat. Needs to lose weight. He's also a BOOMER \n",
"s1853 teacher 😂 distErr = 0.040962338961796636 rankErr = 0 wrong predictions with sentence: tryna stay awake with a platito of nuts \n",
"s1854 teacher 😤 distErr = 0.30509407878702505 rankErr = 14 wrong predictions😂😅😢😁😉😌😎😏🙏😭🙌😀😔😋 with sentence: That figures. Hes just another trump lackey. Hell do anything to protect the Party \n",
"s1855 teacher 😂 distErr = 0.18521921965191412 rankErr = 10 wrong predictions😌🙌😁😎😀😉😋😊😍😘 with sentence: They just showing some love bruh\n",
"s1856 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Unoy shamishyu\n",
"s1857 teacher 😍 distErr = 0.20124235370134178 rankErr = 10 wrong predictions😌🙌😁😎😀😅😂😉😊😋 with sentence: Why all my friends so fine \n",
"s1858 teacher 🙏 distErr = 0.12934648280010624 rankErr = 4 wrong predictions😂😉😏😁 with sentence: Jk I found it bless up \n",
"s1859 teacher 😂 distErr = 0.048273837834879145 rankErr = 0 wrong predictions with sentence: What a relief. I was cutting it close at 19 when I liked vocaloid \n",
"s1860 teacher 😅 distErr = 0.06779785964463252 rankErr = 0 wrong predictions with sentence: My face breaks out at the most inconvenient times \n",
"s1861 teacher 😂 distErr = 0.18416525935641126 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: I'm crying \n",
"s1862 teacher 🙏 distErr = 0.1917994024205109 rankErr = 8 wrong predictions😁😂😌😎😉😅🙌😀 with sentence: URGENT APPEAL were desperately in need of wet and dry kitten food all donations are gratefully accepted! ❤️… \n",
"s1863 teacher 😂 distErr = 0.17188748456521166 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Nobody? ok \n",
"s1864 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: never… \n",
"s1865 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Okinnam\n",
"s1866 teacher 😂 distErr = 0.1045102408109875 rankErr = 2 wrong predictions😢😅 with sentence: Homegirl wasnt playing about this edible \n",
"s1867 teacher 😂 distErr = 0.19678883633710198 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Honestly and of all the Eminem songs?\n",
"s1868 teacher 😂 distErr = 0.17118405356391503 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Let that lil nigga know what hes missing on \n",
"s1869 teacher 😂 distErr = 0.06609901166645397 rankErr = 0 wrong predictions with sentence: Doesnae make him a film buff just like kicking a ball didnae make him a fabulous footballer either \n",
"s1870 teacher 😭 distErr = 0.3929461008727346 rankErr = 15 wrong predictions😁😎😌😀🙌😉😋😊😂😍🙏😅😘😏😢 with sentence: See you tonight ❤️❤️\n",
"s1871 teacher 😉 distErr = 0.08476017409872057 rankErr = 3 wrong predictions😁😎😌 with sentence: Your talks are always great, and the Shenkansen are fabulous -- so why do you look so worried?\n",
"s1872 teacher 😒 distErr = 0.41564490313613794 rankErr = 19 wrong predictions😂😅😢😁😉😌😎😭😏🙏😔🙌😀😤😋😊😍😘😩 with sentence: Same. Back to drinking this week cuz no \n",
"s1873 teacher 😍 distErr = 0.25964220834342694 rankErr = 13 wrong predictions😂😁😉😎😌😅🙏😀🙌😏😋😊😢 with sentence: yup yup \n",
"s1874 teacher 😍 distErr = 0.10232094420552516 rankErr = 4 wrong predictions🙌😌😀😊 with sentence: Copic art \n",
"s1875 teacher 😂 distErr = 0.0590578688533036 rankErr = 1 wrong predictions😅 with sentence: His ass better go on the run and enjoy fresh air before the inmates get that cupcake ass of his!!!\n",
"s1876 teacher 😂 distErr = 0.047940071726371256 rankErr = 0 wrong predictions with sentence: Realization comes now... \n",
"s1877 teacher 😭 distErr = 0.35049247590773347 rankErr = 15 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏😍😏😘😢 with sentence: dear browser, you used to be so stable. Now every day you freeze my mac and I can only move my cursor. What happened? \n",
"s1878 teacher 😂 distErr = 0.08636287820918756 rankErr = 0 wrong predictions with sentence: Kenyans are never patient. Some have already had sex in November \n",
"s1879 teacher 😎 distErr = 0.22550360060674263 rankErr = 7 wrong predictions😂😅😢😁😭😉😌 with sentence: Cheers for the birthday messages people!\n",
"s1880 teacher 😭 distErr = 0.3378476996220816 rankErr = 15 wrong predictions😁😌😎😉😂🙌😀😅😋🙏😊😏😍😘😢 with sentence: Aint getting over this picture anytime soon.Budapest was worth it \n",
"s1881 teacher 😂 distErr = 0.10600405653824932 rankErr = 3 wrong predictions😁😌😎 with sentence: You guys have won Halloween hahahaha. Incredible. Iconic. \n",
"s1882 teacher 😉 distErr = 0.16088140786075436 rankErr = 3 wrong predictions😂😅😁 with sentence: Time to get the thermals out? \n",
"s1883 teacher 😭 distErr = 0.2624295338875708 rankErr = 11 wrong predictions😂😅😁😉😎😌😢🙏😏🙌😀 with sentence: I literally got a haircut today and sat ina crib all day wow I deserve to be somebodies husband\n",
"s1884 teacher 🙌 distErr = 0.2161198483232511 rankErr = 8 wrong predictions🙏😉😏😁😎😂😌😀 with sentence: Amen to that \n",
"s1885 teacher 😭 distErr = 0.06312072890346868 rankErr = 1 wrong predictions😢 with sentence: i dreamed about a serial killer he was trying to kill me and my friend\n",
"s1886 teacher 🙏 distErr = 0.22998266614744683 rankErr = 10 wrong predictions😀🙌😋😌😊😎😍😁😘😉 with sentence: I'm Blessed God Really Is Great \n",
"s1887 teacher 😂 distErr = 0.11449032254662936 rankErr = 2 wrong predictions😢😅 with sentence: Our WHILE FAMILY !!!!!!!\n",
"s1888 teacher 😂 distErr = 0.06920063844585095 rankErr = 1 wrong predictions😅 with sentence: Lmao don't mind them Ansel I was late for that too \n",
"s1889 teacher 😂 distErr = 0.08566064024487513 rankErr = 0 wrong predictions with sentence: Big thanks to for all of the video ideas Kappa\n",
"s1890 teacher 😂 distErr = 0.32532192798874116 rankErr = 7 wrong predictions😔😤😭😩😒😢😅 with sentence: First time i ever get such advice \n",
"s1891 teacher 😂 distErr = 0.15153794986733068 rankErr = 4 wrong predictions😢😭😅😔 with sentence: The black ankle socks and slides though. . . ALWAYS! \n",
"s1892 teacher 😊 distErr = 0.14626927689195826 rankErr = 7 wrong predictions😌😁😎🙌😀😉😋 with sentence: wow youre so kind, youre lucky youve got such a looker as a friend thanks cal❤\n",
"s1893 teacher 😍 distErr = 0.15774634620253694 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Best costume ever! \n",
"s1894 teacher 😂 distErr = 0.04167828177479013 rankErr = 0 wrong predictions with sentence: I lost it when he was taking his pics and she went OFF \n",
"s1895 teacher 😘 distErr = 0.2323744661064097 rankErr = 13 wrong predictions😁😌😎😉🙌😀😂😅😋😊🙏😍😏 with sentence: Happy International Author's day Virginia C Andrews \n",
"s1896 teacher 😂 distErr = 0.11552154868156056 rankErr = 2 wrong predictions😢😅 with sentence: it was swollen and upset \n",
"s1897 teacher 😘 distErr = 0.10071411030131258 rankErr = 6 wrong predictions🙌😀😊😌😋😍 with sentence: Happy Halloween! \n",
"s1898 teacher 😭 distErr = 0.2093092079790686 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Last inning of baseball this year \n",
"s1899 teacher 😉 distErr = 0.11262786951335416 rankErr = 4 wrong predictions😁😌😎😂 with sentence: thats true… ❤️ \n",
"s1900 teacher 😂 distErr = 0.21223057930747663 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: I fucking love you \n",
"s1901 teacher 😂 distErr = 0.17797751397038816 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: oh my fucking god- \n",
"s1902 teacher 😂 distErr = 0.06827290606542094 rankErr = 1 wrong predictions😅 with sentence: his hate for twitter so cute lol ...ain gotta never worry bout him on here acting like a girl \n",
"s1903 teacher 😒 distErr = 0.4504407848528293 rankErr = 19 wrong predictions😂😅😁😌😢😎😉🙌😀🙏😏😭😋😊😔😍😘😤😩 with sentence: Thats why im always at jay house. \n",
"s1904 teacher 😭 distErr = 0.32651292711862884 rankErr = 15 wrong predictions😁😂😌😎😉😅🙌😀🙏😋😊😏😍😢😘 with sentence: Not available in India sadly \n",
"s1905 teacher 😌 distErr = 0.04493427911507641 rankErr = 2 wrong predictions😎😁 with sentence: realy?.. \n",
"s1906 teacher 😢 distErr = 0.042211213822734746 rankErr = 0 wrong predictions with sentence: You've been replaced...\n",
"s1907 teacher 😭 distErr = 0.07361632403996653 rankErr = 1 wrong predictions😢 with sentence: Nothing like running through your house naked and having your helper pop up out of nowhere \n",
"s1908 teacher 😭 distErr = 0.15938352228253586 rankErr = 3 wrong predictions😅😂😢 with sentence: My heart just melted! ❤️❤️ \n",
"s1909 teacher 🙏 distErr = 0.22333036337430767 rankErr = 11 wrong predictions🙌😌😀😎😁😋😊😍😉😘😂 with sentence: Let it be so \n",
"s1910 teacher 😀 distErr = 0.175260735686803 rankErr = 7 wrong predictions😂😁😉😎😅😌🙌 with sentence: Congrats on 100k So proud of you! That silver play button is going to look great! Next stop 1 million \n",
"s1911 teacher 😏 distErr = 0.25650068644482193 rankErr = 10 wrong predictions😅😂😢😭😔😁😉😤😌😎 with sentence: Looking like I'm feeling .\n",
"s1912 teacher 😂 distErr = 0.16456524252834862 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: the news you have been awaiting for years is here! \n",
"s1913 teacher 😍 distErr = 0.04673988286165988 rankErr = 0 wrong predictions with sentence: love you babe \n",
"s1914 teacher 😂 distErr = 0.05277592221009317 rankErr = 0 wrong predictions with sentence: LOSERS! MY CUBS DID IT! You COULDNT! Aint that a bitch?! \n",
"s1915 teacher 😍 distErr = 0.17517798124472997 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😂 with sentence: My mom just sometimes just pictures of my cat and its my favorite thing ever \n",
"s1916 teacher 😁 distErr = 0.1760062934761843 rankErr = 8 wrong predictions😍😊😘😋🙌😀😌😎 with sentence: Happy Birthday, Natalia! \n",
"s1917 teacher 😩 distErr = 0.5409064373013533 rankErr = 18 wrong predictions😏🙏😉😂😁😎😅😌😀🙌😋😢😊😍😭😘😔😤 with sentence: Help \n",
"s1918 teacher 😭 distErr = 0.2889148338417664 rankErr = 14 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍 with sentence: first it was spratt then faze spratt then spratt and now optic spratt but i want FaZe Spratt\n",
"s1919 teacher 😀 distErr = 0.1141984178817197 rankErr = 4 wrong predictions😌😁😎🙌 with sentence: We're not happy till you're happy. \n",
"s1920 teacher 😅 distErr = 0.20995706013825097 rankErr = 11 wrong predictions😌🙌😁😎😀😉😋😊😍😘😂 with sentence: you're a trap \n",
"s1921 teacher 🙌 distErr = 0.21214271780856758 rankErr = 8 wrong predictions😂😅😁😉😌😎😢🙏 with sentence: you followed through with Catwoman!! Im proud of ya kid \n",
"s1922 teacher 😂 distErr = 0.059942456817641245 rankErr = 0 wrong predictions with sentence: Last time I canceled, he didnt get along with the shield ...mainly Seth \n",
"s1923 teacher 😭 distErr = 0.21816660290541218 rankErr = 8 wrong predictions😂😅😢😁😉😎😌😏 with sentence: We're breathing the same air I was desperately looking for their (Eric Nam and Solar) dating rumor I guess I ha… \n",
"s1924 teacher 😂 distErr = 0.03401446831533568 rankErr = 0 wrong predictions with sentence: Every time I go on a night out I just smash my phone a little more \n",
"s1925 teacher 😂 distErr = 0.07355990327874437 rankErr = 0 wrong predictions with sentence: Omfg this is amazing \n",
"s1926 teacher 🙏 distErr = 0.19889828132183063 rankErr = 10 wrong predictions😀😎🙌😌😁😋😉😊😍😘 with sentence: Got a little miracle today thankful af\n",
"s1927 teacher 😊 distErr = 0.4304566751445564 rankErr = 17 wrong predictions😢😭😅😔😂😤😩😒😁😌😉😏😎🙏🙌😀😋 with sentence: It's seriously the best \n",
"s1928 teacher 😁 distErr = 0.11042948657544475 rankErr = 7 wrong predictions😀🙌😊😋😌😍😎 with sentence: Hello Birth Month. \n",
"s1929 teacher 😏 distErr = 0.2248470825871548 rankErr = 12 wrong predictions😁😌😎😉😂🙌😀😅😋😊🙏😍 with sentence: Oh my goodness! I really wanna adopt this new puppy. My golden retriever Daisy Mae will not be happy with me. \n",
"s1930 teacher 😩 distErr = 0.319317921507303 rankErr = 11 wrong predictions😢😅😂😭😔😤😁😌😏😉😎 with sentence: I got a 23/24 on the midterm I took last week and now I'm mad bc the thing that cost me the one point was just a stupid mistake on my part \n",
"s1931 teacher 😂 distErr = 0.10591692335876585 rankErr = 3 wrong predictions😁😉😎 with sentence: Last 2 rt's \n",
"s1932 teacher 😂 distErr = 0.01675472543051462 rankErr = 0 wrong predictions with sentence: Poor Hugo! xx\n",
"s1933 teacher 😊 distErr = 0.3286851372274574 rankErr = 15 wrong predictions😂😅😢😁😉😭😎😌😏🙏😔🙌😀😤😋 with sentence: Proud to be a deschooled mind. “The Schooled Mind vs. The DeSchooled Mind” by \n",
"s1934 teacher 😂 distErr = 0.2049416721495843 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: actually i should be studying rn but what am i doing idk i'm weirs \n",
"s1935 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Yall \n",
"s1936 teacher 😎 distErr = 0.16636137519342045 rankErr = 4 wrong predictions😂😅😁😉 with sentence: So ignorant people out there! Educate yourselves y'all will ya \n",
"s1937 teacher 😅 distErr = 0.07011644156667451 rankErr = 1 wrong predictions😂 with sentence: There WERE 3 people in Eddie/Iris relationship (Barry) but ol boy wasn't happy about that \n",
"s1938 teacher 😅 distErr = 0.050658445033042135 rankErr = 1 wrong predictions😂 with sentence: Oh nothing\n",
"s1939 teacher 😔 distErr = 0.42926519134745555 rankErr = 16 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅🙏😏😢😭 with sentence: Booo! Sold out in age 3 &amp; 4! Will ask husband to try in london stores!!!\n",
"s1940 teacher 😩 distErr = 0.48300258124715084 rankErr = 18 wrong predictions😂😅😁😉😎🙏😏😌😀🙌😢😋😊😭😍😔😘😤 with sentence: All of a sudden craving the movement chicken tenders. \n",
"s1941 teacher 😍 distErr = 0.3561424767722999 rankErr = 16 wrong predictions😂😅😢😁😉😏😎🙏😌😭😔🙌😀😤😋😊 with sentence: Diamond Ladies Band in 18K White Gold \n",
"s1942 teacher 😂 distErr = 0.047101079264286735 rankErr = 0 wrong predictions with sentence: nfs lol you gotta get jumped for the culture \n",
"s1943 teacher 😋 distErr = 0.06216061772869912 rankErr = 3 wrong predictions🙌😀😊 with sentence: YASSS It's time for a great show toryshklanka:get to know me \n",
"s1944 teacher 😉 distErr = 0.16341869073571907 rankErr = 3 wrong predictions😂😅😁 with sentence: Yussss! Good work! So this weeks author podcast wont be you crying, then? \n",
"s1945 teacher 😉 distErr = 0.1308582989909563 rankErr = 9 wrong predictions🙌😀😌😊😋😎😍😁😘 with sentence: The things a good woman can do \n",
"s1946 teacher 😘 distErr = 0.46632234378262316 rankErr = 19 wrong predictions😢😅😭😂😔😤😁😏😉😌😩😒😎🙏🙌😀😋😊😍 with sentence: don't apologise just get yourself feeling better \n",
"s1947 teacher 🙌 distErr = 0.144120323312139 rankErr = 6 wrong predictions😌😁😂😎😅😉 with sentence: Tomorrow we present this group project &amp; im sooo happy \n",
"s1948 teacher 😂 distErr = 0.07065332702478243 rankErr = 0 wrong predictions with sentence: I liked all of this but the sausage fingers part. Just FYI. \n",
"s1949 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: it me \n",
"s1950 teacher 😂 distErr = 0.06923204822522352 rankErr = 1 wrong predictions😅 with sentence: I'm crying spooky dick \n",
"s1951 teacher 😂 distErr = 0.27165380218480156 rankErr = 11 wrong predictions🙌😊😀😍😋😌😘😎😁😉🙏 with sentence: How to do Hypothesis po? \n",
"s1952 teacher 😍 distErr = 0.5169196825222999 rankErr = 18 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: This is perhaps even more mind-blowing than the ampersand! \n",
"s1953 teacher 😊 distErr = 0.1012058474638182 rankErr = 7 wrong predictions😌😀😎🙌😁😋😉 with sentence: My pleasure, Christy. \n",
"s1954 teacher 😍 distErr = 0.1938157254834922 rankErr = 10 wrong predictions😁😌😎😉🙌😀😂😋😊😅 with sentence: Did a shoot for some new items today and the girls KILLED IT. just wait til you see \n",
"s1955 teacher 😂 distErr = 0.22838743772664938 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: This kid in my class just got suckered into driving four of our classmates to their next class cause they didnt want to walk in the rain\n",
"s1956 teacher 😂 distErr = 0.02885694550502388 rankErr = 0 wrong predictions with sentence: Lmao your endorsement is kiss of death\n",
"s1957 teacher 😂 distErr = 0.04839379856260409 rankErr = 0 wrong predictions with sentence: Youre dumb as hell if you think baseball isnt a sport \n",
"s1958 teacher 😂 distErr = 0.10257919071309585 rankErr = 2 wrong predictions😢😅 with sentence: They're playing kokobop here \n",
"s1959 teacher 😘 distErr = 0.1602625475827089 rankErr = 9 wrong predictions😌🙌😀😎😁😋😊😉😍 with sentence: Thank you dear Sis Big hugs and a great humpday 🕊☮️✌\n",
"s1960 teacher 😭 distErr = 0.11867631747553374 rankErr = 3 wrong predictions😢😅😂 with sentence: This is the 3rd time we've gotten bomb threats wtf, &amp; Idk why, like if you're gonna do it then fckin do it!!\n",
"s1961 teacher 😭 distErr = 0.1099086920296572 rankErr = 2 wrong predictions😢😅 with sentence: look at our girl Elle omg \n",
"s1962 teacher 😩 distErr = 0.3964014816172472 rankErr = 18 wrong predictions😅😂😢😭😁😌😉😎😔😏🙏🙌😤😀😋😊😍😘 with sentence: Im excited for my iPhone 8 to come in \n",
"s1963 teacher 😂 distErr = 0.1610845291140892 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Good enough to touch suhhhh I miss you!\n",
"s1964 teacher 😭 distErr = 0.160626841658315 rankErr = 3 wrong predictions😅😂😢 with sentence: I have so much support at work its crazy I love my work family so much I just wanna cry\n",
"s1965 teacher 😂 distErr = 0.14607521128090958 rankErr = 6 wrong predictions😌😁😎🙌😉😀 with sentence: I have 4 cats and a dog go with meeee \n",
"s1966 teacher 🙏 distErr = 0.18698078938751614 rankErr = 6 wrong predictions😂😅😁😉😎😌 with sentence: R.I.P Hannah \n",
"s1967 teacher 😂 distErr = 0.022468224789732705 rankErr = 0 wrong predictions with sentence: Anyone see the commercial of the knock off jersey shore coming out \n",
"s1968 teacher 😏 distErr = 0.38067793845248143 rankErr = 9 wrong predictions😭😢😔😤😅😂😩😒😁 with sentence: Omg whaaaaaat, México wants some tickets \n",
"s1969 teacher 😩 distErr = 0.2755566307210035 rankErr = 6 wrong predictions😢😭😔😅😤😂 with sentence: So i finish the run to find we trailing \n",
"s1970 teacher 😘 distErr = 0.43213620849102236 rankErr = 19 wrong predictions😅😢😂😭😔😤😁😉😌😏😎🙏🙌😀😩😒😋😊😍 with sentence: I didnt get lost in this corn maze..I got lost in her eyes. . \n",
"s1971 teacher 😍 distErr = 0.2869292242856544 rankErr = 12 wrong predictions😅😂😌😁😢😎🙌😀😉😊😭😋 with sentence: That's my baby \n",
"s1972 teacher 😭 distErr = 0.181925734484853 rankErr = 3 wrong predictions😅😂😢 with sentence: ah, I love it! I miss them so much. \n",
"s1973 teacher 😭 distErr = 0.4621299397432157 rankErr = 15 wrong predictions🙌😀😌😊😋😎😍😁😘😉🙏😂😅😏😢 with sentence: IT SOUNDS SO GOOD \n",
"s1974 teacher 😎 distErr = 0.2501394062554672 rankErr = 8 wrong predictions😅😂😢😭😔😁😌😉 with sentence: “ Im broke baby “ ⛹\n",
"s1975 teacher 😊 distErr = 0.04589836455775488 rankErr = 2 wrong predictions🙌😀 with sentence: Happy birthda po.Wish you all the best \n",
"s1976 teacher 😭 distErr = 0.18603471626030219 rankErr = 3 wrong predictions😅😂😢 with sentence: 🗣🗣🗣🗣🗣🗣🗣🗣 omg omg\n",
"s1977 teacher 😂 distErr = 0.056990107810694086 rankErr = 0 wrong predictions with sentence: OH okay \n",
"s1978 teacher 😎 distErr = 0.19521393265137318 rankErr = 6 wrong predictions😂😅😁😢😉😌 with sentence: Follow for the unfiltered doe \n",
"s1979 teacher 😘 distErr = 0.1950099870592087 rankErr = 8 wrong predictions😌🙌😀😁😎😊😍😋 with sentence: Thanks baby!! \n",
"s1980 teacher 😂 distErr = 0.24198147212650736 rankErr = 7 wrong predictions😭😔😤😢😩😒😅 with sentence: What a shitty day\n",
"s1981 teacher 😩 distErr = 0.46365808868509667 rankErr = 18 wrong predictions😂😅😁😉😌😎😢🙏🙌😏😀😋😭😊😍😔😘😤 with sentence: I miss the old cast on Greys Anatomy \n",
"s1982 teacher 🙌 distErr = 0.2865491800792351 rankErr = 12 wrong predictions😂😅😢😭😁😉😔😌😏😎🙏😤 with sentence: Takes picture of ghosts instead of going to class. \n",
"s1983 teacher 😂 distErr = 0.07004471424989817 rankErr = 0 wrong predictions with sentence: Hahaha. Nothing to get. I meant international language of pancakes but the tweet was just entirely nonsensical. \n",
"s1984 teacher 😭 distErr = 0.22558030623086955 rankErr = 9 wrong predictions😂😅😢😁😉😎😏😌🙏 with sentence: Bruh, so close yet so far. \n",
"s1985 teacher 😍 distErr = 0.4709528793691362 rankErr = 18 wrong predictions😢😭😔😅😂😤😩😒😁😌😏😉😎🙏🙌😀😋😊 with sentence: that hot shower felt too good\n",
"s1986 teacher 😂 distErr = 0.08395758284903021 rankErr = 0 wrong predictions with sentence: No tak to nee\n",
"s1987 teacher 😂 distErr = 0.10163484317204108 rankErr = 2 wrong predictions😁😌 with sentence: damn I done got dark \n",
"s1988 teacher 😭 distErr = 0.04568250277945492 rankErr = 1 wrong predictions😢 with sentence: really had me going \n",
"s1989 teacher 😢 distErr = 0.032098900540904744 rankErr = 0 wrong predictions with sentence: My bed is so cold \n",
"s1990 teacher 😉 distErr = 0.23493966553140694 rankErr = 6 wrong predictions😅😂😢😭😁😔 with sentence: Andre is under the influence of \"ether.\"\n",
"s1991 teacher 😂 distErr = 0.08618581507628531 rankErr = 1 wrong predictions😅 with sentence: Me everytime i do cardio \n",
"s1992 teacher 😍 distErr = 0.3341816642265666 rankErr = 16 wrong predictions😅😂😢😁😌😎😉😭🙌😏😔🙏😀😤😋😊 with sentence: im so happy Jacob recorded every second of our relationship, i have so many memories to look back at\n",
"s1993 teacher 😂 distErr = 0.11791368774573599 rankErr = 3 wrong predictions😌😁😎 with sentence: Lol i love shamia B ❤\n",
"s1994 teacher 😂 distErr = 0.015832904155551306 rankErr = 0 wrong predictions with sentence: Lmao still cant believe the weekend was cool with it \n",
"s1995 teacher 😀 distErr = 0.2008010310707504 rankErr = 8 wrong predictions😂😅😁😉😌😎🙌🙏 with sentence: Oi oi its the Scottish Messi. You beauty Snodders! \n",
"s1996 teacher 😍 distErr = 0.3138356280516005 rankErr = 15 wrong predictions😂😅😁😉😎😌😢😏🙏🙌😀😭😋😊😔 with sentence: in the Mix!!!!! Lets go! @ Madibaz Radio \n",
"s1997 teacher 😉 distErr = 0.2034517467724638 rankErr = 4 wrong predictions😂😅😢😁 with sentence: You live in Brisbane? You know what to do! \n",
"s1998 teacher 😍 distErr = 0.11558481920584669 rankErr = 7 wrong predictions😌🙌😀😎😊😁😋 with sentence: I HAVE FINALLY NETFLIX YASSSS \n",
"s1999 teacher 😂 distErr = 0.22750557678749903 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: I just got a text that said “I have zip ties Im trynna be tied up” brb its never to early to blow someones back out\n",
"s2000 teacher 😢 distErr = 0.18281663464379286 rankErr = 4 wrong predictions😂😅😁😉 with sentence: Extend ang holiday please \n",
"s2001 teacher 😩 distErr = 0.3113834560854925 rankErr = 10 wrong predictions😢😅😭😂😔😤😁😏😌😉 with sentence: Who takes a shot before working out Pisces be living life on the edge\n",
"s2002 teacher 😎 distErr = 0.09445227852723885 rankErr = 1 wrong predictions😁 with sentence: The game looks awesome\n",
"s2003 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: u can do it \n",
"s2004 teacher 😢 distErr = 0.049537597863298116 rankErr = 1 wrong predictions😭 with sentence: want some goya damn \n",
"s2005 teacher 😂 distErr = 0.03820260408788431 rankErr = 0 wrong predictions with sentence: Ha tb to aapko English aati h.... great thought\n",
"s2006 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: well it is what it is.\n",
"s2007 teacher 😂 distErr = 0.06734821966595067 rankErr = 0 wrong predictions with sentence: Maybe. It's criminal gangs though so......\n",
"s2008 teacher 😭 distErr = 0.19771774386955024 rankErr = 3 wrong predictions😂😅😢 with sentence: they forgot to take the meat out \n",
"s2009 teacher 😂 distErr = 0.031930713238085634 rankErr = 0 wrong predictions with sentence: Only way you'd find this funny is if you watch zootopia as much as me \n",
"s2010 teacher 😂 distErr = 0.027587012744072582 rankErr = 0 wrong predictions with sentence: Man Yells \"CNN is Fake News\" at Anderson Cooper via \n",
"s2011 teacher 😭 distErr = 0.0848703206473716 rankErr = 2 wrong predictions😔😤 with sentence: This is heartbreaking\n",
"s2012 teacher 😢 distErr = 0.16320935229194225 rankErr = 2 wrong predictions😅😂 with sentence: I miss ACO so much \n",
"s2013 teacher 😂 distErr = 0.045608240592619385 rankErr = 1 wrong predictions😅 with sentence: He died a little \n",
"s2014 teacher 😤 distErr = 0.3598282141778827 rankErr = 17 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😭😘😔 with sentence: Put my mind on it, then I put my grind on it\n",
"s2015 teacher 😍 distErr = 0.13947497057676256 rankErr = 8 wrong predictions😌🙌😀😎😁😊😋😉 with sentence: like the cutest thing ever \n",
"s2016 teacher 😍 distErr = 0.6065428161731427 rankErr = 18 wrong predictions😔😤😭😢😩😒😅😂😁😏😌😉😎🙏🙌😀😋😊 with sentence: The way , broke up Lemon !\n",
"s2017 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: same \n",
"s2018 teacher 😭 distErr = 0.24808088754134996 rankErr = 11 wrong predictions😂😅😁😌😎😉😢🙌😀🙏😏 with sentence: Just realised how pale I look in these pics whoa call me Miss Cullen ❤️ \n",
"s2019 teacher 😂 distErr = 0.09879962084623453 rankErr = 2 wrong predictions😅😢 with sentence: i started after the first snow in september \n",
"s2020 teacher 😍 distErr = 0.3082569885165025 rankErr = 15 wrong predictions😂😅😁😉😎😌🙏😏😢🙌😀😋😭😊😔 with sentence: when two fans collaborate together \n",
"s2021 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: JBmusic \n",
"s2022 teacher 😊 distErr = 0.2986908298878374 rankErr = 14 wrong predictions😂😅😢😁😌😉😎😭😏🙏🙌😀😔😋 with sentence: Make your noodles first, after that take a pack of frozen cheese and put on the hot noodles, it will melt. \n",
"s2023 teacher 😂 distErr = 0.07012619028215103 rankErr = 1 wrong predictions😅 with sentence: (I thought you chose it on purpose ) I am feeling way too many things rn (the hair, the makeup, the e… \n",
"s2024 teacher 😂 distErr = 0.07106721352698832 rankErr = 1 wrong predictions😅 with sentence: Jemari so annoying bruh gd \n",
"s2025 teacher 😁 distErr = 0.07529360158890643 rankErr = 0 wrong predictions with sentence: It's spelt Mo. \n",
"s2026 teacher 😂 distErr = 0.18742971653973803 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: By the end of this month I hope to loose these 15 lbs \n",
"s2027 teacher 😂 distErr = 0.024850017342286448 rankErr = 0 wrong predictions with sentence: Lmao I laughed out loud.. \n",
"s2028 teacher 😂 distErr = 0.050819354219075165 rankErr = 0 wrong predictions with sentence: Ayoooo I screamin lmfao \n",
"s2029 teacher 😂 distErr = 0.1607001511598984 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: For Halloween I was what I am on every Tuesday night, a regular at Aceitunos on Taco Tuesday \n",
"s2030 teacher 😂 distErr = 0.2033736696654205 rankErr = 11 wrong predictions😎😌😀😁🙌😉😋😊😍😘🙏 with sentence: WAITING FOR YOU!\n",
"s2031 teacher 😩 distErr = 0.29497398390137336 rankErr = 6 wrong predictions😢😭😅😔😂😤 with sentence: Me too! Making it tomorrow \n",
"s2032 teacher 😂 distErr = 0.01641358877177144 rankErr = 0 wrong predictions with sentence: I dont know \n",
"s2033 teacher 😂 distErr = 0.016111068050745813 rankErr = 0 wrong predictions with sentence: By now your man go withdraw go sit some side dey drink \n",
"s2034 teacher 😎 distErr = 0.181163763426051 rankErr = 5 wrong predictions😂😅😁😉😢 with sentence: Guess \n",
"s2035 teacher 😂 distErr = 0.2320103056524251 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: Theyre not going to let up on Wendy Williams bruh \n",
"s2036 teacher 😭 distErr = 0.21733660615872857 rankErr = 7 wrong predictions😂😅😢😁😉😎😏 with sentence: Everyday mans on the block, smoke trees \n",
"s2037 teacher 😎 distErr = 0.08046223309686067 rankErr = 1 wrong predictions😁 with sentence: My favorite basketball teams! \n",
"s2038 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Hahahhaha we are not indeed \n",
"s2039 teacher 😁 distErr = 0.08013286435128343 rankErr = 0 wrong predictions with sentence: Thanks bro\n",
"s2040 teacher 😂 distErr = 0.02409232130350414 rankErr = 0 wrong predictions with sentence: I never thought of November birthdays like that \n",
"s2041 teacher 😂 distErr = 0.15217374440855042 rankErr = 7 wrong predictions😁😎😉😌😀🙌😋 with sentence: Great\n",
"s2042 teacher 😊 distErr = 0.27093866229015845 rankErr = 12 wrong predictions😂😅😁😉😎🙏😌😏😀🙌😢😋 with sentence: Bih swallow when she eat tha dick but acting classy \n",
"s2043 teacher 😊 distErr = 0.36452387063824526 rankErr = 15 wrong predictions😅😂😢😭😔😁😉😤😏😌😎🙏🙌😀😋 with sentence: dont play either of those Neil young songs play Neil young old man \n",
"s2044 teacher 😂 distErr = 0.03694466344083485 rankErr = 0 wrong predictions with sentence: The Twitter Handle &amp; Now This.. The Internet remains undefeated \n",
"s2045 teacher 🙏 distErr = 0.21066258571526733 rankErr = 8 wrong predictions😂😅😁😢😉😎😌😏 with sentence: Everything going great n I just got even better news. I been praying with consistency lately good things been happening. I believe lol \n",
"s2046 teacher 😩 distErr = 0.3250301632243932 rankErr = 12 wrong predictions😢😅😂😭😔😤😁😌😉😎😏🙏 with sentence: Ugh seriously tf is yuor problem? can you please leave the two alone \n",
"s2047 teacher 😭 distErr = 0.20275784269777347 rankErr = 3 wrong predictions😂😅😢 with sentence: the older women at my job tryna show me a dick pic a nigga sent her &amp; she was like he too big like MA'AM it's not even 7am\n",
"s2048 teacher 😍 distErr = 0.5718677388683758 rankErr = 18 wrong predictions😔😭😤😢😩😒😅😂😁😏😌😉😎🙏🙌😀😋😊 with sentence: thank you bb\n",
"s2049 teacher 😎 distErr = 0.09998183304988213 rankErr = 6 wrong predictions🙌😀😊😌😋😍 with sentence: My ninja \n",
"s2050 teacher 😂 distErr = 0.026837572634880354 rankErr = 0 wrong predictions with sentence: I liked a video Man Yells \"CNN is Fake News\" at Anderson Cooper \n",
"s2051 teacher 😂 distErr = 0.10627264137840758 rankErr = 2 wrong predictions😢😅 with sentence: Astros like the warriors rn \n",
"s2052 teacher 😭 distErr = 0.25994832434992865 rankErr = 11 wrong predictions😂😅😁😉😎😏🙏😌😢😀🙌 with sentence: *fandom hugs* \n",
"s2053 teacher 😂 distErr = 0.0742308344294635 rankErr = 0 wrong predictions with sentence: Lexi and I have officially decided that we will up like this next year \n",
"s2054 teacher 😂 distErr = 0.07696680250734621 rankErr = 0 wrong predictions with sentence: I know you will , you got night for different foods \n",
"s2055 teacher 😭 distErr = 0.19735355585146622 rankErr = 3 wrong predictions😂😅😢 with sentence: Game don't open my why \n",
"s2056 teacher 😉 distErr = 0.19369491152729726 rankErr = 4 wrong predictions😂😅😢😁 with sentence: You know Love is blind, and he just caught my eye\n",
"s2057 teacher 😩 distErr = 0.0762614743434314 rankErr = 0 wrong predictions with sentence: im craving texas roadhouse so bad\n",
"s2058 teacher 😂 distErr = 0.046293044913676744 rankErr = 0 wrong predictions with sentence: Corbyn: \"and the rest of us\".... Yea mate, same wage bracket as me... \n",
"s2059 teacher 😍 distErr = 0.32970497693191514 rankErr = 16 wrong predictions😂😅😁😉😎😏😢🙏😌🙌😀😭😋😔😊😤 with sentence: No alarm tomorrow\n",
"s2060 teacher 😋 distErr = 0.06135559140386152 rankErr = 4 wrong predictions😊🙌😀😍 with sentence: Ohhh, no. I'm not letting Boursin become anyone's prey but mine, thank you. \n",
"s2061 teacher 😂 distErr = 0.020795576413217665 rankErr = 0 wrong predictions with sentence: This is terrible. It would have been done on Mischief Night in my day \n",
"s2062 teacher 😂 distErr = 0.0063664020042091705 rankErr = 0 wrong predictions with sentence: Was watching the trailer for Xmas... can we talk about those red hot Santa boxers? ❤ \n",
"s2063 teacher 😍 distErr = 0.20852244351846644 rankErr = 11 wrong predictions😁😌😎😉🙌😂😀😅😋😊🙏 with sentence: Yes , I'm using ios \n",
"s2064 teacher 😔 distErr = 0.2635306397141597 rankErr = 12 wrong predictions😂😅😢😁😉😌😎😏😭🙏🙌😀 with sentence: aaa why is your brother such a savage \n",
"s2065 teacher 😍 distErr = 0.5058577851183366 rankErr = 18 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: They're exclusively playing Disney songs in common ground right now and I'm so here for it \n",
"s2066 teacher 😀 distErr = 0.4578985709096151 rankErr = 15 wrong predictions😭😔😢😤😅😩😒😂😁😏😌😉😎🙏🙌 with sentence: We're not too late, are we? \n",
"s2067 teacher 😭 distErr = 0.03697297849126706 rankErr = 1 wrong predictions😢 with sentence: Not a want but a NEED , we broke though \n",
"s2068 teacher 😍 distErr = 0.34352820493122593 rankErr = 16 wrong predictions😂😅😢😁😉😎😏😌🙏😭🙌😀😔😋😤😊 with sentence: Thats my place!!!! Im down to go when I get paid lol\n",
"s2069 teacher 😊 distErr = 0.19713798683842287 rankErr = 10 wrong predictions😁😎😌😉😂🙌😀😅🙏😋 with sentence: Welcome to November, some of us were born during this period\n",
"s2070 teacher 😂 distErr = 0.1808316744220829 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: yes I can see that! \n",
"s2071 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Chut \n",
"s2072 teacher 😊 distErr = 0.15058441536216735 rankErr = 6 wrong predictions😌😁😎🙌😀😉 with sentence: So i'm unlocked inside my car \n",
"s2073 teacher 😅 distErr = 0.05049171244402115 rankErr = 0 wrong predictions with sentence: i wanted to tell u the same \n",
"s2074 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Chumby as olaf \n",
"s2075 teacher 😁 distErr = 0.3394422403798315 rankErr = 8 wrong predictions😢😭😔😤😅😂😩😒 with sentence: Who wants free merch \n",
"s2076 teacher 😂 distErr = 0.18971849388560078 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Current situation in me &amp; my bf bed \n",
"s2077 teacher 😀 distErr = 0.11348725234759577 rankErr = 5 wrong predictions😁😎😌😉🙌 with sentence: I'll be on clubhouse side all weekend, I can wander over to stretch run side on Friday if you want a drink and a pic \n",
"s2078 teacher 😂 distErr = 0.03895625483945513 rankErr = 0 wrong predictions with sentence: well now I know how you look as an emo \n",
"s2079 teacher 😂 distErr = 0.2703289444700847 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: I had this video of me and my homies at the bar fucked up dancing and I made that same exact laughing noise in it \n",
"s2080 teacher 😒 distErr = 0.2463983914918064 rankErr = 7 wrong predictions😢😭😔😤😅😂😩 with sentence: all this muhfcka do is sleep\n",
"s2081 teacher 😂 distErr = 0.05506904253366086 rankErr = 1 wrong predictions😅 with sentence: Its not like you were turning a profit from sharing your mum's pale with your grandpa.\n",
"s2082 teacher 😂 distErr = 0.21407698838283817 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: I thought your dog was the only girl you need \n",
"s2083 teacher 😂 distErr = 0.023256620593416624 rankErr = 0 wrong predictions with sentence: Omg your mom knows Spakol \n",
"s2084 teacher 😭 distErr = 0.20099107166073663 rankErr = 4 wrong predictions😂😅😢😁 with sentence: Im dead \n",
"s2085 teacher 😂 distErr = 0.03344092386851814 rankErr = 0 wrong predictions with sentence: Pretty sure I started shameless 7 months ago and Im at the beginning of season 4 \n",
"s2086 teacher 😭 distErr = 0.030771951048729627 rankErr = 0 wrong predictions with sentence: Everybody sick \n",
"s2087 teacher 😋 distErr = 0.35177546749452576 rankErr = 14 wrong predictions😂😅😢😭😔😁😉😏😤😌😎🙏🙌😀 with sentence: Variety is the spice of life \n",
"s2088 teacher 😒 distErr = 0.499583352913614 rankErr = 19 wrong predictions😂😁😅😌😎😉🙌😀🙏😋😢😏😊😍😘😭😔😤😩 with sentence: We're not friends \n",
"s2089 teacher 😩 distErr = 0.4724007089192543 rankErr = 18 wrong predictions😂😅😁😉😌😎🙏🙌😢😀😏😋😊😭😍😔😘😤 with sentence: But how on earth do you find out which stores sell vinyl? Cant find it on their website! \n",
"s2090 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Mirip \n",
"s2091 teacher 😋 distErr = 0.457203353546532 rankErr = 16 wrong predictions😢😭😔😅😤😂😩😒😁😌😏😉😎🙏🙌😀 with sentence: October went by super fucking fast. I honestly can't wait till Thanksgiving &amp;&amp; stuffing cause I'm a fat girl at heart\n",
"s2092 teacher 😂 distErr = 0.017657584188478424 rankErr = 0 wrong predictions with sentence: Im not telling him that. He hear it enough \n",
"s2093 teacher 😂 distErr = 0.16140718851411145 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Okay glad to know I wasn't the only person feeling like a virgin again cuz yeah that shit hurt \n",
"s2094 teacher 😂 distErr = 0.02755978042711289 rankErr = 0 wrong predictions with sentence: I be spread eagle in this queen sized bed without a care in the world \n",
"s2095 teacher 😎 distErr = 0.05544137315474524 rankErr = 2 wrong predictions😁😌 with sentence: America is a beautiful country falling to evil men ...what ever it takes to make it great again \n",
"s2096 teacher 😊 distErr = 0.03852900697008331 rankErr = 2 wrong predictions😀🙌 with sentence: Check it out!!! \n",
"s2097 teacher 😍 distErr = 0.12890592284737545 rankErr = 8 wrong predictions😌😀🙌😎😁😋😊😉 with sentence: Its the small things in a relationship \n",
"s2098 teacher 😭 distErr = 0.30530633272626834 rankErr = 14 wrong predictions😂😁😉😅😎🙏😏😌😀🙌😢😋😊😍 with sentence: She said why do you call him chase you have to chase him he seem pretty loyal he always by your side I'm weak\n",
"s2099 teacher 😍 distErr = 0.4212277949110492 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😏😉😌😎🙏🙌😩😒😀😋😊 with sentence: if this is true \n",
"s2100 teacher 😭 distErr = 0.013824565960631311 rankErr = 0 wrong predictions with sentence: brooo this feeling sucks \n",
"s2101 teacher 😂 distErr = 0.22880423977888 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: if I had destroyed then rigged the justice dept...I wouldnt be in jail either if I was that Clown. \n",
"s2102 teacher 😂 distErr = 0.05191326109701109 rankErr = 1 wrong predictions😅 with sentence: I cant stop saying “SPOTANKI” \n",
"s2103 teacher 😂 distErr = 0.028362847758933437 rankErr = 0 wrong predictions with sentence: Birthday november babies banyak bulan ni and sorry not sorry no pressie bcs i'm broke namati \n",
"s2104 teacher 😂 distErr = 0.11791368774573599 rankErr = 3 wrong predictions😌😁😎 with sentence: LOL love you❤\n",
"s2105 teacher 😍 distErr = 0.3385652692959968 rankErr = 16 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😀😔😤😋😊 with sentence: Aww Correa put a ring on it! \n",
"s2106 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Very resourceful! \n",
"s2107 teacher 😂 distErr = 0.029665144502683063 rankErr = 0 wrong predictions with sentence: Im the innocent bystander \n",
"s2108 teacher 🙏 distErr = 0.2340570023241369 rankErr = 8 wrong predictions😂😅😁😢😌😉😎😏 with sentence: Be encouraged \n",
"s2109 teacher 😂 distErr = 0.20587806063783462 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: It took me a second to register that this was twitter bc Ive had it on night mode for the longest time \n",
"s2110 teacher 😍 distErr = 0.17074473398011347 rankErr = 9 wrong predictions😁😎😌😉😀🙌😋😊😂 with sentence: G98.7FM it's raining and gloomy outside 🌨so it is a must that I hear pleeeease!! \n",
"s2111 teacher 😂 distErr = 0.07062014874335062 rankErr = 1 wrong predictions😅 with sentence: Ligit me and my cuzins when were home alone in the house \n",
"s2112 teacher 😤 distErr = 0.2841546544349984 rankErr = 13 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔🙌😀 with sentence: jonathan is not the boss of me \n",
"s2113 teacher 😂 distErr = 0.05119799813918518 rankErr = 0 wrong predictions with sentence: ios 11.1 battery still shit piss off man\n",
"s2114 teacher 😭 distErr = 0.3940541166639146 rankErr = 15 wrong predictions😌😁😎🙌😀😉😋😊😍😂😘😅🙏😏😢 with sentence: You hit rock bottom sis \n",
"s2115 teacher 😂 distErr = 0.02057390806674364 rankErr = 0 wrong predictions with sentence: ! Your Russian handlers gave you some really cray cray talking points. Take a deep pull… \n",
"s2116 teacher 😋 distErr = 0.41670257508356184 rankErr = 16 wrong predictions😢😅😭😂😔😤😁😩😒😌😏😉😎🙏🙌😀 with sentence: Dont even have a man &amp;this commercial makes me want to buy it \n",
"s2117 teacher 😍 distErr = 0.24261523611515026 rankErr = 12 wrong predictions😁😂😌😎😅😉🙌😀🙏😋😊😏 with sentence: Can't wait to finally get a new phone\n",
"s2118 teacher 😒 distErr = 0.30386845662473105 rankErr = 8 wrong predictions😢😅😭😂😔😤😁😩 with sentence: Someone thought this sounded better init so Im trying it out \n",
"s2119 teacher 😭 distErr = 0.16456455198663567 rankErr = 3 wrong predictions😅😂😢 with sentence: dam my mind messed up \n",
"s2120 teacher 😍 distErr = 0.3218451104144702 rankErr = 16 wrong predictions😂😅😁😢😉😌😎😏🙏🙌😭😀😔😋😊😤 with sentence: There are Christmas movies on TV \n",
"s2121 teacher 😭 distErr = 0.219494042136173 rankErr = 7 wrong predictions😂😅😢😁😉😎😌 with sentence: Me an baby cousin shit on the radio my mom said its stupid af &amp; it is \n",
"s2122 teacher 😊 distErr = 0.07450501724410301 rankErr = 5 wrong predictions😀🙌😌😎😋 with sentence: Thank you s'much\n",
"s2123 teacher 😂 distErr = 0.041553724680639746 rankErr = 0 wrong predictions with sentence: Your face, you know. Not that I'm complaining because I'm having fun as well 크크크크킄 un. . . . . How com… \n",
"s2124 teacher 😭 distErr = 0.2856604165254548 rankErr = 14 wrong predictions😂😅😁😉😎😌🙏🙌😀😏😢😋😊😍 with sentence: This is the best news I've gotten all day, thank you so much\n",
"s2125 teacher 😍 distErr = 0.4052004085236301 rankErr = 18 wrong predictions😅😂😢😭😔😤😁😌😉😏😎🙏🙌😀😩😒😋😊 with sentence: lol what yall be saying “sunkissed” ☀️ \n",
"s2126 teacher 🙌 distErr = 0.0799817572833198 rankErr = 3 wrong predictions😌😁😎 with sentence: Correa proposing at Dodger Stadium after winning the World Series is ALL. THE. FUCKING. GOALS. \n",
"s2127 teacher 😊 distErr = 0.33012301844530195 rankErr = 15 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😀😤😋 with sentence: going to my favorite wing spot before work \n",
"s2128 teacher 😒 distErr = 0.37542468111944416 rankErr = 17 wrong predictions😅😂😢😭😔😁😌😉😤😎😏🙏🙌😀😋😊😩 with sentence: Last night was ass \n",
"s2129 teacher 😍 distErr = 0.267715607247722 rankErr = 13 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊 with sentence: with good old friends\n",
"s2130 teacher 😩 distErr = 0.5393260552323638 rankErr = 18 wrong predictions😁😎😌😉😂🙌😀😅🙏😋😊😏😍😘😢😭😔😤 with sentence: I LOVE YOU TOO YOU HAVE 4 MONTHS OF PAYING AHEAD OF YOU OK ❤️❤️❤️\n",
"s2131 teacher 😭 distErr = 0.2079486521088815 rankErr = 4 wrong predictions😂😅😢😁 with sentence: oh my we have the same cheeks \n",
"s2132 teacher 🙏 distErr = 0.1580683207593372 rankErr = 5 wrong predictions😂😅😁😉😏 with sentence: Please help me reach 100 's in 2 days!! ❤And follow \n",
"s2133 teacher 😊 distErr = 0.34955513551668116 rankErr = 15 wrong predictions😅😂😢😭😁😔😉😌😎😏😤🙏🙌😀😋 with sentence: i look like a dork but its been cold and i like my hat. 🌧❄️ \n",
"s2134 teacher 😉 distErr = 0.2183505818645349 rankErr = 5 wrong predictions😂😅😢😁😭 with sentence: The wagon is full, they were hedging their bets \n",
"s2135 teacher 😂 distErr = 0.029766500745533695 rankErr = 0 wrong predictions with sentence: I technically don't need to buy anything really \n",
"s2136 teacher 😀 distErr = 0.025535724704626686 rankErr = 1 wrong predictions🙌 with sentence: awsome \n",
"s2137 teacher 😂 distErr = 0.05470175045205183 rankErr = 0 wrong predictions with sentence: When you pull down your pants and she say \"what's i... — \n",
"s2138 teacher 😍 distErr = 0.19168762991142765 rankErr = 10 wrong predictions😁😌😎😉🙌😀😂😋😊😅 with sentence: OPEN FOR A FREAKING SURPRISE \n",
"s2139 teacher 😂 distErr = 0.02897786604264724 rankErr = 0 wrong predictions with sentence: You geeking like shit moe\n",
"s2140 teacher 😂 distErr = 0.03720683424935915 rankErr = 0 wrong predictions with sentence: Everytime i look at my Halloween pictures i laugh \n",
"s2141 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Brabo \n",
"s2142 teacher 😌 distErr = 0.07181666617676236 rankErr = 3 wrong predictions🙌😀😊 with sentence: Can someone give me a music playlist \n",
"s2143 teacher 🙌 distErr = 0.23442306127291368 rankErr = 9 wrong predictions😂😅😁😢😌😉😎😏🙏 with sentence: I'm not the only one!! \n",
"s2144 teacher 😭 distErr = 0.2412372468108104 rankErr = 11 wrong predictions😂😅😁😢😌😉😎🙌🙏😏😀 with sentence: An underrated partnership. I'm really in my feels. \n",
"s2145 teacher 😂 distErr = 0.33476078447242597 rankErr = 11 wrong predictions😍😘😊🙌😋😀😌😎😁😉🙏 with sentence: Happy birthday have a good day, see you soon x \n",
"s2146 teacher 🙏 distErr = 0.23485164460661198 rankErr = 9 wrong predictions😂😅😢😁😉😌😎😭😏 with sentence: I suffered I learnedI changed \n",
"s2147 teacher 😩 distErr = 0.41291934785642864 rankErr = 18 wrong predictions😂😅😢😁😌😉😎😭😏🙏😔🙌😀😤😋😊😍😘 with sentence: done. So good. I have a feeling it might be a long wait before season 3 though \n",
"s2148 teacher 😎 distErr = 0.2139540295012258 rankErr = 5 wrong predictions😂😅😢😁😉 with sentence: 5 - Zip Astros Yeah they ballin \n",
"s2149 teacher 😋 distErr = 0.07647677502376893 rankErr = 5 wrong predictions🙌😀😌😎😊 with sentence: Thinking about having a friendsgiving dinner \n",
"s2150 teacher 😂 distErr = 0.02121881439408147 rankErr = 0 wrong predictions with sentence: Hopefully, they won't sink his battle ship this time \n",
"s2151 teacher 😘 distErr = 0.1931483835224244 rankErr = 11 wrong predictions😌😁😎🙌😀😉😋😊😂😍😅 with sentence: sex workers get it done! thank you so much, beautiful!\n",
"s2152 teacher 😒 distErr = 0.3273025585432661 rankErr = 13 wrong predictions😢😅😂😭😔😤😁😌😉😏😎🙏😩 with sentence: hate when i skip a song on pandora i wanted to hear \n",
"s2153 teacher 😍 distErr = 0.3210367561764286 rankErr = 16 wrong predictions😂😅😁😢😉😌😎😏🙏🙌😀😭😔😋😊😤 with sentence: Damn now thats how booty should be moving \n",
"s2154 teacher 😂 distErr = 0.07951791662748836 rankErr = 0 wrong predictions with sentence: bitch that's rape wth \n",
"s2155 teacher 😍 distErr = 0.5683654030598464 rankErr = 18 wrong predictions😔😭😤😢😩😒😅😂😁😏😌😉😎🙏🙌😀😋😊 with sentence: Thunder\n",
"s2156 teacher 😅 distErr = 0.09743152464398012 rankErr = 1 wrong predictions😢 with sentence: Literally eating Nutella right now. Give me awhile \n",
"s2157 teacher 😂 distErr = 0.16928923207100255 rankErr = 8 wrong predictions😌😁🙌😎😀😉😊😋 with sentence: Honestly I love you so much ❤️❤️\n",
"s2158 teacher 😍 distErr = 0.12636789093099554 rankErr = 7 wrong predictions😌🙌😀😎😁😊😋 with sentence: Super super exited for this one i have a good feeling about it \n",
"s2159 teacher 😍 distErr = 0.12968737917660328 rankErr = 8 wrong predictions😌🙌😀😎😁😊😋😉 with sentence: he's so happy \n",
"s2160 teacher 😉 distErr = 0.3660775529272819 rankErr = 11 wrong predictions😢😭😔😤😅😂😩😒😁😏😌 with sentence: Like what, hitting juices baseballs out of tiny stadiums (at least Minute Maid) \n",
"s2161 teacher 😁 distErr = 0.194091528524194 rankErr = 3 wrong predictions😂😅😢 with sentence: Lol i forgot too. Dont worry \n",
"s2162 teacher 😁 distErr = 0.19467660497560613 rankErr = 3 wrong predictions😂😅😢 with sentence: as long as they don't do that we can be one happy family\n",
"s2163 teacher 😤 distErr = 0.3499764747613311 rankErr = 17 wrong predictions😂😅😁😌😎😉🙌😢😀🙏😏😋😊😭😍😘😔 with sentence: Oh yes !! Cant wait Im gon have u show me around so be ready\n",
"s2164 teacher 😂 distErr = 0.07577176027475761 rankErr = 1 wrong predictions😅 with sentence: Better than playing them away first game \n",
"s2165 teacher 😍 distErr = 0.47830936817684117 rankErr = 18 wrong predictions😢😭😔😅😤😂😩😒😁😏😌😉😎🙏🙌😀😋😊 with sentence: This is the best week of my life. My iPhone X comes and I just got approved for the Amex Platinum ugh\n",
"s2166 teacher 😂 distErr = 0.03728734479312176 rankErr = 0 wrong predictions with sentence: All my friends so funny \n",
"s2167 teacher 😂 distErr = 0.024680745957104434 rankErr = 0 wrong predictions with sentence: Man.... gg to them \n",
"s2168 teacher 😉 distErr = 0.11079382083089258 rankErr = 4 wrong predictions😁😌😎😂 with sentence: Any more ideas which game we should have as our today? We quite fancy a \n",
"s2169 teacher 😁 distErr = 0.15958258267699582 rankErr = 2 wrong predictions😂😅 with sentence: Wiggle wiggle \n",
"s2170 teacher 😂 distErr = 0.1985111750536623 rankErr = 10 wrong predictions😌🙌😀😎😁😋😊😉😍😘 with sentence: Spirit of starvation \n",
"s2171 teacher 😢 distErr = 0.12535187150731605 rankErr = 2 wrong predictions😂😅 with sentence: Condolences to Argentina and Belgium for the loss of their innocent citizens in that senseless act of terrorism.\n",
"s2172 teacher 😍 distErr = 0.3632480394610105 rankErr = 16 wrong predictions😂😅😢😁😭😉😎😌😏🙏😔😤🙌😀😋😊 with sentence: Yeah... that's a stroke of genius in my opinion \n",
"s2173 teacher 😂 distErr = 0.026604921165137692 rankErr = 0 wrong predictions with sentence: Seen Werpa☝\n",
"s2174 teacher 😂 distErr = 0.22726216291319382 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: Bc I feel like telling y'all how I really feel sorry in advance if it's mean \n",
"s2175 teacher 😉 distErr = 0.13388860115427126 rankErr = 8 wrong predictions😌🙌😀😎😁😊😋😍 with sentence: Id be fine with driving to Geneva! \n",
"s2176 teacher 😘 distErr = 0.17698463326576735 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😍 with sentence: Dimples are so damn attractive \n",
"s2177 teacher 😍 distErr = 0.3530236515602156 rankErr = 16 wrong predictions😂😅😢😁😉😏😎😌🙏😭😔🙌😀😤😋😊 with sentence: yeahhh lets go stros\n",
"s2178 teacher 😂 distErr = 0.06826306039968146 rankErr = 1 wrong predictions😅 with sentence: Haven't laughed so much for ages.\n",
"s2179 teacher 😂 distErr = 0.014120432698967591 rankErr = 0 wrong predictions with sentence: Lol i know you are not \n",
"s2180 teacher 😍 distErr = 0.2825450142828513 rankErr = 14 wrong predictions😂😅😁😉😌😎🙌🙏😀😏😢😋😊😭 with sentence: this north face coat i ordered \n",
"s2181 teacher 😍 distErr = 0.18836075208471284 rankErr = 10 wrong predictions😌😁😎🙌😀😉😂😋😊😅 with sentence: Literally the best singer ever, who dosent adore him?!\n",
"s2182 teacher 😎 distErr = 0.09900556139284071 rankErr = 2 wrong predictions😁😉 with sentence: Happy b'day man of inspiration \n",
"s2183 teacher 😘 distErr = 0.12824915870362577 rankErr = 9 wrong predictions🙌😀😌😋😊😎😁😍😉 with sentence: Yes, we had. Will do better next time! Hope you enjoyed yourself? The signal was so erratic I couldn't… \n",
"s2184 teacher 😭 distErr = 0.16885412919252415 rankErr = 3 wrong predictions😅😂😢 with sentence: Thank you sm donna Iove you❤ \n",
"s2185 teacher 😘 distErr = 0.2824150773520768 rankErr = 14 wrong predictions😁😂😉😎😌😅🙌😀🙏😏😋😊😢😍 with sentence: I love you kal thanks sm btw we look so adorable in this pic !!! \n",
"s2186 teacher 😂 distErr = 0.13226521659889404 rankErr = 3 wrong predictions😢😅😭 with sentence: Them be Waffle House runs \n",
"s2187 teacher 😂 distErr = 0.14857424320400126 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Cuter than ur side-show Bob lookin ass \n",
"s2188 teacher 😂 distErr = 0.1663933657942569 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Lol yes I definitely ment I\n",
"s2189 teacher 😢 distErr = 0.0714257369663727 rankErr = 2 wrong predictions😭😔 with sentence: Just depressed today....\n",
"s2190 teacher 😩 distErr = 0.50720613577116 rankErr = 18 wrong predictions😂😁😌😅😎😉🙌😀🙏😋😏😊😢😍😘😭😔😤 with sentence: Really beautiful people go to the gym and I am not one of them \n",
"s2191 teacher 😍 distErr = 0.0883733784734918 rankErr = 5 wrong predictions🙌😀😌😊😋 with sentence: My babe forever \n",
"s2192 teacher 😩 distErr = 0.4456557303955254 rankErr = 18 wrong predictions😂😅😁😌😉😢😎🙏😏🙌😀😭😋😔😊😍😤😘 with sentence: all semester I been owing A&amp;M money... went on banner today and my balance is CLEARED thank you Lord\n",
"s2193 teacher 😂 distErr = 0.26812721130449196 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: i just walked in the house and my momma gon have the nerve to tell me i cant stay bc she got company coming \n",
"s2194 teacher 😊 distErr = 0.53332571509089 rankErr = 17 wrong predictions😭😔😤😢😩😒😅😂😁😏😌😉😎🙏🙌😀😋 with sentence: I'm thoroughly enjoying my Twitter feed now that it's not endless doom and gloom \n",
"s2195 teacher 🙌 distErr = 0.058317106114621 rankErr = 2 wrong predictions😊😍 with sentence: YASSS It's time for a great show supriy \n",
"s2196 teacher 😉 distErr = 0.4210760317139025 rankErr = 11 wrong predictions😭😔😢😤😅😩😒😂😁😏😌 with sentence: One step back and two steps forward darling\n",
"s2197 teacher 😂 distErr = 0.196758731514411 rankErr = 10 wrong predictions😌😎🙌😀😁😉😋😊😍😘 with sentence: More like bodge it and leg it!.xx.\n",
"s2198 teacher 😍 distErr = 0.3563030058709498 rankErr = 16 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😀😤😋😊 with sentence: Apparently it's Wednesday.... been listening to em since 5:45am and still goin \n",
"s2199 teacher 😂 distErr = 0.23243729945879726 rankErr = 10 wrong predictions🙌😀😌😎😊😋😁😍😉😘 with sentence: thanks mario chalmers \n",
"s2200 teacher 😂 distErr = 0.16440017222470923 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: LMAOOOOO STOP \n",
"s2201 teacher 😘 distErr = 0.1788838114597402 rankErr = 9 wrong predictions😎😁😀😌🙌😉😋😊😍 with sentence: because grace loves ritch \n",
"s2202 teacher 😭 distErr = 0.03402174198829992 rankErr = 0 wrong predictions with sentence: THIS WAS THE SCENE GUYS!!!\"AIK NAYA AGHAAZ\" ❤❤❤MY HEA! \n",
"s2203 teacher 😎 distErr = 0.2453252828408674 rankErr = 9 wrong predictions😅😂😢😭😁😔😉😌😏 with sentence: Didn't sleep much,glad I had an early night.Ready to get up and face the world.......\"I think\" \n",
"s2204 teacher 😭 distErr = 0.24496584186400755 rankErr = 11 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😀 with sentence: Last night with baseball . This is so bittersweet.\n",
"s2205 teacher 😂 distErr = 0.013579611669206682 rankErr = 0 wrong predictions with sentence: You gotta concussion foh\n",
"s2206 teacher 😩 distErr = 0.4405469800841924 rankErr = 18 wrong predictions😂😅😁😢😉😎😌😏🙏🙌😭😀😔😋😊😤😍😘 with sentence: Wat da heck klase na next week \n",
"s2207 teacher 😎 distErr = 0.052508101823320184 rankErr = 3 wrong predictions😀🙌😌 with sentence: look! \n",
"s2208 teacher 😂 distErr = 0.021506345060598935 rankErr = 0 wrong predictions with sentence: Everyone in this picture looks relaxed, except for number 6. He looks so tense\n",
"s2209 teacher 😂 distErr = 0.23974512919396362 rankErr = 11 wrong predictions🙌😀😌😊😋😎😁😍😘😉🙏 with sentence: This pregnant lady dressed up as Barney from the Simpsons and its amazing \n",
"s2210 teacher 😘 distErr = 0.13344844809916612 rankErr = 9 wrong predictions😀🙌😌😎😋😊😁😍😉 with sentence: Thank you \n",
"s2211 teacher 😂 distErr = 0.023931958843758313 rankErr = 0 wrong predictions with sentence: Paper mache DAWG IM CRYIN \n",
"s2212 teacher 😎 distErr = 0.08519827567782907 rankErr = 6 wrong predictions🙌😀😊😋😌😍 with sentence: American woman \n",
"s2213 teacher 😌 distErr = 0.17837059987829004 rankErr = 4 wrong predictions😂😅😁😢 with sentence: oookaaayy girls, i saw u hitting them high notes this morning ready to have my wig s… \n",
"s2214 teacher 😂 distErr = 0.0858186503254554 rankErr = 1 wrong predictions😅 with sentence: Last night was hella funny \n",
"s2215 teacher 🙏 distErr = 0.21909511778089635 rankErr = 11 wrong predictions😌🙌😀😎😁😋😊😉😍😘😂 with sentence: I'm lucky, i know @ Semarang, Indonesia \n",
"s2216 teacher 😩 distErr = 0.29433951272176484 rankErr = 6 wrong predictions😢😭😅😔😂😤 with sentence: Give me something to believe in, because I don't believe in you anymore. \n",
"s2217 teacher 🙏 distErr = 0.2120477581100871 rankErr = 8 wrong predictions😂😅😁😌😎😉🙌😀 with sentence: For the uninitiated - the one TRUE opinion on \n",
"s2218 teacher 😤 distErr = 0.28508201099790276 rankErr = 13 wrong predictions😂😅😢😁😉😭😌😎😏🙏😔🙌😀 with sentence: UR REALLY GONNA DISRESPECT THANKSGIVING LIKE THAT OFC ITS A SIGN\n",
"s2219 teacher 😂 distErr = 0.2129917656317949 rankErr = 5 wrong predictions😭😢😔😤😅 with sentence: Idk about yall but Im real sad about being a vegan and idk why \n",
"s2220 teacher 😂 distErr = 0.26748305717281623 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: The first time they did alos nails she said what is this omn\n",
"s2221 teacher 😊 distErr = 0.044011517640464334 rankErr = 1 wrong predictions😍 with sentence: I love you too ❤\n",
"s2222 teacher 😂 distErr = 0.013525984771072492 rankErr = 0 wrong predictions with sentence: what's good bro!! \n",
"s2223 teacher 😂 distErr = 0.1873368838876193 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: I almost feel sorry for Kush. \n",
"s2224 teacher 😔 distErr = 0.2625916408364278 rankErr = 12 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😀 with sentence: In need of all my comfort food. \n",
"s2225 teacher 😂 distErr = 0.18889105856894725 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Man he just did that shit I was cracking up at katt Williams face \n",
"s2226 teacher 😂 distErr = 0.033006202608685704 rankErr = 0 wrong predictions with sentence: The truth \n",
"s2227 teacher 😀 distErr = 0.32471397858883344 rankErr = 13 wrong predictions😅😂😢😭😔😤😁😉😌😏😎🙏🙌 with sentence: That's brilliant I was wondering how it had gone. I'm not surprised her daughter missed you today. I… \n",
"s2228 teacher 😁 distErr = 0.10277809175227008 rankErr = 1 wrong predictions😂 with sentence: my way!\n",
"s2229 teacher 😭 distErr = 0.5498633774530491 rankErr = 15 wrong predictions😘😍😊🙌😋😀😌😎😁😉🙏😂😅😏😢 with sentence: thanks so much love!!!!!! \n",
"s2230 teacher 😘 distErr = 0.3871646627390169 rankErr = 17 wrong predictions😂😅😢😁😭😉😌😎😔😏🙏😤🙌😀😋😊😍 with sentence: Naina barse rimjhim rimjhim what happened sweetie all ok na ?\n",
"s2231 teacher 😔 distErr = 0.032033017687276476 rankErr = 0 wrong predictions with sentence: When is season 3 smh \n",
"s2232 teacher 😊 distErr = 0.37082451614376283 rankErr = 17 wrong predictions😅😂😢😭😔😁😤😉😏😌😎🙏🙌😀😋😩😒 with sentence: Everything's gonna be alright cim \n",
"s2233 teacher 😭 distErr = 0.03007182684164405 rankErr = 1 wrong predictions😔 with sentence: EXOOOOOO!!!! OMG MY BABIES, I MISS YOU !!!\n",
"s2234 teacher 😭 distErr = 0.19838611850269852 rankErr = 3 wrong predictions😂😅😢 with sentence: Your MCM blocks every nigga that hits your DMs....he insecure AF \n",
"s2235 teacher 😒 distErr = 0.30165411971262945 rankErr = 8 wrong predictions😢😭😅😂😔😤😁😩 with sentence: When knows you love hot wings and didnt invite you to wing night \n",
"s2236 teacher 😍 distErr = 0.18989177203844584 rankErr = 10 wrong predictions😌😁😎🙌😉😀😂😋😊😅 with sentence: Naples -Manchester city \n",
"s2237 teacher 😉 distErr = 0.355164221419826 rankErr = 10 wrong predictions😢😭😔😅😤😂😩😒😁😌 with sentence: Wait until you hear VB Engage tomorrow \n",
"s2238 teacher 😂 distErr = 0.03221794707245941 rankErr = 0 wrong predictions with sentence: the part when they ran out the way from a car \n",
"s2239 teacher 😍 distErr = 0.3461210564161846 rankErr = 16 wrong predictions😂😅😢😁😌😉😭😎😏🙏😔🙌😀😤😋😊 with sentence: this is so soft and cute and wonderful ahhhhhhhhhhhh!!!!!!!!!! \n",
"s2240 teacher 😍 distErr = 0.30371695501697155 rankErr = 15 wrong predictions😂😅😁😌😉😎😢🙌🙏😀😏😭😋😊😔 with sentence: Fall in with SSUPERWET - HOPE YOUR… ⬅️ \n",
"s2241 teacher 😍 distErr = 0.04114602383524007 rankErr = 0 wrong predictions with sentence: I love these joggers!!! \n",
"s2242 teacher 😁 distErr = 0.16702172624750025 rankErr = 3 wrong predictions😂😅😢 with sentence: I want to get a grill but like not a gold or silver or even diamond one, no, I want one that makes my teeth look perfect without braces \n",
"s2243 teacher 😂 distErr = 0.0165859392095769 rankErr = 0 wrong predictions with sentence: You will give up na na na\n",
"s2244 teacher 😂 distErr = 0.052897748266534116 rankErr = 0 wrong predictions with sentence: There's no way it was cause she was overheated \n",
"s2245 teacher 😍 distErr = 0.13873965900372465 rankErr = 8 wrong predictions😌🙌😀😎😁😋😊😉 with sentence: He is a whole meal right now! \n",
"s2246 teacher 😭 distErr = 0.20436543136744673 rankErr = 4 wrong predictions😂😅😢😁 with sentence: She look like a tranny tf, her pussy look like a small penis \n",
"s2247 teacher 😂 distErr = 0.04015331296627024 rankErr = 1 wrong predictions😅 with sentence: The gift that just keeps giving \n",
"s2248 teacher 😂 distErr = 0.0698562590995538 rankErr = 0 wrong predictions with sentence: Screaming \n",
"s2249 teacher 😂 distErr = 0.03475776584845117 rankErr = 0 wrong predictions with sentence: Yea they took it all sadly ☹️\n",
"s2250 teacher 😩 distErr = 0.23737656745062188 rankErr = 6 wrong predictions😢😭😔😤😅😂 with sentence: I miss my hair\n",
"s2251 teacher 😭 distErr = 0.3656549384887577 rankErr = 15 wrong predictions😁😎😉😌😀🙌😂🙏😋😅😊😏😍😘😢 with sentence: WORLD SERIES CHAMPSSS BOII \n",
"s2252 teacher 😂 distErr = 0.05593693250976568 rankErr = 1 wrong predictions😅 with sentence: why is me and nikki dmn each their like we dont have our numbers \n",
"s2253 teacher 😌 distErr = 0.22278716517195904 rankErr = 6 wrong predictions😂😅😢😁😭😉 with sentence: Facts !\n",
"s2254 teacher 😭 distErr = 0.3124028746691087 rankErr = 12 wrong predictions😏😂🙏😉😁😅😎😌😢😀🙌😋 with sentence: Like 70\n",
"s2255 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Woooow I was mesmerized..\n",
"s2256 teacher 😩 distErr = 0.5379165852464415 rankErr = 18 wrong predictions😁😌😎😉😂🙌😀😅😋😊🙏😍😏😘😢😭😔😤 with sentence: I need a good book to read \n",
"s2257 teacher 😊 distErr = 0.08127082874119172 rankErr = 4 wrong predictions🙌😌😀😎 with sentence: Happy corn day \n",
"s2258 teacher 😂 distErr = 0.04648818271378901 rankErr = 1 wrong predictions😅 with sentence: I literally have no idea what you said in your first line \n",
"s2259 teacher 😊 distErr = 0.07761572695270735 rankErr = 3 wrong predictions🙌😀😌 with sentence: Oh how I love it in Alpena! So far away from everything and so peaceful \n",
"s2260 teacher 😂 distErr = 0.02989310703561623 rankErr = 0 wrong predictions with sentence: Yeahhhh righhhhttttt \n",
"s2261 teacher 😂 distErr = 0.015942048996859498 rankErr = 0 wrong predictions with sentence: Correction: Highkey it's no longer a secret \n",
"s2262 teacher 😂 distErr = 0.01596687885243167 rankErr = 0 wrong predictions with sentence: But he can't be on the bench all the time while on the other hand Sandilands is killing Orlando Pirates let… \n",
"s2263 teacher 😭 distErr = 0.4090439814189925 rankErr = 15 wrong predictions😌🙌😀😎😁😊😋😉😍😘😂😅🙏😏😢 with sentence: Still love my Dodgers \n",
"s2264 teacher 😤 distErr = 0.3648881406809814 rankErr = 17 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😭😘😔 with sentence: Thats a seed in a seedless grape. \n",
"s2265 teacher 😂 distErr = 0.12449097456973333 rankErr = 3 wrong predictions😢😅😭 with sentence: Literally LOVE the play/chill room at my brothers crib. I can take as many naps as I want just to wake up &amp; watch another movie\n",
"s2266 teacher 😭 distErr = 0.04724709325181984 rankErr = 1 wrong predictions😢 with sentence: I had two margaritas last night &amp; woke up feeling iffy. Why am I such a grandma now. \n",
"s2267 teacher 😂 distErr = 0.06000738669380134 rankErr = 0 wrong predictions with sentence: My World Series MVP's for the Astros, Darvish and Bellinger! \n",
"s2268 teacher 🙌 distErr = 0.12188065748438472 rankErr = 3 wrong predictions😌😁😎 with sentence: Fabregas' season by stats:Successful passes - 592 (296pts)Chances Created - 25 (175pts)Tack… \n",
"s2269 teacher 😒 distErr = 0.40885517427210116 rankErr = 19 wrong predictions😂😅😢😁😭😉😎😌😏🙏😔🙌😀😤😋😊😍😘😩 with sentence: its been a really long day and I gotta wake up early asf\n",
"s2270 teacher 😂 distErr = 0.05790639846448045 rankErr = 0 wrong predictions with sentence: There u go Dan, wed had €10 straight away!\n",
"s2271 teacher 😎 distErr = 0.11251317522616962 rankErr = 7 wrong predictions🙌😀😊😌😍😋😘 with sentence: Wow super \n",
"s2272 teacher 😘 distErr = 0.0683055404674735 rankErr = 3 wrong predictions😊😍🙌 with sentence: Good luck \n",
"s2273 teacher 😍 distErr = 0.19593305219452356 rankErr = 10 wrong predictions😌😁😎🙌😉😀😂😋😅😊 with sentence: Yesssss my tifah baby did that that girl know she love Trina lol\n",
"s2274 teacher 😭 distErr = 0.24802363615478376 rankErr = 9 wrong predictions😅😂😁😌😢😎😉🙌😀 with sentence: come out \n",
"s2275 teacher 😩 distErr = 0.40680938412478584 rankErr = 18 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏🙌😀😤😋😊😍😘 with sentence: Oh no. I cant sleep e I have to wake up at 3:30/4am \n",
"s2276 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: This \n",
"s2277 teacher 😭 distErr = 0.29452706138876356 rankErr = 14 wrong predictions😂😁😅😉😎😌🙏🙌😀😏😢😋😊😍 with sentence: stop no i told myself i would finish this before friday because i wanna see exo get their prime minister award \n",
"s2278 teacher 😂 distErr = 0.050087366543080526 rankErr = 1 wrong predictions😅 with sentence: I took four aspirins rn \n",
"s2279 teacher 😊 distErr = 0.06345236889279465 rankErr = 3 wrong predictions🙌😀😌 with sentence: Watching Russell Howard interviewing ed sheeran on his show makes me happy \n",
"s2280 teacher 😂 distErr = 0.1817643318983365 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: IM LAUGHING ABOUT THAT RIGHT NOW \n",
"s2281 teacher 😘 distErr = 0.07684267444315505 rankErr = 5 wrong predictions😊🙌😍😀😋 with sentence: Mya you still look the same amazing ❤ \n",
"s2282 teacher 😂 distErr = 0.22874767796838166 rankErr = 10 wrong predictions🙌😌😀😎😊😋😁😍😘😉 with sentence: Please NOT my crystal clear heels \n",
"s2283 teacher 😂 distErr = 0.04539238875278328 rankErr = 0 wrong predictions with sentence: You know very well. \n",
"s2284 teacher 😔 distErr = 0.1477079736265322 rankErr = 4 wrong predictions😢😅😭😂 with sentence: Noooooo! Not today! Stopbor Rain! Nasa mood ako mag jogg eh\n",
"s2285 teacher 😤 distErr = 0.2726229763252208 rankErr = 11 wrong predictions😂😅😢😁😭😉😌😎😔😏🙏 with sentence: bitch don't even compare \n",
"s2286 teacher 😭 distErr = 0.05690902945204758 rankErr = 1 wrong predictions😢 with sentence: WHEN the Astros when tonight Ill be in bed crying\n",
"s2287 teacher 😤 distErr = 0.32562603694156805 rankErr = 16 wrong predictions😂😅😁😌😢😎😉🙌😀🙏😏😭😋😊😔😍 with sentence: Over all u hoes bypassing thx giving \n",
"s2288 teacher 😎 distErr = 0.05285790434585474 rankErr = 2 wrong predictions😁😌 with sentence: You're the only Vegan I know Cheers!! Happy \n",
"s2289 teacher 😢 distErr = 0.13617917507912214 rankErr = 2 wrong predictions😂😅 with sentence: Our Girl \n",
"s2290 teacher 😭 distErr = 0.3257361276888218 rankErr = 15 wrong predictions😌😁😂😎😅🙌😀😉😊😋😍😘🙏😢😏 with sentence: I missed golcha's menpa again \n",
"s2291 teacher 😍 distErr = 0.11040755226972518 rankErr = 7 wrong predictions🙌😌😀😊😎😋😁 with sentence: So cute \n",
"s2292 teacher 😂 distErr = 0.04177920171865281 rankErr = 0 wrong predictions with sentence: plz help karwa do\n",
"s2293 teacher 😍 distErr = 0.4097810501339085 rankErr = 18 wrong predictions😅😢😂😭😔😤😁😌😉😎😏🙏🙌😀😩😒😋😊 with sentence: Come thru bihhh you and all yo daddy issues. \n",
"s2294 teacher 😂 distErr = 0.02321095549793597 rankErr = 0 wrong predictions with sentence: yeah pretty gruesome actually haha I also took a photo next to her and she didn't get… \n",
"s2295 teacher 😩 distErr = 0.22730767449782022 rankErr = 6 wrong predictions😭😢😔😤😅😂 with sentence: I'm ready to go back to work \n",
"s2296 teacher 😩 distErr = 0.39651554144067735 rankErr = 18 wrong predictions😅😂😢😭😁😌😉😎😔😏🙏😤🙌😀😋😊😍😘 with sentence: My heart but dealing w you lmao\n",
"s2297 teacher 😊 distErr = 0.05909667411371414 rankErr = 2 wrong predictions🙌😀 with sentence: Wow, Gratulation! \n",
"s2298 teacher 😭 distErr = 0.24781241387780248 rankErr = 11 wrong predictions😂😅😁😌😉😎😢🙏😏🙌😀 with sentence: omfg wig \n",
"s2299 teacher 😭 distErr = 0.16390387854964503 rankErr = 3 wrong predictions😅😂😢 with sentence: Son I need to be living Janays life \n",
"s2300 teacher 😘 distErr = 0.2813269634229908 rankErr = 14 wrong predictions😂😁😅😌😎😉🙌😀🙏😋😏😊😢😍 with sentence: YUH ABBY WE ALL IN THIS TOGETHER GIRL \n",
"s2301 teacher 😭 distErr = 0.24672176669483586 rankErr = 11 wrong predictions😂😅😁😉😢😎😌😏🙏🙌😀 with sentence: My head is so itchy \n",
"s2302 teacher 😂 distErr = 0.0428294035080419 rankErr = 0 wrong predictions with sentence: I won't even waste my time to tweet about how trash Ramos has been tonight, nothing new.\n",
"s2303 teacher 😂 distErr = 0.023021118700087835 rankErr = 0 wrong predictions with sentence: Lmfao I could laugh for daysssss \n",
"s2304 teacher 😂 distErr = 0.11453634792643912 rankErr = 3 wrong predictions😉😁😎 with sentence: \"that grill came from the mall\"\n",
"s2305 teacher 😭 distErr = 0.19238390839161632 rankErr = 3 wrong predictions😂😅😢 with sentence: Me and who? Dont mention my name next to that dumb piece of shits \n",
"s2306 teacher 😂 distErr = 0.11819371192583387 rankErr = 2 wrong predictions😢😅 with sentence: trust you \n",
"s2307 teacher 😭 distErr = 0.05384795085601747 rankErr = 1 wrong predictions😢 with sentence: Dont know why Im getting anxiety for this job interview.. I guess I just want it that bad. \n",
"s2308 teacher 😂 distErr = 0.011559323395771655 rankErr = 0 wrong predictions with sentence: Boom! Looks like remoaner twat just got owned! \n",
"s2309 teacher 😌 distErr = 0.13867235552333107 rankErr = 3 wrong predictions😂😅😁 with sentence: Friends that say “love you” when hanging up the phone are my favorite \n",
"s2310 teacher 😘 distErr = 0.06988829832360063 rankErr = 4 wrong predictions😊😍🙌😀 with sentence: Yaaay...congratulations Ausi \n",
"s2311 teacher 😂 distErr = 0.16725181566546538 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: All the Dodgers fans are crying … \n",
"s2312 teacher 😅 distErr = 0.09201787082652199 rankErr = 1 wrong predictions😢 with sentence: Actually have to be up early tomorrow\n",
"s2313 teacher 😂 distErr = 0.1831929918488681 rankErr = 9 wrong predictions😎😁😌😀🙌😉😋😊😍 with sentence: Showing off those guns.. \n",
"s2314 teacher 😔 distErr = 0.36333867660035973 rankErr = 16 wrong predictions😁😌😎😂😉😅🙌😀😋😊🙏😍😏😘😢😭 with sentence: Good Morning!! Im so early today but forgot my breakfast \n",
"s2315 teacher 😋 distErr = 0.13057796992465368 rankErr = 6 wrong predictions😁😎😉😌😀🙌 with sentence: Ikaw yung buddy ko since elem looking forward for more adventures with u maab❣ stay inspired\n",
"s2316 teacher 😂 distErr = 0.09753238028481682 rankErr = 1 wrong predictions😁 with sentence: Lol I love my girls dawg \n",
"s2317 teacher 😂 distErr = 0.10022766468959905 rankErr = 2 wrong predictions😅😢 with sentence: i'll sleep later unnie trust me! unnie can go sleep first ㅋㅋ\n",
"s2318 teacher 🙌 distErr = 0.21485837026645715 rankErr = 9 wrong predictions😂😅😁😉😎😌🙏😏😢 with sentence: Great Exit \n",
"s2319 teacher 🙏 distErr = 0.26599468892695494 rankErr = 10 wrong predictions😊🙌😀😍😋😘😌😎😁😉 with sentence: Good morning Amitji . Have ablessed day ☀️☀️ \n",
"s2320 teacher 😏 distErr = 0.22435384656971485 rankErr = 10 wrong predictions😂😅😁😌😎😉🙌😢😀🙏 with sentence: The time sponsored by Spacey is 7 O'cock \n",
"s2321 teacher 😍 distErr = 0.014676664420198543 rankErr = 0 wrong predictions with sentence: Another cutie get up \n",
"s2322 teacher 😂 distErr = 0.03246154363609072 rankErr = 0 wrong predictions with sentence: LINKS! \n",
"s2323 teacher 😍 distErr = 0.35338246327563705 rankErr = 16 wrong predictions😂😅😢😁😉😭😌😎😏🙏😔🙌😀😤😋😊 with sentence: That Mohawk Though Lovey was THE first video of a lion from and and also our introduction to… \n",
"s2324 teacher 😘 distErr = 0.36104205269346445 rankErr = 17 wrong predictions😂😅😢😁😉😌😎😏🙏😭🙌😀😔😋😤😊😍 with sentence: that's you zadddddy, now get back to work \n",
"s2325 teacher 😏 distErr = 0.2664426289790532 rankErr = 13 wrong predictions😀🙌😌😎😁😋😊😉😍😘🙏😂😅 with sentence: Hello! \n",
"s2326 teacher 😂 distErr = 0.030052639833037888 rankErr = 0 wrong predictions with sentence: HI coming to see you on Saturday it's my other half birthday he is 56 and is called Ian Menzies get him on stage \n",
"s2327 teacher 😂 distErr = 0.09519388699340245 rankErr = 2 wrong predictions😅😢 with sentence: I might need to fly there and comfort yall \n",
"s2328 teacher 😩 distErr = 0.3519978775653086 rankErr = 14 wrong predictions😅😂😢😭😔😤😁😌😉😎😏🙏🙌😀 with sentence: I really just need friends who are down for movie nights \n",
"s2329 teacher 😂 distErr = 0.041940502038452704 rankErr = 0 wrong predictions with sentence: Today at school I saw someone wearing merch. All I could think about was you \n",
"s2330 teacher 😊 distErr = 0.0362750597285466 rankErr = 0 wrong predictions with sentence: Yes baby. Massive sales. \n",
"s2331 teacher 😋 distErr = 0.34377334862906206 rankErr = 14 wrong predictions😂😅😢😭😁😔😉😌😏😎😤🙏🙌😀 with sentence: Thought the holidays started when pumpkin spice hit the shelves. \n",
"s2332 teacher 🙏 distErr = 0.21425828271404102 rankErr = 8 wrong predictions😂😅😁😢😉😎😌😏 with sentence: One day \n",
"s2333 teacher 😭 distErr = 0.2363580370055684 rankErr = 10 wrong predictions😂😅😁😢😌😉😎😏🙏🙌 with sentence: Same \n",
"s2334 teacher 😭 distErr = 0.25693452587747473 rankErr = 11 wrong predictions😂😅😁😉😌😎😢🙏😏🙌😀 with sentence: Done~Rt and fave mine too. \n",
"s2335 teacher 😘 distErr = 0.518248833141946 rankErr = 19 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊😍 with sentence: hays bebeluvs \n",
"s2336 teacher 😂 distErr = 0.04744389169275559 rankErr = 0 wrong predictions with sentence: “i kind of threw my cat out the window” “she was a bitch” \n",
"s2337 teacher 😊 distErr = 0.22750720559042656 rankErr = 11 wrong predictions😁😂😉😎😌😅🙏😀🙌😏😋 with sentence: dude \n",
"s2338 teacher 😂 distErr = 0.09987312233803372 rankErr = 2 wrong predictions😅😢 with sentence: so true\n",
"s2339 teacher 😔 distErr = 0.024016158285808234 rankErr = 0 wrong predictions with sentence: Its ending really?? It hurts ..There will always be a void \n",
"s2340 teacher 😂 distErr = 0.1987298308337926 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Dodger fans think it's an insult that the padres are \"at home\" right now. We have been in the playoffs in 10 years \n",
"s2341 teacher 😂 distErr = 0.25075355273239097 rankErr = 11 wrong predictions🙌😀😌😊😋😍😎😁😘😉🙏 with sentence: I peeps. You peeps. We all peeps. \n",
"s2342 teacher 😂 distErr = 0.12283353979184808 rankErr = 3 wrong predictions😢😅😭 with sentence: \"You're pretty. You'd get along with politicians.\" Did my resident give me a sick Monica Lewinsky burn!? \n",
"s2343 teacher 😍 distErr = 0.10350770152734103 rankErr = 7 wrong predictions😀🙌😌😎😋😊😁 with sentence: Thank you ! \n",
"s2344 teacher 😂 distErr = 0.02356642894128001 rankErr = 0 wrong predictions with sentence: No idea but it's deffo STEPPENWOLF getting Whipped \n",
"s2345 teacher 😉 distErr = 0.5344770927916821 rankErr = 11 wrong predictions😤😔😩😒😭😢😅😂😏😁😌 with sentence: Who's this about then lad \n",
"s2346 teacher 😂 distErr = 0.030389511910038424 rankErr = 0 wrong predictions with sentence: gave me the idea to play GuitarHero At the same time it's the supreme champion \n",
"s2347 teacher 😂 distErr = 0.028288299326406415 rankErr = 0 wrong predictions with sentence: Exactly. \n",
"s2348 teacher 😂 distErr = 0.09564329264843771 rankErr = 1 wrong predictions😁 with sentence: Dude I love you \n",
"s2349 teacher 😂 distErr = 0.022601421503435633 rankErr = 0 wrong predictions with sentence: I woke up and jumped outta bed like I gotta hit shoppers world its 9am Illest......\n",
"s2350 teacher 😩 distErr = 0.3740157926774531 rankErr = 16 wrong predictions😅😂😢😭😔😁😌😉😎😤😏🙏🙌😀😋😊 with sentence: This really isnt fair. \n",
"s2351 teacher 😍 distErr = 0.23082551615344782 rankErr = 11 wrong predictions😁😌😂😎😉😅🙌😀😋😊🙏 with sentence: This must feel so good, can't wait to experience it \n",
"s2352 teacher 😭 distErr = 0.28618765066986646 rankErr = 13 wrong predictions😂😅😁😉😎😌🙏😏🙌😀😢😋😊 with sentence: I can't find that Yugyeomie's pic I Loved and didn't save for accident \n",
"s2353 teacher 😉 distErr = 0.1517967707841751 rankErr = 5 wrong predictions😂😅😁😌😎 with sentence: Watch me retweet more. \n",
"s2354 teacher 😍 distErr = 0.08641232678535342 rankErr = 5 wrong predictions🙌😀😊😋😌 with sentence: Suckling is must wow \n",
"s2355 teacher 😉 distErr = 0.11345667039015751 rankErr = 5 wrong predictions😌😁😎🙌😀 with sentence: Guess what death defying beauty made it to the front cover of Vogue? Actually my manipulated art of gorgeous Katie… \n",
"s2356 teacher 🙌 distErr = 0.27472067596234606 rankErr = 11 wrong predictions😂😅😢😁😭😉😌😎😏😔🙏 with sentence: We need to be the models of risk taking. Fear is okay.. letting it hold us back is not. \n",
"s2357 teacher 😒 distErr = 0.20203380067565957 rankErr = 6 wrong predictions😭😔😢😤😅😩 with sentence: - cold asf in this store only place warm is the bathroom \n",
"s2358 teacher 😍 distErr = 0.43839605331410275 rankErr = 18 wrong predictions😢😅😂😭😔😤😁😏😉😌😎🙏😩😒🙌😀😋😊 with sentence: Awww Shawn ❤️ sorry can't handle myself when this pop up\n",
"s2359 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: And neither will you !\n",
"s2360 teacher 😅 distErr = 0.06373258731611778 rankErr = 0 wrong predictions with sentence: Hongki said that he attended univ diligently but he had to transfer to a cyber uni as it was impossible to attend the classes anymore\n",
"s2361 teacher 😩 distErr = 0.5437090697770651 rankErr = 18 wrong predictions😁😎😉😌😂😀🙌😅🙏😋😏😊😍😘😢😭😔😤 with sentence: I remember them braces days \n",
"s2362 teacher 😂 distErr = 0.025041836118580834 rankErr = 0 wrong predictions with sentence: See as Chelsea fall my hands yesterday,after I make mouth finish..\n",
"s2363 teacher 😭 distErr = 0.05244942333642602 rankErr = 1 wrong predictions😢 with sentence: I'm crying. \n",
"s2364 teacher 😂 distErr = 0.09768173695877198 rankErr = 2 wrong predictions😅😢 with sentence: fuck u cant see it \n",
"s2365 teacher 😊 distErr = 0.3319497552055259 rankErr = 15 wrong predictions😂😅😢😁😏😉🙏😎😌😭😔😀🙌😤😋 with sentence: There comes a time when you have to stop thinking about your mistakes &amp; move on.No regrets in life.Just lessons that show you the way. \n",
"s2366 teacher 😂 distErr = 0.26864158649338804 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: Time to sleep 4:39 \n",
"s2367 teacher 😊 distErr = 0.3695918467132633 rankErr = 17 wrong predictions😅😂😢😭😔😁😤😉😌😏😎🙏🙌😀😋😩😒 with sentence: Don't have a picture of the castle on my phone. I'll fix it later. \n",
"s2368 teacher 😘 distErr = 0.3578568227306929 rankErr = 17 wrong predictions😂😅😁😢😉😎😌😏🙏😭🙌😀😔😋😊😤😍 with sentence: Alright! New passcode is foxy2727\n",
"s2369 teacher 😍 distErr = 0.35734552700716055 rankErr = 16 wrong predictions😂😅😢😁😉😭😎😏😌🙏😔🙌😀😤😋😊 with sentence: Yeah bro \n",
"s2370 teacher 😂 distErr = 0.023545452608518775 rankErr = 0 wrong predictions with sentence: i didnt know they were gonna have him take a pic like this i actually started dying\n",
"s2371 teacher 😌 distErr = 0.2547001851307849 rankErr = 9 wrong predictions😅😂😢😭😔😁😤😉😏 with sentence: Prosper Kings \n",
"s2372 teacher 😂 distErr = 0.1254442881431067 rankErr = 3 wrong predictions😢😅😭 with sentence: Good English Valencia \n",
"s2373 teacher 🙌 distErr = 0.01966492027603267 rankErr = 0 wrong predictions with sentence: YASSS It's time for a great show Liam Alden: \n",
"s2374 teacher 🙌 distErr = 0.09046494359023914 rankErr = 3 wrong predictions😌😁😎 with sentence: We love you! Come back stronger G! ❤️ Our Big God is good all the time! ❤️\n",
"s2375 teacher 😭 distErr = 0.225064150571459 rankErr = 7 wrong predictions😅😂😢😁😌😎😉 with sentence: WHAT?!?! HE PAINTED HIS NAILS AGAIN!?!? IS THIS RECENT?!?!? I MISSED SO MUCH TONIGHT\n",
"s2376 teacher 😂 distErr = 0.026835060946809118 rankErr = 0 wrong predictions with sentence: *backsong* almost paradise~~~ \n",
"s2377 teacher 🙌 distErr = 0.20076987011453723 rankErr = 6 wrong predictions😂😅😁😌😉😎 with sentence: I am the god of double booking takeovers. Bow down\n",
"s2378 teacher 🙌 distErr = 0.025008998984044722 rankErr = 0 wrong predictions with sentence: YASSS It's time for a great show NickiTheHeartbreaker:Omg \n",
"s2379 teacher 😀 distErr = 0.2577130072590838 rankErr = 11 wrong predictions😂😅😢😁😉😎😌😏🙏😭🙌 with sentence: That's 2 of us glued to Twitter tomorrow night. Unless Prue tweets the results in the morning \n",
"s2380 teacher 😭 distErr = 0.19807201072146582 rankErr = 3 wrong predictions😂😅😢 with sentence: Colder there than here lol \n",
"s2381 teacher 😂 distErr = 0.11172682149626342 rankErr = 2 wrong predictions😢😅 with sentence: Naomi and Jon are too much \n",
"s2382 teacher 😂 distErr = 0.10653965009069387 rankErr = 3 wrong predictions😁😉😎 with sentence: You mean we get out Mister! \n",
"s2383 teacher 😢 distErr = 0.3282239775987878 rankErr = 14 wrong predictions😌😁😎🙌😀😉😋😊😍😘😂😅🙏😏 with sentence: Mad jersey club on the radio \n",
"s2384 teacher 😉 distErr = 0.14697776752788777 rankErr = 9 wrong predictions🙌😀😊😋😌😍😎😘😁 with sentence: Enjoy! \n",
"s2385 teacher 😂 distErr = 0.04328322895624728 rankErr = 0 wrong predictions with sentence: I wonder if anyone still has my video of \"the worst Halloween party ever\" \n",
"s2386 teacher 😅 distErr = 0.058993994625766925 rankErr = 1 wrong predictions😂 with sentence: Maybe its just me but I have an obsession with christmas pjs yes Im probs weird I know \n",
"s2387 teacher 😌 distErr = 0.17283461621207116 rankErr = 3 wrong predictions😂😅😁 with sentence: Im wearing his jacket \n",
"s2388 teacher 😂 distErr = 0.09987312233803372 rankErr = 2 wrong predictions😅😢 with sentence: True \n",
"s2389 teacher 😂 distErr = 0.03475981812958251 rankErr = 0 wrong predictions with sentence: I ate one \n",
"s2390 teacher 😭 distErr = 0.18893720107743148 rankErr = 3 wrong predictions😂😅😢 with sentence: my son name is cartier &amp; my daughter name fetti ... why cody tryna steal they names g \n",
"s2391 teacher 😂 distErr = 0.10074424713755166 rankErr = 3 wrong predictions😁😉😎 with sentence: I got two palo'wers ✌\n",
"s2392 teacher 😍 distErr = 0.29609861781201624 rankErr = 14 wrong predictions😂😅😁😉😎😌🙏😢😏🙌😀😋😊😭 with sentence: I have a feeling youll like this one New Arrival!Original Eken H9 / H9R Ultra HD 4K Action Camera 30m w...\n",
"s2393 teacher 😍 distErr = 0.2197614384713401 rankErr = 11 wrong predictions😁😌😎😉😂🙌😀😅😋😊🙏 with sentence: she sooo !!! \n",
"s2394 teacher 😂 distErr = 0.019572151105758138 rankErr = 0 wrong predictions with sentence: yeah bad idea \n",
"s2395 teacher 😩 distErr = 0.5326201475354861 rankErr = 18 wrong predictions😁😎😌😉😂😅🙌😀🙏😋😊😏😍😘😢😭😔😤 with sentence: Sooo we lose a hour this weekend\n",
"s2396 teacher 😩 distErr = 0.42581066849959 rankErr = 18 wrong predictions😅😂😢😌😁😎😭😉🙌😀😔😊😋🙏😏😍😤😘 with sentence: i miss you so much \n",
"s2397 teacher 😍 distErr = 0.1096678326414862 rankErr = 7 wrong predictions🙌😀😌😎😊😋😁 with sentence: I go to New York next month ahhhhhh \n",
"s2398 teacher 😂 distErr = 0.07258789031885327 rankErr = 0 wrong predictions with sentence: HAHAAHAHAAHAHA i'll be effing rich lah like that \n",
"s2399 teacher 😁 distErr = 0.2337176039225311 rankErr = 5 wrong predictions😂😅😢😭😔 with sentence: Whatever it takes\n",
"s2400 teacher 😂 distErr = 0.24765138801295122 rankErr = 7 wrong predictions😭😔😤😢😩😒😅 with sentence: Looool, you second to having an other girl?\n",
"s2401 teacher 😉 distErr = 0.10116705307975898 rankErr = 5 wrong predictions😌😁😎🙌😀 with sentence: We will definitely see you in Napanee to battle it out. Just keep your helmets strapped down \n",
"s2402 teacher 😩 distErr = 0.1255204400320492 rankErr = 3 wrong predictions😔😤😭 with sentence: Dont hurt her,shes pregnant \n",
"s2403 teacher 😂 distErr = 0.011265717365831837 rankErr = 0 wrong predictions with sentence: Even At Work Its Unacceptable \n",
"s2404 teacher 😍 distErr = 0.1673982588578663 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: I stan ❤️\n",
"s2405 teacher 😂 distErr = 0.30376500986933974 rankErr = 11 wrong predictions😊😍🙌😘😀😋😌😎😁😉🙏 with sentence: Good luck with that \n",
"s2406 teacher 🙏 distErr = 0.22137226168986468 rankErr = 8 wrong predictions😂😅😢😁😉😏😎😭 with sentence: One thing Im most proud of is no one in life can ever say “you wouldnt have that if it wasnt for me” started from scratch\n",
"s2407 teacher 😘 distErr = 0.2190219069815712 rankErr = 12 wrong predictions😁😌😎😉🙌😀😂😋😊😅😍🙏 with sentence: nice family\n",
"s2408 teacher 😂 distErr = 0.02005909183364147 rankErr = 0 wrong predictions with sentence: Come and join\n",
"s2409 teacher 😤 distErr = 0.3535689061372734 rankErr = 17 wrong predictions😂😅😁😉😎😏🙏😌😢😀🙌😋😊😭😍😔😘 with sentence: Rolling Loud 2017 🎛🎛 \n",
"s2410 teacher 😍 distErr = 0.17043994496089343 rankErr = 9 wrong predictions😌😁😎🙌😀😉😋😊😂 with sentence: I love it when he does that \n",
"s2411 teacher 😅 distErr = 0.05653971781825049 rankErr = 0 wrong predictions with sentence: Since starting my job that is - not in one month \n",
"s2412 teacher 😍 distErr = 0.495779283074221 rankErr = 18 wrong predictions😢😭😔😤😅😂😩😒😁😌😏😉😎🙏🙌😀😋😊 with sentence: I'm crying again ♥️ \n",
"s2413 teacher 😉 distErr = 0.18338089771317886 rankErr = 4 wrong predictions😂😅😁😢 with sentence: Na you just cant hack it \n",
"s2414 teacher 😀 distErr = 0.06628524997805516 rankErr = 4 wrong predictions😊😍🙌😘 with sentence: Thanks, I glad I'm not alone!\n",
"s2415 teacher 😢 distErr = 0.16679073880257725 rankErr = 3 wrong predictions😂😅😁 with sentence: PLEASE \n",
"s2416 teacher 😂 distErr = 0.1933721885905588 rankErr = 11 wrong predictions😎😌😁😀🙌😉😋😊😍😘🙏 with sentence: of course not \n",
"s2417 teacher 😭 distErr = 0.03684407876137028 rankErr = 0 wrong predictions with sentence: I told my Ma to pray for our Dodgers cuz this is disappointing and depressing \n",
"s2418 teacher 😍 distErr = 0.06068238728887828 rankErr = 3 wrong predictions🙌😊😀 with sentence: Soon the mavic will be mine \n",
"s2419 teacher 😂 distErr = 0.03715678833139853 rankErr = 0 wrong predictions with sentence: Im so dead \n",
"s2420 teacher 😂 distErr = 0.16271833555280465 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Thanks for the cookies ! The team descended on them like locusts \n",
"s2421 teacher 😭 distErr = 0.21458766265910012 rankErr = 6 wrong predictions😂😅😢😁😉😌 with sentence: Daming requirements \n",
"s2422 teacher 😊 distErr = 0.22346304122403557 rankErr = 9 wrong predictions😂😅😌😁😎😉🙌😀😋 with sentence: New emojis make me happy! \n",
"s2423 teacher 😉 distErr = 0.1875638435160359 rankErr = 4 wrong predictions😂😅😢😁 with sentence: It should say the \n",
"s2424 teacher 😀 distErr = 0.28120253857017047 rankErr = 13 wrong predictions😂😅😢😁😉😭😏😎😌🙏😔🙌😤 with sentence: Shall Read this idea I wrote in the Community!\n",
"s2425 teacher 😭 distErr = 0.21440293366612195 rankErr = 7 wrong predictions😅😂😢😁😌😉😎 with sentence: I can't stop recalling our sweet memories from my mind I miss you way more ❤️❤️\n",
"s2426 teacher 😂 distErr = 0.022283885002401665 rankErr = 0 wrong predictions with sentence: Lmao I could rock a beard jk\n",
"s2427 teacher 😂 distErr = 0.11464100667940386 rankErr = 3 wrong predictions😁😌😎 with sentence: Sami and Lucas are giving me all the feels \n",
"s2428 teacher 😀 distErr = 0.31774139067314816 rankErr = 13 wrong predictions😅😂😢😭😔😁😤😉😌😏😎🙏🙌 with sentence: The best time is right NOW \n",
"s2429 teacher 😂 distErr = 0.0923555734981202 rankErr = 2 wrong predictions😅😢 with sentence: then he thought harden shot it\n",
"s2430 teacher 😀 distErr = 0.21449568194022758 rankErr = 10 wrong predictions😂😅😁😉😎😌🙏😏😢🙌 with sentence: Every office needs one. Official envelope sealer.✉️ \n",
"s2431 teacher 😂 distErr = 0.10467661919611577 rankErr = 2 wrong predictions😢😅 with sentence: Hold on yall, I have a facebook account but I dont have the app on my phone as I barely ever use it. Gonna download it now\n",
"s2432 teacher 😉 distErr = 0.15255646975946344 rankErr = 9 wrong predictions🙌😀😊😋😍😌😘😎😁 with sentence: Hey boo! \n",
"s2433 teacher 😂 distErr = 0.05081925883165765 rankErr = 0 wrong predictions with sentence: They won't save you \n",
"s2434 teacher 🙌 distErr = 0.2606999391184284 rankErr = 10 wrong predictions😂😅😢😁😉😎😏😌🙏😭 with sentence: Yikes...what they call an \"icebreaker\" in a job interview \n",
"s2435 teacher 😂 distErr = 0.1920142467970055 rankErr = 10 wrong predictions😌😎😁🙌😀😉😋😊😍😘 with sentence: Issa new father \n",
"s2436 teacher 😂 distErr = 0.05678045394287639 rankErr = 0 wrong predictions with sentence: I hate funky breath\n",
"s2437 teacher 😭 distErr = 0.15212186649438897 rankErr = 3 wrong predictions😅😂😢 with sentence: This hurts my heart, my dad used to stand outside with candy and wait for kids but no one trick or treats over there\n",
"s2438 teacher 😂 distErr = 0.1644092856410812 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: justin &amp; Selena \n",
"s2439 teacher 😂 distErr = 0.10570783074081073 rankErr = 2 wrong predictions😢😅 with sentence: Son at first I seen KO Im like Kyle OQuinn but word I see KP going off all year\n",
"s2440 teacher 😭 distErr = 0.23019787694084315 rankErr = 8 wrong predictions😂😅😢😁😉😌😎😏 with sentence: We gave ha water she was too mad \n",
"s2441 teacher 😀 distErr = 0.044590463718282757 rankErr = 2 wrong predictions🙌😊 with sentence: Best of luck \n",
"s2442 teacher 😂 distErr = 0.27575226217275495 rankErr = 11 wrong predictions🙌😊😀😋😍😌😘😎😁😉🙏 with sentence: online shops haha \n",
"s2443 teacher 😂 distErr = 0.06697391653548022 rankErr = 1 wrong predictions😅 with sentence: You just liked my tweet Zee which said don't spread negativity \n",
"s2444 teacher 😊 distErr = 0.1651134732476288 rankErr = 9 wrong predictions😁😎😉😌😀🙌😋😂🙏 with sentence: Great! !\n",
"s2445 teacher 😘 distErr = 0.18131917635599473 rankErr = 9 wrong predictions😌😎😁😀🙌😉😋😊😍 with sentence: Of course mom \n",
"s2446 teacher 🙏 distErr = 0.08708370794447018 rankErr = 1 wrong predictions😏 with sentence: done please help me too\n",
"s2447 teacher 😭 distErr = 0.03226011950088971 rankErr = 0 wrong predictions with sentence: Bruh we slow asf and Im sitting by myself PLUS my fucking phone is dead Im pissed\n",
"s2448 teacher 🙏 distErr = 0.03861403318803346 rankErr = 0 wrong predictions with sentence: Amin \n",
"s2449 teacher 😂 distErr = 0.13198580628887396 rankErr = 3 wrong predictions😢😅😭 with sentence: Managed to avoid spoilers for all day and last night only for mum to accidentally blurt it out! \n",
"s2450 teacher 😭 distErr = 0.1411419489697289 rankErr = 3 wrong predictions😢😅😂 with sentence: i can't keep my tears na, it'a streaming down my face \n",
"s2451 teacher 😂 distErr = 0.03356110172134556 rankErr = 0 wrong predictions with sentence: dnt really knw what jst happened \n",
"s2452 teacher 😩 distErr = 0.4294716635357985 rankErr = 18 wrong predictions😂😅😢😁😉😎😏😌🙏😭🙌😀😔😤😋😊😍😘 with sentence: I swear \n",
"s2453 teacher 😂 distErr = 0.23204550617099012 rankErr = 10 wrong predictions🙌😀😌😊😎😋😁😍😘😉 with sentence: She said , he was onaphone with the tattoo artist \n",
"s2454 teacher 😘 distErr = 0.06031212572239298 rankErr = 3 wrong predictions😊😍🙌 with sentence: Thank-you po \n",
"s2455 teacher 😘 distErr = 0.11982010648516732 rankErr = 8 wrong predictions🙌😀😌😊😋😎😍😁 with sentence: Sounds good to me\n",
"s2456 teacher 😋 distErr = 0.31911756557244525 rankErr = 14 wrong predictions😂😅😢😁😭😉😌😎😏🙏😔🙌😀😤 with sentence: perf night\n",
"s2457 teacher 🙏 distErr = 0.15774677009187724 rankErr = 5 wrong predictions😂😅😁😉😏 with sentence: My new eBook is about how to growth hack getting clients. Do you want me to send you a link to it? (It'll be free) \n",
"s2458 teacher 😊 distErr = 0.4417784061470462 rankErr = 17 wrong predictions😢😭😅😔😂😤😩😒😁😏😌😉😎🙏🙌😀😋 with sentence: Yall this is my home \n",
"s2459 teacher 🙏 distErr = 0.1587335222932712 rankErr = 7 wrong predictions😁😉😎😌😂😀🙌 with sentence: Bless up Esquivel finally update aeries \n",
"s2460 teacher 😌 distErr = 0.2629639309934749 rankErr = 7 wrong predictions😅😂😢😭😔😤😁 with sentence: Whats wrong? If its about depression, I know all about it. Can only send hugs \n",
"s2461 teacher 😂 distErr = 0.13057623133620447 rankErr = 3 wrong predictions😢😅😭 with sentence: Nope \n",
"s2462 teacher 😂 distErr = 0.13742200418664316 rankErr = 4 wrong predictions😢😭😅😔 with sentence: You saying that like Lil Kim or Remy could do it \n",
"s2463 teacher 😍 distErr = 0.33992352616327276 rankErr = 16 wrong predictions😂😅😢😁😉😌😎😭😏🙏🙌😔😀😤😋😊 with sentence: Hahaha! I love this!\n",
"s2464 teacher 😂 distErr = 0.021682372934677223 rankErr = 0 wrong predictions with sentence: Bitch I got friends \n",
"s2465 teacher 😍 distErr = 0.31192671353947216 rankErr = 15 wrong predictions😂😅😁😉😎😌😏🙏😢🙌😀😋😭😊😔 with sentence: Thanks girls! We dont owe ya one - cause we WON! \n",
"s2466 teacher 😔 distErr = 0.3518485194526744 rankErr = 16 wrong predictions😁😂😌😎😉😅🙌😀🙏😋😏😊😢😍😘😭 with sentence: I'm speechless. We just visited her last sunday. Now, she's gone. Al-Fatihah. \n",
"s2467 teacher 😢 distErr = 0.16679073880257725 rankErr = 3 wrong predictions😂😅😁 with sentence: Same same same... \n",
"s2468 teacher 😅 distErr = 0.2500965867396973 rankErr = 12 wrong predictions😀🙌😌😎😁😋😊😉😍😘🙏😂 with sentence: But I got in for a bit hahah \n",
"s2469 teacher 😋 distErr = 0.3884136788239955 rankErr = 16 wrong predictions😢😅😂😭😔😤😁😏😉😌😎🙏😩😒🙌😀 with sentence: If your wondering why got up too go to work this morningIt was too supply my needs \n",
"s2470 teacher 😏 distErr = 0.2454042061636858 rankErr = 9 wrong predictions😅😂😢😭😁😔😉😌😎 with sentence: I miss actual facial expressions \n",
"s2471 teacher 😁 distErr = 0.13600084289778427 rankErr = 2 wrong predictions😂😅 with sentence: Im not sure if I will have time to livestream today because I had a great animation video idea I wanted to get started in \n",
"s2472 teacher 😂 distErr = 0.04950432322770328 rankErr = 0 wrong predictions with sentence: Chill bro\n",
"s2473 teacher 😭 distErr = 0.09776911134500277 rankErr = 1 wrong predictions😢 with sentence: Marketing manager who lives in the fucking stone ages \n",
"s2474 teacher 😊 distErr = 0.02906817536165018 rankErr = 0 wrong predictions with sentence: Good morning. \n",
"s2475 teacher 😂 distErr = 0.09459059925141694 rankErr = 1 wrong predictions😁 with sentence: Go go shu shu ... byeeeeeee Deepika you can enjoy ❤️ Insecure jealous people left the party! \n",
"s2476 teacher 😎 distErr = 0.13900450813470105 rankErr = 4 wrong predictions😂😅😁😌 with sentence: Hollow November \n",
"s2477 teacher 😭 distErr = 0.2904495587663816 rankErr = 15 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😘 with sentence: And they had to sleep with those stinky Bangladeshi animals \n",
"s2478 teacher 😁 distErr = 0.12466775065114909 rankErr = 8 wrong predictions🙌😀😊😋😍😌😘😎 with sentence: good luck on cleaning up! Sending you a lot of love and support❤\n",
"s2479 teacher 😂 distErr = 0.05110792254522875 rankErr = 1 wrong predictions😅 with sentence: Spurs to top the group? I'd like to see a city v Madrid match.. \n",
"s2480 teacher 🙏 distErr = 0.1832372117670441 rankErr = 6 wrong predictions😂😅😁😉😎😌 with sentence: Amen Chef, you and your team are truly amazing reaching communities where no one else has gone. Gracias! \n",
"s2481 teacher 😘 distErr = 0.11558488033241228 rankErr = 8 wrong predictions🙌😀😊😌😋😍😎😁 with sentence: Hoping to meet other LOVEs chingus as well~\n",
"s2482 teacher 😂 distErr = 0.020939965379800786 rankErr = 0 wrong predictions with sentence: Im getting there fam via \n",
"s2483 teacher 😁 distErr = 0.16559731895880178 rankErr = 3 wrong predictions😂😅😢 with sentence: you da lil nigga\n",
"s2484 teacher 😎 distErr = 0.1331731731647393 rankErr = 4 wrong predictions😂😁😅😌 with sentence: Of course they did \n",
"s2485 teacher 😎 distErr = 0.11828573561963654 rankErr = 7 wrong predictions😊🙌😀😍😋😘😌 with sentence: good morning \n",
"s2486 teacher 😂 distErr = 0.02915493044435413 rankErr = 0 wrong predictions with sentence: Last night \n",
"s2487 teacher 😭 distErr = 0.14662886236344075 rankErr = 3 wrong predictions😅😢😂 with sentence: my whole heart \n",
"s2488 teacher 😂 distErr = 0.009929903916196525 rankErr = 0 wrong predictions with sentence: omfg \n",
"s2489 teacher 😔 distErr = 0.3285955519761419 rankErr = 16 wrong predictions😂😅😁😌😎😉🙌😀🙏😢😏😋😊😍😘😭 with sentence: A car flipped over on my street cause the passenger AND driver were both drunk &amp; hit a parked car sigh thankfully they were both okay but \n",
"s2490 teacher 😍 distErr = 0.2441791307735288 rankErr = 12 wrong predictions😁😉😎😂😌😅😀🙏🙌😏😋😊 with sentence: I MEAN... \n",
"s2491 teacher 😊 distErr = 0.027705606505952263 rankErr = 1 wrong predictions😍 with sentence: happy birthday!! \n",
"s2492 teacher 😭 distErr = 0.32593421378735526 rankErr = 15 wrong predictions😁😌😎😂😉😅🙌😀😋🙏😊😏😍😘😢 with sentence: i wish i was so i could go to some of your shows\n",
"s2493 teacher 😂 distErr = 0.05217935677490827 rankErr = 0 wrong predictions with sentence: Its roasting and its just hitting mid day \n",
"s2494 teacher 😍 distErr = 0.39466404198375665 rankErr = 18 wrong predictions😅😂😢😭😔😁😤😌😉😎😏🙏🙌😀😩😋😒😊 with sentence: Those Olive 13s are crazy \n",
"s2495 teacher 😀 distErr = 0.028705411412228654 rankErr = 0 wrong predictions with sentence: Enter Dreams thrive here Online Contest for chance at $1500 \n",
"s2496 teacher 🙌 distErr = 0.26714184137878205 rankErr = 11 wrong predictions😂😅😢😁😭😌😉😎😔😏🙏 with sentence: See you then girl!\n",
"s2497 teacher 😂 distErr = 0.023434145481898507 rankErr = 0 wrong predictions with sentence: u so silly ☺️☺️ \n",
"s2498 teacher 😋 distErr = 0.4610241831057234 rankErr = 16 wrong predictions😢😭😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀 with sentence: Mom got me some new workout clothes\n",
"s2499 teacher 😍 distErr = 0.3200490698209895 rankErr = 16 wrong predictions😂😅😁😢😌😉😎😏🙏🙌😭😀😔😋😊😤 with sentence: Shubh!!!! \n",
"s2500 teacher 😂 distErr = 0.18737126367725612 rankErr = 5 wrong predictions😢😭😔😤😅 with sentence: Niggahs don't fw you cause of ah Bitch \n",
"s2501 teacher 😂 distErr = 0.16810301155109258 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Oh so ended up getting one\n",
"s2502 teacher 😂 distErr = 0.022708639568759674 rankErr = 0 wrong predictions with sentence: Still can't believe it's stuck \n",
"s2503 teacher 😘 distErr = 0.11161022095713563 rankErr = 8 wrong predictions🙌😀😊😌😋😍😎😁 with sentence: you are perfect already! \n",
"s2504 teacher 😂 distErr = 0.03350948976848816 rankErr = 0 wrong predictions with sentence: Lmao I love my paper though\n",
"s2505 teacher 😀 distErr = 0.12433597439161082 rankErr = 4 wrong predictions😁😉😎😌 with sentence: Time flying by. A lot of holidays coming up \n",
"s2506 teacher 😉 distErr = 0.4689595157627455 rankErr = 11 wrong predictions😔😭😤😢😩😒😅😂😁😏😌 with sentence: I'm in for tomorrow! \n",
"s2507 teacher 😍 distErr = 0.1610057981690911 rankErr = 8 wrong predictions😌😁😎🙌😀😉😋😊 with sentence: Indeed you do Lacey Those hard yummy beautiful nipples I want to wrap my lips around, sucking, l… \n",
"s2508 teacher 😂 distErr = 0.01748297764448452 rankErr = 0 wrong predictions with sentence: She Don't follow me on twitter so imma say what I want. . . I damn near love this girl. somebody stop me. Lmao\n",
"s2509 teacher 😭 distErr = 0.13281004572733252 rankErr = 3 wrong predictions😢😅😂 with sentence: hairline gone \n",
"s2510 teacher 😭 distErr = 0.04073468569618593 rankErr = 0 wrong predictions with sentence: I just spent a good 2 hours planning the next few months in my planner. Every detail about school assignments, my trip, work and bills...\n",
"s2511 teacher 😎 distErr = 0.23508034995841853 rankErr = 8 wrong predictions😂😅😢😭😁😉😔😌 with sentence: Let's go Astros!! \n",
"s2512 teacher 😂 distErr = 0.11573241084439279 rankErr = 2 wrong predictions😢😅 with sentence: I want me a whole bitch now lol fuck these stupid ass niggas\n",
"s2513 teacher 😅 distErr = 0.03465974987294111 rankErr = 0 wrong predictions with sentence: Lol this is what we did when we skipped class \n",
"s2514 teacher 😍 distErr = 0.04114602383524007 rankErr = 0 wrong predictions with sentence: No not with you that what i love about you ❤️\n",
"s2515 teacher 😍 distErr = 0.28354796426020756 rankErr = 14 wrong predictions😂😅😁😌😎😉🙌😀😢🙏😏😋😊😭 with sentence: Best night!! \n",
"s2516 teacher 😂 distErr = 0.2117935284933873 rankErr = 10 wrong predictions😌🙌😀😎😁😋😊😉😍😘 with sentence: My timeline is lit right now \n",
"s2517 teacher 😊 distErr = 0.2476966956614227 rankErr = 12 wrong predictions😂😅😁😉😎😌🙌😀🙏😏😢😋 with sentence: Yeah. \n",
"s2518 teacher 😭 distErr = 0.1398742860899451 rankErr = 3 wrong predictions😅😢😂 with sentence: Fuck \n",
"s2519 teacher 😂 distErr = 0.037326347370214064 rankErr = 0 wrong predictions with sentence: MileHighReport Denver Broncos fans: We need a right tackle!John Elway: Nah. \n",
"s2520 teacher 😊 distErr = 0.2738439432140182 rankErr = 13 wrong predictions😂😅😁😌😎😢😉🙌😀🙏😏😭😋 with sentence: Comic con through the years \n",
"s2521 teacher 😍 distErr = 0.23849463699484322 rankErr = 12 wrong predictions😁😂😌😎😉😅🙌😀😋🙏😊😏 with sentence: This is really cute \n",
"s2522 teacher 😂 distErr = 0.08044449475361878 rankErr = 0 wrong predictions with sentence: His mans told him he some poppin rapper he showed him his Instagram he got 50k+ Followers I go thru his page all his pics got 100 likes \n",
"s2523 teacher 🙌 distErr = 0.22243860687179676 rankErr = 7 wrong predictions😂😅😁😌😢😉😎 with sentence: Come join me Wed., Nov. 1 @ 5 P.M.! ..☛Curious about becoming a Realtor with the \n",
"s2524 teacher 😊 distErr = 0.4260714257571909 rankErr = 17 wrong predictions😢😅😭😂😔😤😁😩😒😏😌😉😎🙏🙌😀😋 with sentence: nope..not at all \n",
"s2525 teacher 😊 distErr = 0.03896426252019178 rankErr = 0 wrong predictions with sentence: Amazing photo \n",
"s2526 teacher 😍 distErr = 0.3390218340383457 rankErr = 16 wrong predictions😂😅😢😁😌😉😎😭😏🙏🙌😔😀😤😋😊 with sentence: Okay Sam Smith adoring and loving Fifth Harmony tho he loves the girls so much!\n",
"s2527 teacher 😭 distErr = 0.08372701699694216 rankErr = 1 wrong predictions😢 with sentence: LMAOOO i just realised how small he actually was when he steps out the car\n",
"s2528 teacher 😔 distErr = 0.1249364299612021 rankErr = 3 wrong predictions😢😭😅 with sentence: Missing my brother.. Wish there was a way to see you again.\n",
"s2529 teacher 😂 distErr = 0.05709865778624709 rankErr = 0 wrong predictions with sentence: Couldnt have been Hickman or Ruskin \n",
"s2530 teacher 😊 distErr = 0.5012583777375915 rankErr = 17 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋 with sentence: good evening \n",
"s2531 teacher 😂 distErr = 0.0797044756531532 rankErr = 1 wrong predictions😅 with sentence: Volunteer at a daycare and you'll be good \n",
"s2532 teacher 😂 distErr = 0.02373295188852823 rankErr = 0 wrong predictions with sentence: I know I'm not the only guy that finds it amusing when his girl gets mad lmao\n",
"s2533 teacher 😢 distErr = 0.11760955478733556 rankErr = 2 wrong predictions😅😂 with sentence: I'm broke can you imagine it's only the beginning of the month \n",
"s2534 teacher 😌 distErr = 0.0594186031959299 rankErr = 1 wrong predictions😁 with sentence: Guys dmme your thoughts about me\n",
"s2535 teacher 😂 distErr = 0.029957388014308806 rankErr = 0 wrong predictions with sentence: I saw what you said earlier, im good on that too \n",
"s2536 teacher 😂 distErr = 0.07276168904468443 rankErr = 1 wrong predictions😅 with sentence: You are crazy \n",
"s2537 teacher 😂 distErr = 0.011539838568930766 rankErr = 0 wrong predictions with sentence: He is. Thats my boss. \n",
"s2538 teacher 🙌 distErr = 0.2672559847925037 rankErr = 11 wrong predictions😂😅😢😁😉😏😎🙏😌😭😔 with sentence: reviews Thank You… \n",
"s2539 teacher 😂 distErr = 0.006990230430313639 rankErr = 0 wrong predictions with sentence: \"Yuri..? Your cat is making car noise?\"Oh gosh Beka I died \n",
"s2540 teacher 😂 distErr = 0.2284744321961565 rankErr = 7 wrong predictions😭😔😢😤😅😩😒 with sentence: Don't HMU Tho \n",
"s2541 teacher 😋 distErr = 0.13918430611230537 rankErr = 6 wrong predictions😌😁😎🙌😀😉 with sentence: I know you can't get enough mami \n",
"s2542 teacher 😂 distErr = 0.03679738952247307 rankErr = 0 wrong predictions with sentence: One of their greatest?Seriously?! Barça was far better for more than a hour or so.\n",
"s2543 teacher 😂 distErr = 0.04441406195498622 rankErr = 0 wrong predictions with sentence: Lol lastnight made me realize how hard I curve boys, Im gonna be single forever \n",
"s2544 teacher 😂 distErr = 0.05242891339772347 rankErr = 1 wrong predictions😅 with sentence: A diet of fags redbull and latte \n",
"s2545 teacher 😍 distErr = 0.3991556848725892 rankErr = 18 wrong predictions😅😂😢😭😔😤😁😌😉😎😏🙏🙌😀😩😒😋😊 with sentence: I really like it ❤️ \n",
"s2546 teacher 😉 distErr = 0.12885200463681196 rankErr = 5 wrong predictions😁😂😌😎😅 with sentence: Surrey baking is on the rise! \n",
"s2547 teacher 😭 distErr = 0.049470803583760166 rankErr = 1 wrong predictions😔 with sentence: too expensive \n",
"s2548 teacher 😅 distErr = 0.06245228487754507 rankErr = 1 wrong predictions😂 with sentence: Its November 1st and I just saw my first Christmas commercial of the year. \n",
"s2549 teacher 😤 distErr = 0.16480653111294594 rankErr = 5 wrong predictions😢😭😅😔😂 with sentence: We come all this way dawg to just out like straight bitches SMH \n",
"s2550 teacher 😍 distErr = 0.24288605237019184 rankErr = 13 wrong predictions😂😁😌😅😎😉🙌😀😋🙏😊😏😢 with sentence: Damn im already liking the new phone from \n",
"s2551 teacher 😂 distErr = 0.035414361570609995 rankErr = 0 wrong predictions with sentence: All y'all nigga focus on getting clout. I'm more focused on getting POWER, INTELLIGENCE, MONEY. yoooooo\n",
"s2552 teacher 😁 distErr = 0.13331864192065404 rankErr = 2 wrong predictions😂😅 with sentence: So torn. As the original is a classic. But damn good line up. And jej is back as mufsa \n",
"s2553 teacher 🙌 distErr = 0.05038248557512403 rankErr = 1 wrong predictions😌 with sentence: Theres nothing like doing a workout outside in some beautiful weather •Outfit:… \n",
"s2554 teacher 😂 distErr = 0.029321311434170032 rankErr = 0 wrong predictions with sentence: funny \n",
"s2555 teacher 😍 distErr = 0.20982356981589512 rankErr = 10 wrong predictions😌😁😎🙌😂😉😀😅😋😊 with sentence: Marry me \n",
"s2556 teacher 😂 distErr = 0.14372602818081667 rankErr = 4 wrong predictions😢😭😅😔 with sentence: Im disappointed, I should have used a comma \n",
"s2557 teacher 😂 distErr = 0.0683604152205133 rankErr = 0 wrong predictions with sentence: Great! Thanks for making feel old! I'm available for fatherly advice anytime \n",
"s2558 teacher 😂 distErr = 0.048215219929506704 rankErr = 0 wrong predictions with sentence: oh my gosh \n",
"s2559 teacher 😂 distErr = 0.020140254604112125 rankErr = 0 wrong predictions with sentence: Lmao sicka her \n",
"s2560 teacher 😂 distErr = 0.048333754854305536 rankErr = 1 wrong predictions😅 with sentence: Ashleys mad because I came without her \n",
"s2561 teacher 🙏 distErr = 0.03861403318803346 rankErr = 0 wrong predictions with sentence: Amin\n",
"s2562 teacher 😂 distErr = 0.04172499230701206 rankErr = 0 wrong predictions with sentence: The fact that he not talking to me\n",
"s2563 teacher 😒 distErr = 0.5354381301525107 rankErr = 19 wrong predictions😁😌😎😂😉🙌😅😀😋🙏😊😏😍😘😢😭😔😤😩 with sentence: Errrr.....I probably will not dress this out... My husband kept laughing when he took this pic for me..... \n",
"s2564 teacher 😘 distErr = 0.33369344777353815 rankErr = 17 wrong predictions😂😅😁😉😎😌😢🙏😏🙌😀😭😋😊😔😍😤 with sentence: LIKE AND THIS TWT GUYS PLEASE and comment your thoughts about it:) i hope youll cooperate with me! \n",
"s2565 teacher 😀 distErr = 0.3195697276502037 rankErr = 13 wrong predictions😅😂😢😭😔😤😁😌😉😎😏🙏🙌 with sentence: Is it just me or did it feel like October took too long? \n",
"s2566 teacher 🙏 distErr = 0.2426315969564108 rankErr = 10 wrong predictions🙌😀😊😋😌😍😎😁😘😉 with sentence: I hope soooo thank you for support us\n",
"s2567 teacher 😂 distErr = 0.012839860361611647 rankErr = 0 wrong predictions with sentence: Not that bad.. \n",
"s2568 teacher 😊 distErr = 0.3146171153053053 rankErr = 15 wrong predictions😂😅😢😁😉😎😌😏🙏😭🙌😀😔😋😤 with sentence: Every day is 1 day closer to being home nd I dont think you understand how freaking excited I am to finally have him back \n",
"s2569 teacher 😭 distErr = 0.3476190170125932 rankErr = 15 wrong predictions😁😌😎😉😂🙌😀😅😋😊🙏😍😏😘😢 with sentence: Dude just read the email! Youre the first person in the raffle . Ju the best ❤️❤️❤️❤️\n",
"s2570 teacher 😭 distErr = 0.35823518986474506 rankErr = 15 wrong predictions😁😎😌😉😀🙌😂😋😅🙏😊😍😏😘😢 with sentence: its too early for this \n",
"s2571 teacher 😘 distErr = 0.11047185863853233 rankErr = 7 wrong predictions🙌😀😌😊😋😍😎 with sentence: Always boo boo \n",
"s2572 teacher 😌 distErr = 0.22831168441509858 rankErr = 8 wrong predictions😂😅😏😁😉🙏😢😎 with sentence: The difference between wanting someone and wanting to have someone.. \n",
"s2573 teacher 😂 distErr = 0.1389176243586786 rankErr = 3 wrong predictions😏🙏😉 with sentence: help\n",
"s2574 teacher 🙌 distErr = 0.29948737713749213 rankErr = 12 wrong predictions😅😂😢😭😔😁😌😉😤😎😏🙏 with sentence: we need your support follow up this new product please, spread the link \n",
"s2575 teacher 😂 distErr = 0.15938720712051008 rankErr = 8 wrong predictions😁😌😎😉🙌😀😋😊 with sentence: Nice! \n",
"s2576 teacher 😢 distErr = 0.42047182037396813 rankErr = 14 wrong predictions😀🙌😊😋😍😌😎😘😁😉🙏😂😅😏 with sentence: My cousin cris boutta have a baby n I'm thinking about back in the day \n",
"s2577 teacher 😂 distErr = 0.06067379989075062 rankErr = 0 wrong predictions with sentence: Pfffffft Next year!\n",
"s2578 teacher 😂 distErr = 0.041833696923316434 rankErr = 1 wrong predictions😅 with sentence: Patrick always gonna say some dumb shit \n",
"s2579 teacher 😢 distErr = 0.29997746685937593 rankErr = 14 wrong predictions😌😁😎🙌😀😉😋😊😂😅😍😘🙏😏 with sentence: SOME OF US DO DESERVE IT A LOVE THATS TRUE AND PERFECT \n",
"s2580 teacher 😁 distErr = 0.19140337833892362 rankErr = 3 wrong predictions😂😅😢 with sentence: I need more followers. Getting serious with Twitter now. Please follow. I'll follow back if like you \n",
"s2581 teacher 😂 distErr = 0.16581181021989524 rankErr = 5 wrong predictions😢😭😔😅😤 with sentence: Haven't watched since they introduced Jesse from TWD. I commit to catching up as I ❤ season 1. Sorry, but my hate was real/reel\n",
"s2582 teacher 😂 distErr = 0.014437096077856718 rankErr = 0 wrong predictions with sentence: Pwease. Especially the part where you said Wenger gon give Pep that work. \n",
"s2583 teacher 😂 distErr = 0.030809532078894204 rankErr = 0 wrong predictions with sentence: No fr \n",
"s2584 teacher 😂 distErr = 0.022180859640865233 rankErr = 0 wrong predictions with sentence: Life is really hard when youre in prison. Buckle up pansy the rides gonna get bumpy \n",
"s2585 teacher 😂 distErr = 0.01997308674914595 rankErr = 0 wrong predictions with sentence: He don't want to go back after Nebraska treated him like crap, and then spurned him for Mike fuckin Riley \n",
"s2586 teacher 😂 distErr = 0.07583744982742979 rankErr = 0 wrong predictions with sentence: Me watching this video as if i know Portuguese. \n",
"s2587 teacher 😍 distErr = 0.3181028496732119 rankErr = 16 wrong predictions😂😅😁😢😌😎😉🙌😭😀🙏😏😔😋😊😤 with sentence: Got to hang with this cutie pie tonight. Made me miss my other nephews and my niece! \n",
"s2588 teacher 😂 distErr = 0.046143929167536187 rankErr = 0 wrong predictions with sentence: The issue at hand is not funny but this post is \n",
"s2589 teacher 😂 distErr = 0.3044851985464726 rankErr = 10 wrong predictions😍😊😘🙌😀😋😌😎😁😉 with sentence: I love it \n",
"s2590 teacher 😂 distErr = 0.01676140603702423 rankErr = 0 wrong predictions with sentence: Keep it I don't want it \n",
"s2591 teacher 😢 distErr = 0.16468037915702763 rankErr = 3 wrong predictions😂😅😁 with sentence: 6 years ago today we said our final good byes , Love that lady with every ounce of my being \n",
"s2592 teacher 🙏 distErr = 0.05651740800343182 rankErr = 0 wrong predictions with sentence: amen \n",
"s2593 teacher 😎 distErr = 0.2369179380340962 rankErr = 8 wrong predictions😂😅😢😭😁😔😉😌 with sentence: FACT \n",
"s2594 teacher 😅 distErr = 0.2920783164084725 rankErr = 12 wrong predictions🙌😀😊😋😍😌😘😎😁😉🙏😂 with sentence: nw Finally Found Someone Hi Loydi \n",
"s2595 teacher 😢 distErr = 0.23211698517729554 rankErr = 11 wrong predictions😂😁😅😉😎😌🙏🙌😀😏😋 with sentence: I need ur shoulder to cry on \n",
"s2596 teacher 😘 distErr = 0.5476824968999554 rankErr = 19 wrong predictions😭😢😔😤😅😂😩😒😁😏😌😉😎🙏🙌😀😋😊😍 with sentence: awww you'll get me teary eyed gurl! \n",
"s2597 teacher 😘 distErr = 0.2941972281721714 rankErr = 14 wrong predictions😂😁😅😎😌😉🙌😀🙏😏😢😋😊😍 with sentence: 〰Happy Hump Day to all my Ladies is def sweet like \n",
"s2598 teacher 😊 distErr = 0.027872137066028212 rankErr = 0 wrong predictions with sentence: Thanks. \n",
"s2599 teacher 😂 distErr = 0.019329865093074366 rankErr = 0 wrong predictions with sentence: its okay I didnt see you until I was in your face \n",
"s2600 teacher 😍 distErr = 0.3586010973342587 rankErr = 16 wrong predictions😅😂😢😭😁😌😔😉😎😏😤🙌🙏😀😋😊 with sentence: Fall in with alexissdanger ⬅️ \n",
"s2601 teacher 😂 distErr = 0.04686006837766352 rankErr = 0 wrong predictions with sentence: Let your wild side free girl!!!!!\n",
"s2602 teacher 😭 distErr = 0.24981857638434476 rankErr = 10 wrong predictions😅😂😁😌😢😎😉🙌😀🙏 with sentence: Can we get season 3 already!?\n",
"s2603 teacher 😂 distErr = 0.02513872513093019 rankErr = 0 wrong predictions with sentence: Have to quote this bih remember this nigga \n",
"s2604 teacher 😩 distErr = 0.30543704125555404 rankErr = 8 wrong predictions😢😅😭😂😔😤😁😌 with sentence: He so damn \n",
"s2605 teacher 😂 distErr = 0.320429394434165 rankErr = 11 wrong predictions😍😊😘🙌😋😀😌😎😁😉🙏 with sentence: YASSS It's time for a great show Maxloyal™♛:Giveaway # \n",
"s2606 teacher 😂 distErr = 0.07478319638657388 rankErr = 0 wrong predictions with sentence: Got to love a fish finger sarnie \n",
"s2607 teacher 😂 distErr = 0.12822804993687292 rankErr = 6 wrong predictions😁😎😌😉🙌😀 with sentence: say dat \n",
"s2608 teacher 😊 distErr = 0.03031687298313584 rankErr = 0 wrong predictions with sentence: If ur happy I'm happy \n",
"s2609 teacher 😀 distErr = 0.04812720446955631 rankErr = 2 wrong predictions😌🙌 with sentence: Rockstar \n",
"s2610 teacher 😂 distErr = 0.1392941241291088 rankErr = 4 wrong predictions😢😭😅😔 with sentence: God fuck me I already fixed it once \n",
"s2611 teacher 😂 distErr = 0.13438815287433248 rankErr = 6 wrong predictions😁😌😎😉🙌😀 with sentence: Its socially acceptable to listen to ANY Christmas music ❤️\n",
"s2612 teacher 😂 distErr = 0.016877174364777314 rankErr = 0 wrong predictions with sentence: I thrashed p in iMessage now he wanna bet on 2k \n",
"s2613 teacher 😂 distErr = 0.2885283965501914 rankErr = 7 wrong predictions😔😭😤😢😩😒😅 with sentence: my fatass need some lemon pepper wings w a lil side of hot sauce rn extraaaaa crispyyy \n",
"s2614 teacher 😤 distErr = 0.4673151518945472 rankErr = 17 wrong predictions😌😁😎🙌😀😉😋😊😂😍😅😘🙏😏😢😭😔 with sentence: fck off tristan yes soph collect u in 15 n well route the airport xoxox\n",
"s2615 teacher 😋 distErr = 0.3020605383563808 rankErr = 14 wrong predictions😂😅😢😁😉😌😎😏😭🙏🙌😀😔😤 with sentence: Open the bag \n",
"s2616 teacher 😤 distErr = 0.2522189972319981 rankErr = 10 wrong predictions😂😅😢😭😔😁😉😏😌😎 with sentence: I asked people to guess my zodiac sign and this one boy said a cancer \n",
"s2617 teacher 😂 distErr = 0.0319129149296888 rankErr = 0 wrong predictions with sentence: I regret this sm \n",
"s2618 teacher 😂 distErr = 0.07115668202893383 rankErr = 1 wrong predictions😅 with sentence: Fuck college \n",
"s2619 teacher 😂 distErr = 0.03482141800598803 rankErr = 0 wrong predictions with sentence: Aye this was my first time actually seeing it Wendy was off her Meds lol\n",
"{3: 169, 0: 556, 14: 52, 5: 144, 12: 73, 10: 131, 4: 122, 17: 50, 1: 213, 2: 166, 7: 139, 15: 98, 16: 85, 19: 35, 8: 112, 6: 84, 9: 94, 18: 123, 11: 116, 13: 58}\n"
]
}
],
"source": [
"tmp_dics = {}\n",
"for e,v in ed.data.items():\n",
" if(e in lookup_emojis):\n",
" tmp_dics[e] = ed.data[e]\n",
"\n",
"ranks, rank_distribution = visualize_prediction_distance(teacher_sents, prediction_sents, teacher_emojis, tmp_dics)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[(0, 556), (1, 213), (2, 166), (3, 169), (4, 122), (5, 144), (6, 84), (7, 139), (8, 112), (9, 94), (10, 131), (11, 116), (12, 73), (13, 58), (14, 52), (15, 98), (16, 85), (17, 50), (18, 123), (19, 35)]\n"
]
}
],
"source": [
"import operator\n",
"sorted_rank_distribution = sorted(rank_distribution.items(),key=operator.itemgetter(0))\n",
"\n",
"print(sorted_rank_distribution)"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<Figure size 640x480 with 1 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import matplotlib.pyplot as plt\n",
"\n",
"D = rank_distribution\n",
"sorted_indices = np.argsort(list(D.keys()))\n",
"\n",
"plt.bar(range(len(D)), np.array(list(D.values()))[sorted_indices], align='center')\n",
"plt.xticks(range(len(D)), np.array(list(D.keys()))[sorted_indices])\n",
"#plt.bar(range(len(D)), D[:][1], align='center')\n",
"#plt.xticks(range(len(D)), D[:][0])\n",
"\n",
"plt.show()"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([ 1, 8, 9, 0, 6, 3, 15, 10, 14, 16, 5, 18, 4, 19, 2, 11, 12,\n",
" 7, 17, 13])"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sorted_indices"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"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.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}