{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "accelerator": "GPU", "colab": { "name": "efi_en_starter_notebook.ipynb", "provenance": [], "collapsed_sections": [], "toc_visible": true, "include_colab_link": true }, "kernelspec": { "name": "python3", "display_name": "Python 3" }, "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.5.6" } }, "cells": [ { "cell_type": "markdown", "metadata": { "id": "view-in-github", "colab_type": "text" }, "source": [ "\"Open" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "Igc5itf-xMGj" }, "source": [ "# Masakhane - Machine Translation for African Languages (Using JoeyNMT)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "x4fXCKCf36IK" }, "source": [ "## Note before beginning:\n", "### - The idea is that you should be able to make minimal changes to this in order to get SOME result for your own translation corpus. \n", "\n", "### - The tl;dr: Go to the **\"TODO\"** comments which will tell you what to update to get up and running\n", "\n", "### - If you actually want to have a clue what you're doing, read the text and peek at the links\n", "\n", "### - With 100 epochs, it should take around 7 hours to run in Google Colab\n", "\n", "### - Once you've gotten a result for your language, please attach and email your notebook that generated it to masakhanetranslation@gmail.com\n", "\n", "### - If you care enough and get a chance, doing a brief background on your language would be amazing. See examples in [(Martinus, 2019)](https://arxiv.org/abs/1906.05685)" ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "l929HimrxS0a" }, "source": [ "## Retrieve your data & make a parallel corpus\n", "\n", "If you are wanting to use the JW300 data referenced on the Masakhane website or in our GitHub repo, you can use `opus-tools` to convert the data into a convenient format. `opus_read` from that package provides a convenient tool for reading the native aligned XML files and to convert them to TMX format. The tool can also be used to fetch relevant files from OPUS on the fly and to filter the data as necessary. [Read the documentation](https://pypi.org/project/opustools-pkg/) for more details.\n", "\n", "Once you have your corpus files in TMX format (an xml structure which will include the sentences in your target language and your source language in a single file), we recommend reading them into a pandas dataframe. Thankfully, Jade wrote a silly `tmx2dataframe` package which converts your tmx file to a pandas dataframe. " ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "oGRmDELn7Az0", "outputId": "a53911bf-2746-4121-f7e4-9e45656b3a89", "colab": { "base_uri": "https://localhost:8080/", "height": 122 } }, "source": [ "from google.colab import drive\n", "drive.mount('/content/drive')" ], "execution_count": 1, "outputs": [ { "output_type": "stream", "text": [ "Go to this URL in a browser: https://accounts.google.com/o/oauth2/auth?client_id=947318989803-6bn6qk8qdgf4n4g3pfee6491hc0brc4i.apps.googleusercontent.com&redirect_uri=urn%3aietf%3awg%3aoauth%3a2.0%3aoob&response_type=code&scope=email%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdocs.test%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdrive%20https%3a%2f%2fwww.googleapis.com%2fauth%2fdrive.photos.readonly%20https%3a%2f%2fwww.googleapis.com%2fauth%2fpeopleapi.readonly\n", "\n", "Enter your authorization code:\n", "··········\n", "Mounted at /content/drive\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "Cn3tgQLzUxwn", "colab": {} }, "source": [ "# TODO: Set your source and target languages. Keep in mind, these traditionally use language codes as found here:\n", "# These will also become the suffix's of all vocab and corpus files used throughout\n", "import os\n", "source_language = \"efi\"\n", "target_language = \"en\" \n", "lc = False # If True, lowercase the data.\n", "seed = 42 # Random seed for shuffling.\n", "tag = \"baseline\" # Give a unique name to your folder - this is to ensure you don't rewrite any models you've already submitted\n", "\n", "os.environ[\"src\"] = source_language # Sets them in bash as well, since we often use bash scripts\n", "os.environ[\"tgt\"] = target_language\n", "os.environ[\"tag\"] = tag\n", "\n", "# This will save it to a folder in our gdrive instead! \n", "!mkdir -p \"/content/drive/My Drive/masakhane/$src-$tgt-$tag\"\n", "g_drive_path = \"/content/drive/My Drive/masakhane/%s-%s-%s\" % (source_language, target_language, tag)\n", "os.environ[\"gdrive_path\"] = g_drive_path\n", "models_path = '%s/models/%s%s_transformer'% (g_drive_path, source_language, target_language)\n", "# model temporary directory for training\n", "model_temp_dir = \"/content/drive/My Drive/masakhane/model-temp\"\n", "# model permanent storage on the drive\n", "!mkdir -p \"$gdrive_path/models/${src}${tgt}_transformer/\"" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "kBSgJHEw7Nvx", "outputId": "5d26c4d1-a55d-4396-d820-5b5a37e44e15", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "!echo $gdrive_path" ], "execution_count": 3, "outputs": [ { "output_type": "stream", "text": [ "/content/drive/My Drive/masakhane/efi-en-baseline\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "gA75Fs9ys8Y9", "outputId": "dadd83c1-9b17-442a-b784-0af6cd22cf48", "colab": { "base_uri": "https://localhost:8080/", "height": 102 } }, "source": [ "#TODO: Skip for retrain\n", "# Install opus-tools\n", "! pip install opustools-pkg " ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "Collecting opustools-pkg\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/6c/9f/e829a0cceccc603450cd18e1ff80807b6237a88d9a8df2c0bb320796e900/opustools_pkg-0.0.52-py3-none-any.whl (80kB)\n", "\r\u001b[K |████ | 10kB 14.1MB/s eta 0:00:01\r\u001b[K |████████ | 20kB 1.7MB/s eta 0:00:01\r\u001b[K |████████████▏ | 30kB 2.5MB/s eta 0:00:01\r\u001b[K |████████████████▏ | 40kB 1.7MB/s eta 0:00:01\r\u001b[K |████████████████████▎ | 51kB 2.1MB/s eta 0:00:01\r\u001b[K |████████████████████████▎ | 61kB 2.5MB/s eta 0:00:01\r\u001b[K |████████████████████████████▎ | 71kB 2.9MB/s eta 0:00:01\r\u001b[K |████████████████████████████████| 81kB 2.6MB/s \n", "\u001b[?25hInstalling collected packages: opustools-pkg\n", "Successfully installed opustools-pkg-0.0.52\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "xq-tDZVks7ZD", "outputId": "092885f4-22a3-4b1f-e615-fbd7b4a58fd2", "colab": { "base_uri": "https://localhost:8080/", "height": 204 } }, "source": [ "#TODO: Skip for retrain\n", "# Downloading our corpus\n", "! opus_read -d JW300 -s $src -t $tgt -wm moses -w jw300.$src jw300.$tgt -q\n", "\n", "# extract the corpus file\n", "! gunzip JW300_latest_xml_$src-$tgt.xml.gz" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "\n", "Alignment file /proj/nlpl/data/OPUS/JW300/latest/xml/efi-en.xml.gz not found. The following files are available for downloading:\n", "\n", " 3 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/efi-en.xml.gz\n", " 36 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/efi.zip\n", " 263 MB https://object.pouta.csc.fi/OPUS-JW300/v1/xml/en.zip\n", "\n", " 303 MB Total size\n", "./JW300_latest_xml_efi-en.xml.gz ... 100% of 3 MB\n", "./JW300_latest_xml_efi.zip ... 100% of 36 MB\n", "./JW300_latest_xml_en.zip ... 100% of 263 MB\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "j2K6QK2NOaUX", "colab_type": "code", "outputId": "c3c33dcf-696f-41a6-b543-b6be3a20db3b", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "# extract the corpus file\n", "! gunzip JW300_latest_xml_$tgt-$src.xml.gz" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "gzip: JW300_latest_xml_en-efi.xml.gz: No such file or directory\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "n48GDRnP8y2G", "colab_type": "code", "outputId": "3c765279-6999-4977-c553-17cc87982fc0", "colab": { "base_uri": "https://localhost:8080/", "height": 578 } }, "source": [ "#TODO: Skip for retrain\n", "# Download the global test set.\n", "! wget https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-any.en\n", " \n", "# And the specific test set for this language pair.\n", "os.environ[\"trg\"] = target_language \n", "os.environ[\"src\"] = source_language \n", "\n", "! wget https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-$trg.en \n", "! mv test.en-$trg.en test.en\n", "! wget https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-$trg.$trg \n", "! mv test.en-$trg.$trg test.$trg" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "--2020-04-07 10:41:12-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-any.en\n", "Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ...\n", "Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.0.133|:443... connected.\n", "HTTP request sent, awaiting response... 200 OK\n", "Length: 277791 (271K) [text/plain]\n", "Saving to: ‘test.en-any.en’\n", "\n", "\rtest.en-any.en 0%[ ] 0 --.-KB/s \rtest.en-any.en 100%[===================>] 271.28K --.-KB/s in 0.1s \n", "\n", "2020-04-07 10:41:13 (2.35 MB/s) - ‘test.en-any.en’ saved [277791/277791]\n", "\n", "--2020-04-07 10:41:15-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-efi.en\n", "Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ...\n", "Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.0.133|:443... connected.\n", "HTTP request sent, awaiting response... 200 OK\n", "Length: 203603 (199K) [text/plain]\n", "Saving to: ‘test.en-efi.en’\n", "\n", "test.en-efi.en 100%[===================>] 198.83K --.-KB/s in 0.09s \n", "\n", "2020-04-07 10:41:16 (2.07 MB/s) - ‘test.en-efi.en’ saved [203603/203603]\n", "\n", "--2020-04-07 10:41:20-- https://raw.githubusercontent.com/juliakreutzer/masakhane/master/jw300_utils/test/test.en-efi.efi\n", "Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ...\n", "Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.0.133|:443... connected.\n", "HTTP request sent, awaiting response... 200 OK\n", "Length: 229202 (224K) [text/plain]\n", "Saving to: ‘test.en-efi.efi’\n", "\n", "test.en-efi.efi 100%[===================>] 223.83K --.-KB/s in 0.1s \n", "\n", "2020-04-07 10:41:20 (2.19 MB/s) - ‘test.en-efi.efi’ saved [229202/229202]\n", "\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "NqDG-CI28y2L", "colab_type": "code", "outputId": "ae596401-d6d3-4bb0-84d1-b2955c623cf1", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "#TODO: Skip for retrain\n", "# Read the test data to filter from train and dev splits.\n", "# Store english portion in set for quick filtering checks.\n", "en_test_sents = set()\n", "filter_test_sents = \"test.en-any.en\"\n", "j = 0\n", "with open(filter_test_sents) as f:\n", " for line in f:\n", " en_test_sents.add(line.strip())\n", " j += 1\n", "print('Loaded {} global test sentences to filter from the training/dev data.'.format(j))" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "Loaded 3571 global test sentences to filter from the training/dev data.\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "3CNdwLBCfSIl", "outputId": "51262d44-631c-494d-e3e8-c8547e74b8d9", "colab": { "base_uri": "https://localhost:8080/", "height": 159 } }, "source": [ "#TODO: Skip for retrain\n", "import pandas as pd\n", "\n", "# TMX file to dataframe\n", "source_file = 'jw300.' + source_language\n", "target_file = 'jw300.' + target_language\n", "\n", "source = []\n", "target = []\n", "skip_lines = [] # Collect the line numbers of the source portion to skip the same lines for the target portion.\n", "with open(source_file) as f:\n", " for i, line in enumerate(f):\n", " # Skip sentences that are contained in the test set.\n", " if line.strip() not in en_test_sents:\n", " source.append(line.strip())\n", " else:\n", " skip_lines.append(i) \n", "with open(target_file) as f:\n", " for j, line in enumerate(f):\n", " # Only add to corpus if corresponding source was not skipped.\n", " if j not in skip_lines:\n", " target.append(line.strip())\n", " \n", "print('Loaded data and skipped {}/{} lines since contained in test set.'.format(len(skip_lines), i))\n", " \n", "df = pd.DataFrame(zip(source, target), columns=['source_sentence', 'target_sentence'])\n", "# if you get TypeError: data argument can't be an iterator is because of your zip version run this below\n", "#df = pd.DataFrame(list(zip(source, target)), columns=['source_sentence', 'target_sentence'])\n", "df.head(10)" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "Loaded data and skipped 6113/377824 lines since contained in test set.\n" ], "name": "stdout" }, { "output_type": "execute_result", "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
source_sentencetarget_sentence
0© 2013 Watch Tower Bible and Tract Society of ...© 2013 Watch Tower Bible and Tract Society of ...
1All rights reserved .All rights reserved .
23 Watching the World3 Se Itịbede ke Ererimbot
\n", "
" ], "text/plain": [ " source_sentence target_sentence\n", "0 © 2013 Watch Tower Bible and Tract Society of ... © 2013 Watch Tower Bible and Tract Society of ...\n", "1 All rights reserved . All rights reserved .\n", "2 3 Watching the World 3 Se Itịbede ke Ererimbot" ] }, "metadata": { "tags": [] }, "execution_count": 22 } ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "YkuK3B4p2AkN" }, "source": [ "## Pre-processing and export\n", "\n", "It is generally a good idea to remove duplicate translations and conflicting translations from the corpus. In practice, these public corpora include some number of these that need to be cleaned.\n", "\n", "In addition we will split our data into dev/test/train and export to the filesystem." ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "M_2ouEOH1_1q", "outputId": "35d2bc54-ffce-4d04-decd-5269409e8d0d", "colab": { "base_uri": "https://localhost:8080/", "height": 187 } }, "source": [ "#TODO: Skip for retrain\n", "# drop duplicate translations\n", "df_pp = df.drop_duplicates()\n", "\n", "# drop conflicting translations\n", "# (this is optional and something that you might want to comment out \n", "# depending on the size of your corpus)\n", "df_pp.drop_duplicates(subset='source_sentence', inplace=True)\n", "df_pp.drop_duplicates(subset='target_sentence', inplace=True)\n", "\n", "# Shuffle the data to remove bias in dev set selection.\n", "df_pp = df_pp.sample(frac=1, random_state=seed).reset_index(drop=True)" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "/usr/local/lib/python3.6/dist-packages/ipykernel_launcher.py:6: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame\n", "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " \n", "/usr/local/lib/python3.6/dist-packages/ipykernel_launcher.py:7: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame\n", "\n", "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", " import sys\n" ], "name": "stderr" } ] }, { "cell_type": "code", "metadata": { "id": "Z_1BwAApEtMk", "colab_type": "code", "outputId": "e2e52063-3afc-44d6-eb80-4593c78529d9", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 } }, "source": [ "#TODO: Skip for retrain\n", "# Install fuzzy wuzzy to remove \"almost duplicate\" sentences in the\n", "# test and training sets.\n", "! pip install fuzzywuzzy\n", "! pip install python-Levenshtein\n", "import time\n", "from fuzzywuzzy import process\n", "import numpy as np\n", "\n", "# reset the index of the training set after previous filtering\n", "df_pp.reset_index(drop=False, inplace=True)\n", "\n", "# Remove samples from the training data set if they \"almost overlap\" with the\n", "# samples in the test set.\n", "\n", "# Filtering function. Adjust pad to narrow down the candidate matches to\n", "# within a certain length of characters of the given sample.\n", "def fuzzfilter(sample, candidates, pad):\n", " candidates = [x for x in candidates if len(x) <= len(sample)+pad and len(x) >= len(sample)-pad] \n", " if len(candidates) > 0:\n", " return process.extractOne(sample, candidates)[1]\n", " else:\n", " return np.nan\n", "\n", "# NOTE - This might run slow depending on the size of your training set. We are\n", "# printing some information to help you track how long it would take. \n", "scores = []\n", "start_time = time.time()\n", "for idx, row in df_pp.iterrows():\n", " scores.append(fuzzfilter(row['source_sentence'], list(en_test_sents), 5))\n", " if idx % 1000 == 0:\n", " hours, rem = divmod(time.time() - start_time, 3600)\n", " minutes, seconds = divmod(rem, 60)\n", " print(\"{:0>2}:{:0>2}:{:05.2f}\".format(int(hours),int(minutes),seconds), \"%0.2f percent complete\" % (100.0*float(idx)/float(len(df_pp))))\n", "\n", "# Filter out \"almost overlapping samples\"\n", "df_pp['scores'] = scores\n", "df_pp = df_pp[df_pp['scores'] < 95]" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "Collecting fuzzywuzzy\n", " Downloading https://files.pythonhosted.org/packages/43/ff/74f23998ad2f93b945c0309f825be92e04e0348e062026998b5eefef4c33/fuzzywuzzy-0.18.0-py2.py3-none-any.whl\n", "Installing collected packages: fuzzywuzzy\n", "Successfully installed fuzzywuzzy-0.18.0\n", "Collecting python-Levenshtein\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/42/a9/d1785c85ebf9b7dfacd08938dd028209c34a0ea3b1bcdb895208bd40a67d/python-Levenshtein-0.12.0.tar.gz (48kB)\n", "\u001b[K |████████████████████████████████| 51kB 911kB/s \n", "\u001b[?25hRequirement already satisfied: setuptools in /usr/local/lib/python3.6/dist-packages (from python-Levenshtein) (46.1.3)\n", "Building wheels for collected packages: python-Levenshtein\n", " Building wheel for python-Levenshtein (setup.py) ... \u001b[?25l\u001b[?25hdone\n", " Created wheel for python-Levenshtein: filename=python_Levenshtein-0.12.0-cp36-cp36m-linux_x86_64.whl size=144801 sha256=9a3225ef63aa0c469b1c17d2027ee01d92c08cfa2ceb1c887a5348413e5ae974\n", " Stored in directory: /root/.cache/pip/wheels/de/c2/93/660fd5f7559049268ad2dc6d81c4e39e9e36518766eaf7e342\n", "Successfully built python-Levenshtein\n", "Installing collected packages: python-Levenshtein\n", "Successfully installed python-Levenshtein-0.12.0\n", "00:00:00.13 0.00 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '— ― ― ― ― ― ― ―']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "00:00:23.47 0.30 percent complete\n", "00:00:47.23 0.59 percent complete\n", "00:01:13.23 0.89 percent complete\n", "00:01:37.25 1.19 percent complete\n", "00:02:00.91 1.48 percent complete\n", "00:02:25.30 1.78 percent complete\n", "00:02:48.69 2.08 percent complete\n", "00:03:12.44 2.37 percent complete\n", "00:03:36.68 2.67 percent complete\n", "00:04:00.63 2.97 percent complete\n", "00:04:26.31 3.26 percent complete\n", "00:04:50.18 3.56 percent complete\n", "00:05:14.62 3.86 percent complete\n", "00:05:38.29 4.15 percent complete\n", "00:06:01.78 4.45 percent complete\n", "00:06:25.15 4.75 percent complete\n", "00:06:48.09 5.04 percent complete\n", "00:07:11.21 5.34 percent complete\n", "00:07:35.76 5.64 percent complete\n", "00:07:58.99 5.93 percent complete\n", "00:08:22.42 6.23 percent complete\n", "00:08:46.08 6.53 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '↓']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "00:09:09.18 6.82 percent complete\n", "00:09:32.55 7.12 percent complete\n", "00:09:55.41 7.42 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '( — )']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "00:10:19.19 7.71 percent complete\n", "00:10:44.31 8.01 percent complete\n", "00:11:07.99 8.31 percent complete\n", "00:11:31.20 8.60 percent complete\n", "00:11:55.25 8.90 percent complete\n", "00:12:18.14 9.20 percent complete\n", "00:12:41.67 9.49 percent complete\n", "00:13:05.32 9.79 percent complete\n", "00:13:28.60 10.09 percent complete\n", "00:13:53.16 10.38 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '․ ․']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "00:14:17.50 10.68 percent complete\n", "00:14:40.37 10.98 percent complete\n", "00:15:03.19 11.27 percent complete\n", "00:15:25.76 11.57 percent complete\n", "00:15:48.21 11.87 percent complete\n", "00:16:09.87 12.16 percent complete\n", "00:16:32.29 12.46 percent complete\n", "00:16:54.84 12.76 percent complete\n", "00:17:17.29 13.05 percent complete\n", "00:17:39.13 13.35 percent complete\n", "00:18:01.50 13.65 percent complete\n", "00:18:23.71 13.94 percent complete\n", "00:18:45.92 14.24 percent complete\n", "00:19:08.43 14.54 percent complete\n", "00:19:31.39 14.83 percent complete\n", "00:19:54.26 15.13 percent complete\n", "00:20:17.94 15.43 percent complete\n", "00:20:40.82 15.72 percent complete\n", "00:21:03.51 16.02 percent complete\n", "00:21:26.55 16.32 percent complete\n", "00:21:49.64 16.61 percent complete\n", "00:22:13.80 16.91 percent complete\n", "00:22:37.37 17.21 percent complete\n", "00:23:00.26 17.50 percent complete\n", "00:23:25.15 17.80 percent complete\n", "00:23:48.26 18.10 percent complete\n", "00:24:11.21 18.39 percent complete\n", "00:24:34.04 18.69 percent complete\n", "00:24:56.74 18.99 percent complete\n", "00:25:19.01 19.28 percent complete\n", "00:25:41.69 19.58 percent complete\n", "00:26:04.84 19.88 percent complete\n", "00:26:29.16 20.17 percent complete\n", "00:26:52.43 20.47 percent complete\n", "00:27:15.01 20.77 percent complete\n", "00:27:37.87 21.06 percent complete\n", "00:28:00.65 21.36 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '” *']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "00:28:23.40 21.66 percent complete\n", "00:28:46.27 21.95 percent complete\n", "00:29:09.06 22.25 percent complete\n", "00:29:33.11 22.55 percent complete\n", "00:29:57.11 22.84 percent complete\n", "00:30:20.14 23.14 percent complete\n", "00:30:43.82 23.44 percent complete\n", "00:31:06.76 23.73 percent complete\n", "00:31:29.88 24.03 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '↓ ↓']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "00:31:52.30 24.33 percent complete\n", "00:32:15.66 24.62 percent complete\n", "00:32:40.29 24.92 percent complete\n", "00:33:02.85 25.22 percent complete\n", "00:33:25.97 25.51 percent complete\n", "00:33:48.88 25.81 percent complete\n", "00:34:11.92 26.11 percent complete\n", "00:34:35.40 26.40 percent complete\n", "00:34:58.44 26.70 percent complete\n", "00:35:20.72 27.00 percent complete\n", "00:35:45.28 27.29 percent complete\n", "00:36:08.34 27.59 percent complete\n", "00:36:30.78 27.89 percent complete\n", "00:36:53.86 28.18 percent complete\n", "00:37:16.93 28.48 percent complete\n", "00:37:39.37 28.78 percent complete\n", "00:38:01.55 29.07 percent complete\n", "00:38:24.13 29.37 percent complete\n", "00:38:46.95 29.67 percent complete\n", "00:39:09.10 29.96 percent complete\n", "00:39:31.78 30.26 percent complete\n", "00:39:54.70 30.56 percent complete\n", "00:40:17.46 30.85 percent complete\n", "00:40:39.90 31.15 percent complete\n", "00:41:02.42 31.45 percent complete\n", "00:41:25.00 31.74 percent complete\n", "00:41:50.09 32.04 percent complete\n", "00:42:13.37 32.34 percent complete\n", "00:42:36.77 32.63 percent complete\n", "00:42:59.84 32.93 percent complete\n", "00:43:22.86 33.22 percent complete\n", "00:43:45.40 33.52 percent complete\n", "00:44:07.65 33.82 percent complete\n", "00:44:30.24 34.11 percent complete\n", "00:44:55.85 34.41 percent complete\n", "00:45:19.59 34.71 percent complete\n", "00:45:41.81 35.00 percent complete\n", "00:46:04.30 35.30 percent complete\n", "00:46:26.59 35.60 percent complete\n", "00:46:49.92 35.89 percent complete\n", "00:47:12.58 36.19 percent complete\n", "00:47:34.90 36.49 percent complete\n", "00:47:58.93 36.78 percent complete\n", "00:48:22.48 37.08 percent complete\n", "00:48:44.88 37.38 percent complete\n", "00:49:07.35 37.67 percent complete\n", "00:49:30.35 37.97 percent complete\n", "00:49:52.94 38.27 percent complete\n", "00:50:14.24 38.56 percent complete\n", "00:50:36.92 38.86 percent complete\n", "00:50:59.67 39.16 percent complete\n", "00:51:24.09 39.45 percent complete\n", "00:51:46.38 39.75 percent complete\n", "00:52:09.23 40.05 percent complete\n", "00:52:32.24 40.34 percent complete\n", "00:52:54.81 40.64 percent complete\n", "00:53:17.69 40.94 percent complete\n", "00:53:39.72 41.23 percent complete\n", "00:54:01.82 41.53 percent complete\n", "00:54:26.20 41.83 percent complete\n", "00:54:48.55 42.12 percent complete\n", "00:55:10.52 42.42 percent complete\n", "00:55:32.68 42.72 percent complete\n", "00:55:55.67 43.01 percent complete\n", "00:56:18.44 43.31 percent complete\n", "00:56:40.94 43.61 percent complete\n", "00:57:03.85 43.90 percent complete\n", "00:57:27.84 44.20 percent complete\n", "00:57:49.66 44.50 percent complete\n", "00:58:11.60 44.79 percent complete\n", "00:58:33.86 45.09 percent complete\n", "00:58:55.68 45.39 percent complete\n", "00:59:18.18 45.68 percent complete\n", "00:59:40.52 45.98 percent complete\n", "01:00:03.42 46.28 percent complete\n", "01:00:27.65 46.57 percent complete\n", "01:00:49.76 46.87 percent complete\n", "01:01:12.39 47.17 percent complete\n", "01:01:35.22 47.46 percent complete\n", "01:01:58.23 47.76 percent complete\n", "01:02:20.14 48.06 percent complete\n", "01:02:42.49 48.35 percent complete\n", "01:03:04.59 48.65 percent complete\n", "01:03:28.70 48.95 percent complete\n", "01:03:51.20 49.24 percent complete\n", "01:04:13.59 49.54 percent complete\n", "01:04:35.44 49.84 percent complete\n", "01:04:58.54 50.13 percent complete\n", "01:05:21.00 50.43 percent complete\n", "01:05:43.43 50.73 percent complete\n", "01:06:05.97 51.02 percent complete\n", "01:06:30.57 51.32 percent complete\n", "01:06:52.87 51.62 percent complete\n", "01:07:15.94 51.91 percent complete\n", "01:07:38.22 52.21 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:08:00.90 52.51 percent complete\n", "01:08:22.99 52.80 percent complete\n", "01:08:45.79 53.10 percent complete\n", "01:09:08.16 53.40 percent complete\n", "01:09:32.58 53.69 percent complete\n", "01:09:55.15 53.99 percent complete\n", "01:10:18.09 54.29 percent complete\n", "01:10:40.50 54.58 percent complete\n", "01:11:02.40 54.88 percent complete\n", "01:11:25.19 55.18 percent complete\n", "01:11:47.70 55.47 percent complete\n", "01:12:10.46 55.77 percent complete\n", "01:12:34.70 56.07 percent complete\n", "01:12:57.22 56.36 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '․ ․ ․ ․ ․']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:13:19.96 56.66 percent complete\n", "01:13:42.75 56.96 percent complete\n", "01:14:05.51 57.25 percent complete\n", "01:14:27.86 57.55 percent complete\n", "01:14:50.01 57.85 percent complete\n", "01:15:12.64 58.14 percent complete\n", "01:15:39.06 58.44 percent complete\n", "01:16:01.64 58.74 percent complete\n", "01:16:24.32 59.03 percent complete\n", "01:16:47.36 59.33 percent complete\n", "01:17:09.02 59.63 percent complete\n", "01:17:32.17 59.92 percent complete\n", "01:17:54.54 60.22 percent complete\n", "01:18:17.28 60.52 percent complete\n", "01:18:42.43 60.81 percent complete\n", "01:19:05.78 61.11 percent complete\n", "01:19:27.88 61.41 percent complete\n", "01:19:49.97 61.70 percent complete\n", "01:20:12.37 62.00 percent complete\n", "01:20:34.77 62.30 percent complete\n", "01:20:57.64 62.59 percent complete\n", "01:21:20.01 62.89 percent complete\n", "01:21:43.90 63.19 percent complete\n", "01:22:06.63 63.48 percent complete\n", "01:22:29.08 63.78 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '*']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:22:51.12 64.08 percent complete\n", "01:23:14.11 64.37 percent complete\n", "01:23:37.09 64.67 percent complete\n", "01:24:00.07 64.97 percent complete\n", "01:24:23.24 65.26 percent complete\n", "01:24:46.84 65.56 percent complete\n", "01:25:11.42 65.86 percent complete\n", "01:25:34.14 66.15 percent complete\n", "01:25:57.85 66.45 percent complete\n", "01:26:21.15 66.75 percent complete\n", "01:26:44.18 67.04 percent complete\n", "01:27:06.11 67.34 percent complete\n", "01:27:28.17 67.64 percent complete\n", "01:27:50.68 67.93 percent complete\n", "01:28:16.04 68.23 percent complete\n", "01:28:38.68 68.53 percent complete\n", "01:29:01.66 68.82 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '”']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:29:23.92 69.12 percent complete\n", "01:29:47.07 69.42 percent complete\n", "01:30:10.07 69.71 percent complete\n", "01:30:34.07 70.01 percent complete\n", "01:30:57.53 70.31 percent complete\n", "01:31:24.58 70.60 percent complete\n", "01:31:47.52 70.90 percent complete\n", "01:32:10.81 71.20 percent complete\n", "01:32:33.92 71.49 percent complete\n", "01:32:57.01 71.79 percent complete\n", "01:33:18.97 72.09 percent complete\n", "01:33:41.68 72.38 percent complete\n", "01:34:04.01 72.68 percent complete\n", "01:34:29.55 72.98 percent complete\n", "01:34:53.10 73.27 percent complete\n", "01:35:16.17 73.57 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '⇩']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:35:39.54 73.87 percent complete\n", "01:36:02.24 74.16 percent complete\n", "01:36:25.48 74.46 percent complete\n", "01:36:48.49 74.76 percent complete\n", "01:37:10.46 75.05 percent complete\n", "01:37:36.30 75.35 percent complete\n", "01:37:59.14 75.65 percent complete\n", "01:38:22.44 75.94 percent complete\n", "01:38:44.61 76.24 percent complete\n", "01:39:06.57 76.54 percent complete\n", "01:39:29.21 76.83 percent complete\n", "01:39:52.37 77.13 percent complete\n", "01:40:15.33 77.43 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '↓ ↓ ↓ ↓']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:40:41.48 77.72 percent complete\n", "01:41:04.55 78.02 percent complete\n", "01:41:27.18 78.32 percent complete\n", "01:41:51.03 78.61 percent complete\n", "01:42:15.09 78.91 percent complete\n", "01:42:39.00 79.21 percent complete\n", "01:43:02.63 79.50 percent complete\n", "01:43:25.90 79.80 percent complete\n", "01:43:51.44 80.10 percent complete\n", "01:44:14.54 80.39 percent complete\n", "01:44:37.70 80.69 percent complete\n", "01:45:01.10 80.99 percent complete\n", "01:45:24.57 81.28 percent complete\n", "01:45:48.03 81.58 percent complete\n", "01:46:11.43 81.88 percent complete\n", "01:46:34.64 82.17 percent complete\n", "01:47:00.82 82.47 percent complete\n", "01:47:23.07 82.77 percent complete\n", "01:47:46.29 83.06 percent complete\n", "01:48:08.38 83.36 percent complete\n", "01:48:31.21 83.66 percent complete\n", "01:48:53.93 83.95 percent complete\n", "01:49:17.20 84.25 percent complete\n", "01:49:39.98 84.55 percent complete\n", "01:50:05.94 84.84 percent complete\n", "01:50:28.82 85.14 percent complete\n", "01:50:51.72 85.44 percent complete\n", "01:51:15.22 85.73 percent complete\n", "01:51:37.48 86.03 percent complete\n", "01:52:00.25 86.33 percent complete\n", "01:52:22.75 86.62 percent complete\n", "01:52:46.56 86.92 percent complete\n", "01:53:11.50 87.22 percent complete\n", "01:53:34.44 87.51 percent complete\n", "01:53:57.30 87.81 percent complete\n", "01:54:20.34 88.11 percent complete\n", "01:54:42.83 88.40 percent complete\n", "01:55:05.72 88.70 percent complete\n", "01:55:28.96 89.00 percent complete\n", "01:55:51.42 89.29 percent complete\n", "01:56:17.70 89.59 percent complete\n", "01:56:42.54 89.89 percent complete\n", "01:57:06.63 90.18 percent complete\n", "01:57:30.01 90.48 percent complete\n", "01:57:53.28 90.78 percent complete\n", "01:58:16.94 91.07 percent complete\n", "01:58:39.94 91.37 percent complete\n", "01:59:03.14 91.67 percent complete\n" ], "name": "stdout" }, { "output_type": "stream", "text": [ "WARNING:root:Applied processor reduces input query to empty string, all comparisons will have score 0. [Query: '\\']\n" ], "name": "stderr" }, { "output_type": "stream", "text": [ "01:59:27.71 91.96 percent complete\n", "01:59:53.34 92.26 percent complete\n", "02:00:15.96 92.56 percent complete\n", "02:00:38.31 92.85 percent complete\n", "02:01:01.63 93.15 percent complete\n", "02:01:25.17 93.45 percent complete\n", "02:01:47.62 93.74 percent complete\n", "02:02:10.33 94.04 percent complete\n", "02:02:33.31 94.34 percent complete\n", "02:02:57.88 94.63 percent complete\n", "02:03:19.49 94.93 percent complete\n", "02:03:42.46 95.23 percent complete\n", "02:04:04.82 95.52 percent complete\n", "02:04:27.72 95.82 percent complete\n", "02:04:50.36 96.12 percent complete\n", "02:05:13.34 96.41 percent complete\n", "02:05:35.17 96.71 percent complete\n", "02:06:00.93 97.01 percent complete\n", "02:06:23.25 97.30 percent complete\n", "02:06:45.72 97.60 percent complete\n", "02:07:07.80 97.89 percent complete\n", "02:07:30.31 98.19 percent complete\n", "02:07:52.66 98.49 percent complete\n", "02:08:14.26 98.78 percent complete\n", "02:08:36.20 99.08 percent complete\n", "02:09:01.21 99.38 percent complete\n", "02:09:23.58 99.67 percent complete\n", "02:09:46.32 99.97 percent complete\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "hxxBOCA-xXhy", "outputId": "2280d2fc-21de-4059-f546-53412f256823", "colab": { "base_uri": "https://localhost:8080/", "height": 819 } }, "source": [ "#TODO: Skip for retrain\n", "# This section does the split between train/dev for the parallel corpora then saves them as separate files\n", "# We use 1000 dev test and the given test set.\n", "import csv\n", "\n", "# Do the split between dev/train and create parallel corpora\n", "num_dev_patterns = 1000\n", "\n", "# Optional: lower case the corpora - this will make it easier to generalize, but without proper casing.\n", "if lc: # Julia: making lowercasing optional\n", " df_pp[\"source_sentence\"] = df_pp[\"source_sentence\"].str.lower()\n", " df_pp[\"target_sentence\"] = df_pp[\"target_sentence\"].str.lower()\n", "\n", "# Julia: test sets are already generated\n", "dev = df_pp.tail(num_dev_patterns) # Herman: Error in original\n", "stripped = df_pp.drop(df_pp.tail(num_dev_patterns).index)\n", "\n", "with open(\"train.\"+source_language, \"w\") as src_file, open(\"train.\"+target_language, \"w\") as trg_file:\n", " for index, row in stripped.iterrows():\n", " src_file.write(row[\"source_sentence\"]+\"\\n\")\n", " trg_file.write(row[\"target_sentence\"]+\"\\n\")\n", " \n", "with open(\"dev.\"+source_language, \"w\") as src_file, open(\"dev.\"+target_language, \"w\") as trg_file:\n", " for index, row in dev.iterrows():\n", " src_file.write(row[\"source_sentence\"]+\"\\n\")\n", " trg_file.write(row[\"target_sentence\"]+\"\\n\")\n", "\n", "#stripped[[\"source_sentence\"]].to_csv(\"train.\"+source_language, header=False, index=False) # Herman: Added `header=False` everywhere\n", "#stripped[[\"target_sentence\"]].to_csv(\"train.\"+target_language, header=False, index=False) # Julia: Problematic handling of quotation marks.\n", "\n", "#dev[[\"source_sentence\"]].to_csv(\"dev.\"+source_language, header=False, index=False)\n", "#dev[[\"target_sentence\"]].to_csv(\"dev.\"+target_language, header=False, index=False)\n", "\n", "# Doublecheck the format below. There should be no extra quotation marks or weird characters.\n", "! head train.*\n", "! head dev.*" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "==> train.efi <==\n", "Isaiah 9 : 7 ọdọho ke Eyen Abasi edidi Edidem ye nte ke enye ayanam ediwak nti n̄kpọ ọnọ ubonowo . “ Ifịk Jehovah mme udịm edinam emi . ”\n", "The New Encyclopædia Britannica ọdọhọ ke Mme Ntiense Jehovah “ ẹdu uwem nte Bible etemede . ”\n", "Mmọ ẹkesụk ẹdu ke ini emi wheat ye mbiet ẹkọride ọtọkiet , ndien owo ikokụreke kan̄a ndutịm oro ẹkenamde man ẹnyene mbon emi ẹdisinọde mme owo udia eke spirit .\n", "SIO INI NỊM NDINAM ITIE UFAN ỌKỌRI .\n", "Ndien ami nyeben̄e ekụri nsiak ifia nnịm nnọ enye edida etem udia .\n", "Ini kiet , mma ntọhọ nnyụn̄ n̄n̄wana ye owo unek emi eketiede ubi ubi , nnyụn̄ mmia unamikọt nsio ntop nduọk ko !\n", "Edi Andibot ọmọn̄wọn̄ọ ete ke imọ iyọsọp ida utịt isọk ererimbot n̄kaowo oro odude ke emi ke idak ukara Satan kpa Devil .\n", "Ami ye Roy ima idomo ndidu uwem ekekem ye enyịn̄ oro ebe ke ndibuana ke kpukpru usụn̄ ukwọrọikọ ye ubịnikọt oro esop ekesịnde udọn̄ ọnọ .\n", "T .\n", "Sylvia emi edide nurse ọdọhọ ete : “ Ediwak mbon oro ikakade n̄wed ntre ẹma ẹsika ufọkabasi .\n", "\n", "==> train.en <==\n", "Referring to what the rulership of God’s Son will accomplish , Isaiah 9 : 7 says : “ The very zeal of Jehovah of armies will do this . ”\n", "The New Encyclopædia Britannica observes that Jehovah’s Witnesses “ insist upon a high moral code in personal conduct . ”\n", "They were still in the growing season , and the arrangement for a channel to provide spiritual food was still taking shape .\n", "MAKE TIME TO CULTIVATE A FRIENDSHIP .\n", "In the meantime , I would borrow an ax to chop firewood for cooking .\n", "On one occasion , I got into a fight with a sinister - looking customer but handled him easily .\n", "But the Creator has promised that he will soon bring an end to the present world society that is under the control of Satan the Devil .\n", "Roy and I endeavored to live up to that name by sharing in all the preaching methods and campaigns that the organization encouraged .\n", "T .\n", "“ I went to college with many who claimed to be religious , ” says Sylvia , who works in the health - care business .\n", "==> dev.efi <==\n", "Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "Jehovah ama odu ye enye . ”\n", "Ikebịghike - bịghi , ye edisio A Facsimile Edition of the Dead Sea Scrolls ( Nsiondi Mme Ata Ata Ikpan̄wed Inyan̄ Inụn̄ ) , ẹma ẹkeme ndikụt mme ndise ikpan̄wed oro owo mîkosioho ke mbemiso mmemmem mmemmem .\n", "Esịt ama enem enye etieti .\n", "Ke 2014 , obufa ọfiọn̄ emi ekperede usen emi uwemeyo ye okoneyo ẹsidide ukem ukem ediduọ ke March 30 , ke ayakde minit 15 ndimia n̄kanika usụkkiet okoneyo ke Jerusalem .\n", "Oro akanam iyom nditiene n̄kwọrọ etop emi .\n", "Mbon oro ẹmade eti n̄kpọ kpọt ẹdinyịme .\n", "\n", "==> dev.en <==\n", "If you do , you will be choosing the best possible way of life .\n", "They may even have been told as much by a clergyman .\n", "The same point is made at 2 Chronicles 5 : 9 .\n", "59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "Jehovah was with him . ”\n", "Before long , with the publication of A Facsimile Edition of the Dead Sea Scrolls , photographs of the previously unpublished scrolls became easily accessible .\n", "What joy that brought her !\n", "( 20 : 45 ) , Jerusalem time . The following sunset in Jerusalem ( March 31 ) will come about 21 hours later .\n", "All the more reason for us to join in the proclamation .\n", "Only people who love what is good will accept him .\n" ], "name": "stdout" } ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "epeCydmCyS8X" }, "source": [ "\n", "\n", "---\n", "\n", "\n", "## Installation of JoeyNMT\n", "\n", "JoeyNMT is a simple, minimalist NMT package which is useful for learning and teaching. Check out the documentation for JoeyNMT [here](https://joeynmt.readthedocs.io) " ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "iBRMm4kMxZ8L", "outputId": "45edf127-cd2f-46f7-f8fa-512e571b2761", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 } }, "source": [ "# Install JoeyNMT\n", "! git clone https://github.com/joeynmt/joeynmt.git\n", "! cd joeynmt; pip3 install ." ], "execution_count": 4, "outputs": [ { "output_type": "stream", "text": [ "Cloning into 'joeynmt'...\n", "remote: Enumerating objects: 3, done.\u001b[K\n", "remote: Counting objects: 100% (3/3), done.\u001b[K\n", "remote: Compressing objects: 100% (3/3), done.\u001b[K\n", "remote: Total 2380 (delta 0), reused 0 (delta 0), pack-reused 2377\u001b[K\n", "Receiving objects: 100% (2380/2380), 2.60 MiB | 1.70 MiB/s, done.\n", "Resolving deltas: 100% (1670/1670), done.\n", "Processing /content/joeynmt\n", "Requirement already satisfied: future in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (0.16.0)\n", "Requirement already satisfied: pillow in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (7.0.0)\n", "Requirement already satisfied: numpy<2.0,>=1.14.5 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (1.18.2)\n", "Requirement already satisfied: setuptools>=41.0.0 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (46.1.3)\n", "Requirement already satisfied: torch>=1.1 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (1.4.0)\n", "Requirement already satisfied: tensorflow>=1.14 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (2.2.0rc2)\n", "Requirement already satisfied: torchtext in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (0.3.1)\n", "Collecting sacrebleu>=1.3.6\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/f5/58/5c6cc352ea6271125325950715cf8b59b77abe5e93cf29f6e60b491a31d9/sacrebleu-1.4.6-py3-none-any.whl (59kB)\n", "\u001b[K |████████████████████████████████| 61kB 6.3MB/s \n", "\u001b[?25hCollecting subword-nmt\n", " Downloading https://files.pythonhosted.org/packages/74/60/6600a7bc09e7ab38bc53a48a20d8cae49b837f93f5842a41fe513a694912/subword_nmt-0.3.7-py2.py3-none-any.whl\n", "Requirement already satisfied: matplotlib in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (3.2.1)\n", "Requirement already satisfied: seaborn in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (0.10.0)\n", "Collecting pyyaml>=5.1\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/64/c2/b80047c7ac2478f9501676c988a5411ed5572f35d1beff9cae07d321512c/PyYAML-5.3.1.tar.gz (269kB)\n", "\u001b[K |████████████████████████████████| 276kB 9.5MB/s \n", "\u001b[?25hCollecting pylint\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/e9/59/43fc36c5ee316bb9aeb7cf5329cdbdca89e5749c34d5602753827c0aa2dc/pylint-2.4.4-py3-none-any.whl (302kB)\n", "\u001b[K |████████████████████████████████| 307kB 39.8MB/s \n", "\u001b[?25hRequirement already satisfied: six==1.12 in /usr/local/lib/python3.6/dist-packages (from joeynmt==0.0.1) (1.12.0)\n", "Collecting wrapt==1.11.1\n", " Downloading https://files.pythonhosted.org/packages/67/b2/0f71ca90b0ade7fad27e3d20327c996c6252a2ffe88f50a95bba7434eda9/wrapt-1.11.1.tar.gz\n", "Requirement already satisfied: tensorboard<2.3.0,>=2.2.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (2.2.0)\n", "Requirement already satisfied: opt-einsum>=2.3.2 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (3.2.0)\n", "Requirement already satisfied: scipy==1.4.1; python_version >= \"3\" in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.4.1)\n", "Requirement already satisfied: tensorflow-estimator<2.3.0,>=2.2.0rc0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (2.2.0rc0)\n", "Requirement already satisfied: astunparse==1.6.3 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.6.3)\n", "Requirement already satisfied: protobuf>=3.8.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (3.10.0)\n", "Requirement already satisfied: keras-preprocessing>=1.1.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.1.0)\n", "Requirement already satisfied: google-pasta>=0.1.8 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.2.0)\n", "Requirement already satisfied: grpcio>=1.8.6 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.27.2)\n", "Requirement already satisfied: absl-py>=0.7.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.9.0)\n", "Requirement already satisfied: gast==0.3.3 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.3.3)\n", "Requirement already satisfied: wheel>=0.26; python_version >= \"3\" in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (0.34.2)\n", "Requirement already satisfied: termcolor>=1.1.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (1.1.0)\n", "Requirement already satisfied: h5py<2.11.0,>=2.10.0 in /usr/local/lib/python3.6/dist-packages (from tensorflow>=1.14->joeynmt==0.0.1) (2.10.0)\n", "Requirement already satisfied: requests in /usr/local/lib/python3.6/dist-packages (from torchtext->joeynmt==0.0.1) (2.21.0)\n", "Requirement already satisfied: tqdm in /usr/local/lib/python3.6/dist-packages (from torchtext->joeynmt==0.0.1) (4.38.0)\n", "Collecting mecab-python3\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/18/49/b55a839a77189042960bf96490640c44816073f917d489acbc5d79fa5cc3/mecab_python3-0.996.5-cp36-cp36m-manylinux2010_x86_64.whl (17.1MB)\n", "\u001b[K |████████████████████████████████| 17.1MB 204kB/s \n", "\u001b[?25hRequirement already satisfied: typing in /usr/local/lib/python3.6/dist-packages (from sacrebleu>=1.3.6->joeynmt==0.0.1) (3.6.6)\n", "Collecting portalocker\n", " Downloading https://files.pythonhosted.org/packages/64/03/9abfb3374d67838daf24f1a388528714bec1debb1d13749f0abd7fb07cfb/portalocker-1.6.0-py2.py3-none-any.whl\n", "Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->joeynmt==0.0.1) (1.2.0)\n", "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->joeynmt==0.0.1) (2.4.6)\n", "Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.6/dist-packages (from matplotlib->joeynmt==0.0.1) (2.8.1)\n", "Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.6/dist-packages (from matplotlib->joeynmt==0.0.1) (0.10.0)\n", "Requirement already satisfied: pandas>=0.22.0 in /usr/local/lib/python3.6/dist-packages (from seaborn->joeynmt==0.0.1) (1.0.3)\n", "Collecting isort<5,>=4.2.5\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/e5/b0/c121fd1fa3419ea9bfd55c7f9c4fedfec5143208d8c7ad3ce3db6c623c21/isort-4.3.21-py2.py3-none-any.whl (42kB)\n", "\u001b[K |████████████████████████████████| 51kB 9.7MB/s \n", "\u001b[?25hCollecting mccabe<0.7,>=0.6\n", " Downloading https://files.pythonhosted.org/packages/87/89/479dc97e18549e21354893e4ee4ef36db1d237534982482c3681ee6e7b57/mccabe-0.6.1-py2.py3-none-any.whl\n", "Collecting astroid<2.4,>=2.3.0\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/ad/ae/86734823047962e7b8c8529186a1ac4a7ca19aaf1aa0c7713c022ef593fd/astroid-2.3.3-py3-none-any.whl (205kB)\n", "\u001b[K |████████████████████████████████| 215kB 61.2MB/s \n", "\u001b[?25hRequirement already satisfied: google-auth-oauthlib<0.5,>=0.4.1 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (0.4.1)\n", "Requirement already satisfied: tensorboard-plugin-wit>=1.6.0 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (1.6.0.post2)\n", "Requirement already satisfied: markdown>=2.6.8 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (3.2.1)\n", "Requirement already satisfied: werkzeug>=0.11.15 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (1.0.1)\n", "Requirement already satisfied: google-auth<2,>=1.6.3 in /usr/local/lib/python3.6/dist-packages (from tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (1.7.2)\n", "Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /usr/local/lib/python3.6/dist-packages (from requests->torchtext->joeynmt==0.0.1) (3.0.4)\n", "Requirement already satisfied: idna<2.9,>=2.5 in /usr/local/lib/python3.6/dist-packages (from requests->torchtext->joeynmt==0.0.1) (2.8)\n", "Requirement already satisfied: urllib3<1.25,>=1.21.1 in /usr/local/lib/python3.6/dist-packages (from requests->torchtext->joeynmt==0.0.1) (1.24.3)\n", "Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.6/dist-packages (from requests->torchtext->joeynmt==0.0.1) (2019.11.28)\n", "Requirement already satisfied: pytz>=2017.2 in /usr/local/lib/python3.6/dist-packages (from pandas>=0.22.0->seaborn->joeynmt==0.0.1) (2018.9)\n", "Collecting typed-ast<1.5,>=1.4.0; implementation_name == \"cpython\" and python_version < \"3.8\"\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/90/ed/5459080d95eb87a02fe860d447197be63b6e2b5e9ff73c2b0a85622994f4/typed_ast-1.4.1-cp36-cp36m-manylinux1_x86_64.whl (737kB)\n", "\u001b[K |████████████████████████████████| 747kB 53.4MB/s \n", "\u001b[?25hCollecting lazy-object-proxy==1.4.*\n", "\u001b[?25l Downloading https://files.pythonhosted.org/packages/0b/dd/b1e3407e9e6913cf178e506cd0dee818e58694d9a5cd1984e3f6a8b9a10f/lazy_object_proxy-1.4.3-cp36-cp36m-manylinux1_x86_64.whl (55kB)\n", "\u001b[K |████████████████████████████████| 61kB 10.8MB/s \n", "\u001b[?25hRequirement already satisfied: requests-oauthlib>=0.7.0 in /usr/local/lib/python3.6/dist-packages (from google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (1.3.0)\n", "Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (0.2.8)\n", "Requirement already satisfied: rsa<4.1,>=3.1.4 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (4.0)\n", "Requirement already satisfied: cachetools<3.2,>=2.0.0 in /usr/local/lib/python3.6/dist-packages (from google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (3.1.1)\n", "Requirement already satisfied: oauthlib>=3.0.0 in /usr/local/lib/python3.6/dist-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<0.5,>=0.4.1->tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (3.1.0)\n", "Requirement already satisfied: pyasn1<0.5.0,>=0.4.6 in /usr/local/lib/python3.6/dist-packages (from pyasn1-modules>=0.2.1->google-auth<2,>=1.6.3->tensorboard<2.3.0,>=2.2.0->tensorflow>=1.14->joeynmt==0.0.1) (0.4.8)\n", "Building wheels for collected packages: joeynmt, pyyaml, wrapt\n", " Building wheel for joeynmt (setup.py) ... \u001b[?25l\u001b[?25hdone\n", " Created wheel for joeynmt: filename=joeynmt-0.0.1-cp36-none-any.whl size=73768 sha256=800dfbc5f682857686d8708ff7bcf7db31d2634b9fd6befdf04b750ce0dada12\n", " Stored in directory: /tmp/pip-ephem-wheel-cache-pyy4g0pg/wheels/db/01/db/751cc9f3e7f6faec127c43644ba250a3ea7ad200594aeda70a\n", " Building wheel for pyyaml (setup.py) ... \u001b[?25l\u001b[?25hdone\n", " Created wheel for pyyaml: filename=PyYAML-5.3.1-cp36-cp36m-linux_x86_64.whl size=44621 sha256=6857cb79a1e7868b32db146daa91daca16dfe9b717e34a84dbae1be756502db6\n", " Stored in directory: /root/.cache/pip/wheels/a7/c1/ea/cf5bd31012e735dc1dfea3131a2d5eae7978b251083d6247bd\n", " Building wheel for wrapt (setup.py) ... \u001b[?25l\u001b[?25hdone\n", " Created wheel for wrapt: filename=wrapt-1.11.1-cp36-cp36m-linux_x86_64.whl size=67437 sha256=3532f2946c26084c0d93c0c86a4761026397f3eaaffba08167df6f08eaaf263b\n", " Stored in directory: /root/.cache/pip/wheels/89/67/41/63cbf0f6ac0a6156588b9587be4db5565f8c6d8ccef98202fc\n", "Successfully built joeynmt pyyaml wrapt\n", "Installing collected packages: mecab-python3, portalocker, sacrebleu, subword-nmt, pyyaml, isort, mccabe, wrapt, typed-ast, lazy-object-proxy, astroid, pylint, joeynmt\n", " Found existing installation: PyYAML 3.13\n", " Uninstalling PyYAML-3.13:\n", " Successfully uninstalled PyYAML-3.13\n", " Found existing installation: wrapt 1.12.1\n", " Uninstalling wrapt-1.12.1:\n", " Successfully uninstalled wrapt-1.12.1\n", "Successfully installed astroid-2.3.3 isort-4.3.21 joeynmt-0.0.1 lazy-object-proxy-1.4.3 mccabe-0.6.1 mecab-python3-0.996.5 portalocker-1.6.0 pylint-2.4.4 pyyaml-5.3.1 sacrebleu-1.4.6 subword-nmt-0.3.7 typed-ast-1.4.1 wrapt-1.11.1\n" ], "name": "stdout" } ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "AaE77Tcppex9" }, "source": [ "# Preprocessing the Data into Subword BPE Tokens\n", "\n", "- One of the most powerful improvements for agglutinative languages (a feature of most Bantu languages) is using BPE tokenization [ (Sennrich, 2015) ](https://arxiv.org/abs/1508.07909).\n", "\n", "- It was also shown that by optimizing the umber of BPE codes we significantly improve results for low-resourced languages [(Sennrich, 2019)](https://www.aclweb.org/anthology/P19-1021) [(Martinus, 2019)](https://arxiv.org/abs/1906.05685)\n", "\n", "- Below we have the scripts for doing BPE tokenization of our data. We use 4000 tokens as recommended by [(Sennrich, 2019)](https://www.aclweb.org/anthology/P19-1021). You do not need to change anything. Simply running the below will be suitable. " ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "H-TyjtmXB1mL", "outputId": "30ee4eff-3e72-4f7f-c0ac-f76f0dcf75b9", "colab": { "base_uri": "https://localhost:8080/", "height": 459 } }, "source": [ "#TODO: Skip for retrain\n", "# One of the huge boosts in NMT performance was to use a different method of tokenizing. \n", "# Usually, NMT would tokenize by words. However, using a method called BPE gave amazing boosts to performance\n", "\n", "# Do subword NMT\n", "from os import path\n", "os.environ[\"src\"] = source_language # Sets them in bash as well, since we often use bash scripts\n", "os.environ[\"tgt\"] = target_language\n", "\n", "# Learn BPEs on the training data.\n", "os.environ[\"data_path\"] = path.join(\"joeynmt\", \"data\", source_language + target_language) # Herman! \n", "! subword-nmt learn-joint-bpe-and-vocab --input train.$src train.$tgt -s 4000 -o bpe.codes.4000 --write-vocabulary vocab.$src vocab.$tgt\n", "\n", "# Apply BPE splits to the development and test data.\n", "! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$src < train.$src > train.bpe.$src\n", "! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$tgt < train.$tgt > train.bpe.$tgt\n", "\n", "! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$src < dev.$src > dev.bpe.$src\n", "! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$tgt < dev.$tgt > dev.bpe.$tgt\n", "! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$src < test.$src > test.bpe.$src\n", "! subword-nmt apply-bpe -c bpe.codes.4000 --vocabulary vocab.$tgt < test.$tgt > test.bpe.$tgt\n", "\n", "# Create directory, move everyone we care about to the correct location\n", "! mkdir -p $data_path\n", "! cp train.* $data_path\n", "! cp test.* $data_path\n", "! cp dev.* $data_path\n", "! cp bpe.codes.4000 $data_path\n", "! ls $data_path\n", "\n", "# Also move everything we care about to a mounted location in google drive (relevant if running in colab) at gdrive_path\n", "! cp train.* \"$gdrive_path\"\n", "! cp test.* \"$gdrive_path\"\n", "! cp dev.* \"$gdrive_path\"\n", "! cp bpe.codes.4000 \"$gdrive_path\"\n", "! ls \"$gdrive_path\"\n", "\n", "# Create that vocab using build_vocab\n", "! sudo chmod 777 joeynmt/scripts/build_vocab.py\n", "! joeynmt/scripts/build_vocab.py joeynmt/data/$src$tgt/train.bpe.$src joeynmt/data/$src$tgt/train.bpe.$tgt --output_path \"$gdrive_path/vocab.txt\"\n", "\n", "# Some output\n", "! echo \"BPE Xhosa Sentences\"\n", "! tail -n 5 test.bpe.$tgt\n", "! echo \"Combined BPE Vocab\"\n", "! tail -n 10 \"$gdrive_path/vocab.txt\" # Herman" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "bpe.codes.4000\tdev.efi test.bpe.en test.en-any.en train.efi\n", "dev.bpe.efi\tdev.en\t test.efi\t train.bpe.efi train.en\n", "dev.bpe.en\ttest.bpe.efi test.en\t train.bpe.en\n", "1000.hyps 4000.hyps\t dev.efi\t test.bpe.en\t train.bpe.en\n", "2000.ckpt best.ckpt\t dev.en\t test.efi\t train.efi\n", "2000.hyps bpe.codes.4000 models\t test.en\t train.en\n", "3000.ckpt config.yaml\t src_vocab.txt test.en-any.en train.log\n", "3000.hyps dev.bpe.efi\t tensorboard\t test.en-any.en.1 trg_vocab.txt\n", "4000.ckpt dev.bpe.en\t test.bpe.efi train.bpe.efi validations.txt\n", "BPE Xhosa Sentences\n", "18 , 19 . ( a ) Didie ke nditọete ke esop mbufo ẹkeme ndin̄wam fi ada san̄asan̄a ?\n", "“ Ndi@@ tie n̄kere se Mme N̄ke 27 : 11 , Matthew 26 : 5@@ 2 , ye John 13 : 35 ẹdọhọde ama an̄wam mi nt@@ etịm mb@@ iere ke ndid@@ ụk@@ ke ekọn̄ .\n", "Mme itie N̄wed Abasi emi ama anam esịt ana mi sụn̄ ke ini afanikọn̄ emi . ” — A@@ nd@@ ri@@ y emi otode Uk@@ ra@@ ine .\n", "“ Isaiah 2 : 4 ama an̄wam mi n̄ka iso nda san̄asan̄a ke ini idomo .\n", "Mma n@@ tie n̄kere nte uwem ed@@ inem@@ de ke obufa ererimbot , ke ini mme owo mîdi@@ d@@ aha n̄kpọ@@ ekọn̄ iw@@ ot owo . ” — W@@ il@@ m@@ er emi otode C@@ olo@@ mb@@ ia .\n", "Combined BPE Vocab\n", "ō\n", "ι\n", "⁄\n", "◀\n", "ˋ@@\n", "/@@\n", "ā\n", "Α@@\n", "bless@@\n", ";@@\n" ], "name": "stdout" } ] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "Ixmzi60WsUZ8" }, "source": [ "# Creating the JoeyNMT Config\n", "\n", "JoeyNMT requires a yaml config. We provide a template below. We've also set a number of defaults with it, that you may play with!\n", "\n", "- We used Transformer architecture \n", "- We set our dropout to reasonably high: 0.3 (recommended in [(Sennrich, 2019)](https://www.aclweb.org/anthology/P19-1021))\n", "\n", "Things worth playing with:\n", "- The batch size (also recommended to change for low-resourced languages)\n", "- The number of epochs (we've set it at 30 just so it runs in about an hour, for testing purposes)\n", "- The decoder options (beam_size, alpha)\n", "- Evaluation metrics (BLEU versus Crhf4)" ] }, { "cell_type": "code", "metadata": { "id": "Wc47fvWqyxbd", "colab_type": "code", "colab": {} }, "source": [ "def get_last_checkpoint(directory):\n", " last_checkpoint = ''\n", " try:\n", " for filename in os.listdir(directory):\n", " if 'best' in filename and filename.endswith(\".ckpt\"):\n", " return filename\n", " if not 'best' in filename and filename.endswith(\".ckpt\"):\n", " if not last_checkpoint or int(filename.split('.')[0]) > int(last_checkpoint.split('.')[0]):\n", " last_checkpoint = filename\n", " except FileNotFoundError as e:\n", " print('Error Occur ', e)\n", " return last_checkpoint" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "id": "x_ffEoFdy1Qo", "colab_type": "code", "outputId": "57d9ff37-3d8e-48ac-ad17-d9897c539174", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "# Copy the created models from the temporary storage to main storage on google drive for persistant storage \n", "# the content of te folder will be overwrite when you start trainin\n", "!cp -r \"/content/drive/My Drive/masakhane/model-temp/\"* \"$gdrive_path/models/${src}${tgt}_transformer/\"\n", "last_checkpoint = get_last_checkpoint(models_path)\n", "print('Last checkpoint :',last_checkpoint)" ], "execution_count": 6, "outputs": [ { "output_type": "stream", "text": [ "Last checkpoint : best.ckpt\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "PIs1lY2hxMsl", "colab": {} }, "source": [ "# This creates the config file for our JoeyNMT system. It might seem overwhelming so we've provided a couple of useful parameters you'll need to update\n", "# (You can of course play with all the parameters if you'd like!)\n", "\n", "name = '%s%s' % (source_language, target_language)\n", "gdrive_path = os.environ[\"gdrive_path\"]\n", "\n", "# Create the config\n", "config = \"\"\"\n", "name: \"{name}_transformer\"\n", "\n", "data:\n", " src: \"{source_language}\"\n", " trg: \"{target_language}\"\n", " train: \"{gdrive_path}/train.bpe\"\n", " dev: \"{gdrive_path}/dev.bpe\"\n", " test: \"{gdrive_path}/test.bpe\"\n", " level: \"bpe\"\n", " lowercase: False\n", " max_sent_length: 100\n", " src_vocab: \"{gdrive_path}/vocab.txt\"\n", " trg_vocab: \"{gdrive_path}/vocab.txt\"\n", "\n", "testing:\n", " beam_size: 5\n", " alpha: 1.0\n", "\n", "training:\n", " #load_model: \"{gdrive_path}/models/{name}_transformer/{last_checkpoint}\" # TODO: uncommented to load a pre-trained model from last checkpoint\n", " random_seed: 42\n", " optimizer: \"adam\"\n", " normalization: \"tokens\"\n", " adam_betas: [0.9, 0.999] \n", " scheduling: \"plateau\" # TODO: try switching from plateau to Noam scheduling\n", " patience: 5 # For plateau: decrease learning rate by decrease_factor if validation score has not improved for this many validation rounds.\n", " learning_rate_factor: 0.5 # factor for Noam scheduler (used with Transformer)\n", " learning_rate_warmup: 1000 # warmup steps for Noam scheduler (used with Transformer)\n", " decrease_factor: 0.7\n", " loss: \"crossentropy\"\n", " learning_rate: 0.0003\n", " learning_rate_min: 0.00000001\n", " weight_decay: 0.0\n", " label_smoothing: 0.1\n", " batch_size: 4096\n", " batch_type: \"token\"\n", " eval_batch_size: 3600\n", " eval_batch_type: \"token\"\n", " batch_multiplier: 1\n", " early_stopping_metric: \"ppl\"\n", " epochs: 50 # TODO: Decrease for when playing around and checking of working. Around 30 is sufficient to check if its working at all\n", " validation_freq: 1000 # TODO: Set to at least once per epoch.\n", " logging_freq: 100\n", " eval_metric: \"bleu\"\n", " model_dir: \"{model_temp_dir}\"\n", " overwrite: True # TODO: Set to True if you want to overwrite possibly existing models. \n", " shuffle: True\n", " use_cuda: True\n", " max_output_length: 100\n", " print_valid_sents: [0, 1, 2, 3]\n", " keep_last_ckpts: 3\n", "\n", "model:\n", " initializer: \"xavier\"\n", " bias_initializer: \"zeros\"\n", " init_gain: 1.0\n", " embed_initializer: \"xavier\"\n", " embed_init_gain: 1.0\n", " tied_embeddings: True\n", " tied_softmax: True\n", " encoder:\n", " type: \"transformer\"\n", " num_layers: 6\n", " num_heads: 4 # TODO: Increase to 8 for larger data.\n", " embeddings:\n", " embedding_dim: 256 # TODO: Increase to 512 for larger data.\n", " scale: True\n", " dropout: 0.2\n", " # typically ff_size = 4 x hidden_size\n", " hidden_size: 256 # TODO: Increase to 512 for larger data.\n", " ff_size: 1024 # TODO: Increase to 2048 for larger data.\n", " dropout: 0.3\n", " decoder:\n", " type: \"transformer\"\n", " num_layers: 6\n", " num_heads: 4 # TODO: Increase to 8 for larger data.\n", " embeddings:\n", " embedding_dim: 256 # TODO: Increase to 512 for larger data.\n", " scale: True\n", " dropout: 0.2\n", " # typically ff_size = 4 x hidden_size\n", " hidden_size: 256 # TODO: Increase to 512 for larger data.\n", " ff_size: 1024 # TODO: Increase to 2048 for larger data.\n", " dropout: 0.3\n", "\"\"\".format(name=name, gdrive_path=os.environ[\"gdrive_path\"], source_language=source_language, target_language=target_language, model_temp_dir=model_temp_dir, last_checkpoint=last_checkpoint)\n", "with open(\"joeynmt/configs/transformer_{name}.yaml\".format(name=name),'w') as f:\n", " f.write(config)" ], "execution_count": 0, "outputs": [] }, { "cell_type": "markdown", "metadata": { "colab_type": "text", "id": "pIifxE3Qzuvs" }, "source": [ "# Train the Model\n", "\n", "This single line of joeynmt runs the training using the config we made above" ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "6ZBPFwT94WpI", "outputId": "d80402bf-ea5c-4740-dcf6-1c8cf68a5d31", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 } }, "source": [ "# Train the model\n", "# You can press Ctrl-C to stop. And then run the next cell to save your checkpoints! \n", "!cd joeynmt; python3 -m joeynmt train configs/transformer_$src$tgt.yaml" ], "execution_count": 15, "outputs": [ { "output_type": "stream", "text": [ "\u001b[1;30;43mStreaming output truncated to the last 5000 lines.\u001b[0m\n", "2020-04-10 13:49:25,870 \tHypothesis: The prayer may be the case of the clergy to them .\n", "2020-04-10 13:49:25,870 Example #2\n", "2020-04-10 13:49:25,871 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 13:49:25,871 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:49:25,871 \tHypothesis: The same words at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:49:25,871 Example #3\n", "2020-04-10 13:49:25,872 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 13:49:25,872 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:49:25,872 \tHypothesis: Paul was reminded in his home in Rome in two years ( about 59 to 61 C.E . ) , and he wants to be a Kingdom - preaching and teach others “ the things about Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:49:25,872 Validation result (greedy) at epoch 6, step 23000: bleu: 21.18, loss: 53190.7617, ppl: 7.8146, duration: 20.8540s\n", "2020-04-10 13:49:40,913 Epoch 6 Step: 23100 Batch Loss: 2.281862 Tokens per Sec: 14435, Lr: 0.000300\n", "2020-04-10 13:49:55,733 Epoch 6 Step: 23200 Batch Loss: 2.172698 Tokens per Sec: 14807, Lr: 0.000300\n", "2020-04-10 13:50:10,404 Epoch 6 Step: 23300 Batch Loss: 2.437716 Tokens per Sec: 15136, Lr: 0.000300\n", "2020-04-10 13:50:25,448 Epoch 6 Step: 23400 Batch Loss: 2.463500 Tokens per Sec: 15251, Lr: 0.000300\n", "2020-04-10 13:50:40,173 Epoch 6 Step: 23500 Batch Loss: 2.320558 Tokens per Sec: 14820, Lr: 0.000300\n", "2020-04-10 13:50:54,895 Epoch 6 Step: 23600 Batch Loss: 2.307929 Tokens per Sec: 14673, Lr: 0.000300\n", "2020-04-10 13:51:00,534 Epoch 6: total training loss 9001.84\n", "2020-04-10 13:51:00,534 EPOCH 7\n", "2020-04-10 13:51:10,347 Epoch 7 Step: 23700 Batch Loss: 2.212517 Tokens per Sec: 14612, Lr: 0.000300\n", "2020-04-10 13:51:25,173 Epoch 7 Step: 23800 Batch Loss: 2.148668 Tokens per Sec: 14929, Lr: 0.000300\n", "2020-04-10 13:51:39,938 Epoch 7 Step: 23900 Batch Loss: 2.465186 Tokens per Sec: 15035, Lr: 0.000300\n", "2020-04-10 13:51:54,824 Epoch 7 Step: 24000 Batch Loss: 2.358217 Tokens per Sec: 15030, Lr: 0.000300\n", "2020-04-10 13:52:13,677 Hooray! New best validation result [ppl]!\n", "2020-04-10 13:52:13,677 Saving new checkpoint.\n", "2020-04-10 13:52:15,027 Example #0\n", "2020-04-10 13:52:15,028 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 13:52:15,028 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 13:52:15,028 \tHypothesis: If so , you are determined to choose the best way of life .\n", "2020-04-10 13:52:15,028 Example #1\n", "2020-04-10 13:52:15,029 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 13:52:15,029 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 13:52:15,029 \tHypothesis: Prayer may be the case of the clergy to them .\n", "2020-04-10 13:52:15,029 Example #2\n", "2020-04-10 13:52:15,030 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 13:52:15,030 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:52:15,030 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:52:15,030 Example #3\n", "2020-04-10 13:52:15,031 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 13:52:15,031 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:52:15,031 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things of the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:52:15,031 Validation result (greedy) at epoch 7, step 24000: bleu: 21.60, loss: 52630.2891, ppl: 7.6472, duration: 20.2069s\n", "2020-04-10 13:52:30,007 Epoch 7 Step: 24100 Batch Loss: 2.239490 Tokens per Sec: 14482, Lr: 0.000300\n", "2020-04-10 13:52:44,922 Epoch 7 Step: 24200 Batch Loss: 2.371765 Tokens per Sec: 14833, Lr: 0.000300\n", "2020-04-10 13:52:59,678 Epoch 7 Step: 24300 Batch Loss: 2.195259 Tokens per Sec: 14932, Lr: 0.000300\n", "2020-04-10 13:53:14,443 Epoch 7 Step: 24400 Batch Loss: 2.040599 Tokens per Sec: 14631, Lr: 0.000300\n", "2020-04-10 13:53:29,304 Epoch 7 Step: 24500 Batch Loss: 2.298530 Tokens per Sec: 14781, Lr: 0.000300\n", "2020-04-10 13:53:44,204 Epoch 7 Step: 24600 Batch Loss: 2.074078 Tokens per Sec: 14906, Lr: 0.000300\n", "2020-04-10 13:53:58,958 Epoch 7 Step: 24700 Batch Loss: 2.136006 Tokens per Sec: 15009, Lr: 0.000300\n", "2020-04-10 13:54:13,867 Epoch 7 Step: 24800 Batch Loss: 2.203420 Tokens per Sec: 14586, Lr: 0.000300\n", "2020-04-10 13:54:28,755 Epoch 7 Step: 24900 Batch Loss: 2.225103 Tokens per Sec: 14856, Lr: 0.000300\n", "2020-04-10 13:54:43,778 Epoch 7 Step: 25000 Batch Loss: 2.346190 Tokens per Sec: 14633, Lr: 0.000300\n", "2020-04-10 13:55:01,452 Example #0\n", "2020-04-10 13:55:01,453 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 13:55:01,453 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 13:55:01,453 \tHypothesis: If so , it is that you choose the best way of life .\n", "2020-04-10 13:55:01,453 Example #1\n", "2020-04-10 13:55:01,454 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 13:55:01,454 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 13:55:01,454 \tHypothesis: Prayer may be what the clergy said to them .\n", "2020-04-10 13:55:01,454 Example #2\n", "2020-04-10 13:55:01,455 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 13:55:01,455 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:55:01,455 \tHypothesis: The same words at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:55:01,455 Example #3\n", "2020-04-10 13:55:01,455 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 13:55:01,455 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:55:01,456 \tHypothesis: Paul was remembered in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others to “ the things of the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:55:01,456 Validation result (greedy) at epoch 7, step 25000: bleu: 21.79, loss: 52676.0391, ppl: 7.6607, duration: 17.6778s\n", "2020-04-10 13:55:16,469 Epoch 7 Step: 25100 Batch Loss: 2.337873 Tokens per Sec: 14723, Lr: 0.000300\n", "2020-04-10 13:55:31,202 Epoch 7 Step: 25200 Batch Loss: 2.056085 Tokens per Sec: 14784, Lr: 0.000300\n", "2020-04-10 13:55:46,195 Epoch 7 Step: 25300 Batch Loss: 2.085673 Tokens per Sec: 14898, Lr: 0.000300\n", "2020-04-10 13:56:00,999 Epoch 7 Step: 25400 Batch Loss: 2.214938 Tokens per Sec: 14768, Lr: 0.000300\n", "2020-04-10 13:56:15,980 Epoch 7 Step: 25500 Batch Loss: 2.302549 Tokens per Sec: 14901, Lr: 0.000300\n", "2020-04-10 13:56:30,810 Epoch 7 Step: 25600 Batch Loss: 2.133444 Tokens per Sec: 14654, Lr: 0.000300\n", "2020-04-10 13:56:45,809 Epoch 7 Step: 25700 Batch Loss: 2.308318 Tokens per Sec: 14931, Lr: 0.000300\n", "2020-04-10 13:57:00,694 Epoch 7 Step: 25800 Batch Loss: 2.175776 Tokens per Sec: 14645, Lr: 0.000300\n", "2020-04-10 13:57:15,543 Epoch 7 Step: 25900 Batch Loss: 2.279667 Tokens per Sec: 14694, Lr: 0.000300\n", "2020-04-10 13:57:30,350 Epoch 7 Step: 26000 Batch Loss: 1.978498 Tokens per Sec: 14787, Lr: 0.000300\n", "2020-04-10 13:57:48,975 Hooray! New best validation result [ppl]!\n", "2020-04-10 13:57:48,976 Saving new checkpoint.\n", "2020-04-10 13:57:50,343 Example #0\n", "2020-04-10 13:57:50,344 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 13:57:50,344 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 13:57:50,344 \tHypothesis: If so , it is that you choose the best way of life .\n", "2020-04-10 13:57:50,344 Example #1\n", "2020-04-10 13:57:50,345 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 13:57:50,345 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 13:57:50,345 \tHypothesis: The prayer may be a clergy to them .\n", "2020-04-10 13:57:50,346 Example #2\n", "2020-04-10 13:57:50,346 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 13:57:50,346 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:57:50,346 \tHypothesis: The same words recorded at 2 Chronicles 5 : 9 .\n", "2020-04-10 13:57:50,347 Example #3\n", "2020-04-10 13:57:50,347 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 13:57:50,347 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:57:50,348 \tHypothesis: Paul was reminded in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to be a Kingdom - preaching and teaching others “ the things of the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 13:57:50,348 Validation result (greedy) at epoch 7, step 26000: bleu: 22.23, loss: 51996.8008, ppl: 7.4622, duration: 19.9971s\n", "2020-04-10 13:58:05,441 Epoch 7 Step: 26100 Batch Loss: 2.221920 Tokens per Sec: 14550, Lr: 0.000300\n", "2020-04-10 13:58:20,492 Epoch 7 Step: 26200 Batch Loss: 2.276958 Tokens per Sec: 14695, Lr: 0.000300\n", "2020-04-10 13:58:35,796 Epoch 7 Step: 26300 Batch Loss: 2.249092 Tokens per Sec: 14890, Lr: 0.000300\n", "2020-04-10 13:58:50,658 Epoch 7 Step: 26400 Batch Loss: 2.237762 Tokens per Sec: 14947, Lr: 0.000300\n", "2020-04-10 13:59:05,792 Epoch 7 Step: 26500 Batch Loss: 2.236778 Tokens per Sec: 14964, Lr: 0.000300\n", "2020-04-10 13:59:20,853 Epoch 7 Step: 26600 Batch Loss: 2.279145 Tokens per Sec: 15009, Lr: 0.000300\n", "2020-04-10 13:59:35,727 Epoch 7 Step: 26700 Batch Loss: 2.081586 Tokens per Sec: 14466, Lr: 0.000300\n", "2020-04-10 13:59:50,594 Epoch 7 Step: 26800 Batch Loss: 2.157872 Tokens per Sec: 15018, Lr: 0.000300\n", "2020-04-10 14:00:05,322 Epoch 7 Step: 26900 Batch Loss: 2.137259 Tokens per Sec: 14370, Lr: 0.000300\n", "2020-04-10 14:00:20,221 Epoch 7 Step: 27000 Batch Loss: 2.591768 Tokens per Sec: 15284, Lr: 0.000300\n", "2020-04-10 14:00:38,929 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:00:38,929 Saving new checkpoint.\n", "2020-04-10 14:00:40,259 Example #0\n", "2020-04-10 14:00:40,259 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:00:40,260 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:00:40,260 \tHypothesis: If you do so , you are chosen to be better in life .\n", "2020-04-10 14:00:40,260 Example #1\n", "2020-04-10 14:00:40,261 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:00:40,261 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:00:40,261 \tHypothesis: Prayer may be a clergy to them .\n", "2020-04-10 14:00:40,261 Example #2\n", "2020-04-10 14:00:40,262 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:00:40,262 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:00:40,262 \tHypothesis: The same words recorded at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:00:40,262 Example #3\n", "2020-04-10 14:00:40,263 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:00:40,263 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:00:40,263 \tHypothesis: Paul was reminded in his house in Rome in two years ( in about 59 to 61 C.E . ) , and he wants to be a Kingdom - preaching and teach others “ the things about Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:00:40,263 Validation result (greedy) at epoch 7, step 27000: bleu: 22.45, loss: 51752.2227, ppl: 7.3920, duration: 20.0412s\n", "2020-04-10 14:00:55,430 Epoch 7 Step: 27100 Batch Loss: 2.184399 Tokens per Sec: 14529, Lr: 0.000300\n", "2020-04-10 14:01:10,274 Epoch 7 Step: 27200 Batch Loss: 2.353668 Tokens per Sec: 14772, Lr: 0.000300\n", "2020-04-10 14:01:25,213 Epoch 7 Step: 27300 Batch Loss: 2.284127 Tokens per Sec: 14810, Lr: 0.000300\n", "2020-04-10 14:01:39,785 Epoch 7 Step: 27400 Batch Loss: 2.111458 Tokens per Sec: 14942, Lr: 0.000300\n", "2020-04-10 14:01:54,760 Epoch 7 Step: 27500 Batch Loss: 2.187719 Tokens per Sec: 14660, Lr: 0.000300\n", "2020-04-10 14:02:07,298 Epoch 7: total training loss 8759.11\n", "2020-04-10 14:02:07,299 EPOCH 8\n", "2020-04-10 14:02:09,859 Epoch 8 Step: 27600 Batch Loss: 2.152521 Tokens per Sec: 12296, Lr: 0.000300\n", "2020-04-10 14:02:24,683 Epoch 8 Step: 27700 Batch Loss: 2.265588 Tokens per Sec: 14744, Lr: 0.000300\n", "2020-04-10 14:02:39,626 Epoch 8 Step: 27800 Batch Loss: 2.363533 Tokens per Sec: 15191, Lr: 0.000300\n", "2020-04-10 14:02:54,546 Epoch 8 Step: 27900 Batch Loss: 2.136932 Tokens per Sec: 14826, Lr: 0.000300\n", "2020-04-10 14:03:09,689 Epoch 8 Step: 28000 Batch Loss: 2.030689 Tokens per Sec: 14676, Lr: 0.000300\n", "2020-04-10 14:03:26,528 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:03:26,528 Saving new checkpoint.\n", "2020-04-10 14:03:27,846 Example #0\n", "2020-04-10 14:03:27,847 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:03:27,847 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:03:27,847 \tHypothesis: If so , you are determined to choose the best way of life .\n", "2020-04-10 14:03:27,847 Example #1\n", "2020-04-10 14:03:27,848 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:03:27,848 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:03:27,848 \tHypothesis: Prayer may be what the clergy said to them .\n", "2020-04-10 14:03:27,848 Example #2\n", "2020-04-10 14:03:27,849 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:03:27,849 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:03:27,849 \tHypothesis: The same words at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:03:27,849 Example #3\n", "2020-04-10 14:03:27,850 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:03:27,850 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:03:27,850 \tHypothesis: Paul was reminded in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to be a Kingdom - preaching and teach others “ the things about Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:03:27,850 Validation result (greedy) at epoch 8, step 28000: bleu: 22.51, loss: 51364.6211, ppl: 7.2821, duration: 18.1609s\n", "2020-04-10 14:03:43,360 Epoch 8 Step: 28100 Batch Loss: 2.163597 Tokens per Sec: 14269, Lr: 0.000300\n", "2020-04-10 14:03:58,389 Epoch 8 Step: 28200 Batch Loss: 2.152930 Tokens per Sec: 15159, Lr: 0.000300\n", "2020-04-10 14:04:13,070 Epoch 8 Step: 28300 Batch Loss: 1.997463 Tokens per Sec: 14973, Lr: 0.000300\n", "2020-04-10 14:04:28,139 Epoch 8 Step: 28400 Batch Loss: 2.177665 Tokens per Sec: 14892, Lr: 0.000300\n", "2020-04-10 14:04:43,077 Epoch 8 Step: 28500 Batch Loss: 2.094340 Tokens per Sec: 14792, Lr: 0.000300\n", "2020-04-10 14:04:58,141 Epoch 8 Step: 28600 Batch Loss: 2.321501 Tokens per Sec: 14734, Lr: 0.000300\n", "2020-04-10 14:05:13,131 Epoch 8 Step: 28700 Batch Loss: 2.146940 Tokens per Sec: 14873, Lr: 0.000300\n", "2020-04-10 14:05:27,974 Epoch 8 Step: 28800 Batch Loss: 2.149343 Tokens per Sec: 14999, Lr: 0.000300\n", "2020-04-10 14:05:42,879 Epoch 8 Step: 28900 Batch Loss: 2.172937 Tokens per Sec: 14882, Lr: 0.000300\n", "2020-04-10 14:05:57,714 Epoch 8 Step: 29000 Batch Loss: 2.158271 Tokens per Sec: 14588, Lr: 0.000300\n", "2020-04-10 14:06:14,826 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:06:14,827 Saving new checkpoint.\n", "2020-04-10 14:06:16,135 Example #0\n", "2020-04-10 14:06:16,135 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:06:16,135 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:06:16,136 \tHypothesis: If you do so , you are chosen to be a better way of life .\n", "2020-04-10 14:06:16,136 Example #1\n", "2020-04-10 14:06:16,136 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:06:16,137 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:06:16,137 \tHypothesis: Prayer may be the clergy to them .\n", "2020-04-10 14:06:16,137 Example #2\n", "2020-04-10 14:06:16,137 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:06:16,138 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:06:16,138 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:06:16,138 Example #3\n", "2020-04-10 14:06:16,138 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:06:16,139 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:06:16,139 \tHypothesis: Paul was reminded in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things of the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:06:16,139 Validation result (greedy) at epoch 8, step 29000: bleu: 22.74, loss: 50935.3672, ppl: 7.1622, duration: 18.4245s\n", "2020-04-10 14:06:31,356 Epoch 8 Step: 29100 Batch Loss: 2.251715 Tokens per Sec: 14530, Lr: 0.000300\n", "2020-04-10 14:06:46,177 Epoch 8 Step: 29200 Batch Loss: 2.049386 Tokens per Sec: 14628, Lr: 0.000300\n", "2020-04-10 14:07:01,416 Epoch 8 Step: 29300 Batch Loss: 2.125583 Tokens per Sec: 14908, Lr: 0.000300\n", "2020-04-10 14:07:16,275 Epoch 8 Step: 29400 Batch Loss: 2.115669 Tokens per Sec: 14752, Lr: 0.000300\n", "2020-04-10 14:07:31,095 Epoch 8 Step: 29500 Batch Loss: 2.201911 Tokens per Sec: 14578, Lr: 0.000300\n", "2020-04-10 14:07:45,890 Epoch 8 Step: 29600 Batch Loss: 2.041178 Tokens per Sec: 15177, Lr: 0.000300\n", "2020-04-10 14:08:00,905 Epoch 8 Step: 29700 Batch Loss: 2.182694 Tokens per Sec: 14733, Lr: 0.000300\n", "2020-04-10 14:08:15,840 Epoch 8 Step: 29800 Batch Loss: 2.101869 Tokens per Sec: 14927, Lr: 0.000300\n", "2020-04-10 14:08:30,493 Epoch 8 Step: 29900 Batch Loss: 2.313174 Tokens per Sec: 14671, Lr: 0.000300\n", "2020-04-10 14:08:45,512 Epoch 8 Step: 30000 Batch Loss: 2.143835 Tokens per Sec: 14828, Lr: 0.000300\n", "2020-04-10 14:09:04,123 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:09:04,124 Saving new checkpoint.\n", "2020-04-10 14:09:05,434 Example #0\n", "2020-04-10 14:09:05,435 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:09:05,435 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:09:05,435 \tHypothesis: If you do so , you are chosen to choose the best way of life .\n", "2020-04-10 14:09:05,436 Example #1\n", "2020-04-10 14:09:05,436 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:09:05,436 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:09:05,436 \tHypothesis: Prayer may be the clergy to them .\n", "2020-04-10 14:09:05,436 Example #2\n", "2020-04-10 14:09:05,437 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:09:05,437 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:09:05,437 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:09:05,437 Example #3\n", "2020-04-10 14:09:05,438 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:09:05,438 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:09:05,438 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:09:05,438 Validation result (greedy) at epoch 8, step 30000: bleu: 22.62, loss: 50825.5391, ppl: 7.1319, duration: 19.9255s\n", "2020-04-10 14:09:20,602 Epoch 8 Step: 30100 Batch Loss: 2.278263 Tokens per Sec: 14318, Lr: 0.000300\n", "2020-04-10 14:09:35,734 Epoch 8 Step: 30200 Batch Loss: 2.179190 Tokens per Sec: 14647, Lr: 0.000300\n", "2020-04-10 14:09:50,807 Epoch 8 Step: 30300 Batch Loss: 2.142358 Tokens per Sec: 14812, Lr: 0.000300\n", "2020-04-10 14:10:05,865 Epoch 8 Step: 30400 Batch Loss: 2.102838 Tokens per Sec: 14383, Lr: 0.000300\n", "2020-04-10 14:10:20,752 Epoch 8 Step: 30500 Batch Loss: 2.086889 Tokens per Sec: 14746, Lr: 0.000300\n", "2020-04-10 14:10:35,650 Epoch 8 Step: 30600 Batch Loss: 2.323520 Tokens per Sec: 14996, Lr: 0.000300\n", "2020-04-10 14:10:50,626 Epoch 8 Step: 30700 Batch Loss: 2.119824 Tokens per Sec: 14606, Lr: 0.000300\n", "2020-04-10 14:11:05,803 Epoch 8 Step: 30800 Batch Loss: 2.055350 Tokens per Sec: 14422, Lr: 0.000300\n", "2020-04-10 14:11:20,985 Epoch 8 Step: 30900 Batch Loss: 2.280994 Tokens per Sec: 15020, Lr: 0.000300\n", "2020-04-10 14:11:35,885 Epoch 8 Step: 31000 Batch Loss: 2.277833 Tokens per Sec: 15086, Lr: 0.000300\n", "2020-04-10 14:11:52,579 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:11:52,579 Saving new checkpoint.\n", "2020-04-10 14:11:53,930 Example #0\n", "2020-04-10 14:11:53,930 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:11:53,930 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:11:53,930 \tHypothesis: If so , you are determined to choose the best way of life .\n", "2020-04-10 14:11:53,931 Example #1\n", "2020-04-10 14:11:53,931 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:11:53,931 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:11:53,931 \tHypothesis: It may even be the clergy to them .\n", "2020-04-10 14:11:53,931 Example #2\n", "2020-04-10 14:11:53,932 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:11:53,932 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:11:53,932 \tHypothesis: The same words found at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:11:53,932 Example #3\n", "2020-04-10 14:11:53,933 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:11:53,933 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:11:53,933 \tHypothesis: Paul was reminded in Rome for two years ( in about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:11:53,933 Validation result (greedy) at epoch 8, step 31000: bleu: 23.11, loss: 50553.0859, ppl: 7.0572, duration: 18.0480s\n", "2020-04-10 14:12:09,882 Epoch 8 Step: 31100 Batch Loss: 2.215089 Tokens per Sec: 13816, Lr: 0.000300\n", "2020-04-10 14:12:25,271 Epoch 8 Step: 31200 Batch Loss: 2.119021 Tokens per Sec: 14597, Lr: 0.000300\n", "2020-04-10 14:12:40,243 Epoch 8 Step: 31300 Batch Loss: 2.027411 Tokens per Sec: 14669, Lr: 0.000300\n", "2020-04-10 14:12:55,157 Epoch 8 Step: 31400 Batch Loss: 2.351396 Tokens per Sec: 14934, Lr: 0.000300\n", "2020-04-10 14:13:09,920 Epoch 8 Step: 31500 Batch Loss: 2.220163 Tokens per Sec: 14603, Lr: 0.000300\n", "2020-04-10 14:13:13,298 Epoch 8: total training loss 8519.01\n", "2020-04-10 14:13:13,299 EPOCH 9\n", "2020-04-10 14:13:25,384 Epoch 9 Step: 31600 Batch Loss: 2.200923 Tokens per Sec: 14161, Lr: 0.000300\n", "2020-04-10 14:13:40,428 Epoch 9 Step: 31700 Batch Loss: 2.093481 Tokens per Sec: 14778, Lr: 0.000300\n", "2020-04-10 14:13:55,461 Epoch 9 Step: 31800 Batch Loss: 2.255875 Tokens per Sec: 14900, Lr: 0.000300\n", "2020-04-10 14:14:10,527 Epoch 9 Step: 31900 Batch Loss: 2.024587 Tokens per Sec: 14711, Lr: 0.000300\n", "2020-04-10 14:14:25,664 Epoch 9 Step: 32000 Batch Loss: 2.096291 Tokens per Sec: 14868, Lr: 0.000300\n", "2020-04-10 14:14:43,361 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:14:43,361 Saving new checkpoint.\n", "2020-04-10 14:14:44,696 Example #0\n", "2020-04-10 14:14:44,697 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:14:44,697 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:14:44,698 \tHypothesis: If so , you are chosen to choose the best way of life .\n", "2020-04-10 14:14:44,698 Example #1\n", "2020-04-10 14:14:44,698 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:14:44,698 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:14:44,699 \tHypothesis: Prayer may have been the clergy to them .\n", "2020-04-10 14:14:44,699 Example #2\n", "2020-04-10 14:14:44,699 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:14:44,700 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:14:44,700 \tHypothesis: The same word is found at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:14:44,700 Example #3\n", "2020-04-10 14:14:44,700 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:14:44,701 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:14:44,701 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to be a way to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:14:44,701 Validation result (greedy) at epoch 9, step 32000: bleu: 23.06, loss: 50277.4297, ppl: 6.9824, duration: 19.0361s\n", "2020-04-10 14:14:59,909 Epoch 9 Step: 32100 Batch Loss: 2.143522 Tokens per Sec: 14716, Lr: 0.000300\n", "2020-04-10 14:15:14,834 Epoch 9 Step: 32200 Batch Loss: 1.926574 Tokens per Sec: 15072, Lr: 0.000300\n", "2020-04-10 14:15:29,817 Epoch 9 Step: 32300 Batch Loss: 2.047426 Tokens per Sec: 14797, Lr: 0.000300\n", "2020-04-10 14:15:44,893 Epoch 9 Step: 32400 Batch Loss: 2.112326 Tokens per Sec: 15049, Lr: 0.000300\n", "2020-04-10 14:15:59,993 Epoch 9 Step: 32500 Batch Loss: 2.441144 Tokens per Sec: 14694, Lr: 0.000300\n", "2020-04-10 14:16:15,060 Epoch 9 Step: 32600 Batch Loss: 2.172929 Tokens per Sec: 14316, Lr: 0.000300\n", "2020-04-10 14:16:30,155 Epoch 9 Step: 32700 Batch Loss: 2.272495 Tokens per Sec: 14357, Lr: 0.000300\n", "2020-04-10 14:16:45,360 Epoch 9 Step: 32800 Batch Loss: 1.717020 Tokens per Sec: 14880, Lr: 0.000300\n", "2020-04-10 14:17:00,579 Epoch 9 Step: 32900 Batch Loss: 2.087281 Tokens per Sec: 14610, Lr: 0.000300\n", "2020-04-10 14:17:15,559 Epoch 9 Step: 33000 Batch Loss: 2.540784 Tokens per Sec: 14437, Lr: 0.000300\n", "2020-04-10 14:17:33,783 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:17:33,784 Saving new checkpoint.\n", "2020-04-10 14:17:35,103 Example #0\n", "2020-04-10 14:17:35,103 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:17:35,103 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:17:35,103 \tHypothesis: If so , you have chosen the best way of life .\n", "2020-04-10 14:17:35,104 Example #1\n", "2020-04-10 14:17:35,104 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:17:35,104 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:17:35,105 \tHypothesis: The clergy may even be the clergy to them .\n", "2020-04-10 14:17:35,105 Example #2\n", "2020-04-10 14:17:35,105 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:17:35,105 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:17:35,106 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:17:35,106 Example #3\n", "2020-04-10 14:17:35,106 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:17:35,106 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:17:35,106 \tHypothesis: Paul was reminded in his home in Rome for two years ( in about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:17:35,107 Validation result (greedy) at epoch 9, step 33000: bleu: 22.78, loss: 50053.4648, ppl: 6.9222, duration: 19.5473s\n", "2020-04-10 14:17:50,541 Epoch 9 Step: 33100 Batch Loss: 2.018244 Tokens per Sec: 14338, Lr: 0.000300\n", "2020-04-10 14:18:05,701 Epoch 9 Step: 33200 Batch Loss: 2.263623 Tokens per Sec: 14448, Lr: 0.000300\n", "2020-04-10 14:18:20,809 Epoch 9 Step: 33300 Batch Loss: 2.028858 Tokens per Sec: 14409, Lr: 0.000300\n", "2020-04-10 14:18:35,932 Epoch 9 Step: 33400 Batch Loss: 2.186154 Tokens per Sec: 14641, Lr: 0.000300\n", "2020-04-10 14:18:51,079 Epoch 9 Step: 33500 Batch Loss: 2.216251 Tokens per Sec: 14410, Lr: 0.000300\n", "2020-04-10 14:19:06,153 Epoch 9 Step: 33600 Batch Loss: 2.193721 Tokens per Sec: 14836, Lr: 0.000300\n", "2020-04-10 14:19:21,197 Epoch 9 Step: 33700 Batch Loss: 2.114070 Tokens per Sec: 14667, Lr: 0.000300\n", "2020-04-10 14:19:36,360 Epoch 9 Step: 33800 Batch Loss: 2.057480 Tokens per Sec: 14166, Lr: 0.000300\n", "2020-04-10 14:19:51,677 Epoch 9 Step: 33900 Batch Loss: 2.111386 Tokens per Sec: 14832, Lr: 0.000300\n", "2020-04-10 14:20:07,005 Epoch 9 Step: 34000 Batch Loss: 2.219597 Tokens per Sec: 14626, Lr: 0.000300\n", "2020-04-10 14:20:24,227 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:20:24,228 Saving new checkpoint.\n", "2020-04-10 14:20:25,551 Example #0\n", "2020-04-10 14:20:25,553 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:20:25,553 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:20:25,553 \tHypothesis: If so , you are determined to choose the best way of life .\n", "2020-04-10 14:20:25,553 Example #1\n", "2020-04-10 14:20:25,553 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:20:25,554 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:20:25,554 \tHypothesis: Prayer may even be the clergy to them .\n", "2020-04-10 14:20:25,554 Example #2\n", "2020-04-10 14:20:25,554 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:20:25,554 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:20:25,554 \tHypothesis: The same words at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:20:25,554 Example #3\n", "2020-04-10 14:20:25,555 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:20:25,555 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:20:25,555 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:20:25,555 Validation result (greedy) at epoch 9, step 34000: bleu: 23.38, loss: 49847.9102, ppl: 6.8674, duration: 18.5500s\n", "2020-04-10 14:20:40,988 Epoch 9 Step: 34100 Batch Loss: 1.961750 Tokens per Sec: 14528, Lr: 0.000300\n", "2020-04-10 14:20:56,050 Epoch 9 Step: 34200 Batch Loss: 2.167277 Tokens per Sec: 14705, Lr: 0.000300\n", "2020-04-10 14:21:11,148 Epoch 9 Step: 34300 Batch Loss: 2.203926 Tokens per Sec: 14459, Lr: 0.000300\n", "2020-04-10 14:21:26,413 Epoch 9 Step: 34400 Batch Loss: 2.110043 Tokens per Sec: 14454, Lr: 0.000300\n", "2020-04-10 14:21:41,657 Epoch 9 Step: 34500 Batch Loss: 2.000042 Tokens per Sec: 14842, Lr: 0.000300\n", "2020-04-10 14:21:56,895 Epoch 9 Step: 34600 Batch Loss: 2.104887 Tokens per Sec: 14555, Lr: 0.000300\n", "2020-04-10 14:22:11,991 Epoch 9 Step: 34700 Batch Loss: 2.179495 Tokens per Sec: 14348, Lr: 0.000300\n", "2020-04-10 14:22:27,242 Epoch 9 Step: 34800 Batch Loss: 2.101020 Tokens per Sec: 15108, Lr: 0.000300\n", "2020-04-10 14:22:42,220 Epoch 9 Step: 34900 Batch Loss: 1.622685 Tokens per Sec: 14832, Lr: 0.000300\n", "2020-04-10 14:22:57,321 Epoch 9 Step: 35000 Batch Loss: 2.047840 Tokens per Sec: 14448, Lr: 0.000300\n", "2020-04-10 14:23:15,377 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:23:15,378 Saving new checkpoint.\n", "2020-04-10 14:23:16,727 Example #0\n", "2020-04-10 14:23:16,728 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:23:16,728 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:23:16,728 \tHypothesis: If so , you are chosen to be better than the best way of life .\n", "2020-04-10 14:23:16,728 Example #1\n", "2020-04-10 14:23:16,728 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:23:16,729 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:23:16,729 \tHypothesis: The prayer may be the clergy to them .\n", "2020-04-10 14:23:16,729 Example #2\n", "2020-04-10 14:23:16,729 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:23:16,729 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:23:16,729 \tHypothesis: The same words are published at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:23:16,730 Example #3\n", "2020-04-10 14:23:16,730 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:23:16,730 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:23:16,730 \tHypothesis: Paul was reminded in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:23:16,730 Validation result (greedy) at epoch 9, step 35000: bleu: 23.35, loss: 49624.4961, ppl: 6.8084, duration: 19.4088s\n", "2020-04-10 14:23:31,800 Epoch 9 Step: 35100 Batch Loss: 2.070137 Tokens per Sec: 14667, Lr: 0.000300\n", "2020-04-10 14:23:46,768 Epoch 9 Step: 35200 Batch Loss: 2.052323 Tokens per Sec: 14823, Lr: 0.000300\n", "2020-04-10 14:24:01,829 Epoch 9 Step: 35300 Batch Loss: 1.862865 Tokens per Sec: 14389, Lr: 0.000300\n", "2020-04-10 14:24:16,821 Epoch 9 Step: 35400 Batch Loss: 2.224020 Tokens per Sec: 14838, Lr: 0.000300\n", "2020-04-10 14:24:25,033 Epoch 9: total training loss 8337.22\n", "2020-04-10 14:24:25,033 EPOCH 10\n", "2020-04-10 14:24:32,588 Epoch 10 Step: 35500 Batch Loss: 2.148004 Tokens per Sec: 13678, Lr: 0.000300\n", "2020-04-10 14:24:47,444 Epoch 10 Step: 35600 Batch Loss: 2.030767 Tokens per Sec: 15141, Lr: 0.000300\n", "2020-04-10 14:25:02,191 Epoch 10 Step: 35700 Batch Loss: 2.195013 Tokens per Sec: 15118, Lr: 0.000300\n", "2020-04-10 14:25:16,680 Epoch 10 Step: 35800 Batch Loss: 2.015980 Tokens per Sec: 14937, Lr: 0.000300\n", "2020-04-10 14:25:31,819 Epoch 10 Step: 35900 Batch Loss: 1.966006 Tokens per Sec: 14626, Lr: 0.000300\n", "2020-04-10 14:25:46,802 Epoch 10 Step: 36000 Batch Loss: 2.065683 Tokens per Sec: 15031, Lr: 0.000300\n", "2020-04-10 14:26:05,584 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:26:05,585 Saving new checkpoint.\n", "2020-04-10 14:26:06,913 Example #0\n", "2020-04-10 14:26:06,916 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:26:06,917 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:26:06,917 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 14:26:06,917 Example #1\n", "2020-04-10 14:26:06,917 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:26:06,918 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:26:06,918 \tHypothesis: The clergy may even be the case of the clergy .\n", "2020-04-10 14:26:06,918 Example #2\n", "2020-04-10 14:26:06,919 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:26:06,919 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:26:06,919 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:26:06,919 Example #3\n", "2020-04-10 14:26:06,920 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:26:06,920 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:26:06,920 \tHypothesis: Paul was reminded in Rome for two years ( in some 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:26:06,920 Validation result (greedy) at epoch 10, step 36000: bleu: 23.49, loss: 49450.2930, ppl: 6.7627, duration: 20.1174s\n", "2020-04-10 14:26:22,217 Epoch 10 Step: 36100 Batch Loss: 2.192410 Tokens per Sec: 14579, Lr: 0.000300\n", "2020-04-10 14:26:37,232 Epoch 10 Step: 36200 Batch Loss: 2.100252 Tokens per Sec: 15212, Lr: 0.000300\n", "2020-04-10 14:26:52,445 Epoch 10 Step: 36300 Batch Loss: 2.057395 Tokens per Sec: 14587, Lr: 0.000300\n", "2020-04-10 14:27:07,666 Epoch 10 Step: 36400 Batch Loss: 2.104040 Tokens per Sec: 14690, Lr: 0.000300\n", "2020-04-10 14:27:22,908 Epoch 10 Step: 36500 Batch Loss: 2.120951 Tokens per Sec: 14507, Lr: 0.000300\n", "2020-04-10 14:27:37,975 Epoch 10 Step: 36600 Batch Loss: 2.220197 Tokens per Sec: 14745, Lr: 0.000300\n", "2020-04-10 14:27:52,865 Epoch 10 Step: 36700 Batch Loss: 2.005265 Tokens per Sec: 14688, Lr: 0.000300\n", "2020-04-10 14:28:08,099 Epoch 10 Step: 36800 Batch Loss: 2.246058 Tokens per Sec: 14784, Lr: 0.000300\n", "2020-04-10 14:28:23,078 Epoch 10 Step: 36900 Batch Loss: 2.031244 Tokens per Sec: 14648, Lr: 0.000300\n", "2020-04-10 14:28:38,234 Epoch 10 Step: 37000 Batch Loss: 2.065866 Tokens per Sec: 14304, Lr: 0.000300\n", "2020-04-10 14:28:57,804 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:28:57,804 Saving new checkpoint.\n", "2020-04-10 14:28:59,427 Example #0\n", "2020-04-10 14:28:59,427 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:28:59,428 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:28:59,428 \tHypothesis: If so , you are determined to choose the best way of life .\n", "2020-04-10 14:28:59,428 Example #1\n", "2020-04-10 14:28:59,428 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:28:59,428 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:28:59,428 \tHypothesis: The clergy may have been a clergy to them .\n", "2020-04-10 14:28:59,429 Example #2\n", "2020-04-10 14:28:59,429 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:28:59,429 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:28:59,429 \tHypothesis: The same statement is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:28:59,429 Example #3\n", "2020-04-10 14:28:59,430 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:28:59,430 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:28:59,430 \tHypothesis: Paul was reminded in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:28:59,430 Validation result (greedy) at epoch 10, step 37000: bleu: 23.72, loss: 49132.9766, ppl: 6.6802, duration: 21.1952s\n", "2020-04-10 14:29:14,768 Epoch 10 Step: 37100 Batch Loss: 2.067851 Tokens per Sec: 14306, Lr: 0.000300\n", "2020-04-10 14:29:29,853 Epoch 10 Step: 37200 Batch Loss: 2.080341 Tokens per Sec: 14925, Lr: 0.000300\n", "2020-04-10 14:29:44,843 Epoch 10 Step: 37300 Batch Loss: 2.084146 Tokens per Sec: 14446, Lr: 0.000300\n", "2020-04-10 14:29:59,853 Epoch 10 Step: 37400 Batch Loss: 2.042068 Tokens per Sec: 14817, Lr: 0.000300\n", "2020-04-10 14:30:14,966 Epoch 10 Step: 37500 Batch Loss: 2.032336 Tokens per Sec: 14878, Lr: 0.000300\n", "2020-04-10 14:30:29,979 Epoch 10 Step: 37600 Batch Loss: 1.969450 Tokens per Sec: 14618, Lr: 0.000300\n", "2020-04-10 14:30:44,841 Epoch 10 Step: 37700 Batch Loss: 2.236971 Tokens per Sec: 14498, Lr: 0.000300\n", "2020-04-10 14:30:59,724 Epoch 10 Step: 37800 Batch Loss: 2.025483 Tokens per Sec: 15036, Lr: 0.000300\n", "2020-04-10 14:31:14,823 Epoch 10 Step: 37900 Batch Loss: 2.259523 Tokens per Sec: 14589, Lr: 0.000300\n", "2020-04-10 14:31:29,838 Epoch 10 Step: 38000 Batch Loss: 2.088724 Tokens per Sec: 14526, Lr: 0.000300\n", "2020-04-10 14:31:49,258 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:31:49,258 Saving new checkpoint.\n", "2020-04-10 14:31:50,536 Example #0\n", "2020-04-10 14:31:50,537 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:31:50,537 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:31:50,537 \tHypothesis: If you do so , you are determined to choose the best way of life .\n", "2020-04-10 14:31:50,537 Example #1\n", "2020-04-10 14:31:50,538 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:31:50,538 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:31:50,538 \tHypothesis: The clergy may have been a clergy to them .\n", "2020-04-10 14:31:50,538 Example #2\n", "2020-04-10 14:31:50,539 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:31:50,539 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:31:50,539 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:31:50,539 Example #3\n", "2020-04-10 14:31:50,540 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:31:50,540 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:31:50,540 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others to “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:31:50,540 Validation result (greedy) at epoch 10, step 38000: bleu: 23.80, loss: 49010.9492, ppl: 6.6488, duration: 20.7017s\n", "2020-04-10 14:32:05,650 Epoch 10 Step: 38100 Batch Loss: 2.031237 Tokens per Sec: 14280, Lr: 0.000300\n", "2020-04-10 14:32:20,597 Epoch 10 Step: 38200 Batch Loss: 2.134152 Tokens per Sec: 14800, Lr: 0.000300\n", "2020-04-10 14:32:35,425 Epoch 10 Step: 38300 Batch Loss: 2.219833 Tokens per Sec: 14206, Lr: 0.000300\n", "2020-04-10 14:32:50,307 Epoch 10 Step: 38400 Batch Loss: 2.229229 Tokens per Sec: 14595, Lr: 0.000300\n", "2020-04-10 14:33:05,143 Epoch 10 Step: 38500 Batch Loss: 2.057542 Tokens per Sec: 14968, Lr: 0.000300\n", "2020-04-10 14:33:19,930 Epoch 10 Step: 38600 Batch Loss: 2.135012 Tokens per Sec: 14295, Lr: 0.000300\n", "2020-04-10 14:33:34,668 Epoch 10 Step: 38700 Batch Loss: 2.133334 Tokens per Sec: 14796, Lr: 0.000300\n", "2020-04-10 14:33:49,515 Epoch 10 Step: 38800 Batch Loss: 2.136279 Tokens per Sec: 14706, Lr: 0.000300\n", "2020-04-10 14:34:04,560 Epoch 10 Step: 38900 Batch Loss: 1.687551 Tokens per Sec: 14712, Lr: 0.000300\n", "2020-04-10 14:34:19,369 Epoch 10 Step: 39000 Batch Loss: 1.631319 Tokens per Sec: 14995, Lr: 0.000300\n", "2020-04-10 14:34:39,604 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:34:39,604 Saving new checkpoint.\n", "2020-04-10 14:34:41,203 Example #0\n", "2020-04-10 14:34:41,203 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:34:41,204 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:34:41,204 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 14:34:41,204 Example #1\n", "2020-04-10 14:34:41,204 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:34:41,204 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:34:41,205 \tHypothesis: Prayer may have been the clergy to them .\n", "2020-04-10 14:34:41,205 Example #2\n", "2020-04-10 14:34:41,205 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:34:41,205 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:34:41,205 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:34:41,205 Example #3\n", "2020-04-10 14:34:41,206 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:34:41,206 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:34:41,206 \tHypothesis: Paul was reminded in Rome for two years ( in about 59 to 61 C.E . ) , and he wants the way of preaching the Kingdom and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:34:41,206 Validation result (greedy) at epoch 10, step 39000: bleu: 23.62, loss: 48869.1094, ppl: 6.6124, duration: 21.8374s\n", "2020-04-10 14:34:56,125 Epoch 10 Step: 39100 Batch Loss: 2.279851 Tokens per Sec: 14671, Lr: 0.000300\n", "2020-04-10 14:35:10,966 Epoch 10 Step: 39200 Batch Loss: 1.857738 Tokens per Sec: 15225, Lr: 0.000300\n", "2020-04-10 14:35:25,519 Epoch 10 Step: 39300 Batch Loss: 2.247100 Tokens per Sec: 15113, Lr: 0.000300\n", "2020-04-10 14:35:40,133 Epoch 10 Step: 39400 Batch Loss: 2.110514 Tokens per Sec: 15174, Lr: 0.000300\n", "2020-04-10 14:35:40,568 Epoch 10: total training loss 8233.53\n", "2020-04-10 14:35:40,569 EPOCH 11\n", "2020-04-10 14:35:55,496 Epoch 11 Step: 39500 Batch Loss: 2.152778 Tokens per Sec: 14548, Lr: 0.000300\n", "2020-04-10 14:36:10,469 Epoch 11 Step: 39600 Batch Loss: 2.013247 Tokens per Sec: 14937, Lr: 0.000300\n", "2020-04-10 14:36:25,178 Epoch 11 Step: 39700 Batch Loss: 2.038100 Tokens per Sec: 14957, Lr: 0.000300\n", "2020-04-10 14:36:40,113 Epoch 11 Step: 39800 Batch Loss: 1.986433 Tokens per Sec: 14964, Lr: 0.000300\n", "2020-04-10 14:36:54,846 Epoch 11 Step: 39900 Batch Loss: 2.097675 Tokens per Sec: 14730, Lr: 0.000300\n", "2020-04-10 14:37:09,836 Epoch 11 Step: 40000 Batch Loss: 1.656214 Tokens per Sec: 14573, Lr: 0.000300\n", "2020-04-10 14:37:27,515 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:37:27,515 Saving new checkpoint.\n", "2020-04-10 14:37:28,786 Example #0\n", "2020-04-10 14:37:28,787 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:37:28,787 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:37:28,787 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 14:37:28,787 Example #1\n", "2020-04-10 14:37:28,788 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:37:28,788 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:37:28,788 \tHypothesis: The clergy may have been a clergy to them .\n", "2020-04-10 14:37:28,788 Example #2\n", "2020-04-10 14:37:28,789 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:37:28,789 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:37:28,789 \tHypothesis: The same words found at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:37:28,789 Example #3\n", "2020-04-10 14:37:28,790 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:37:28,790 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:37:28,790 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to be a Kingdom - preaching work and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:37:28,790 Validation result (greedy) at epoch 11, step 40000: bleu: 23.70, loss: 48631.0234, ppl: 6.5519, duration: 18.9539s\n", "2020-04-10 14:37:44,036 Epoch 11 Step: 40100 Batch Loss: 1.973833 Tokens per Sec: 14963, Lr: 0.000300\n", "2020-04-10 14:37:59,003 Epoch 11 Step: 40200 Batch Loss: 2.033114 Tokens per Sec: 14762, Lr: 0.000300\n", "2020-04-10 14:38:13,665 Epoch 11 Step: 40300 Batch Loss: 2.201656 Tokens per Sec: 14449, Lr: 0.000300\n", "2020-04-10 14:38:28,556 Epoch 11 Step: 40400 Batch Loss: 2.096308 Tokens per Sec: 14930, Lr: 0.000300\n", "2020-04-10 14:38:43,405 Epoch 11 Step: 40500 Batch Loss: 2.038954 Tokens per Sec: 14878, Lr: 0.000300\n", "2020-04-10 14:38:58,301 Epoch 11 Step: 40600 Batch Loss: 2.022216 Tokens per Sec: 14947, Lr: 0.000300\n", "2020-04-10 14:39:13,357 Epoch 11 Step: 40700 Batch Loss: 2.051127 Tokens per Sec: 14655, Lr: 0.000300\n", "2020-04-10 14:39:28,584 Epoch 11 Step: 40800 Batch Loss: 2.101683 Tokens per Sec: 14797, Lr: 0.000300\n", "2020-04-10 14:39:43,498 Epoch 11 Step: 40900 Batch Loss: 2.105775 Tokens per Sec: 15016, Lr: 0.000300\n", "2020-04-10 14:39:58,352 Epoch 11 Step: 41000 Batch Loss: 2.036008 Tokens per Sec: 14977, Lr: 0.000300\n", "2020-04-10 14:40:14,623 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:40:14,623 Saving new checkpoint.\n", "2020-04-10 14:40:15,910 Example #0\n", "2020-04-10 14:40:15,911 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:40:15,911 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:40:15,911 \tHypothesis: If so , you are chosen to be the best way of life .\n", "2020-04-10 14:40:15,911 Example #1\n", "2020-04-10 14:40:15,912 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:40:15,912 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:40:15,912 \tHypothesis: It may be the clergy to them .\n", "2020-04-10 14:40:15,912 Example #2\n", "2020-04-10 14:40:15,913 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:40:15,913 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:40:15,913 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:40:15,913 Example #3\n", "2020-04-10 14:40:15,914 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:40:15,914 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:40:15,914 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:40:15,914 Validation result (greedy) at epoch 11, step 41000: bleu: 23.63, loss: 48569.5078, ppl: 6.5363, duration: 17.5614s\n", "2020-04-10 14:40:30,861 Epoch 11 Step: 41100 Batch Loss: 2.007630 Tokens per Sec: 14547, Lr: 0.000300\n", "2020-04-10 14:40:45,718 Epoch 11 Step: 41200 Batch Loss: 1.979880 Tokens per Sec: 14775, Lr: 0.000300\n", "2020-04-10 14:41:00,726 Epoch 11 Step: 41300 Batch Loss: 2.225343 Tokens per Sec: 15324, Lr: 0.000300\n", "2020-04-10 14:41:15,514 Epoch 11 Step: 41400 Batch Loss: 1.970596 Tokens per Sec: 14872, Lr: 0.000300\n", "2020-04-10 14:41:30,430 Epoch 11 Step: 41500 Batch Loss: 2.075929 Tokens per Sec: 14797, Lr: 0.000300\n", "2020-04-10 14:41:45,351 Epoch 11 Step: 41600 Batch Loss: 1.829629 Tokens per Sec: 14844, Lr: 0.000300\n", "2020-04-10 14:42:00,311 Epoch 11 Step: 41700 Batch Loss: 2.001349 Tokens per Sec: 14923, Lr: 0.000300\n", "2020-04-10 14:42:15,109 Epoch 11 Step: 41800 Batch Loss: 1.966723 Tokens per Sec: 14818, Lr: 0.000300\n", "2020-04-10 14:42:29,835 Epoch 11 Step: 41900 Batch Loss: 2.098735 Tokens per Sec: 14831, Lr: 0.000300\n", "2020-04-10 14:42:44,436 Epoch 11 Step: 42000 Batch Loss: 2.057587 Tokens per Sec: 14733, Lr: 0.000300\n", "2020-04-10 14:43:02,629 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:43:02,629 Saving new checkpoint.\n", "2020-04-10 14:43:04,196 Example #0\n", "2020-04-10 14:43:04,197 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:43:04,197 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:43:04,197 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 14:43:04,198 Example #1\n", "2020-04-10 14:43:04,198 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:43:04,198 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:43:04,198 \tHypothesis: That is the case of the clergy .\n", "2020-04-10 14:43:04,198 Example #2\n", "2020-04-10 14:43:04,199 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:43:04,199 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:43:04,200 \tHypothesis: The same words at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:43:04,200 Example #3\n", "2020-04-10 14:43:04,200 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:43:04,200 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:43:04,200 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:43:04,200 Validation result (greedy) at epoch 11, step 42000: bleu: 24.06, loss: 48315.4375, ppl: 6.4724, duration: 19.7638s\n", "2020-04-10 14:43:19,521 Epoch 11 Step: 42100 Batch Loss: 2.133436 Tokens per Sec: 14851, Lr: 0.000300\n", "2020-04-10 14:43:34,464 Epoch 11 Step: 42200 Batch Loss: 2.053215 Tokens per Sec: 14903, Lr: 0.000300\n", "2020-04-10 14:43:49,269 Epoch 11 Step: 42300 Batch Loss: 2.035604 Tokens per Sec: 14746, Lr: 0.000300\n", "2020-04-10 14:44:04,126 Epoch 11 Step: 42400 Batch Loss: 1.951784 Tokens per Sec: 14777, Lr: 0.000300\n", "2020-04-10 14:44:18,978 Epoch 11 Step: 42500 Batch Loss: 2.176634 Tokens per Sec: 15058, Lr: 0.000300\n", "2020-04-10 14:44:33,921 Epoch 11 Step: 42600 Batch Loss: 1.964220 Tokens per Sec: 15265, Lr: 0.000300\n", "2020-04-10 14:44:48,494 Epoch 11 Step: 42700 Batch Loss: 1.886411 Tokens per Sec: 14736, Lr: 0.000300\n", "2020-04-10 14:45:03,296 Epoch 11 Step: 42800 Batch Loss: 2.114096 Tokens per Sec: 14777, Lr: 0.000300\n", "2020-04-10 14:45:18,153 Epoch 11 Step: 42900 Batch Loss: 2.150315 Tokens per Sec: 14694, Lr: 0.000300\n", "2020-04-10 14:45:33,070 Epoch 11 Step: 43000 Batch Loss: 2.024081 Tokens per Sec: 14973, Lr: 0.000300\n", "2020-04-10 14:45:51,110 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:45:51,111 Saving new checkpoint.\n", "2020-04-10 14:45:52,375 Example #0\n", "2020-04-10 14:45:52,376 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:45:52,376 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:45:52,377 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 14:45:52,377 Example #1\n", "2020-04-10 14:45:52,377 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:45:52,378 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:45:52,378 \tHypothesis: Prayer may have been the clergy to them .\n", "2020-04-10 14:45:52,378 Example #2\n", "2020-04-10 14:45:52,379 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:45:52,379 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:45:52,379 \tHypothesis: The same words found at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:45:52,379 Example #3\n", "2020-04-10 14:45:52,380 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:45:52,380 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:45:52,380 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:45:52,381 Validation result (greedy) at epoch 11, step 43000: bleu: 24.60, loss: 48242.4492, ppl: 6.4542, duration: 19.3103s\n", "2020-04-10 14:46:07,480 Epoch 11 Step: 43100 Batch Loss: 2.073891 Tokens per Sec: 14846, Lr: 0.000300\n", "2020-04-10 14:46:22,411 Epoch 11 Step: 43200 Batch Loss: 2.278624 Tokens per Sec: 14855, Lr: 0.000300\n", "2020-04-10 14:46:37,162 Epoch 11 Step: 43300 Batch Loss: 1.963766 Tokens per Sec: 14741, Lr: 0.000300\n", "2020-04-10 14:46:43,178 Epoch 11: total training loss 8086.26\n", "2020-04-10 14:46:43,179 EPOCH 12\n", "2020-04-10 14:46:52,328 Epoch 12 Step: 43400 Batch Loss: 2.065890 Tokens per Sec: 13859, Lr: 0.000300\n", "2020-04-10 14:47:07,264 Epoch 12 Step: 43500 Batch Loss: 1.921554 Tokens per Sec: 14971, Lr: 0.000300\n", "2020-04-10 14:47:22,236 Epoch 12 Step: 43600 Batch Loss: 2.016463 Tokens per Sec: 14786, Lr: 0.000300\n", "2020-04-10 14:47:36,940 Epoch 12 Step: 43700 Batch Loss: 2.068140 Tokens per Sec: 14761, Lr: 0.000300\n", "2020-04-10 14:47:51,784 Epoch 12 Step: 43800 Batch Loss: 1.860518 Tokens per Sec: 14990, Lr: 0.000300\n", "2020-04-10 14:48:06,729 Epoch 12 Step: 43900 Batch Loss: 2.074690 Tokens per Sec: 15048, Lr: 0.000300\n", "2020-04-10 14:48:21,484 Epoch 12 Step: 44000 Batch Loss: 1.613038 Tokens per Sec: 15013, Lr: 0.000300\n", "2020-04-10 14:48:41,448 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:48:41,449 Saving new checkpoint.\n", "2020-04-10 14:48:42,743 Example #0\n", "2020-04-10 14:48:42,744 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:48:42,744 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:48:42,744 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 14:48:42,744 Example #1\n", "2020-04-10 14:48:42,745 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:48:42,745 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:48:42,745 \tHypothesis: It may be the clergy to them .\n", "2020-04-10 14:48:42,745 Example #2\n", "2020-04-10 14:48:42,745 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:48:42,746 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:48:42,746 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:48:42,746 Example #3\n", "2020-04-10 14:48:42,746 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:48:42,747 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:48:42,747 \tHypothesis: Paul was reminded in his home in Rome for two years ( in some 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:48:42,747 Validation result (greedy) at epoch 12, step 44000: bleu: 24.21, loss: 48099.0234, ppl: 6.4185, duration: 21.2627s\n", "2020-04-10 14:48:57,965 Epoch 12 Step: 44100 Batch Loss: 2.100898 Tokens per Sec: 14758, Lr: 0.000300\n", "2020-04-10 14:49:12,574 Epoch 12 Step: 44200 Batch Loss: 2.049358 Tokens per Sec: 14857, Lr: 0.000300\n", "2020-04-10 14:49:27,348 Epoch 12 Step: 44300 Batch Loss: 1.921224 Tokens per Sec: 14533, Lr: 0.000300\n", "2020-04-10 14:49:42,087 Epoch 12 Step: 44400 Batch Loss: 2.109715 Tokens per Sec: 14838, Lr: 0.000300\n", "2020-04-10 14:49:57,069 Epoch 12 Step: 44500 Batch Loss: 2.052216 Tokens per Sec: 15002, Lr: 0.000300\n", "2020-04-10 14:50:11,922 Epoch 12 Step: 44600 Batch Loss: 2.021008 Tokens per Sec: 14908, Lr: 0.000300\n", "2020-04-10 14:50:26,908 Epoch 12 Step: 44700 Batch Loss: 2.190981 Tokens per Sec: 14847, Lr: 0.000300\n", "2020-04-10 14:50:41,963 Epoch 12 Step: 44800 Batch Loss: 2.027574 Tokens per Sec: 14929, Lr: 0.000300\n", "2020-04-10 14:50:56,762 Epoch 12 Step: 44900 Batch Loss: 2.003428 Tokens per Sec: 15262, Lr: 0.000300\n", "2020-04-10 14:51:11,538 Epoch 12 Step: 45000 Batch Loss: 2.000163 Tokens per Sec: 14824, Lr: 0.000300\n", "2020-04-10 14:51:29,636 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:51:29,636 Saving new checkpoint.\n", "2020-04-10 14:51:30,896 Example #0\n", "2020-04-10 14:51:30,897 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:51:30,897 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:51:30,897 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 14:51:30,897 Example #1\n", "2020-04-10 14:51:30,897 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:51:30,898 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:51:30,898 \tHypothesis: Prayer may be what the clergy said to them .\n", "2020-04-10 14:51:30,898 Example #2\n", "2020-04-10 14:51:30,899 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:51:30,900 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:51:30,900 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:51:30,900 Example #3\n", "2020-04-10 14:51:30,900 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:51:30,900 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:51:30,901 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:51:30,901 Validation result (greedy) at epoch 12, step 45000: bleu: 24.57, loss: 47876.2695, ppl: 6.3635, duration: 19.3618s\n", "2020-04-10 14:51:45,611 Epoch 12 Step: 45100 Batch Loss: 1.898098 Tokens per Sec: 14572, Lr: 0.000300\n", "2020-04-10 14:52:00,390 Epoch 12 Step: 45200 Batch Loss: 2.299315 Tokens per Sec: 14914, Lr: 0.000300\n", "2020-04-10 14:52:15,094 Epoch 12 Step: 45300 Batch Loss: 1.998753 Tokens per Sec: 14969, Lr: 0.000300\n", "2020-04-10 14:52:29,969 Epoch 12 Step: 45400 Batch Loss: 2.103719 Tokens per Sec: 15088, Lr: 0.000300\n", "2020-04-10 14:52:44,759 Epoch 12 Step: 45500 Batch Loss: 1.963469 Tokens per Sec: 14909, Lr: 0.000300\n", "2020-04-10 14:52:59,556 Epoch 12 Step: 45600 Batch Loss: 2.043290 Tokens per Sec: 14591, Lr: 0.000300\n", "2020-04-10 14:53:14,539 Epoch 12 Step: 45700 Batch Loss: 1.997051 Tokens per Sec: 15164, Lr: 0.000300\n", "2020-04-10 14:53:29,354 Epoch 12 Step: 45800 Batch Loss: 2.115258 Tokens per Sec: 14607, Lr: 0.000300\n", "2020-04-10 14:53:44,292 Epoch 12 Step: 45900 Batch Loss: 1.939042 Tokens per Sec: 14944, Lr: 0.000300\n", "2020-04-10 14:53:59,107 Epoch 12 Step: 46000 Batch Loss: 2.028525 Tokens per Sec: 14568, Lr: 0.000300\n", "2020-04-10 14:54:15,936 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:54:15,937 Saving new checkpoint.\n", "2020-04-10 14:54:17,149 Example #0\n", "2020-04-10 14:54:17,150 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:54:17,150 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:54:17,150 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 14:54:17,151 Example #1\n", "2020-04-10 14:54:17,151 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:54:17,152 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:54:17,152 \tHypothesis: That is what the clergy said to them .\n", "2020-04-10 14:54:17,152 Example #2\n", "2020-04-10 14:54:17,152 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:54:17,153 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:54:17,154 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:54:17,154 Example #3\n", "2020-04-10 14:54:17,154 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:54:17,155 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:54:17,155 \tHypothesis: Paul was reminded in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:54:17,155 Validation result (greedy) at epoch 12, step 46000: bleu: 24.31, loss: 47673.3242, ppl: 6.3138, duration: 18.0473s\n", "2020-04-10 14:54:32,376 Epoch 12 Step: 46100 Batch Loss: 2.081431 Tokens per Sec: 15066, Lr: 0.000300\n", "2020-04-10 14:54:47,412 Epoch 12 Step: 46200 Batch Loss: 1.765148 Tokens per Sec: 14775, Lr: 0.000300\n", "2020-04-10 14:55:02,269 Epoch 12 Step: 46300 Batch Loss: 1.929118 Tokens per Sec: 14975, Lr: 0.000300\n", "2020-04-10 14:55:17,000 Epoch 12 Step: 46400 Batch Loss: 2.047260 Tokens per Sec: 14924, Lr: 0.000300\n", "2020-04-10 14:55:31,860 Epoch 12 Step: 46500 Batch Loss: 1.931682 Tokens per Sec: 14479, Lr: 0.000300\n", "2020-04-10 14:55:46,744 Epoch 12 Step: 46600 Batch Loss: 2.033991 Tokens per Sec: 14989, Lr: 0.000300\n", "2020-04-10 14:56:01,669 Epoch 12 Step: 46700 Batch Loss: 1.938934 Tokens per Sec: 14656, Lr: 0.000300\n", "2020-04-10 14:56:16,452 Epoch 12 Step: 46800 Batch Loss: 2.014159 Tokens per Sec: 15145, Lr: 0.000300\n", "2020-04-10 14:56:31,211 Epoch 12 Step: 46900 Batch Loss: 2.011358 Tokens per Sec: 15026, Lr: 0.000300\n", "2020-04-10 14:56:46,122 Epoch 12 Step: 47000 Batch Loss: 1.877270 Tokens per Sec: 15139, Lr: 0.000300\n", "2020-04-10 14:57:04,740 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:57:04,740 Saving new checkpoint.\n", "2020-04-10 14:57:06,009 Example #0\n", "2020-04-10 14:57:06,010 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:57:06,010 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:57:06,010 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 14:57:06,011 Example #1\n", "2020-04-10 14:57:06,011 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:57:06,011 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:57:06,011 \tHypothesis: It may even be the clergy to them .\n", "2020-04-10 14:57:06,012 Example #2\n", "2020-04-10 14:57:06,012 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:57:06,012 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:57:06,012 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:57:06,013 Example #3\n", "2020-04-10 14:57:06,013 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:57:06,013 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:57:06,014 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the way to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:57:06,014 Validation result (greedy) at epoch 12, step 47000: bleu: 24.50, loss: 47651.1719, ppl: 6.3084, duration: 19.8912s\n", "2020-04-10 14:57:21,163 Epoch 12 Step: 47100 Batch Loss: 1.928516 Tokens per Sec: 14539, Lr: 0.000300\n", "2020-04-10 14:57:36,116 Epoch 12 Step: 47200 Batch Loss: 2.081662 Tokens per Sec: 14845, Lr: 0.000300\n", "2020-04-10 14:57:47,941 Epoch 12: total training loss 7982.23\n", "2020-04-10 14:57:47,941 EPOCH 13\n", "2020-04-10 14:57:50,991 Epoch 13 Step: 47300 Batch Loss: 1.718069 Tokens per Sec: 11813, Lr: 0.000300\n", "2020-04-10 14:58:06,016 Epoch 13 Step: 47400 Batch Loss: 1.885140 Tokens per Sec: 14885, Lr: 0.000300\n", "2020-04-10 14:58:20,893 Epoch 13 Step: 47500 Batch Loss: 1.832319 Tokens per Sec: 15124, Lr: 0.000300\n", "2020-04-10 14:58:35,694 Epoch 13 Step: 47600 Batch Loss: 2.111046 Tokens per Sec: 15007, Lr: 0.000300\n", "2020-04-10 14:58:50,550 Epoch 13 Step: 47700 Batch Loss: 2.013535 Tokens per Sec: 14869, Lr: 0.000300\n", "2020-04-10 14:59:05,369 Epoch 13 Step: 47800 Batch Loss: 2.198728 Tokens per Sec: 15061, Lr: 0.000300\n", "2020-04-10 14:59:20,163 Epoch 13 Step: 47900 Batch Loss: 1.976489 Tokens per Sec: 14730, Lr: 0.000300\n", "2020-04-10 14:59:35,146 Epoch 13 Step: 48000 Batch Loss: 1.861652 Tokens per Sec: 14612, Lr: 0.000300\n", "2020-04-10 14:59:52,483 Hooray! New best validation result [ppl]!\n", "2020-04-10 14:59:52,483 Saving new checkpoint.\n", "2020-04-10 14:59:53,766 Example #0\n", "2020-04-10 14:59:53,767 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 14:59:53,767 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 14:59:53,767 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 14:59:53,767 Example #1\n", "2020-04-10 14:59:53,768 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 14:59:53,768 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 14:59:53,768 \tHypothesis: That is the case of the clergy .\n", "2020-04-10 14:59:53,768 Example #2\n", "2020-04-10 14:59:53,769 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 14:59:53,769 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:59:53,769 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 14:59:53,769 Example #3\n", "2020-04-10 14:59:53,769 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 14:59:53,769 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:59:53,770 \tHypothesis: Paul was remembered in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 14:59:53,770 Validation result (greedy) at epoch 13, step 48000: bleu: 24.16, loss: 47527.1562, ppl: 6.2782, duration: 18.6235s\n", "2020-04-10 15:00:08,905 Epoch 13 Step: 48100 Batch Loss: 1.954393 Tokens per Sec: 14698, Lr: 0.000300\n", "2020-04-10 15:00:23,616 Epoch 13 Step: 48200 Batch Loss: 1.871923 Tokens per Sec: 14862, Lr: 0.000300\n", "2020-04-10 15:00:38,619 Epoch 13 Step: 48300 Batch Loss: 2.080469 Tokens per Sec: 14992, Lr: 0.000300\n", "2020-04-10 15:00:53,427 Epoch 13 Step: 48400 Batch Loss: 2.102652 Tokens per Sec: 14595, Lr: 0.000300\n", "2020-04-10 15:01:08,368 Epoch 13 Step: 48500 Batch Loss: 2.033677 Tokens per Sec: 14508, Lr: 0.000300\n", "2020-04-10 15:01:23,228 Epoch 13 Step: 48600 Batch Loss: 2.067648 Tokens per Sec: 14820, Lr: 0.000300\n", "2020-04-10 15:01:38,331 Epoch 13 Step: 48700 Batch Loss: 1.994588 Tokens per Sec: 14525, Lr: 0.000300\n", "2020-04-10 15:01:53,225 Epoch 13 Step: 48800 Batch Loss: 1.978390 Tokens per Sec: 14643, Lr: 0.000300\n", "2020-04-10 15:02:08,178 Epoch 13 Step: 48900 Batch Loss: 2.069730 Tokens per Sec: 14789, Lr: 0.000300\n", "2020-04-10 15:02:23,245 Epoch 13 Step: 49000 Batch Loss: 2.026954 Tokens per Sec: 15019, Lr: 0.000300\n", "2020-04-10 15:02:40,644 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:02:40,644 Saving new checkpoint.\n", "2020-04-10 15:02:41,933 Example #0\n", "2020-04-10 15:02:41,933 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:02:41,934 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:02:41,934 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 15:02:41,934 Example #1\n", "2020-04-10 15:02:41,934 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:02:41,934 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:02:41,935 \tHypothesis: That is what the clergy said to them .\n", "2020-04-10 15:02:41,935 Example #2\n", "2020-04-10 15:02:41,935 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:02:41,935 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:02:41,935 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:02:41,936 Example #3\n", "2020-04-10 15:02:41,936 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:02:41,936 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:02:41,936 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:02:41,937 Validation result (greedy) at epoch 13, step 49000: bleu: 24.40, loss: 47476.2227, ppl: 6.2658, duration: 18.6907s\n", "2020-04-10 15:02:57,066 Epoch 13 Step: 49100 Batch Loss: 1.968480 Tokens per Sec: 14143, Lr: 0.000300\n", "2020-04-10 15:03:12,086 Epoch 13 Step: 49200 Batch Loss: 2.008496 Tokens per Sec: 14719, Lr: 0.000300\n", "2020-04-10 15:03:26,975 Epoch 13 Step: 49300 Batch Loss: 2.009613 Tokens per Sec: 14073, Lr: 0.000300\n", "2020-04-10 15:03:42,121 Epoch 13 Step: 49400 Batch Loss: 2.080574 Tokens per Sec: 14879, Lr: 0.000300\n", "2020-04-10 15:03:57,433 Epoch 13 Step: 49500 Batch Loss: 2.071363 Tokens per Sec: 14737, Lr: 0.000300\n", "2020-04-10 15:04:12,392 Epoch 13 Step: 49600 Batch Loss: 1.951542 Tokens per Sec: 14430, Lr: 0.000300\n", "2020-04-10 15:04:27,303 Epoch 13 Step: 49700 Batch Loss: 2.060640 Tokens per Sec: 14810, Lr: 0.000300\n", "2020-04-10 15:04:42,399 Epoch 13 Step: 49800 Batch Loss: 2.077200 Tokens per Sec: 14609, Lr: 0.000300\n", "2020-04-10 15:04:57,661 Epoch 13 Step: 49900 Batch Loss: 2.117451 Tokens per Sec: 14564, Lr: 0.000300\n", "2020-04-10 15:05:13,034 Epoch 13 Step: 50000 Batch Loss: 1.973973 Tokens per Sec: 14961, Lr: 0.000300\n", "2020-04-10 15:05:31,248 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:05:31,249 Saving new checkpoint.\n", "2020-04-10 15:05:32,580 Example #0\n", "2020-04-10 15:05:32,581 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:05:32,581 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:05:32,581 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 15:05:32,581 Example #1\n", "2020-04-10 15:05:32,582 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:05:32,582 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:05:32,582 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 15:05:32,582 Example #2\n", "2020-04-10 15:05:32,583 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:05:32,583 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:05:32,583 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:05:32,583 Example #3\n", "2020-04-10 15:05:32,583 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:05:32,584 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:05:32,584 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the way to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:05:32,584 Validation result (greedy) at epoch 13, step 50000: bleu: 24.86, loss: 47418.7383, ppl: 6.2519, duration: 19.5498s\n", "2020-04-10 15:05:47,766 Epoch 13 Step: 50100 Batch Loss: 2.006248 Tokens per Sec: 14713, Lr: 0.000300\n", "2020-04-10 15:06:02,805 Epoch 13 Step: 50200 Batch Loss: 2.138795 Tokens per Sec: 14642, Lr: 0.000300\n", "2020-04-10 15:06:18,114 Epoch 13 Step: 50300 Batch Loss: 1.992296 Tokens per Sec: 15009, Lr: 0.000300\n", "2020-04-10 15:06:33,074 Epoch 13 Step: 50400 Batch Loss: 1.752580 Tokens per Sec: 14472, Lr: 0.000300\n", "2020-04-10 15:06:48,017 Epoch 13 Step: 50500 Batch Loss: 1.984598 Tokens per Sec: 14559, Lr: 0.000300\n", "2020-04-10 15:07:03,218 Epoch 13 Step: 50600 Batch Loss: 2.004444 Tokens per Sec: 14800, Lr: 0.000300\n", "2020-04-10 15:07:18,175 Epoch 13 Step: 50700 Batch Loss: 1.843810 Tokens per Sec: 14902, Lr: 0.000300\n", "2020-04-10 15:07:33,334 Epoch 13 Step: 50800 Batch Loss: 2.683547 Tokens per Sec: 14844, Lr: 0.000300\n", "2020-04-10 15:07:48,112 Epoch 13 Step: 50900 Batch Loss: 1.936749 Tokens per Sec: 14486, Lr: 0.000300\n", "2020-04-10 15:08:03,209 Epoch 13 Step: 51000 Batch Loss: 1.972341 Tokens per Sec: 14858, Lr: 0.000300\n", "2020-04-10 15:08:19,865 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:08:19,865 Saving new checkpoint.\n", "2020-04-10 15:08:21,137 Example #0\n", "2020-04-10 15:08:21,138 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:08:21,138 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:08:21,138 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 15:08:21,138 Example #1\n", "2020-04-10 15:08:21,139 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:08:21,139 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:08:21,139 \tHypothesis: Prayer may have been the clergy to them .\n", "2020-04-10 15:08:21,139 Example #2\n", "2020-04-10 15:08:21,140 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:08:21,140 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:08:21,140 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:08:21,140 Example #3\n", "2020-04-10 15:08:21,141 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:08:21,141 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:08:21,141 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to be a Kingdom - preaching and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:08:21,141 Validation result (greedy) at epoch 13, step 51000: bleu: 24.49, loss: 47163.4141, ppl: 6.1905, duration: 17.9317s\n", "2020-04-10 15:08:36,308 Epoch 13 Step: 51100 Batch Loss: 2.056800 Tokens per Sec: 14659, Lr: 0.000300\n", "2020-04-10 15:08:51,258 Epoch 13 Step: 51200 Batch Loss: 2.039567 Tokens per Sec: 14570, Lr: 0.000300\n", "2020-04-10 15:08:55,084 Epoch 13: total training loss 7904.43\n", "2020-04-10 15:08:55,084 EPOCH 14\n", "2020-04-10 15:09:06,685 Epoch 14 Step: 51300 Batch Loss: 2.168020 Tokens per Sec: 14268, Lr: 0.000300\n", "2020-04-10 15:09:21,783 Epoch 14 Step: 51400 Batch Loss: 1.732644 Tokens per Sec: 14766, Lr: 0.000300\n", "2020-04-10 15:09:36,790 Epoch 14 Step: 51500 Batch Loss: 2.010690 Tokens per Sec: 14650, Lr: 0.000300\n", "2020-04-10 15:09:51,550 Epoch 14 Step: 51600 Batch Loss: 2.063891 Tokens per Sec: 14550, Lr: 0.000300\n", "2020-04-10 15:10:06,478 Epoch 14 Step: 51700 Batch Loss: 1.881827 Tokens per Sec: 14785, Lr: 0.000300\n", "2020-04-10 15:10:21,302 Epoch 14 Step: 51800 Batch Loss: 1.980386 Tokens per Sec: 14771, Lr: 0.000300\n", "2020-04-10 15:10:35,928 Epoch 14 Step: 51900 Batch Loss: 2.022363 Tokens per Sec: 14771, Lr: 0.000300\n", "2020-04-10 15:10:50,961 Epoch 14 Step: 52000 Batch Loss: 2.061057 Tokens per Sec: 14682, Lr: 0.000300\n", "2020-04-10 15:11:09,996 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:11:09,996 Saving new checkpoint.\n", "2020-04-10 15:11:11,324 Example #0\n", "2020-04-10 15:11:11,325 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:11:11,325 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:11:11,325 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 15:11:11,325 Example #1\n", "2020-04-10 15:11:11,326 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:11:11,326 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:11:11,326 \tHypothesis: That is the case of the clergy .\n", "2020-04-10 15:11:11,326 Example #2\n", "2020-04-10 15:11:11,327 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:11:11,327 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:11:11,327 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:11:11,327 Example #3\n", "2020-04-10 15:11:11,328 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:11:11,328 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:11:11,328 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:11:11,328 Validation result (greedy) at epoch 14, step 52000: bleu: 24.95, loss: 46993.8047, ppl: 6.1501, duration: 20.3664s\n", "2020-04-10 15:11:26,582 Epoch 14 Step: 52100 Batch Loss: 1.907694 Tokens per Sec: 14463, Lr: 0.000300\n", "2020-04-10 15:11:41,661 Epoch 14 Step: 52200 Batch Loss: 1.999701 Tokens per Sec: 14958, Lr: 0.000300\n", "2020-04-10 15:11:56,485 Epoch 14 Step: 52300 Batch Loss: 1.934908 Tokens per Sec: 14798, Lr: 0.000300\n", "2020-04-10 15:12:11,528 Epoch 14 Step: 52400 Batch Loss: 1.955016 Tokens per Sec: 14798, Lr: 0.000300\n", "2020-04-10 15:12:26,411 Epoch 14 Step: 52500 Batch Loss: 1.997514 Tokens per Sec: 14721, Lr: 0.000300\n", "2020-04-10 15:12:41,149 Epoch 14 Step: 52600 Batch Loss: 2.128609 Tokens per Sec: 14859, Lr: 0.000300\n", "2020-04-10 15:12:55,851 Epoch 14 Step: 52700 Batch Loss: 1.995642 Tokens per Sec: 14511, Lr: 0.000300\n", "2020-04-10 15:13:10,971 Epoch 14 Step: 52800 Batch Loss: 2.011403 Tokens per Sec: 14942, Lr: 0.000300\n", "2020-04-10 15:13:25,819 Epoch 14 Step: 52900 Batch Loss: 1.937491 Tokens per Sec: 14490, Lr: 0.000300\n", "2020-04-10 15:13:40,669 Epoch 14 Step: 53000 Batch Loss: 1.968632 Tokens per Sec: 14784, Lr: 0.000300\n", "2020-04-10 15:13:59,631 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:13:59,631 Saving new checkpoint.\n", "2020-04-10 15:14:00,893 Example #0\n", "2020-04-10 15:14:00,894 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:14:00,894 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:14:00,894 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 15:14:00,894 Example #1\n", "2020-04-10 15:14:00,895 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:14:00,896 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:14:00,898 \tHypothesis: That is the case of the clergy .\n", "2020-04-10 15:14:00,899 Example #2\n", "2020-04-10 15:14:00,899 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:14:00,899 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:14:00,900 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:14:00,900 Example #3\n", "2020-04-10 15:14:00,900 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:14:00,901 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:14:00,901 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the way to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:14:00,902 Validation result (greedy) at epoch 14, step 53000: bleu: 24.91, loss: 46798.4453, ppl: 6.1038, duration: 20.2323s\n", "2020-04-10 15:14:16,165 Epoch 14 Step: 53100 Batch Loss: 1.766169 Tokens per Sec: 14548, Lr: 0.000300\n", "2020-04-10 15:14:31,225 Epoch 14 Step: 53200 Batch Loss: 1.996014 Tokens per Sec: 14677, Lr: 0.000300\n", "2020-04-10 15:14:46,189 Epoch 14 Step: 53300 Batch Loss: 1.952448 Tokens per Sec: 14856, Lr: 0.000300\n", "2020-04-10 15:15:01,204 Epoch 14 Step: 53400 Batch Loss: 2.066245 Tokens per Sec: 14445, Lr: 0.000300\n", "2020-04-10 15:15:16,178 Epoch 14 Step: 53500 Batch Loss: 1.949084 Tokens per Sec: 15012, Lr: 0.000300\n", "2020-04-10 15:15:31,096 Epoch 14 Step: 53600 Batch Loss: 1.903068 Tokens per Sec: 14672, Lr: 0.000300\n", "2020-04-10 15:15:46,101 Epoch 14 Step: 53700 Batch Loss: 1.990549 Tokens per Sec: 14955, Lr: 0.000300\n", "2020-04-10 15:16:01,183 Epoch 14 Step: 53800 Batch Loss: 2.086692 Tokens per Sec: 14448, Lr: 0.000300\n", "2020-04-10 15:16:15,845 Epoch 14 Step: 53900 Batch Loss: 2.150777 Tokens per Sec: 14763, Lr: 0.000300\n", "2020-04-10 15:16:30,917 Epoch 14 Step: 54000 Batch Loss: 2.011321 Tokens per Sec: 15039, Lr: 0.000300\n", "2020-04-10 15:16:48,259 Example #0\n", "2020-04-10 15:16:48,260 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:16:48,260 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:16:48,260 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 15:16:48,260 Example #1\n", "2020-04-10 15:16:48,261 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:16:48,261 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:16:48,261 \tHypothesis: The clergy may be what the clergy said to them .\n", "2020-04-10 15:16:48,261 Example #2\n", "2020-04-10 15:16:48,262 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:16:48,262 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:16:48,262 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:16:48,262 Example #3\n", "2020-04-10 15:16:48,262 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:16:48,263 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:16:48,263 \tHypothesis: Paul was reminded in his home in Rome two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:16:48,263 Validation result (greedy) at epoch 14, step 54000: bleu: 24.85, loss: 46862.7422, ppl: 6.1190, duration: 17.3460s\n", "2020-04-10 15:17:03,229 Epoch 14 Step: 54100 Batch Loss: 2.072515 Tokens per Sec: 14621, Lr: 0.000300\n", "2020-04-10 15:17:17,953 Epoch 14 Step: 54200 Batch Loss: 2.112647 Tokens per Sec: 15022, Lr: 0.000300\n", "2020-04-10 15:17:33,017 Epoch 14 Step: 54300 Batch Loss: 1.853910 Tokens per Sec: 14828, Lr: 0.000300\n", "2020-04-10 15:17:47,784 Epoch 14 Step: 54400 Batch Loss: 2.039173 Tokens per Sec: 14904, Lr: 0.000300\n", "2020-04-10 15:18:02,794 Epoch 14 Step: 54500 Batch Loss: 2.013472 Tokens per Sec: 14851, Lr: 0.000300\n", "2020-04-10 15:18:17,841 Epoch 14 Step: 54600 Batch Loss: 2.003958 Tokens per Sec: 14455, Lr: 0.000300\n", "2020-04-10 15:18:32,876 Epoch 14 Step: 54700 Batch Loss: 2.105746 Tokens per Sec: 14962, Lr: 0.000300\n", "2020-04-10 15:18:47,756 Epoch 14 Step: 54800 Batch Loss: 1.981986 Tokens per Sec: 15054, Lr: 0.000300\n", "2020-04-10 15:19:02,796 Epoch 14 Step: 54900 Batch Loss: 2.031801 Tokens per Sec: 14777, Lr: 0.000300\n", "2020-04-10 15:19:17,875 Epoch 14 Step: 55000 Batch Loss: 2.043372 Tokens per Sec: 14540, Lr: 0.000300\n", "2020-04-10 15:19:38,581 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:19:38,581 Saving new checkpoint.\n", "2020-04-10 15:19:39,905 Example #0\n", "2020-04-10 15:19:39,906 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:19:39,906 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:19:39,906 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 15:19:39,906 Example #1\n", "2020-04-10 15:19:39,907 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:19:39,907 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:19:39,907 \tHypothesis: Prayer may be what the clergy said to them .\n", "2020-04-10 15:19:39,907 Example #2\n", "2020-04-10 15:19:39,908 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:19:39,908 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:19:39,908 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:19:39,908 Example #3\n", "2020-04-10 15:19:39,909 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:19:39,909 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:19:39,909 \tHypothesis: Paul was reminded in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:19:39,909 Validation result (greedy) at epoch 14, step 55000: bleu: 24.80, loss: 46748.2930, ppl: 6.0920, duration: 22.0341s\n", "2020-04-10 15:19:55,348 Epoch 14 Step: 55100 Batch Loss: 1.811882 Tokens per Sec: 14649, Lr: 0.000300\n", "2020-04-10 15:20:06,591 Epoch 14: total training loss 7836.22\n", "2020-04-10 15:20:06,591 EPOCH 15\n", "2020-04-10 15:20:11,043 Epoch 15 Step: 55200 Batch Loss: 2.085542 Tokens per Sec: 13155, Lr: 0.000300\n", "2020-04-10 15:20:26,192 Epoch 15 Step: 55300 Batch Loss: 1.915579 Tokens per Sec: 14552, Lr: 0.000300\n", "2020-04-10 15:20:41,510 Epoch 15 Step: 55400 Batch Loss: 2.049084 Tokens per Sec: 14469, Lr: 0.000300\n", "2020-04-10 15:20:56,859 Epoch 15 Step: 55500 Batch Loss: 1.853199 Tokens per Sec: 14528, Lr: 0.000300\n", "2020-04-10 15:21:12,016 Epoch 15 Step: 55600 Batch Loss: 1.875930 Tokens per Sec: 14798, Lr: 0.000300\n", "2020-04-10 15:21:27,131 Epoch 15 Step: 55700 Batch Loss: 1.846222 Tokens per Sec: 14581, Lr: 0.000300\n", "2020-04-10 15:21:42,284 Epoch 15 Step: 55800 Batch Loss: 1.877608 Tokens per Sec: 14401, Lr: 0.000300\n", "2020-04-10 15:21:57,598 Epoch 15 Step: 55900 Batch Loss: 1.949035 Tokens per Sec: 14746, Lr: 0.000300\n", "2020-04-10 15:22:12,952 Epoch 15 Step: 56000 Batch Loss: 1.833901 Tokens per Sec: 14520, Lr: 0.000300\n", "2020-04-10 15:22:30,828 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:22:30,829 Saving new checkpoint.\n", "2020-04-10 15:22:32,142 Example #0\n", "2020-04-10 15:22:32,143 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:22:32,143 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:22:32,143 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 15:22:32,143 Example #1\n", "2020-04-10 15:22:32,144 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:22:32,144 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:22:32,144 \tHypothesis: Prayer may be what the clergy said to them .\n", "2020-04-10 15:22:32,144 Example #2\n", "2020-04-10 15:22:32,145 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:22:32,145 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:22:32,145 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:22:32,145 Example #3\n", "2020-04-10 15:22:32,146 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:22:32,146 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:22:32,146 \tHypothesis: Paul was reminded in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:22:32,147 Validation result (greedy) at epoch 15, step 56000: bleu: 24.72, loss: 46622.8438, ppl: 6.0625, duration: 19.1946s\n", "2020-04-10 15:22:47,597 Epoch 15 Step: 56100 Batch Loss: 2.018945 Tokens per Sec: 14369, Lr: 0.000300\n", "2020-04-10 15:23:02,771 Epoch 15 Step: 56200 Batch Loss: 2.065516 Tokens per Sec: 14872, Lr: 0.000300\n", "2020-04-10 15:23:17,724 Epoch 15 Step: 56300 Batch Loss: 2.038669 Tokens per Sec: 14537, Lr: 0.000300\n", "2020-04-10 15:23:32,787 Epoch 15 Step: 56400 Batch Loss: 1.978885 Tokens per Sec: 14185, Lr: 0.000300\n", "2020-04-10 15:23:47,681 Epoch 15 Step: 56500 Batch Loss: 1.747310 Tokens per Sec: 14046, Lr: 0.000300\n", "2020-04-10 15:24:02,817 Epoch 15 Step: 56600 Batch Loss: 2.047235 Tokens per Sec: 14740, Lr: 0.000300\n", "2020-04-10 15:24:17,876 Epoch 15 Step: 56700 Batch Loss: 2.133704 Tokens per Sec: 14918, Lr: 0.000300\n", "2020-04-10 15:24:33,047 Epoch 15 Step: 56800 Batch Loss: 1.794922 Tokens per Sec: 14663, Lr: 0.000300\n", "2020-04-10 15:24:48,220 Epoch 15 Step: 56900 Batch Loss: 1.937431 Tokens per Sec: 14535, Lr: 0.000300\n", "2020-04-10 15:25:03,416 Epoch 15 Step: 57000 Batch Loss: 2.157462 Tokens per Sec: 14420, Lr: 0.000300\n", "2020-04-10 15:25:22,041 Example #0\n", "2020-04-10 15:25:22,042 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:25:22,042 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:25:22,042 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 15:25:22,042 Example #1\n", "2020-04-10 15:25:22,043 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:25:22,043 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:25:22,043 \tHypothesis: That is what the clergy said to them .\n", "2020-04-10 15:25:22,043 Example #2\n", "2020-04-10 15:25:22,044 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:25:22,044 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:25:22,044 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:25:22,044 Example #3\n", "2020-04-10 15:25:22,044 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:25:22,045 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:25:22,045 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:25:22,045 Validation result (greedy) at epoch 15, step 57000: bleu: 24.86, loss: 46839.4844, ppl: 6.1135, duration: 18.6282s\n", "2020-04-10 15:25:37,252 Epoch 15 Step: 57100 Batch Loss: 2.039559 Tokens per Sec: 14872, Lr: 0.000300\n", "2020-04-10 15:25:52,402 Epoch 15 Step: 57200 Batch Loss: 1.945324 Tokens per Sec: 14492, Lr: 0.000300\n", "2020-04-10 15:26:07,286 Epoch 15 Step: 57300 Batch Loss: 2.008857 Tokens per Sec: 14350, Lr: 0.000300\n", "2020-04-10 15:26:22,216 Epoch 15 Step: 57400 Batch Loss: 2.010144 Tokens per Sec: 14769, Lr: 0.000300\n", "2020-04-10 15:26:37,398 Epoch 15 Step: 57500 Batch Loss: 2.161745 Tokens per Sec: 14590, Lr: 0.000300\n", "2020-04-10 15:26:52,464 Epoch 15 Step: 57600 Batch Loss: 1.995153 Tokens per Sec: 14778, Lr: 0.000300\n", "2020-04-10 15:27:07,485 Epoch 15 Step: 57700 Batch Loss: 1.996634 Tokens per Sec: 14383, Lr: 0.000300\n", "2020-04-10 15:27:22,464 Epoch 15 Step: 57800 Batch Loss: 1.987471 Tokens per Sec: 14491, Lr: 0.000300\n", "2020-04-10 15:27:37,507 Epoch 15 Step: 57900 Batch Loss: 1.969465 Tokens per Sec: 14671, Lr: 0.000300\n", "2020-04-10 15:27:52,736 Epoch 15 Step: 58000 Batch Loss: 1.901010 Tokens per Sec: 14582, Lr: 0.000300\n", "2020-04-10 15:28:10,740 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:28:10,740 Saving new checkpoint.\n", "2020-04-10 15:28:12,062 Example #0\n", "2020-04-10 15:28:12,063 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:28:12,063 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:28:12,063 \tHypothesis: If so , you are determined to choose the best way of life .\n", "2020-04-10 15:28:12,063 Example #1\n", "2020-04-10 15:28:12,064 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:28:12,064 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:28:12,064 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 15:28:12,064 Example #2\n", "2020-04-10 15:28:12,064 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:28:12,065 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:28:12,065 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:28:12,065 Example #3\n", "2020-04-10 15:28:12,065 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:28:12,065 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:28:12,066 \tHypothesis: Paul was removed in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:28:12,066 Validation result (greedy) at epoch 15, step 58000: bleu: 24.95, loss: 46464.4688, ppl: 6.0255, duration: 19.3288s\n", "2020-04-10 15:28:27,485 Epoch 15 Step: 58100 Batch Loss: 1.907740 Tokens per Sec: 14421, Lr: 0.000300\n", "2020-04-10 15:28:42,524 Epoch 15 Step: 58200 Batch Loss: 1.821364 Tokens per Sec: 14631, Lr: 0.000300\n", "2020-04-10 15:28:57,446 Epoch 15 Step: 58300 Batch Loss: 1.897056 Tokens per Sec: 14778, Lr: 0.000300\n", "2020-04-10 15:29:12,342 Epoch 15 Step: 58400 Batch Loss: 1.860937 Tokens per Sec: 14998, Lr: 0.000300\n", "2020-04-10 15:29:27,449 Epoch 15 Step: 58500 Batch Loss: 1.889590 Tokens per Sec: 15021, Lr: 0.000300\n", "2020-04-10 15:29:42,330 Epoch 15 Step: 58600 Batch Loss: 2.087269 Tokens per Sec: 14785, Lr: 0.000300\n", "2020-04-10 15:29:57,103 Epoch 15 Step: 58700 Batch Loss: 1.974291 Tokens per Sec: 14735, Lr: 0.000300\n", "2020-04-10 15:30:12,214 Epoch 15 Step: 58800 Batch Loss: 1.925516 Tokens per Sec: 14877, Lr: 0.000300\n", "2020-04-10 15:30:27,107 Epoch 15 Step: 58900 Batch Loss: 1.807276 Tokens per Sec: 14577, Lr: 0.000300\n", "2020-04-10 15:30:42,129 Epoch 15 Step: 59000 Batch Loss: 2.119597 Tokens per Sec: 15155, Lr: 0.000300\n", "2020-04-10 15:31:01,371 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:31:01,371 Saving new checkpoint.\n", "2020-04-10 15:31:02,682 Example #0\n", "2020-04-10 15:31:02,683 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:31:02,683 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:31:02,683 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 15:31:02,683 Example #1\n", "2020-04-10 15:31:02,684 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:31:02,684 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:31:02,684 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 15:31:02,684 Example #2\n", "2020-04-10 15:31:02,685 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:31:02,685 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:31:02,685 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:31:02,685 Example #3\n", "2020-04-10 15:31:02,686 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:31:02,686 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:31:02,686 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the way to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:31:02,686 Validation result (greedy) at epoch 15, step 59000: bleu: 25.10, loss: 46212.7812, ppl: 5.9672, duration: 20.5565s\n", "2020-04-10 15:31:17,896 Epoch 15 Step: 59100 Batch Loss: 2.055949 Tokens per Sec: 14443, Lr: 0.000300\n", "2020-04-10 15:31:20,498 Epoch 15: total training loss 7755.16\n", "2020-04-10 15:31:20,498 EPOCH 16\n", "2020-04-10 15:31:33,343 Epoch 16 Step: 59200 Batch Loss: 2.137752 Tokens per Sec: 14235, Lr: 0.000300\n", "2020-04-10 15:31:48,339 Epoch 16 Step: 59300 Batch Loss: 1.731488 Tokens per Sec: 14966, Lr: 0.000300\n", "2020-04-10 15:32:03,320 Epoch 16 Step: 59400 Batch Loss: 2.045809 Tokens per Sec: 15115, Lr: 0.000300\n", "2020-04-10 15:32:18,211 Epoch 16 Step: 59500 Batch Loss: 1.992150 Tokens per Sec: 14935, Lr: 0.000300\n", "2020-04-10 15:32:32,938 Epoch 16 Step: 59600 Batch Loss: 2.055036 Tokens per Sec: 14577, Lr: 0.000300\n", "2020-04-10 15:32:47,846 Epoch 16 Step: 59700 Batch Loss: 2.014744 Tokens per Sec: 14979, Lr: 0.000300\n", "2020-04-10 15:33:02,914 Epoch 16 Step: 59800 Batch Loss: 2.059061 Tokens per Sec: 14696, Lr: 0.000300\n", "2020-04-10 15:33:17,838 Epoch 16 Step: 59900 Batch Loss: 2.255783 Tokens per Sec: 15123, Lr: 0.000300\n", "2020-04-10 15:33:32,605 Epoch 16 Step: 60000 Batch Loss: 2.010369 Tokens per Sec: 14967, Lr: 0.000300\n", "2020-04-10 15:33:51,776 Example #0\n", "2020-04-10 15:33:51,776 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:33:51,777 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:33:51,777 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 15:33:51,777 Example #1\n", "2020-04-10 15:33:51,777 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:33:51,777 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:33:51,778 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 15:33:51,778 Example #2\n", "2020-04-10 15:33:51,778 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:33:51,778 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:33:51,778 \tHypothesis: The same expression is found at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:33:51,778 Example #3\n", "2020-04-10 15:33:51,779 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:33:51,779 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:33:51,779 \tHypothesis: Paul was reminded in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:33:51,779 Validation result (greedy) at epoch 16, step 60000: bleu: 25.47, loss: 46578.2773, ppl: 6.0521, duration: 19.1736s\n", "2020-04-10 15:34:06,850 Epoch 16 Step: 60100 Batch Loss: 2.046541 Tokens per Sec: 15040, Lr: 0.000300\n", "2020-04-10 15:34:21,750 Epoch 16 Step: 60200 Batch Loss: 2.079816 Tokens per Sec: 14778, Lr: 0.000300\n", "2020-04-10 15:34:36,663 Epoch 16 Step: 60300 Batch Loss: 1.997998 Tokens per Sec: 14680, Lr: 0.000300\n", "2020-04-10 15:34:51,532 Epoch 16 Step: 60400 Batch Loss: 2.044955 Tokens per Sec: 14771, Lr: 0.000300\n", "2020-04-10 15:35:06,455 Epoch 16 Step: 60500 Batch Loss: 2.029263 Tokens per Sec: 14972, Lr: 0.000300\n", "2020-04-10 15:35:21,428 Epoch 16 Step: 60600 Batch Loss: 1.895996 Tokens per Sec: 14777, Lr: 0.000300\n", "2020-04-10 15:35:36,395 Epoch 16 Step: 60700 Batch Loss: 1.475895 Tokens per Sec: 14812, Lr: 0.000300\n", "2020-04-10 15:35:51,331 Epoch 16 Step: 60800 Batch Loss: 2.065882 Tokens per Sec: 14532, Lr: 0.000300\n", "2020-04-10 15:36:06,469 Epoch 16 Step: 60900 Batch Loss: 1.935914 Tokens per Sec: 15011, Lr: 0.000300\n", "2020-04-10 15:36:21,402 Epoch 16 Step: 61000 Batch Loss: 2.061788 Tokens per Sec: 14658, Lr: 0.000300\n", "2020-04-10 15:36:39,443 Example #0\n", "2020-04-10 15:36:39,444 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:36:39,444 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:36:39,444 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 15:36:39,444 Example #1\n", "2020-04-10 15:36:39,444 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:36:39,445 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:36:39,445 \tHypothesis: That may be the clergy that was said to them .\n", "2020-04-10 15:36:39,445 Example #2\n", "2020-04-10 15:36:39,445 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:36:39,445 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:36:39,445 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:36:39,445 Example #3\n", "2020-04-10 15:36:39,446 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:36:39,446 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:36:39,446 \tHypothesis: Paul was reminded in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:36:39,446 Validation result (greedy) at epoch 16, step 61000: bleu: 25.13, loss: 46245.9297, ppl: 5.9748, duration: 18.0433s\n", "2020-04-10 15:36:54,362 Epoch 16 Step: 61100 Batch Loss: 1.946218 Tokens per Sec: 14857, Lr: 0.000300\n", "2020-04-10 15:37:09,319 Epoch 16 Step: 61200 Batch Loss: 2.106031 Tokens per Sec: 14674, Lr: 0.000300\n", "2020-04-10 15:37:24,275 Epoch 16 Step: 61300 Batch Loss: 2.095335 Tokens per Sec: 14660, Lr: 0.000300\n", "2020-04-10 15:37:39,516 Epoch 16 Step: 61400 Batch Loss: 1.965570 Tokens per Sec: 15099, Lr: 0.000300\n", "2020-04-10 15:37:54,563 Epoch 16 Step: 61500 Batch Loss: 2.037644 Tokens per Sec: 14634, Lr: 0.000300\n", "2020-04-10 15:38:09,704 Epoch 16 Step: 61600 Batch Loss: 1.932045 Tokens per Sec: 14897, Lr: 0.000300\n", "2020-04-10 15:38:24,905 Epoch 16 Step: 61700 Batch Loss: 1.960355 Tokens per Sec: 14532, Lr: 0.000300\n", "2020-04-10 15:38:39,950 Epoch 16 Step: 61800 Batch Loss: 2.122571 Tokens per Sec: 14605, Lr: 0.000300\n", "2020-04-10 15:38:54,766 Epoch 16 Step: 61900 Batch Loss: 1.886188 Tokens per Sec: 14444, Lr: 0.000300\n", "2020-04-10 15:39:09,633 Epoch 16 Step: 62000 Batch Loss: 2.054906 Tokens per Sec: 14686, Lr: 0.000300\n", "2020-04-10 15:39:27,008 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:39:27,008 Saving new checkpoint.\n", "2020-04-10 15:39:28,350 Example #0\n", "2020-04-10 15:39:28,351 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:39:28,351 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:39:28,351 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 15:39:28,352 Example #1\n", "2020-04-10 15:39:28,352 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:39:28,352 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:39:28,352 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 15:39:28,353 Example #2\n", "2020-04-10 15:39:28,353 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:39:28,353 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:39:28,353 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:39:28,353 Example #3\n", "2020-04-10 15:39:28,354 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:39:28,354 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:39:28,354 \tHypothesis: Paul was remembered in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:39:28,355 Validation result (greedy) at epoch 16, step 62000: bleu: 25.35, loss: 46116.9648, ppl: 5.9451, duration: 18.7215s\n", "2020-04-10 15:39:43,639 Epoch 16 Step: 62100 Batch Loss: 1.929888 Tokens per Sec: 14511, Lr: 0.000300\n", "2020-04-10 15:39:58,693 Epoch 16 Step: 62200 Batch Loss: 1.910138 Tokens per Sec: 14672, Lr: 0.000300\n", "2020-04-10 15:40:13,698 Epoch 16 Step: 62300 Batch Loss: 2.036304 Tokens per Sec: 14615, Lr: 0.000300\n", "2020-04-10 15:40:28,742 Epoch 16 Step: 62400 Batch Loss: 1.970201 Tokens per Sec: 14484, Lr: 0.000300\n", "2020-04-10 15:40:43,697 Epoch 16 Step: 62500 Batch Loss: 2.072093 Tokens per Sec: 14698, Lr: 0.000300\n", "2020-04-10 15:40:58,645 Epoch 16 Step: 62600 Batch Loss: 1.990725 Tokens per Sec: 14759, Lr: 0.000300\n", "2020-04-10 15:41:13,773 Epoch 16 Step: 62700 Batch Loss: 1.871348 Tokens per Sec: 14691, Lr: 0.000300\n", "2020-04-10 15:41:28,830 Epoch 16 Step: 62800 Batch Loss: 1.919383 Tokens per Sec: 14797, Lr: 0.000300\n", "2020-04-10 15:41:43,749 Epoch 16 Step: 62900 Batch Loss: 1.808984 Tokens per Sec: 14568, Lr: 0.000300\n", "2020-04-10 15:41:58,774 Epoch 16 Step: 63000 Batch Loss: 1.865401 Tokens per Sec: 14986, Lr: 0.000300\n", "2020-04-10 15:42:17,663 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:42:17,663 Saving new checkpoint.\n", "2020-04-10 15:42:18,966 Example #0\n", "2020-04-10 15:42:18,967 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:42:18,967 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:42:18,967 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 15:42:18,967 Example #1\n", "2020-04-10 15:42:18,968 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:42:18,968 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:42:18,968 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 15:42:18,968 Example #2\n", "2020-04-10 15:42:18,969 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:42:18,969 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:42:18,969 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:42:18,970 Example #3\n", "2020-04-10 15:42:18,970 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:42:18,970 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:42:18,972 \tHypothesis: Paul was remembered in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:42:18,972 Validation result (greedy) at epoch 16, step 63000: bleu: 25.21, loss: 45940.3125, ppl: 5.9047, duration: 20.1975s\n", "2020-04-10 15:42:26,712 Epoch 16: total training loss 7668.27\n", "2020-04-10 15:42:26,713 EPOCH 17\n", "2020-04-10 15:42:34,738 Epoch 17 Step: 63100 Batch Loss: 1.649243 Tokens per Sec: 13318, Lr: 0.000300\n", "2020-04-10 15:42:49,693 Epoch 17 Step: 63200 Batch Loss: 1.747970 Tokens per Sec: 14727, Lr: 0.000300\n", "2020-04-10 15:43:04,678 Epoch 17 Step: 63300 Batch Loss: 2.027074 Tokens per Sec: 14892, Lr: 0.000300\n", "2020-04-10 15:43:19,581 Epoch 17 Step: 63400 Batch Loss: 1.910488 Tokens per Sec: 14708, Lr: 0.000300\n", "2020-04-10 15:43:34,517 Epoch 17 Step: 63500 Batch Loss: 2.070260 Tokens per Sec: 14601, Lr: 0.000300\n", "2020-04-10 15:43:49,846 Epoch 17 Step: 63600 Batch Loss: 1.902454 Tokens per Sec: 14759, Lr: 0.000300\n", "2020-04-10 15:44:04,803 Epoch 17 Step: 63700 Batch Loss: 1.698185 Tokens per Sec: 14565, Lr: 0.000300\n", "2020-04-10 15:44:20,059 Epoch 17 Step: 63800 Batch Loss: 1.819705 Tokens per Sec: 14792, Lr: 0.000300\n", "2020-04-10 15:44:35,041 Epoch 17 Step: 63900 Batch Loss: 2.039979 Tokens per Sec: 14627, Lr: 0.000300\n", "2020-04-10 15:44:50,160 Epoch 17 Step: 64000 Batch Loss: 2.101496 Tokens per Sec: 14549, Lr: 0.000300\n", "2020-04-10 15:45:08,319 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:45:08,319 Saving new checkpoint.\n", "2020-04-10 15:45:09,618 Example #0\n", "2020-04-10 15:45:09,619 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:45:09,619 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:45:09,619 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 15:45:09,620 Example #1\n", "2020-04-10 15:45:09,620 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:45:09,620 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:45:09,620 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 15:45:09,620 Example #2\n", "2020-04-10 15:45:09,621 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:45:09,621 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:45:09,621 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:45:09,621 Example #3\n", "2020-04-10 15:45:09,622 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:45:09,622 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:45:09,622 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:45:09,622 Validation result (greedy) at epoch 17, step 64000: bleu: 25.37, loss: 45897.6875, ppl: 5.8950, duration: 19.4619s\n", "2020-04-10 15:45:24,903 Epoch 17 Step: 64100 Batch Loss: 2.022594 Tokens per Sec: 14652, Lr: 0.000300\n", "2020-04-10 15:45:40,035 Epoch 17 Step: 64200 Batch Loss: 1.834307 Tokens per Sec: 14920, Lr: 0.000300\n", "2020-04-10 15:45:55,019 Epoch 17 Step: 64300 Batch Loss: 1.989276 Tokens per Sec: 14941, Lr: 0.000300\n", "2020-04-10 15:46:09,956 Epoch 17 Step: 64400 Batch Loss: 1.902232 Tokens per Sec: 14779, Lr: 0.000300\n", "2020-04-10 15:46:25,160 Epoch 17 Step: 64500 Batch Loss: 1.866344 Tokens per Sec: 14733, Lr: 0.000300\n", "2020-04-10 15:46:40,271 Epoch 17 Step: 64600 Batch Loss: 1.871353 Tokens per Sec: 14946, Lr: 0.000300\n", "2020-04-10 15:46:55,140 Epoch 17 Step: 64700 Batch Loss: 1.884806 Tokens per Sec: 14788, Lr: 0.000300\n", "2020-04-10 15:47:10,107 Epoch 17 Step: 64800 Batch Loss: 2.176660 Tokens per Sec: 14765, Lr: 0.000300\n", "2020-04-10 15:47:25,004 Epoch 17 Step: 64900 Batch Loss: 1.792190 Tokens per Sec: 14452, Lr: 0.000300\n", "2020-04-10 15:47:40,102 Epoch 17 Step: 65000 Batch Loss: 1.784783 Tokens per Sec: 15124, Lr: 0.000300\n", "2020-04-10 15:47:58,716 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:47:58,716 Saving new checkpoint.\n", "2020-04-10 15:47:59,943 Example #0\n", "2020-04-10 15:47:59,944 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:47:59,944 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:47:59,945 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 15:47:59,945 Example #1\n", "2020-04-10 15:47:59,945 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:47:59,945 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:47:59,946 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 15:47:59,946 Example #2\n", "2020-04-10 15:47:59,946 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:47:59,947 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:47:59,947 \tHypothesis: The same statement is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:47:59,947 Example #3\n", "2020-04-10 15:47:59,947 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:47:59,948 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:47:59,948 \tHypothesis: Paul was remembered in his house in Rome for two years ( about 59 and 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:47:59,948 Validation result (greedy) at epoch 17, step 65000: bleu: 25.44, loss: 45796.1016, ppl: 5.8719, duration: 19.8451s\n", "2020-04-10 15:48:15,148 Epoch 17 Step: 65100 Batch Loss: 1.899614 Tokens per Sec: 14500, Lr: 0.000300\n", "2020-04-10 15:48:30,075 Epoch 17 Step: 65200 Batch Loss: 1.998754 Tokens per Sec: 14913, Lr: 0.000300\n", "2020-04-10 15:48:45,017 Epoch 17 Step: 65300 Batch Loss: 1.657097 Tokens per Sec: 14553, Lr: 0.000300\n", "2020-04-10 15:49:00,014 Epoch 17 Step: 65400 Batch Loss: 1.955963 Tokens per Sec: 14675, Lr: 0.000300\n", "2020-04-10 15:49:14,896 Epoch 17 Step: 65500 Batch Loss: 1.735525 Tokens per Sec: 14861, Lr: 0.000300\n", "2020-04-10 15:49:29,552 Epoch 17 Step: 65600 Batch Loss: 1.957491 Tokens per Sec: 14790, Lr: 0.000300\n", "2020-04-10 15:49:44,346 Epoch 17 Step: 65700 Batch Loss: 1.825821 Tokens per Sec: 15125, Lr: 0.000300\n", "2020-04-10 15:49:59,153 Epoch 17 Step: 65800 Batch Loss: 1.867170 Tokens per Sec: 14979, Lr: 0.000300\n", "2020-04-10 15:50:14,218 Epoch 17 Step: 65900 Batch Loss: 2.205671 Tokens per Sec: 14795, Lr: 0.000300\n", "2020-04-10 15:50:29,080 Epoch 17 Step: 66000 Batch Loss: 1.991061 Tokens per Sec: 14720, Lr: 0.000300\n", "2020-04-10 15:50:46,575 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:50:46,576 Saving new checkpoint.\n", "2020-04-10 15:50:47,864 Example #0\n", "2020-04-10 15:50:47,865 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:50:47,865 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:50:47,865 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 15:50:47,865 Example #1\n", "2020-04-10 15:50:47,866 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:50:47,866 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:50:47,866 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 15:50:47,866 Example #2\n", "2020-04-10 15:50:47,866 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:50:47,867 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:50:47,867 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:50:47,867 Example #3\n", "2020-04-10 15:50:47,867 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:50:47,867 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:50:47,868 \tHypothesis: Paul was remembered in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:50:47,868 Validation result (greedy) at epoch 17, step 66000: bleu: 25.52, loss: 45723.0039, ppl: 5.8553, duration: 18.7869s\n", "2020-04-10 15:51:02,909 Epoch 17 Step: 66100 Batch Loss: 1.878658 Tokens per Sec: 14692, Lr: 0.000300\n", "2020-04-10 15:51:17,847 Epoch 17 Step: 66200 Batch Loss: 1.907962 Tokens per Sec: 14709, Lr: 0.000300\n", "2020-04-10 15:51:33,119 Epoch 17 Step: 66300 Batch Loss: 1.974225 Tokens per Sec: 14698, Lr: 0.000300\n", "2020-04-10 15:51:48,140 Epoch 17 Step: 66400 Batch Loss: 2.010133 Tokens per Sec: 14227, Lr: 0.000300\n", "2020-04-10 15:52:03,270 Epoch 17 Step: 66500 Batch Loss: 1.901783 Tokens per Sec: 15191, Lr: 0.000300\n", "2020-04-10 15:52:18,416 Epoch 17 Step: 66600 Batch Loss: 1.867646 Tokens per Sec: 14797, Lr: 0.000300\n", "2020-04-10 15:52:33,565 Epoch 17 Step: 66700 Batch Loss: 1.949863 Tokens per Sec: 14509, Lr: 0.000300\n", "2020-04-10 15:52:48,708 Epoch 17 Step: 66800 Batch Loss: 2.051197 Tokens per Sec: 14270, Lr: 0.000300\n", "2020-04-10 15:53:03,621 Epoch 17 Step: 66900 Batch Loss: 2.004037 Tokens per Sec: 14619, Lr: 0.000300\n", "2020-04-10 15:53:16,899 Epoch 17: total training loss 7617.46\n", "2020-04-10 15:53:16,900 EPOCH 18\n", "2020-04-10 15:53:19,196 Epoch 18 Step: 67000 Batch Loss: 1.934020 Tokens per Sec: 12167, Lr: 0.000300\n", "2020-04-10 15:53:37,063 Example #0\n", "2020-04-10 15:53:37,064 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:53:37,064 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:53:37,064 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 15:53:37,064 Example #1\n", "2020-04-10 15:53:37,065 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:53:37,065 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:53:37,065 \tHypothesis: Prayer may be what the clergy said to them .\n", "2020-04-10 15:53:37,065 Example #2\n", "2020-04-10 15:53:37,066 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:53:37,066 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:53:37,066 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:53:37,066 Example #3\n", "2020-04-10 15:53:37,067 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:53:37,067 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:53:37,067 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:53:37,067 Validation result (greedy) at epoch 18, step 67000: bleu: 25.41, loss: 45728.4336, ppl: 5.8565, duration: 17.8701s\n", "2020-04-10 15:53:51,991 Epoch 18 Step: 67100 Batch Loss: 1.915186 Tokens per Sec: 14537, Lr: 0.000300\n", "2020-04-10 15:54:07,201 Epoch 18 Step: 67200 Batch Loss: 1.842682 Tokens per Sec: 14797, Lr: 0.000300\n", "2020-04-10 15:54:22,223 Epoch 18 Step: 67300 Batch Loss: 1.982244 Tokens per Sec: 14805, Lr: 0.000300\n", "2020-04-10 15:54:37,279 Epoch 18 Step: 67400 Batch Loss: 1.950634 Tokens per Sec: 14700, Lr: 0.000300\n", "2020-04-10 15:54:51,993 Epoch 18 Step: 67500 Batch Loss: 1.939557 Tokens per Sec: 15033, Lr: 0.000300\n", "2020-04-10 15:55:07,096 Epoch 18 Step: 67600 Batch Loss: 1.700052 Tokens per Sec: 14942, Lr: 0.000300\n", "2020-04-10 15:55:22,292 Epoch 18 Step: 67700 Batch Loss: 1.900944 Tokens per Sec: 14965, Lr: 0.000300\n", "2020-04-10 15:55:37,224 Epoch 18 Step: 67800 Batch Loss: 1.763800 Tokens per Sec: 14610, Lr: 0.000300\n", "2020-04-10 15:55:52,171 Epoch 18 Step: 67900 Batch Loss: 1.847430 Tokens per Sec: 14317, Lr: 0.000300\n", "2020-04-10 15:56:07,247 Epoch 18 Step: 68000 Batch Loss: 2.009078 Tokens per Sec: 14977, Lr: 0.000300\n", "2020-04-10 15:56:25,840 Hooray! New best validation result [ppl]!\n", "2020-04-10 15:56:25,840 Saving new checkpoint.\n", "2020-04-10 15:56:27,545 Example #0\n", "2020-04-10 15:56:27,547 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:56:27,547 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:56:27,547 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 15:56:27,547 Example #1\n", "2020-04-10 15:56:27,548 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:56:27,548 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:56:27,548 \tHypothesis: That may be the clergy that was said to them .\n", "2020-04-10 15:56:27,549 Example #2\n", "2020-04-10 15:56:27,549 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:56:27,549 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:56:27,549 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:56:27,549 Example #3\n", "2020-04-10 15:56:27,550 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:56:27,550 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:56:27,550 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:56:27,550 Validation result (greedy) at epoch 18, step 68000: bleu: 25.72, loss: 45593.5000, ppl: 5.8261, duration: 20.3029s\n", "2020-04-10 15:56:42,908 Epoch 18 Step: 68100 Batch Loss: 1.635158 Tokens per Sec: 14347, Lr: 0.000300\n", "2020-04-10 15:56:57,915 Epoch 18 Step: 68200 Batch Loss: 1.712927 Tokens per Sec: 15095, Lr: 0.000300\n", "2020-04-10 15:57:12,856 Epoch 18 Step: 68300 Batch Loss: 1.927862 Tokens per Sec: 14764, Lr: 0.000300\n", "2020-04-10 15:57:27,869 Epoch 18 Step: 68400 Batch Loss: 1.788221 Tokens per Sec: 14888, Lr: 0.000300\n", "2020-04-10 15:57:42,405 Epoch 18 Step: 68500 Batch Loss: 1.499459 Tokens per Sec: 14420, Lr: 0.000300\n", "2020-04-10 15:57:57,509 Epoch 18 Step: 68600 Batch Loss: 2.043175 Tokens per Sec: 14834, Lr: 0.000300\n", "2020-04-10 15:58:12,338 Epoch 18 Step: 68700 Batch Loss: 1.878894 Tokens per Sec: 15081, Lr: 0.000300\n", "2020-04-10 15:58:27,219 Epoch 18 Step: 68800 Batch Loss: 1.873859 Tokens per Sec: 14438, Lr: 0.000300\n", "2020-04-10 15:58:42,043 Epoch 18 Step: 68900 Batch Loss: 1.870699 Tokens per Sec: 15286, Lr: 0.000300\n", "2020-04-10 15:58:56,998 Epoch 18 Step: 69000 Batch Loss: 2.021500 Tokens per Sec: 14419, Lr: 0.000300\n", "2020-04-10 15:59:14,385 Example #0\n", "2020-04-10 15:59:14,386 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 15:59:14,386 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 15:59:14,386 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 15:59:14,386 Example #1\n", "2020-04-10 15:59:14,387 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 15:59:14,387 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 15:59:14,387 \tHypothesis: That may be the clergy that said to them .\n", "2020-04-10 15:59:14,387 Example #2\n", "2020-04-10 15:59:14,387 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 15:59:14,388 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:59:14,388 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 15:59:14,388 Example #3\n", "2020-04-10 15:59:14,388 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 15:59:14,389 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:59:14,389 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 15:59:14,389 Validation result (greedy) at epoch 18, step 69000: bleu: 25.48, loss: 45686.9883, ppl: 5.8471, duration: 17.3909s\n", "2020-04-10 15:59:29,684 Epoch 18 Step: 69100 Batch Loss: 1.911382 Tokens per Sec: 14656, Lr: 0.000300\n", "2020-04-10 15:59:44,983 Epoch 18 Step: 69200 Batch Loss: 1.955208 Tokens per Sec: 14550, Lr: 0.000300\n", "2020-04-10 16:00:00,184 Epoch 18 Step: 69300 Batch Loss: 2.100037 Tokens per Sec: 14630, Lr: 0.000300\n", "2020-04-10 16:00:15,281 Epoch 18 Step: 69400 Batch Loss: 1.971523 Tokens per Sec: 14630, Lr: 0.000300\n", "2020-04-10 16:00:30,448 Epoch 18 Step: 69500 Batch Loss: 2.085175 Tokens per Sec: 14581, Lr: 0.000300\n", "2020-04-10 16:00:45,568 Epoch 18 Step: 69600 Batch Loss: 1.896624 Tokens per Sec: 14670, Lr: 0.000300\n", "2020-04-10 16:01:00,772 Epoch 18 Step: 69700 Batch Loss: 1.989433 Tokens per Sec: 14659, Lr: 0.000300\n", "2020-04-10 16:01:15,837 Epoch 18 Step: 69800 Batch Loss: 2.011867 Tokens per Sec: 14513, Lr: 0.000300\n", "2020-04-10 16:01:30,958 Epoch 18 Step: 69900 Batch Loss: 2.000580 Tokens per Sec: 14354, Lr: 0.000300\n", "2020-04-10 16:01:46,027 Epoch 18 Step: 70000 Batch Loss: 1.937993 Tokens per Sec: 14613, Lr: 0.000300\n", "2020-04-10 16:02:05,212 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:02:05,213 Saving new checkpoint.\n", "2020-04-10 16:02:06,547 Example #0\n", "2020-04-10 16:02:06,548 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:02:06,548 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:02:06,548 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 16:02:06,548 Example #1\n", "2020-04-10 16:02:06,549 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:02:06,549 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:02:06,549 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 16:02:06,549 Example #2\n", "2020-04-10 16:02:06,550 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:02:06,550 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:02:06,550 \tHypothesis: The same statement is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:02:06,550 Example #3\n", "2020-04-10 16:02:06,551 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:02:06,551 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:02:06,551 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 and 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:02:06,551 Validation result (greedy) at epoch 18, step 70000: bleu: 25.65, loss: 45353.0273, ppl: 5.7722, duration: 20.5234s\n", "2020-04-10 16:02:22,028 Epoch 18 Step: 70100 Batch Loss: 1.903892 Tokens per Sec: 14593, Lr: 0.000300\n", "2020-04-10 16:02:36,975 Epoch 18 Step: 70200 Batch Loss: 1.857412 Tokens per Sec: 14624, Lr: 0.000300\n", "2020-04-10 16:02:51,967 Epoch 18 Step: 70300 Batch Loss: 1.909569 Tokens per Sec: 14535, Lr: 0.000300\n", "2020-04-10 16:03:07,065 Epoch 18 Step: 70400 Batch Loss: 1.987481 Tokens per Sec: 14988, Lr: 0.000300\n", "2020-04-10 16:03:22,305 Epoch 18 Step: 70500 Batch Loss: 1.897228 Tokens per Sec: 14499, Lr: 0.000300\n", "2020-04-10 16:03:37,391 Epoch 18 Step: 70600 Batch Loss: 1.944495 Tokens per Sec: 14513, Lr: 0.000300\n", "2020-04-10 16:03:52,521 Epoch 18 Step: 70700 Batch Loss: 2.130162 Tokens per Sec: 14353, Lr: 0.000300\n", "2020-04-10 16:04:07,759 Epoch 18 Step: 70800 Batch Loss: 1.865151 Tokens per Sec: 14625, Lr: 0.000300\n", "2020-04-10 16:04:22,991 Epoch 18 Step: 70900 Batch Loss: 1.894066 Tokens per Sec: 14732, Lr: 0.000300\n", "2020-04-10 16:04:26,729 Epoch 18: total training loss 7572.01\n", "2020-04-10 16:04:26,729 EPOCH 19\n", "2020-04-10 16:04:38,301 Epoch 19 Step: 71000 Batch Loss: 1.935045 Tokens per Sec: 13938, Lr: 0.000300\n", "2020-04-10 16:04:56,956 Example #0\n", "2020-04-10 16:04:56,957 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:04:56,957 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:04:56,957 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:04:56,957 Example #1\n", "2020-04-10 16:04:56,958 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:04:56,958 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:04:56,958 \tHypothesis: That may be the clergy that was said to them .\n", "2020-04-10 16:04:56,958 Example #2\n", "2020-04-10 16:04:56,959 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:04:56,959 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:04:56,959 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:04:56,959 Example #3\n", "2020-04-10 16:04:56,960 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:04:56,960 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:04:56,960 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:04:56,960 Validation result (greedy) at epoch 19, step 71000: bleu: 25.97, loss: 45487.2109, ppl: 5.8022, duration: 18.6581s\n", "2020-04-10 16:05:12,151 Epoch 19 Step: 71100 Batch Loss: 1.933073 Tokens per Sec: 14939, Lr: 0.000300\n", "2020-04-10 16:05:27,207 Epoch 19 Step: 71200 Batch Loss: 1.929035 Tokens per Sec: 14538, Lr: 0.000300\n", "2020-04-10 16:05:42,412 Epoch 19 Step: 71300 Batch Loss: 1.939882 Tokens per Sec: 14609, Lr: 0.000300\n", "2020-04-10 16:05:57,592 Epoch 19 Step: 71400 Batch Loss: 1.905564 Tokens per Sec: 14755, Lr: 0.000300\n", "2020-04-10 16:06:12,656 Epoch 19 Step: 71500 Batch Loss: 2.239876 Tokens per Sec: 14217, Lr: 0.000300\n", "2020-04-10 16:06:27,792 Epoch 19 Step: 71600 Batch Loss: 1.562404 Tokens per Sec: 14480, Lr: 0.000300\n", "2020-04-10 16:06:43,014 Epoch 19 Step: 71700 Batch Loss: 1.902626 Tokens per Sec: 14694, Lr: 0.000300\n", "2020-04-10 16:06:58,066 Epoch 19 Step: 71800 Batch Loss: 1.899108 Tokens per Sec: 14493, Lr: 0.000300\n", "2020-04-10 16:07:13,393 Epoch 19 Step: 71900 Batch Loss: 1.334522 Tokens per Sec: 14690, Lr: 0.000300\n", "2020-04-10 16:07:28,608 Epoch 19 Step: 72000 Batch Loss: 1.976841 Tokens per Sec: 14518, Lr: 0.000300\n", "2020-04-10 16:07:46,965 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:07:46,966 Saving new checkpoint.\n", "2020-04-10 16:07:48,695 Example #0\n", "2020-04-10 16:07:48,695 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:07:48,696 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:07:48,696 \tHypothesis: If you do so , you choose the best way of life .\n", "2020-04-10 16:07:48,696 Example #1\n", "2020-04-10 16:07:48,696 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:07:48,697 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:07:48,697 \tHypothesis: That is the case of the clergy .\n", "2020-04-10 16:07:48,697 Example #2\n", "2020-04-10 16:07:48,697 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:07:48,697 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:07:48,698 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:07:48,698 Example #3\n", "2020-04-10 16:07:48,698 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:07:48,698 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:07:48,699 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:07:48,699 Validation result (greedy) at epoch 19, step 72000: bleu: 25.87, loss: 45251.1914, ppl: 5.7495, duration: 20.0907s\n", "2020-04-10 16:08:04,215 Epoch 19 Step: 72100 Batch Loss: 1.546717 Tokens per Sec: 14163, Lr: 0.000300\n", "2020-04-10 16:08:19,400 Epoch 19 Step: 72200 Batch Loss: 1.987289 Tokens per Sec: 14512, Lr: 0.000300\n", "2020-04-10 16:08:34,590 Epoch 19 Step: 72300 Batch Loss: 2.049010 Tokens per Sec: 14742, Lr: 0.000300\n", "2020-04-10 16:08:49,665 Epoch 19 Step: 72400 Batch Loss: 1.850054 Tokens per Sec: 14383, Lr: 0.000300\n", "2020-04-10 16:09:04,979 Epoch 19 Step: 72500 Batch Loss: 2.068331 Tokens per Sec: 14609, Lr: 0.000300\n", "2020-04-10 16:09:20,032 Epoch 19 Step: 72600 Batch Loss: 2.088273 Tokens per Sec: 14685, Lr: 0.000300\n", "2020-04-10 16:09:35,317 Epoch 19 Step: 72700 Batch Loss: 1.950631 Tokens per Sec: 14749, Lr: 0.000300\n", "2020-04-10 16:09:50,468 Epoch 19 Step: 72800 Batch Loss: 1.915257 Tokens per Sec: 14543, Lr: 0.000300\n", "2020-04-10 16:10:05,688 Epoch 19 Step: 72900 Batch Loss: 1.847652 Tokens per Sec: 15188, Lr: 0.000300\n", "2020-04-10 16:10:20,938 Epoch 19 Step: 73000 Batch Loss: 2.061243 Tokens per Sec: 14689, Lr: 0.000300\n", "2020-04-10 16:10:39,690 Example #0\n", "2020-04-10 16:10:39,692 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:10:39,692 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:10:39,692 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:10:39,692 Example #1\n", "2020-04-10 16:10:39,693 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:10:39,693 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:10:39,693 \tHypothesis: That is the case of the clergy .\n", "2020-04-10 16:10:39,693 Example #2\n", "2020-04-10 16:10:39,693 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:10:39,694 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:10:39,694 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:10:39,694 Example #3\n", "2020-04-10 16:10:39,694 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:10:39,695 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:10:39,695 \tHypothesis: Paul was remembered in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:10:39,695 Validation result (greedy) at epoch 19, step 73000: bleu: 25.80, loss: 45370.0781, ppl: 5.7760, duration: 18.7563s\n", "2020-04-10 16:10:54,884 Epoch 19 Step: 73100 Batch Loss: 1.883857 Tokens per Sec: 14465, Lr: 0.000300\n", "2020-04-10 16:11:10,138 Epoch 19 Step: 73200 Batch Loss: 2.012151 Tokens per Sec: 14697, Lr: 0.000300\n", "2020-04-10 16:11:25,220 Epoch 19 Step: 73300 Batch Loss: 1.958863 Tokens per Sec: 14542, Lr: 0.000300\n", "2020-04-10 16:11:40,354 Epoch 19 Step: 73400 Batch Loss: 1.995132 Tokens per Sec: 14395, Lr: 0.000300\n", "2020-04-10 16:11:55,433 Epoch 19 Step: 73500 Batch Loss: 1.800589 Tokens per Sec: 14555, Lr: 0.000300\n", "2020-04-10 16:12:10,526 Epoch 19 Step: 73600 Batch Loss: 2.041740 Tokens per Sec: 14568, Lr: 0.000300\n", "2020-04-10 16:12:25,858 Epoch 19 Step: 73700 Batch Loss: 1.969899 Tokens per Sec: 14693, Lr: 0.000300\n", "2020-04-10 16:12:41,244 Epoch 19 Step: 73800 Batch Loss: 1.916401 Tokens per Sec: 14504, Lr: 0.000300\n", "2020-04-10 16:12:56,464 Epoch 19 Step: 73900 Batch Loss: 1.499399 Tokens per Sec: 14668, Lr: 0.000300\n", "2020-04-10 16:13:11,725 Epoch 19 Step: 74000 Batch Loss: 1.906387 Tokens per Sec: 14235, Lr: 0.000300\n", "2020-04-10 16:13:31,278 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:13:31,279 Saving new checkpoint.\n", "2020-04-10 16:13:32,623 Example #0\n", "2020-04-10 16:13:32,623 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:13:32,624 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:13:32,624 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:13:32,624 Example #1\n", "2020-04-10 16:13:32,625 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:13:32,625 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:13:32,625 \tHypothesis: That is what the clergy said to them .\n", "2020-04-10 16:13:32,625 Example #2\n", "2020-04-10 16:13:32,626 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:13:32,626 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:13:32,626 \tHypothesis: The same expression is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:13:32,627 Example #3\n", "2020-04-10 16:13:32,627 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:13:32,627 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:13:32,628 \tHypothesis: Paul was reminded in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:13:32,628 Validation result (greedy) at epoch 19, step 74000: bleu: 25.85, loss: 45016.4531, ppl: 5.6975, duration: 20.9023s\n", "2020-04-10 16:13:48,023 Epoch 19 Step: 74100 Batch Loss: 1.980601 Tokens per Sec: 14000, Lr: 0.000300\n", "2020-04-10 16:14:03,178 Epoch 19 Step: 74200 Batch Loss: 1.773438 Tokens per Sec: 14236, Lr: 0.000300\n", "2020-04-10 16:14:18,387 Epoch 19 Step: 74300 Batch Loss: 2.141132 Tokens per Sec: 14483, Lr: 0.000300\n", "2020-04-10 16:14:33,742 Epoch 19 Step: 74400 Batch Loss: 1.894060 Tokens per Sec: 14694, Lr: 0.000300\n", "2020-04-10 16:14:48,735 Epoch 19 Step: 74500 Batch Loss: 1.979687 Tokens per Sec: 14123, Lr: 0.000300\n", "2020-04-10 16:15:04,066 Epoch 19 Step: 74600 Batch Loss: 1.923389 Tokens per Sec: 14750, Lr: 0.000300\n", "2020-04-10 16:15:19,136 Epoch 19 Step: 74700 Batch Loss: 1.855385 Tokens per Sec: 14448, Lr: 0.000300\n", "2020-04-10 16:15:34,254 Epoch 19 Step: 74800 Batch Loss: 1.987880 Tokens per Sec: 14441, Lr: 0.000300\n", "2020-04-10 16:15:44,823 Epoch 19: total training loss 7534.94\n", "2020-04-10 16:15:44,824 EPOCH 20\n", "2020-04-10 16:15:49,760 Epoch 20 Step: 74900 Batch Loss: 1.872154 Tokens per Sec: 13157, Lr: 0.000300\n", "2020-04-10 16:16:04,694 Epoch 20 Step: 75000 Batch Loss: 1.931222 Tokens per Sec: 14754, Lr: 0.000300\n", "2020-04-10 16:16:24,193 Example #0\n", "2020-04-10 16:16:24,195 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:16:24,195 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:16:24,195 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:16:24,195 Example #1\n", "2020-04-10 16:16:24,196 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:16:24,196 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:16:24,196 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 16:16:24,196 Example #2\n", "2020-04-10 16:16:24,197 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:16:24,197 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:16:24,197 \tHypothesis: The same expression is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:16:24,198 Example #3\n", "2020-04-10 16:16:24,198 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:16:24,198 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:16:24,199 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:16:24,199 Validation result (greedy) at epoch 20, step 75000: bleu: 25.75, loss: 45197.4141, ppl: 5.7375, duration: 19.5046s\n", "2020-04-10 16:16:39,338 Epoch 20 Step: 75100 Batch Loss: 1.906335 Tokens per Sec: 14691, Lr: 0.000300\n", "2020-04-10 16:16:54,451 Epoch 20 Step: 75200 Batch Loss: 1.966417 Tokens per Sec: 14416, Lr: 0.000300\n", "2020-04-10 16:17:09,619 Epoch 20 Step: 75300 Batch Loss: 1.815197 Tokens per Sec: 14912, Lr: 0.000300\n", "2020-04-10 16:17:24,976 Epoch 20 Step: 75400 Batch Loss: 1.939963 Tokens per Sec: 14567, Lr: 0.000300\n", "2020-04-10 16:17:40,177 Epoch 20 Step: 75500 Batch Loss: 1.854776 Tokens per Sec: 14377, Lr: 0.000300\n", "2020-04-10 16:17:55,413 Epoch 20 Step: 75600 Batch Loss: 1.925697 Tokens per Sec: 14663, Lr: 0.000300\n", "2020-04-10 16:18:10,573 Epoch 20 Step: 75700 Batch Loss: 1.868534 Tokens per Sec: 14718, Lr: 0.000300\n", "2020-04-10 16:18:25,701 Epoch 20 Step: 75800 Batch Loss: 1.918545 Tokens per Sec: 14738, Lr: 0.000300\n", "2020-04-10 16:18:40,859 Epoch 20 Step: 75900 Batch Loss: 1.798402 Tokens per Sec: 14736, Lr: 0.000300\n", "2020-04-10 16:18:56,030 Epoch 20 Step: 76000 Batch Loss: 2.151285 Tokens per Sec: 14749, Lr: 0.000300\n", "2020-04-10 16:19:16,932 Example #0\n", "2020-04-10 16:19:16,933 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:19:16,933 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:19:16,933 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 16:19:16,934 Example #1\n", "2020-04-10 16:19:16,934 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:19:16,935 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:19:16,935 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 16:19:16,935 Example #2\n", "2020-04-10 16:19:16,935 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:19:16,936 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:19:16,936 \tHypothesis: The same expression is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:19:16,936 Example #3\n", "2020-04-10 16:19:16,936 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:19:16,937 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:19:16,937 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:19:16,937 Validation result (greedy) at epoch 20, step 76000: bleu: 26.03, loss: 45193.3984, ppl: 5.7366, duration: 20.9062s\n", "2020-04-10 16:19:32,233 Epoch 20 Step: 76100 Batch Loss: 1.827117 Tokens per Sec: 14718, Lr: 0.000300\n", "2020-04-10 16:19:47,437 Epoch 20 Step: 76200 Batch Loss: 1.835542 Tokens per Sec: 14821, Lr: 0.000300\n", "2020-04-10 16:20:02,778 Epoch 20 Step: 76300 Batch Loss: 1.863879 Tokens per Sec: 14401, Lr: 0.000300\n", "2020-04-10 16:20:17,969 Epoch 20 Step: 76400 Batch Loss: 2.073675 Tokens per Sec: 14404, Lr: 0.000300\n", "2020-04-10 16:20:33,293 Epoch 20 Step: 76500 Batch Loss: 2.016110 Tokens per Sec: 14577, Lr: 0.000300\n", "2020-04-10 16:20:48,644 Epoch 20 Step: 76600 Batch Loss: 2.004612 Tokens per Sec: 13973, Lr: 0.000300\n", "2020-04-10 16:21:04,101 Epoch 20 Step: 76700 Batch Loss: 1.838741 Tokens per Sec: 14428, Lr: 0.000300\n", "2020-04-10 16:21:19,459 Epoch 20 Step: 76800 Batch Loss: 2.052033 Tokens per Sec: 14248, Lr: 0.000300\n", "2020-04-10 16:21:34,816 Epoch 20 Step: 76900 Batch Loss: 1.904899 Tokens per Sec: 13895, Lr: 0.000300\n", "2020-04-10 16:21:50,069 Epoch 20 Step: 77000 Batch Loss: 1.865342 Tokens per Sec: 14353, Lr: 0.000300\n", "2020-04-10 16:22:08,240 Example #0\n", "2020-04-10 16:22:08,241 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:22:08,241 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:22:08,241 \tHypothesis: If you do so , you will choose the best way of life .\n", "2020-04-10 16:22:08,241 Example #1\n", "2020-04-10 16:22:08,242 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:22:08,242 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:22:08,242 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 16:22:08,242 Example #2\n", "2020-04-10 16:22:08,243 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:22:08,243 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:22:08,243 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:22:08,243 Example #3\n", "2020-04-10 16:22:08,243 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:22:08,244 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:22:08,244 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:22:08,244 Validation result (greedy) at epoch 20, step 77000: bleu: 25.86, loss: 45037.2852, ppl: 5.7021, duration: 18.1747s\n", "2020-04-10 16:22:23,709 Epoch 20 Step: 77100 Batch Loss: 1.962377 Tokens per Sec: 14522, Lr: 0.000300\n", "2020-04-10 16:22:38,907 Epoch 20 Step: 77200 Batch Loss: 1.837702 Tokens per Sec: 14069, Lr: 0.000300\n", "2020-04-10 16:22:54,194 Epoch 20 Step: 77300 Batch Loss: 1.907431 Tokens per Sec: 14179, Lr: 0.000300\n", "2020-04-10 16:23:09,689 Epoch 20 Step: 77400 Batch Loss: 2.068901 Tokens per Sec: 14381, Lr: 0.000300\n", "2020-04-10 16:23:25,059 Epoch 20 Step: 77500 Batch Loss: 1.938884 Tokens per Sec: 14378, Lr: 0.000300\n", "2020-04-10 16:23:40,603 Epoch 20 Step: 77600 Batch Loss: 1.872666 Tokens per Sec: 14504, Lr: 0.000300\n", "2020-04-10 16:23:55,811 Epoch 20 Step: 77700 Batch Loss: 1.898223 Tokens per Sec: 14346, Lr: 0.000300\n", "2020-04-10 16:24:11,066 Epoch 20 Step: 77800 Batch Loss: 1.998258 Tokens per Sec: 14286, Lr: 0.000300\n", "2020-04-10 16:24:26,649 Epoch 20 Step: 77900 Batch Loss: 1.827580 Tokens per Sec: 14068, Lr: 0.000300\n", "2020-04-10 16:24:42,054 Epoch 20 Step: 78000 Batch Loss: 1.972564 Tokens per Sec: 14524, Lr: 0.000300\n", "2020-04-10 16:25:01,185 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:25:01,185 Saving new checkpoint.\n", "2020-04-10 16:25:02,567 Example #0\n", "2020-04-10 16:25:02,568 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:25:02,568 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:25:02,568 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 16:25:02,569 Example #1\n", "2020-04-10 16:25:02,571 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:25:02,572 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:25:02,572 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 16:25:02,572 Example #2\n", "2020-04-10 16:25:02,573 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:25:02,573 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:25:02,573 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:25:02,573 Example #3\n", "2020-04-10 16:25:02,574 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:25:02,574 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:25:02,574 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:25:02,575 Validation result (greedy) at epoch 20, step 78000: bleu: 26.22, loss: 44911.2266, ppl: 5.6744, duration: 20.5199s\n", "2020-04-10 16:25:18,231 Epoch 20 Step: 78100 Batch Loss: 1.950495 Tokens per Sec: 13945, Lr: 0.000300\n", "2020-04-10 16:25:33,745 Epoch 20 Step: 78200 Batch Loss: 1.784247 Tokens per Sec: 14349, Lr: 0.000300\n", "2020-04-10 16:25:48,994 Epoch 20 Step: 78300 Batch Loss: 1.782030 Tokens per Sec: 14502, Lr: 0.000300\n", "2020-04-10 16:26:04,128 Epoch 20 Step: 78400 Batch Loss: 1.834803 Tokens per Sec: 14186, Lr: 0.000300\n", "2020-04-10 16:26:19,512 Epoch 20 Step: 78500 Batch Loss: 1.901338 Tokens per Sec: 14711, Lr: 0.000300\n", "2020-04-10 16:26:34,862 Epoch 20 Step: 78600 Batch Loss: 1.816204 Tokens per Sec: 14815, Lr: 0.000300\n", "2020-04-10 16:26:49,885 Epoch 20 Step: 78700 Batch Loss: 1.820048 Tokens per Sec: 14910, Lr: 0.000300\n", "2020-04-10 16:27:05,130 Epoch 20 Step: 78800 Batch Loss: 2.006192 Tokens per Sec: 14711, Lr: 0.000300\n", "2020-04-10 16:27:06,167 Epoch 20: total training loss 7472.35\n", "2020-04-10 16:27:06,168 EPOCH 21\n", "2020-04-10 16:27:20,479 Epoch 21 Step: 78900 Batch Loss: 1.914870 Tokens per Sec: 14203, Lr: 0.000300\n", "2020-04-10 16:27:35,563 Epoch 21 Step: 79000 Batch Loss: 1.889577 Tokens per Sec: 14589, Lr: 0.000300\n", "2020-04-10 16:27:54,377 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:27:54,377 Saving new checkpoint.\n", "2020-04-10 16:27:55,732 Example #0\n", "2020-04-10 16:27:55,733 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:27:55,733 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:27:55,734 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:27:55,734 Example #1\n", "2020-04-10 16:27:55,734 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:27:55,735 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:27:55,735 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 16:27:55,735 Example #2\n", "2020-04-10 16:27:55,736 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:27:55,736 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:27:55,736 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:27:55,736 Example #3\n", "2020-04-10 16:27:55,737 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:27:55,737 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:27:55,737 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:27:55,737 Validation result (greedy) at epoch 21, step 79000: bleu: 26.08, loss: 44888.4375, ppl: 5.6694, duration: 20.1738s\n", "2020-04-10 16:28:10,920 Epoch 21 Step: 79100 Batch Loss: 1.794757 Tokens per Sec: 14402, Lr: 0.000300\n", "2020-04-10 16:28:26,092 Epoch 21 Step: 79200 Batch Loss: 1.789427 Tokens per Sec: 14597, Lr: 0.000300\n", "2020-04-10 16:28:41,060 Epoch 21 Step: 79300 Batch Loss: 2.055566 Tokens per Sec: 14600, Lr: 0.000300\n", "2020-04-10 16:28:55,792 Epoch 21 Step: 79400 Batch Loss: 1.971115 Tokens per Sec: 14795, Lr: 0.000300\n", "2020-04-10 16:29:10,768 Epoch 21 Step: 79500 Batch Loss: 1.866295 Tokens per Sec: 14409, Lr: 0.000300\n", "2020-04-10 16:29:25,665 Epoch 21 Step: 79600 Batch Loss: 1.465385 Tokens per Sec: 14647, Lr: 0.000300\n", "2020-04-10 16:29:40,608 Epoch 21 Step: 79700 Batch Loss: 1.931993 Tokens per Sec: 14365, Lr: 0.000300\n", "2020-04-10 16:29:55,426 Epoch 21 Step: 79800 Batch Loss: 2.012879 Tokens per Sec: 14834, Lr: 0.000300\n", "2020-04-10 16:30:10,575 Epoch 21 Step: 79900 Batch Loss: 1.868915 Tokens per Sec: 14636, Lr: 0.000300\n", "2020-04-10 16:30:25,593 Epoch 21 Step: 80000 Batch Loss: 1.992891 Tokens per Sec: 14843, Lr: 0.000300\n", "2020-04-10 16:30:44,154 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:30:44,155 Saving new checkpoint.\n", "2020-04-10 16:30:45,749 Example #0\n", "2020-04-10 16:30:45,749 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:30:45,750 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:30:45,750 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:30:45,750 Example #1\n", "2020-04-10 16:30:45,750 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:30:45,751 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:30:45,751 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 16:30:45,751 Example #2\n", "2020-04-10 16:30:45,751 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:30:45,752 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:30:45,752 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:30:45,752 Example #3\n", "2020-04-10 16:30:45,752 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:30:45,753 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:30:45,753 \tHypothesis: Paul was thrown in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:30:45,753 Validation result (greedy) at epoch 21, step 80000: bleu: 26.62, loss: 44836.5703, ppl: 5.6581, duration: 20.1597s\n", "2020-04-10 16:31:01,145 Epoch 21 Step: 80100 Batch Loss: 1.864999 Tokens per Sec: 14615, Lr: 0.000300\n", "2020-04-10 16:31:15,960 Epoch 21 Step: 80200 Batch Loss: 1.912398 Tokens per Sec: 14606, Lr: 0.000300\n", "2020-04-10 16:31:30,925 Epoch 21 Step: 80300 Batch Loss: 1.820805 Tokens per Sec: 14683, Lr: 0.000300\n", "2020-04-10 16:31:45,828 Epoch 21 Step: 80400 Batch Loss: 1.904191 Tokens per Sec: 14867, Lr: 0.000300\n", "2020-04-10 16:32:00,865 Epoch 21 Step: 80500 Batch Loss: 2.175410 Tokens per Sec: 14748, Lr: 0.000300\n", "2020-04-10 16:32:15,865 Epoch 21 Step: 80600 Batch Loss: 1.923604 Tokens per Sec: 15048, Lr: 0.000300\n", "2020-04-10 16:32:30,875 Epoch 21 Step: 80700 Batch Loss: 2.116772 Tokens per Sec: 14747, Lr: 0.000300\n", "2020-04-10 16:32:45,836 Epoch 21 Step: 80800 Batch Loss: 1.945603 Tokens per Sec: 14787, Lr: 0.000300\n", "2020-04-10 16:33:00,770 Epoch 21 Step: 80900 Batch Loss: 2.121166 Tokens per Sec: 14863, Lr: 0.000300\n", "2020-04-10 16:33:15,636 Epoch 21 Step: 81000 Batch Loss: 1.925272 Tokens per Sec: 15088, Lr: 0.000300\n", "2020-04-10 16:33:32,629 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:33:32,630 Saving new checkpoint.\n", "2020-04-10 16:33:33,939 Example #0\n", "2020-04-10 16:33:33,940 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:33:33,940 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:33:33,940 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:33:33,940 Example #1\n", "2020-04-10 16:33:33,941 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:33:33,941 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:33:33,941 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 16:33:33,941 Example #2\n", "2020-04-10 16:33:33,941 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:33:33,942 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:33:33,942 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:33:33,942 Example #3\n", "2020-04-10 16:33:33,942 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:33:33,943 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:33:33,943 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:33:33,943 Validation result (greedy) at epoch 21, step 81000: bleu: 26.34, loss: 44817.8789, ppl: 5.6540, duration: 18.3069s\n", "2020-04-10 16:33:49,223 Epoch 21 Step: 81100 Batch Loss: 1.874490 Tokens per Sec: 14389, Lr: 0.000300\n", "2020-04-10 16:34:03,991 Epoch 21 Step: 81200 Batch Loss: 1.931609 Tokens per Sec: 14441, Lr: 0.000300\n", "2020-04-10 16:34:18,788 Epoch 21 Step: 81300 Batch Loss: 1.901381 Tokens per Sec: 14446, Lr: 0.000300\n", "2020-04-10 16:34:33,867 Epoch 21 Step: 81400 Batch Loss: 2.140133 Tokens per Sec: 14994, Lr: 0.000300\n", "2020-04-10 16:34:48,866 Epoch 21 Step: 81500 Batch Loss: 1.975358 Tokens per Sec: 14886, Lr: 0.000300\n", "2020-04-10 16:35:03,597 Epoch 21 Step: 81600 Batch Loss: 1.952377 Tokens per Sec: 14590, Lr: 0.000300\n", "2020-04-10 16:35:18,556 Epoch 21 Step: 81700 Batch Loss: 1.840478 Tokens per Sec: 14877, Lr: 0.000300\n", "2020-04-10 16:35:33,478 Epoch 21 Step: 81800 Batch Loss: 1.872792 Tokens per Sec: 14951, Lr: 0.000300\n", "2020-04-10 16:35:48,340 Epoch 21 Step: 81900 Batch Loss: 1.855490 Tokens per Sec: 15073, Lr: 0.000300\n", "2020-04-10 16:36:03,358 Epoch 21 Step: 82000 Batch Loss: 1.977119 Tokens per Sec: 15031, Lr: 0.000300\n", "2020-04-10 16:36:21,514 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:36:21,515 Saving new checkpoint.\n", "2020-04-10 16:36:22,777 Example #0\n", "2020-04-10 16:36:22,778 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:36:22,778 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:36:22,778 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:36:22,779 Example #1\n", "2020-04-10 16:36:22,779 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:36:22,779 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:36:22,779 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 16:36:22,779 Example #2\n", "2020-04-10 16:36:22,780 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:36:22,780 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:36:22,780 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:36:22,780 Example #3\n", "2020-04-10 16:36:22,781 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:36:22,781 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:36:22,781 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:36:22,782 Validation result (greedy) at epoch 21, step 82000: bleu: 26.19, loss: 44657.0234, ppl: 5.6189, duration: 19.4234s\n", "2020-04-10 16:36:37,594 Epoch 21 Step: 82100 Batch Loss: 1.980391 Tokens per Sec: 14350, Lr: 0.000300\n", "2020-04-10 16:36:52,514 Epoch 21 Step: 82200 Batch Loss: 1.822971 Tokens per Sec: 14923, Lr: 0.000300\n", "2020-04-10 16:37:07,419 Epoch 21 Step: 82300 Batch Loss: 1.410817 Tokens per Sec: 14990, Lr: 0.000300\n", "2020-04-10 16:37:22,525 Epoch 21 Step: 82400 Batch Loss: 2.024197 Tokens per Sec: 14970, Lr: 0.000300\n", "2020-04-10 16:37:37,549 Epoch 21 Step: 82500 Batch Loss: 1.758220 Tokens per Sec: 14843, Lr: 0.000300\n", "2020-04-10 16:37:52,423 Epoch 21 Step: 82600 Batch Loss: 1.803664 Tokens per Sec: 14984, Lr: 0.000300\n", "2020-04-10 16:38:07,569 Epoch 21 Step: 82700 Batch Loss: 1.809344 Tokens per Sec: 14949, Lr: 0.000300\n", "2020-04-10 16:38:15,263 Epoch 21: total training loss 7437.11\n", "2020-04-10 16:38:15,264 EPOCH 22\n", "2020-04-10 16:38:23,030 Epoch 22 Step: 82800 Batch Loss: 1.778156 Tokens per Sec: 14393, Lr: 0.000300\n", "2020-04-10 16:38:37,931 Epoch 22 Step: 82900 Batch Loss: 1.962172 Tokens per Sec: 15036, Lr: 0.000300\n", "2020-04-10 16:38:52,777 Epoch 22 Step: 83000 Batch Loss: 1.806940 Tokens per Sec: 14832, Lr: 0.000300\n", "2020-04-10 16:39:12,037 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:39:12,037 Saving new checkpoint.\n", "2020-04-10 16:39:13,694 Example #0\n", "2020-04-10 16:39:13,694 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:39:13,694 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:39:13,695 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 16:39:13,695 Example #1\n", "2020-04-10 16:39:13,695 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:39:13,695 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:39:13,696 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 16:39:13,696 Example #2\n", "2020-04-10 16:39:13,696 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:39:13,696 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:39:13,696 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:39:13,697 Example #3\n", "2020-04-10 16:39:13,697 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:39:13,697 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:39:13,697 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:39:13,698 Validation result (greedy) at epoch 22, step 83000: bleu: 26.20, loss: 44615.2852, ppl: 5.6099, duration: 20.9199s\n", "2020-04-10 16:39:29,049 Epoch 22 Step: 83100 Batch Loss: 1.961727 Tokens per Sec: 14372, Lr: 0.000300\n", "2020-04-10 16:39:43,858 Epoch 22 Step: 83200 Batch Loss: 1.913424 Tokens per Sec: 14645, Lr: 0.000300\n", "2020-04-10 16:39:59,017 Epoch 22 Step: 83300 Batch Loss: 1.884095 Tokens per Sec: 14779, Lr: 0.000300\n", "2020-04-10 16:40:13,892 Epoch 22 Step: 83400 Batch Loss: 1.784748 Tokens per Sec: 14832, Lr: 0.000300\n", "2020-04-10 16:40:28,886 Epoch 22 Step: 83500 Batch Loss: 1.808324 Tokens per Sec: 14734, Lr: 0.000300\n", "2020-04-10 16:40:43,616 Epoch 22 Step: 83600 Batch Loss: 1.905176 Tokens per Sec: 15034, Lr: 0.000300\n", "2020-04-10 16:40:58,660 Epoch 22 Step: 83700 Batch Loss: 1.957662 Tokens per Sec: 14816, Lr: 0.000300\n", "2020-04-10 16:41:13,630 Epoch 22 Step: 83800 Batch Loss: 1.883558 Tokens per Sec: 14810, Lr: 0.000300\n", "2020-04-10 16:41:28,571 Epoch 22 Step: 83900 Batch Loss: 1.857966 Tokens per Sec: 14642, Lr: 0.000300\n", "2020-04-10 16:41:43,547 Epoch 22 Step: 84000 Batch Loss: 1.955551 Tokens per Sec: 14793, Lr: 0.000300\n", "2020-04-10 16:42:02,033 Example #0\n", "2020-04-10 16:42:02,034 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:42:02,034 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:42:02,034 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:42:02,034 Example #1\n", "2020-04-10 16:42:02,035 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:42:02,035 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:42:02,035 \tHypothesis: That is possible by the clergy .\n", "2020-04-10 16:42:02,035 Example #2\n", "2020-04-10 16:42:02,036 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:42:02,036 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:42:02,036 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:42:02,036 Example #3\n", "2020-04-10 16:42:02,037 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:42:02,037 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:42:02,037 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:42:02,037 Validation result (greedy) at epoch 22, step 84000: bleu: 26.38, loss: 44699.7188, ppl: 5.6282, duration: 18.4902s\n", "2020-04-10 16:42:16,958 Epoch 22 Step: 84100 Batch Loss: 1.884088 Tokens per Sec: 14741, Lr: 0.000300\n", "2020-04-10 16:42:31,718 Epoch 22 Step: 84200 Batch Loss: 1.947098 Tokens per Sec: 14759, Lr: 0.000300\n", "2020-04-10 16:42:46,425 Epoch 22 Step: 84300 Batch Loss: 1.862758 Tokens per Sec: 14970, Lr: 0.000300\n", "2020-04-10 16:43:01,216 Epoch 22 Step: 84400 Batch Loss: 1.936782 Tokens per Sec: 14795, Lr: 0.000300\n", "2020-04-10 16:43:16,022 Epoch 22 Step: 84500 Batch Loss: 1.911011 Tokens per Sec: 14439, Lr: 0.000300\n", "2020-04-10 16:43:31,066 Epoch 22 Step: 84600 Batch Loss: 1.869489 Tokens per Sec: 15160, Lr: 0.000300\n", "2020-04-10 16:43:45,899 Epoch 22 Step: 84700 Batch Loss: 1.960865 Tokens per Sec: 15028, Lr: 0.000300\n", "2020-04-10 16:44:00,814 Epoch 22 Step: 84800 Batch Loss: 1.799820 Tokens per Sec: 14711, Lr: 0.000300\n", "2020-04-10 16:44:15,702 Epoch 22 Step: 84900 Batch Loss: 1.788093 Tokens per Sec: 14917, Lr: 0.000300\n", "2020-04-10 16:44:30,634 Epoch 22 Step: 85000 Batch Loss: 1.791658 Tokens per Sec: 15162, Lr: 0.000300\n", "2020-04-10 16:44:49,053 Example #0\n", "2020-04-10 16:44:49,054 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:44:49,055 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:44:49,055 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 16:44:49,055 Example #1\n", "2020-04-10 16:44:49,056 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:44:49,056 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:44:49,056 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 16:44:49,056 Example #2\n", "2020-04-10 16:44:49,057 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:44:49,057 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:44:49,057 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:44:49,058 Example #3\n", "2020-04-10 16:44:49,058 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:44:49,059 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:44:49,059 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 and 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:44:49,059 Validation result (greedy) at epoch 22, step 85000: bleu: 26.45, loss: 44685.1719, ppl: 5.6251, duration: 18.4248s\n", "2020-04-10 16:45:03,993 Epoch 22 Step: 85100 Batch Loss: 2.061666 Tokens per Sec: 14531, Lr: 0.000300\n", "2020-04-10 16:45:18,954 Epoch 22 Step: 85200 Batch Loss: 1.798494 Tokens per Sec: 14802, Lr: 0.000300\n", "2020-04-10 16:45:33,841 Epoch 22 Step: 85300 Batch Loss: 1.950380 Tokens per Sec: 14865, Lr: 0.000300\n", "2020-04-10 16:45:48,803 Epoch 22 Step: 85400 Batch Loss: 1.949225 Tokens per Sec: 15050, Lr: 0.000300\n", "2020-04-10 16:46:03,741 Epoch 22 Step: 85500 Batch Loss: 1.828901 Tokens per Sec: 14755, Lr: 0.000300\n", "2020-04-10 16:46:18,328 Epoch 22 Step: 85600 Batch Loss: 1.724632 Tokens per Sec: 14791, Lr: 0.000300\n", "2020-04-10 16:46:33,168 Epoch 22 Step: 85700 Batch Loss: 1.936426 Tokens per Sec: 14900, Lr: 0.000300\n", "2020-04-10 16:46:48,019 Epoch 22 Step: 85800 Batch Loss: 1.937686 Tokens per Sec: 14937, Lr: 0.000300\n", "2020-04-10 16:47:02,805 Epoch 22 Step: 85900 Batch Loss: 1.949067 Tokens per Sec: 14983, Lr: 0.000300\n", "2020-04-10 16:47:17,577 Epoch 22 Step: 86000 Batch Loss: 1.888169 Tokens per Sec: 14733, Lr: 0.000300\n", "2020-04-10 16:47:36,853 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:47:36,853 Saving new checkpoint.\n", "2020-04-10 16:47:38,132 Example #0\n", "2020-04-10 16:47:38,133 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:47:38,133 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:47:38,133 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 16:47:38,133 Example #1\n", "2020-04-10 16:47:38,134 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:47:38,134 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:47:38,134 \tHypothesis: That is possible by the clergy .\n", "2020-04-10 16:47:38,134 Example #2\n", "2020-04-10 16:47:38,135 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:47:38,135 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:47:38,135 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:47:38,135 Example #3\n", "2020-04-10 16:47:38,135 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:47:38,136 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:47:38,136 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:47:38,136 Validation result (greedy) at epoch 22, step 86000: bleu: 26.43, loss: 44461.5391, ppl: 5.5766, duration: 20.5581s\n", "2020-04-10 16:47:52,955 Epoch 22 Step: 86100 Batch Loss: 1.919250 Tokens per Sec: 14665, Lr: 0.000300\n", "2020-04-10 16:48:07,987 Epoch 22 Step: 86200 Batch Loss: 1.805969 Tokens per Sec: 14999, Lr: 0.000300\n", "2020-04-10 16:48:22,925 Epoch 22 Step: 86300 Batch Loss: 1.778186 Tokens per Sec: 15053, Lr: 0.000300\n", "2020-04-10 16:48:37,923 Epoch 22 Step: 86400 Batch Loss: 1.977885 Tokens per Sec: 14861, Lr: 0.000300\n", "2020-04-10 16:48:52,608 Epoch 22 Step: 86500 Batch Loss: 1.820318 Tokens per Sec: 14787, Lr: 0.000300\n", "2020-04-10 16:49:07,567 Epoch 22 Step: 86600 Batch Loss: 1.918215 Tokens per Sec: 14944, Lr: 0.000300\n", "2020-04-10 16:49:21,062 Epoch 22: total training loss 7394.31\n", "2020-04-10 16:49:21,062 EPOCH 23\n", "2020-04-10 16:49:23,366 Epoch 23 Step: 86700 Batch Loss: 1.937408 Tokens per Sec: 8851, Lr: 0.000300\n", "2020-04-10 16:49:38,126 Epoch 23 Step: 86800 Batch Loss: 1.909783 Tokens per Sec: 14962, Lr: 0.000300\n", "2020-04-10 16:49:53,117 Epoch 23 Step: 86900 Batch Loss: 1.907373 Tokens per Sec: 14786, Lr: 0.000300\n", "2020-04-10 16:50:08,103 Epoch 23 Step: 87000 Batch Loss: 1.802995 Tokens per Sec: 15115, Lr: 0.000300\n", "2020-04-10 16:50:26,828 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:50:26,828 Saving new checkpoint.\n", "2020-04-10 16:50:28,152 Example #0\n", "2020-04-10 16:50:28,153 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:50:28,153 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:50:28,153 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 16:50:28,153 Example #1\n", "2020-04-10 16:50:28,154 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:50:28,154 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:50:28,154 \tHypothesis: That may be the clergy that said to them .\n", "2020-04-10 16:50:28,154 Example #2\n", "2020-04-10 16:50:28,155 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:50:28,155 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:50:28,155 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:50:28,156 Example #3\n", "2020-04-10 16:50:28,156 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:50:28,156 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:50:28,157 \tHypothesis: Paul was reminded in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wanted the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:50:28,157 Validation result (greedy) at epoch 23, step 87000: bleu: 26.34, loss: 44433.7852, ppl: 5.5707, duration: 20.0538s\n", "2020-04-10 16:50:43,001 Epoch 23 Step: 87100 Batch Loss: 1.872163 Tokens per Sec: 14469, Lr: 0.000300\n", "2020-04-10 16:50:57,903 Epoch 23 Step: 87200 Batch Loss: 1.812626 Tokens per Sec: 14998, Lr: 0.000300\n", "2020-04-10 16:51:12,918 Epoch 23 Step: 87300 Batch Loss: 1.876202 Tokens per Sec: 14878, Lr: 0.000300\n", "2020-04-10 16:51:27,647 Epoch 23 Step: 87400 Batch Loss: 1.815193 Tokens per Sec: 14732, Lr: 0.000300\n", "2020-04-10 16:51:42,438 Epoch 23 Step: 87500 Batch Loss: 1.412151 Tokens per Sec: 14931, Lr: 0.000300\n", "2020-04-10 16:51:57,266 Epoch 23 Step: 87600 Batch Loss: 1.894268 Tokens per Sec: 15039, Lr: 0.000300\n", "2020-04-10 16:52:12,167 Epoch 23 Step: 87700 Batch Loss: 1.680947 Tokens per Sec: 14731, Lr: 0.000300\n", "2020-04-10 16:52:27,012 Epoch 23 Step: 87800 Batch Loss: 2.129040 Tokens per Sec: 15194, Lr: 0.000300\n", "2020-04-10 16:52:41,576 Epoch 23 Step: 87900 Batch Loss: 2.162140 Tokens per Sec: 14959, Lr: 0.000300\n", "2020-04-10 16:52:56,382 Epoch 23 Step: 88000 Batch Loss: 1.953345 Tokens per Sec: 14926, Lr: 0.000300\n", "2020-04-10 16:53:15,270 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:53:15,271 Saving new checkpoint.\n", "2020-04-10 16:53:16,585 Example #0\n", "2020-04-10 16:53:16,585 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:53:16,586 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:53:16,586 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:53:16,586 Example #1\n", "2020-04-10 16:53:16,587 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:53:16,587 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:53:16,587 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 16:53:16,587 Example #2\n", "2020-04-10 16:53:16,588 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:53:16,588 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:53:16,588 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:53:16,588 Example #3\n", "2020-04-10 16:53:16,589 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:53:16,589 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:53:16,589 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:53:16,589 Validation result (greedy) at epoch 23, step 88000: bleu: 26.65, loss: 44352.4023, ppl: 5.5532, duration: 20.2064s\n", "2020-04-10 16:53:31,798 Epoch 23 Step: 88100 Batch Loss: 1.698511 Tokens per Sec: 14753, Lr: 0.000300\n", "2020-04-10 16:53:46,800 Epoch 23 Step: 88200 Batch Loss: 1.762708 Tokens per Sec: 14989, Lr: 0.000300\n", "2020-04-10 16:54:01,616 Epoch 23 Step: 88300 Batch Loss: 1.935627 Tokens per Sec: 14816, Lr: 0.000300\n", "2020-04-10 16:54:16,297 Epoch 23 Step: 88400 Batch Loss: 1.917552 Tokens per Sec: 15133, Lr: 0.000300\n", "2020-04-10 16:54:31,244 Epoch 23 Step: 88500 Batch Loss: 2.149775 Tokens per Sec: 15045, Lr: 0.000300\n", "2020-04-10 16:54:46,085 Epoch 23 Step: 88600 Batch Loss: 1.907230 Tokens per Sec: 14788, Lr: 0.000300\n", "2020-04-10 16:55:01,112 Epoch 23 Step: 88700 Batch Loss: 1.864196 Tokens per Sec: 14759, Lr: 0.000300\n", "2020-04-10 16:55:16,150 Epoch 23 Step: 88800 Batch Loss: 1.822343 Tokens per Sec: 15024, Lr: 0.000300\n", "2020-04-10 16:55:30,979 Epoch 23 Step: 88900 Batch Loss: 1.741751 Tokens per Sec: 14708, Lr: 0.000300\n", "2020-04-10 16:55:46,051 Epoch 23 Step: 89000 Batch Loss: 1.921620 Tokens per Sec: 14993, Lr: 0.000300\n", "2020-04-10 16:56:04,878 Example #0\n", "2020-04-10 16:56:04,879 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:56:04,879 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:56:04,879 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 16:56:04,879 Example #1\n", "2020-04-10 16:56:04,880 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:56:04,880 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:56:04,880 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 16:56:04,880 Example #2\n", "2020-04-10 16:56:04,881 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:56:04,881 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:56:04,881 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:56:04,881 Example #3\n", "2020-04-10 16:56:04,882 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:56:04,882 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:56:04,882 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:56:04,882 Validation result (greedy) at epoch 23, step 89000: bleu: 26.59, loss: 44379.5625, ppl: 5.5590, duration: 18.8305s\n", "2020-04-10 16:56:19,777 Epoch 23 Step: 89100 Batch Loss: 2.001474 Tokens per Sec: 14818, Lr: 0.000300\n", "2020-04-10 16:56:34,817 Epoch 23 Step: 89200 Batch Loss: 1.691725 Tokens per Sec: 14767, Lr: 0.000300\n", "2020-04-10 16:56:49,801 Epoch 23 Step: 89300 Batch Loss: 1.846043 Tokens per Sec: 14770, Lr: 0.000300\n", "2020-04-10 16:57:04,731 Epoch 23 Step: 89400 Batch Loss: 1.865656 Tokens per Sec: 15159, Lr: 0.000300\n", "2020-04-10 16:57:19,602 Epoch 23 Step: 89500 Batch Loss: 1.663121 Tokens per Sec: 14802, Lr: 0.000300\n", "2020-04-10 16:57:34,541 Epoch 23 Step: 89600 Batch Loss: 1.840657 Tokens per Sec: 14767, Lr: 0.000300\n", "2020-04-10 16:57:49,530 Epoch 23 Step: 89700 Batch Loss: 1.885885 Tokens per Sec: 14866, Lr: 0.000300\n", "2020-04-10 16:58:04,545 Epoch 23 Step: 89800 Batch Loss: 2.038035 Tokens per Sec: 14451, Lr: 0.000300\n", "2020-04-10 16:58:19,451 Epoch 23 Step: 89900 Batch Loss: 1.959133 Tokens per Sec: 14765, Lr: 0.000300\n", "2020-04-10 16:58:34,283 Epoch 23 Step: 90000 Batch Loss: 1.795492 Tokens per Sec: 14149, Lr: 0.000300\n", "2020-04-10 16:58:51,918 Hooray! New best validation result [ppl]!\n", "2020-04-10 16:58:51,919 Saving new checkpoint.\n", "2020-04-10 16:58:53,344 Example #0\n", "2020-04-10 16:58:53,345 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 16:58:53,345 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 16:58:53,346 \tHypothesis: If so , you are chosen the best way of life .\n", "2020-04-10 16:58:53,346 Example #1\n", "2020-04-10 16:58:53,347 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 16:58:53,347 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 16:58:53,347 \tHypothesis: That may be the case of the clergy who said to them .\n", "2020-04-10 16:58:53,347 Example #2\n", "2020-04-10 16:58:53,348 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 16:58:53,348 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:58:53,348 \tHypothesis: The same words are described at 2 Chronicles 5 : 9 .\n", "2020-04-10 16:58:53,349 Example #3\n", "2020-04-10 16:58:53,349 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 16:58:53,350 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:58:53,350 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 16:58:53,350 Validation result (greedy) at epoch 23, step 90000: bleu: 26.41, loss: 44311.9219, ppl: 5.5445, duration: 19.0668s\n", "2020-04-10 16:59:09,017 Epoch 23 Step: 90100 Batch Loss: 1.982994 Tokens per Sec: 13925, Lr: 0.000300\n", "2020-04-10 16:59:23,862 Epoch 23 Step: 90200 Batch Loss: 1.891675 Tokens per Sec: 14864, Lr: 0.000300\n", "2020-04-10 16:59:38,958 Epoch 23 Step: 90300 Batch Loss: 1.881200 Tokens per Sec: 14464, Lr: 0.000300\n", "2020-04-10 16:59:53,909 Epoch 23 Step: 90400 Batch Loss: 2.053281 Tokens per Sec: 14750, Lr: 0.000300\n", "2020-04-10 17:00:09,019 Epoch 23 Step: 90500 Batch Loss: 1.958611 Tokens per Sec: 14977, Lr: 0.000300\n", "2020-04-10 17:00:23,899 Epoch 23 Step: 90600 Batch Loss: 1.971562 Tokens per Sec: 14813, Lr: 0.000300\n", "2020-04-10 17:00:28,155 Epoch 23: total training loss 7357.58\n", "2020-04-10 17:00:28,155 EPOCH 24\n", "2020-04-10 17:00:38,976 Epoch 24 Step: 90700 Batch Loss: 1.816769 Tokens per Sec: 14528, Lr: 0.000300\n", "2020-04-10 17:00:53,821 Epoch 24 Step: 90800 Batch Loss: 1.839407 Tokens per Sec: 14930, Lr: 0.000300\n", "2020-04-10 17:01:08,280 Epoch 24 Step: 90900 Batch Loss: 1.691542 Tokens per Sec: 15005, Lr: 0.000300\n", "2020-04-10 17:01:22,869 Epoch 24 Step: 91000 Batch Loss: 1.853715 Tokens per Sec: 14913, Lr: 0.000300\n", "2020-04-10 17:01:42,051 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:01:42,051 Saving new checkpoint.\n", "2020-04-10 17:01:43,349 Example #0\n", "2020-04-10 17:01:43,350 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:01:43,350 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:01:43,350 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 17:01:43,350 Example #1\n", "2020-04-10 17:01:43,351 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:01:43,351 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:01:43,351 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:01:43,351 Example #2\n", "2020-04-10 17:01:43,351 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:01:43,352 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:01:43,352 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:01:43,352 Example #3\n", "2020-04-10 17:01:43,352 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:01:43,352 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:01:43,353 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:01:43,353 Validation result (greedy) at epoch 24, step 91000: bleu: 26.42, loss: 44121.0430, ppl: 5.5037, duration: 20.4832s\n", "2020-04-10 17:01:58,072 Epoch 24 Step: 91100 Batch Loss: 1.779641 Tokens per Sec: 14665, Lr: 0.000300\n", "2020-04-10 17:02:12,740 Epoch 24 Step: 91200 Batch Loss: 2.014395 Tokens per Sec: 15331, Lr: 0.000300\n", "2020-04-10 17:02:27,460 Epoch 24 Step: 91300 Batch Loss: 1.886642 Tokens per Sec: 15085, Lr: 0.000300\n", "2020-04-10 17:02:41,974 Epoch 24 Step: 91400 Batch Loss: 1.902890 Tokens per Sec: 14847, Lr: 0.000300\n", "2020-04-10 17:02:56,630 Epoch 24 Step: 91500 Batch Loss: 1.936830 Tokens per Sec: 15216, Lr: 0.000300\n", "2020-04-10 17:03:11,115 Epoch 24 Step: 91600 Batch Loss: 1.762071 Tokens per Sec: 15303, Lr: 0.000300\n", "2020-04-10 17:03:25,706 Epoch 24 Step: 91700 Batch Loss: 1.882687 Tokens per Sec: 15230, Lr: 0.000300\n", "2020-04-10 17:03:40,185 Epoch 24 Step: 91800 Batch Loss: 1.742709 Tokens per Sec: 15246, Lr: 0.000300\n", "2020-04-10 17:03:54,679 Epoch 24 Step: 91900 Batch Loss: 1.750055 Tokens per Sec: 15373, Lr: 0.000300\n", "2020-04-10 17:04:09,391 Epoch 24 Step: 92000 Batch Loss: 1.848810 Tokens per Sec: 14927, Lr: 0.000300\n", "2020-04-10 17:04:28,509 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:04:28,509 Saving new checkpoint.\n", "2020-04-10 17:04:29,784 Example #0\n", "2020-04-10 17:04:29,784 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:04:29,785 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:04:29,785 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:04:29,785 Example #1\n", "2020-04-10 17:04:29,785 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:04:29,786 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:04:29,786 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 17:04:29,786 Example #2\n", "2020-04-10 17:04:29,786 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:04:29,786 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:04:29,786 \tHypothesis: The same words are mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:04:29,787 Example #3\n", "2020-04-10 17:04:29,787 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:04:29,788 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:04:29,788 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:04:29,788 Validation result (greedy) at epoch 24, step 92000: bleu: 26.49, loss: 44016.0781, ppl: 5.4814, duration: 20.3961s\n", "2020-04-10 17:04:44,574 Epoch 24 Step: 92100 Batch Loss: 2.199378 Tokens per Sec: 14530, Lr: 0.000300\n", "2020-04-10 17:04:59,324 Epoch 24 Step: 92200 Batch Loss: 1.860625 Tokens per Sec: 15452, Lr: 0.000300\n", "2020-04-10 17:05:14,022 Epoch 24 Step: 92300 Batch Loss: 1.995165 Tokens per Sec: 15182, Lr: 0.000300\n", "2020-04-10 17:05:28,725 Epoch 24 Step: 92400 Batch Loss: 1.867449 Tokens per Sec: 15442, Lr: 0.000300\n", "2020-04-10 17:05:43,219 Epoch 24 Step: 92500 Batch Loss: 1.821613 Tokens per Sec: 14995, Lr: 0.000300\n", "2020-04-10 17:05:58,008 Epoch 24 Step: 92600 Batch Loss: 1.848197 Tokens per Sec: 15222, Lr: 0.000300\n", "2020-04-10 17:06:12,536 Epoch 24 Step: 92700 Batch Loss: 1.976710 Tokens per Sec: 15280, Lr: 0.000300\n", "2020-04-10 17:06:27,155 Epoch 24 Step: 92800 Batch Loss: 1.899205 Tokens per Sec: 14978, Lr: 0.000300\n", "2020-04-10 17:06:41,731 Epoch 24 Step: 92900 Batch Loss: 1.994608 Tokens per Sec: 15386, Lr: 0.000300\n", "2020-04-10 17:06:56,148 Epoch 24 Step: 93000 Batch Loss: 2.041617 Tokens per Sec: 14854, Lr: 0.000300\n", "2020-04-10 17:07:13,287 Example #0\n", "2020-04-10 17:07:13,288 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:07:13,288 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:07:13,288 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:07:13,288 Example #1\n", "2020-04-10 17:07:13,289 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:07:13,289 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:07:13,289 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 17:07:13,289 Example #2\n", "2020-04-10 17:07:13,290 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:07:13,290 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:07:13,290 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:07:13,290 Example #3\n", "2020-04-10 17:07:13,291 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:07:13,291 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:07:13,291 \tHypothesis: Paul was imprisoned in his home for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:07:13,291 Validation result (greedy) at epoch 24, step 93000: bleu: 26.28, loss: 44160.5117, ppl: 5.5121, duration: 17.1427s\n", "2020-04-10 17:07:28,057 Epoch 24 Step: 93100 Batch Loss: 2.043787 Tokens per Sec: 15300, Lr: 0.000300\n", "2020-04-10 17:07:42,689 Epoch 24 Step: 93200 Batch Loss: 1.880102 Tokens per Sec: 15046, Lr: 0.000300\n", "2020-04-10 17:07:57,088 Epoch 24 Step: 93300 Batch Loss: 1.935950 Tokens per Sec: 15372, Lr: 0.000300\n", "2020-04-10 17:08:11,838 Epoch 24 Step: 93400 Batch Loss: 1.913392 Tokens per Sec: 14937, Lr: 0.000300\n", "2020-04-10 17:08:26,453 Epoch 24 Step: 93500 Batch Loss: 2.048513 Tokens per Sec: 15013, Lr: 0.000300\n", "2020-04-10 17:08:41,006 Epoch 24 Step: 93600 Batch Loss: 1.624291 Tokens per Sec: 15141, Lr: 0.000300\n", "2020-04-10 17:08:55,551 Epoch 24 Step: 93700 Batch Loss: 2.005018 Tokens per Sec: 15518, Lr: 0.000300\n", "2020-04-10 17:09:10,252 Epoch 24 Step: 93800 Batch Loss: 1.935249 Tokens per Sec: 14969, Lr: 0.000300\n", "2020-04-10 17:09:25,028 Epoch 24 Step: 93900 Batch Loss: 1.891378 Tokens per Sec: 15139, Lr: 0.000300\n", "2020-04-10 17:09:39,841 Epoch 24 Step: 94000 Batch Loss: 1.921827 Tokens per Sec: 14889, Lr: 0.000300\n", "2020-04-10 17:09:57,139 Example #0\n", "2020-04-10 17:09:57,139 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:09:57,140 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:09:57,140 \tHypothesis: If you do so , you are chosen the best way of life .\n", "2020-04-10 17:09:57,140 Example #1\n", "2020-04-10 17:09:57,141 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:09:57,141 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:09:57,141 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 17:09:57,141 Example #2\n", "2020-04-10 17:09:57,141 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:09:57,142 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:09:57,142 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:09:57,142 Example #3\n", "2020-04-10 17:09:57,142 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:09:57,143 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:09:57,143 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:09:57,143 Validation result (greedy) at epoch 24, step 94000: bleu: 26.71, loss: 44174.8203, ppl: 5.5152, duration: 17.3016s\n", "2020-04-10 17:10:11,760 Epoch 24 Step: 94100 Batch Loss: 2.069649 Tokens per Sec: 14871, Lr: 0.000300\n", "2020-04-10 17:10:26,545 Epoch 24 Step: 94200 Batch Loss: 1.788597 Tokens per Sec: 15019, Lr: 0.000300\n", "2020-04-10 17:10:41,298 Epoch 24 Step: 94300 Batch Loss: 1.712539 Tokens per Sec: 14978, Lr: 0.000300\n", "2020-04-10 17:10:55,897 Epoch 24 Step: 94400 Batch Loss: 1.914803 Tokens per Sec: 15074, Lr: 0.000300\n", "2020-04-10 17:11:10,696 Epoch 24 Step: 94500 Batch Loss: 1.774288 Tokens per Sec: 15163, Lr: 0.000300\n", "2020-04-10 17:11:20,743 Epoch 24: total training loss 7319.73\n", "2020-04-10 17:11:20,743 EPOCH 25\n", "2020-04-10 17:11:25,913 Epoch 25 Step: 94600 Batch Loss: 1.826815 Tokens per Sec: 13899, Lr: 0.000300\n", "2020-04-10 17:11:40,630 Epoch 25 Step: 94700 Batch Loss: 1.577307 Tokens per Sec: 15091, Lr: 0.000300\n", "2020-04-10 17:11:55,351 Epoch 25 Step: 94800 Batch Loss: 1.656825 Tokens per Sec: 15185, Lr: 0.000300\n", "2020-04-10 17:12:10,131 Epoch 25 Step: 94900 Batch Loss: 1.597767 Tokens per Sec: 15398, Lr: 0.000300\n", "2020-04-10 17:12:24,794 Epoch 25 Step: 95000 Batch Loss: 1.697675 Tokens per Sec: 14991, Lr: 0.000300\n", "2020-04-10 17:12:42,196 Example #0\n", "2020-04-10 17:12:42,197 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:12:42,197 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:12:42,197 \tHypothesis: If you do so , you choose the best way of life .\n", "2020-04-10 17:12:42,197 Example #1\n", "2020-04-10 17:12:42,198 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:12:42,198 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:12:42,198 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 17:12:42,198 Example #2\n", "2020-04-10 17:12:42,198 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:12:42,199 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:12:42,199 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:12:42,199 Example #3\n", "2020-04-10 17:12:42,199 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:12:42,200 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:12:42,200 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:12:42,200 Validation result (greedy) at epoch 25, step 95000: bleu: 26.78, loss: 44108.2188, ppl: 5.5010, duration: 17.4057s\n", "2020-04-10 17:12:56,817 Epoch 25 Step: 95100 Batch Loss: 2.007009 Tokens per Sec: 15067, Lr: 0.000300\n", "2020-04-10 17:13:11,582 Epoch 25 Step: 95200 Batch Loss: 1.891423 Tokens per Sec: 15125, Lr: 0.000300\n", "2020-04-10 17:13:26,186 Epoch 25 Step: 95300 Batch Loss: 2.000056 Tokens per Sec: 15022, Lr: 0.000300\n", "2020-04-10 17:13:40,758 Epoch 25 Step: 95400 Batch Loss: 1.768165 Tokens per Sec: 15007, Lr: 0.000300\n", "2020-04-10 17:13:55,289 Epoch 25 Step: 95500 Batch Loss: 1.845186 Tokens per Sec: 15003, Lr: 0.000300\n", "2020-04-10 17:14:09,997 Epoch 25 Step: 95600 Batch Loss: 1.830804 Tokens per Sec: 15226, Lr: 0.000300\n", "2020-04-10 17:14:24,713 Epoch 25 Step: 95700 Batch Loss: 1.968555 Tokens per Sec: 15188, Lr: 0.000300\n", "2020-04-10 17:14:39,329 Epoch 25 Step: 95800 Batch Loss: 1.713854 Tokens per Sec: 15472, Lr: 0.000300\n", "2020-04-10 17:14:53,986 Epoch 25 Step: 95900 Batch Loss: 1.599608 Tokens per Sec: 14855, Lr: 0.000300\n", "2020-04-10 17:15:08,483 Epoch 25 Step: 96000 Batch Loss: 1.851737 Tokens per Sec: 15361, Lr: 0.000300\n", "2020-04-10 17:15:26,638 Example #0\n", "2020-04-10 17:15:26,639 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:15:26,639 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:15:26,639 \tHypothesis: If you do so , you choose the best way of life .\n", "2020-04-10 17:15:26,640 Example #1\n", "2020-04-10 17:15:26,640 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:15:26,640 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:15:26,641 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:15:26,641 Example #2\n", "2020-04-10 17:15:26,641 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:15:26,641 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:15:26,641 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:15:26,642 Example #3\n", "2020-04-10 17:15:26,642 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:15:26,642 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:15:26,642 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:15:26,642 Validation result (greedy) at epoch 25, step 96000: bleu: 26.76, loss: 44136.9570, ppl: 5.5071, duration: 18.1585s\n", "2020-04-10 17:15:41,072 Epoch 25 Step: 96100 Batch Loss: 1.791239 Tokens per Sec: 15042, Lr: 0.000300\n", "2020-04-10 17:15:55,678 Epoch 25 Step: 96200 Batch Loss: 1.770456 Tokens per Sec: 15378, Lr: 0.000300\n", "2020-04-10 17:16:10,263 Epoch 25 Step: 96300 Batch Loss: 1.843321 Tokens per Sec: 15148, Lr: 0.000300\n", "2020-04-10 17:16:24,858 Epoch 25 Step: 96400 Batch Loss: 1.899325 Tokens per Sec: 15198, Lr: 0.000300\n", "2020-04-10 17:16:39,478 Epoch 25 Step: 96500 Batch Loss: 2.018658 Tokens per Sec: 15197, Lr: 0.000300\n", "2020-04-10 17:16:53,945 Epoch 25 Step: 96600 Batch Loss: 1.776941 Tokens per Sec: 14884, Lr: 0.000300\n", "2020-04-10 17:17:08,528 Epoch 25 Step: 96700 Batch Loss: 2.009931 Tokens per Sec: 15234, Lr: 0.000300\n", "2020-04-10 17:17:23,155 Epoch 25 Step: 96800 Batch Loss: 1.873478 Tokens per Sec: 15066, Lr: 0.000300\n", "2020-04-10 17:17:37,617 Epoch 25 Step: 96900 Batch Loss: 1.913318 Tokens per Sec: 14876, Lr: 0.000300\n", "2020-04-10 17:17:52,076 Epoch 25 Step: 97000 Batch Loss: 1.798627 Tokens per Sec: 14994, Lr: 0.000300\n", "2020-04-10 17:18:12,686 Example #0\n", "2020-04-10 17:18:12,687 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:18:12,687 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:18:12,687 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:18:12,687 Example #1\n", "2020-04-10 17:18:12,688 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:18:12,688 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:18:12,688 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:18:12,689 Example #2\n", "2020-04-10 17:18:12,689 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:18:12,689 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:18:12,690 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:18:12,690 Example #3\n", "2020-04-10 17:18:12,690 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:18:12,691 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:18:12,691 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:18:12,691 Validation result (greedy) at epoch 25, step 97000: bleu: 26.61, loss: 44190.6641, ppl: 5.5186, duration: 20.6146s\n", "2020-04-10 17:18:27,198 Epoch 25 Step: 97100 Batch Loss: 1.741799 Tokens per Sec: 15261, Lr: 0.000300\n", "2020-04-10 17:18:41,700 Epoch 25 Step: 97200 Batch Loss: 1.972697 Tokens per Sec: 14930, Lr: 0.000300\n", "2020-04-10 17:18:56,754 Epoch 25 Step: 97300 Batch Loss: 1.638175 Tokens per Sec: 14885, Lr: 0.000300\n", "2020-04-10 17:19:11,443 Epoch 25 Step: 97400 Batch Loss: 1.916397 Tokens per Sec: 14812, Lr: 0.000300\n", "2020-04-10 17:19:26,272 Epoch 25 Step: 97500 Batch Loss: 1.950240 Tokens per Sec: 14868, Lr: 0.000300\n", "2020-04-10 17:19:41,239 Epoch 25 Step: 97600 Batch Loss: 1.833055 Tokens per Sec: 14659, Lr: 0.000300\n", "2020-04-10 17:19:56,030 Epoch 25 Step: 97700 Batch Loss: 1.944888 Tokens per Sec: 14845, Lr: 0.000300\n", "2020-04-10 17:20:11,167 Epoch 25 Step: 97800 Batch Loss: 1.940721 Tokens per Sec: 14821, Lr: 0.000300\n", "2020-04-10 17:20:26,186 Epoch 25 Step: 97900 Batch Loss: 2.002332 Tokens per Sec: 14689, Lr: 0.000300\n", "2020-04-10 17:20:41,017 Epoch 25 Step: 98000 Batch Loss: 1.675299 Tokens per Sec: 14898, Lr: 0.000300\n", "2020-04-10 17:20:58,511 Example #0\n", "2020-04-10 17:20:58,511 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:20:58,511 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:20:58,511 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:20:58,512 Example #1\n", "2020-04-10 17:20:58,512 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:20:58,512 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:20:58,512 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:20:58,512 Example #2\n", "2020-04-10 17:20:58,513 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:20:58,513 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:20:58,513 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:20:58,513 Example #3\n", "2020-04-10 17:20:58,514 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:20:58,514 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:20:58,514 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:20:58,514 Validation result (greedy) at epoch 25, step 98000: bleu: 26.70, loss: 44055.9766, ppl: 5.4899, duration: 17.4969s\n", "2020-04-10 17:21:13,524 Epoch 25 Step: 98100 Batch Loss: 1.697387 Tokens per Sec: 14698, Lr: 0.000210\n", "2020-04-10 17:21:28,586 Epoch 25 Step: 98200 Batch Loss: 1.867548 Tokens per Sec: 14874, Lr: 0.000210\n", "2020-04-10 17:21:43,611 Epoch 25 Step: 98300 Batch Loss: 1.756704 Tokens per Sec: 14609, Lr: 0.000210\n", "2020-04-10 17:21:58,541 Epoch 25 Step: 98400 Batch Loss: 1.965677 Tokens per Sec: 14532, Lr: 0.000210\n", "2020-04-10 17:22:13,581 Epoch 25 Step: 98500 Batch Loss: 1.855999 Tokens per Sec: 14845, Lr: 0.000210\n", "2020-04-10 17:22:15,427 Epoch 25: total training loss 7300.85\n", "2020-04-10 17:22:15,428 EPOCH 26\n", "2020-04-10 17:22:29,255 Epoch 26 Step: 98600 Batch Loss: 1.803937 Tokens per Sec: 14353, Lr: 0.000210\n", "2020-04-10 17:22:44,211 Epoch 26 Step: 98700 Batch Loss: 1.763002 Tokens per Sec: 14591, Lr: 0.000210\n", "2020-04-10 17:22:59,307 Epoch 26 Step: 98800 Batch Loss: 1.824283 Tokens per Sec: 14465, Lr: 0.000210\n", "2020-04-10 17:23:14,400 Epoch 26 Step: 98900 Batch Loss: 1.794289 Tokens per Sec: 14675, Lr: 0.000210\n", "2020-04-10 17:23:29,562 Epoch 26 Step: 99000 Batch Loss: 1.907066 Tokens per Sec: 14715, Lr: 0.000210\n", "2020-04-10 17:23:47,066 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:23:47,067 Saving new checkpoint.\n", "2020-04-10 17:23:48,340 Example #0\n", "2020-04-10 17:23:48,341 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:23:48,341 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:23:48,341 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:23:48,341 Example #1\n", "2020-04-10 17:23:48,342 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:23:48,342 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:23:48,342 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:23:48,342 Example #2\n", "2020-04-10 17:23:48,342 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:23:48,343 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:23:48,343 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:23:48,343 Example #3\n", "2020-04-10 17:23:48,343 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:23:48,343 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:23:48,344 \tHypothesis: Paul was reminded in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:23:48,344 Validation result (greedy) at epoch 26, step 99000: bleu: 26.74, loss: 43855.5078, ppl: 5.4475, duration: 18.7810s\n", "2020-04-10 17:24:03,786 Epoch 26 Step: 99100 Batch Loss: 1.768407 Tokens per Sec: 14290, Lr: 0.000210\n", "2020-04-10 17:24:18,787 Epoch 26 Step: 99200 Batch Loss: 1.763967 Tokens per Sec: 15002, Lr: 0.000210\n", "2020-04-10 17:24:33,998 Epoch 26 Step: 99300 Batch Loss: 1.827079 Tokens per Sec: 14870, Lr: 0.000210\n", "2020-04-10 17:24:49,124 Epoch 26 Step: 99400 Batch Loss: 1.649587 Tokens per Sec: 14869, Lr: 0.000210\n", "2020-04-10 17:25:04,047 Epoch 26 Step: 99500 Batch Loss: 1.838980 Tokens per Sec: 14757, Lr: 0.000210\n", "2020-04-10 17:25:19,060 Epoch 26 Step: 99600 Batch Loss: 1.792582 Tokens per Sec: 14523, Lr: 0.000210\n", "2020-04-10 17:25:34,225 Epoch 26 Step: 99700 Batch Loss: 1.779207 Tokens per Sec: 14809, Lr: 0.000210\n", "2020-04-10 17:25:49,323 Epoch 26 Step: 99800 Batch Loss: 1.995972 Tokens per Sec: 14921, Lr: 0.000210\n", "2020-04-10 17:26:04,605 Epoch 26 Step: 99900 Batch Loss: 2.020932 Tokens per Sec: 15031, Lr: 0.000210\n", "2020-04-10 17:26:19,564 Epoch 26 Step: 100000 Batch Loss: 1.906892 Tokens per Sec: 14520, Lr: 0.000210\n", "2020-04-10 17:26:37,588 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:26:37,589 Saving new checkpoint.\n", "2020-04-10 17:26:38,926 Example #0\n", "2020-04-10 17:26:38,927 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:26:38,927 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:26:38,927 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:26:38,927 Example #1\n", "2020-04-10 17:26:38,928 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:26:38,928 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:26:38,928 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:26:38,928 Example #2\n", "2020-04-10 17:26:38,929 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:26:38,929 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:26:38,929 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:26:38,929 Example #3\n", "2020-04-10 17:26:38,930 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:26:38,930 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:26:38,930 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:26:38,930 Validation result (greedy) at epoch 26, step 100000: bleu: 26.76, loss: 43759.7188, ppl: 5.4274, duration: 19.3659s\n", "2020-04-10 17:26:53,999 Epoch 26 Step: 100100 Batch Loss: 1.821094 Tokens per Sec: 14373, Lr: 0.000210\n", "2020-04-10 17:27:08,862 Epoch 26 Step: 100200 Batch Loss: 1.925248 Tokens per Sec: 14352, Lr: 0.000210\n", "2020-04-10 17:27:23,842 Epoch 26 Step: 100300 Batch Loss: 2.017945 Tokens per Sec: 14863, Lr: 0.000210\n", "2020-04-10 17:27:38,758 Epoch 26 Step: 100400 Batch Loss: 1.873473 Tokens per Sec: 14593, Lr: 0.000210\n", "2020-04-10 17:27:53,731 Epoch 26 Step: 100500 Batch Loss: 1.854967 Tokens per Sec: 14458, Lr: 0.000210\n", "2020-04-10 17:28:08,655 Epoch 26 Step: 100600 Batch Loss: 1.868926 Tokens per Sec: 14749, Lr: 0.000210\n", "2020-04-10 17:28:23,661 Epoch 26 Step: 100700 Batch Loss: 1.610303 Tokens per Sec: 15020, Lr: 0.000210\n", "2020-04-10 17:28:38,572 Epoch 26 Step: 100800 Batch Loss: 1.754377 Tokens per Sec: 14691, Lr: 0.000210\n", "2020-04-10 17:28:53,665 Epoch 26 Step: 100900 Batch Loss: 1.898827 Tokens per Sec: 14373, Lr: 0.000210\n", "2020-04-10 17:29:08,826 Epoch 26 Step: 101000 Batch Loss: 1.776677 Tokens per Sec: 14781, Lr: 0.000210\n", "2020-04-10 17:29:27,685 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:29:27,685 Saving new checkpoint.\n", "2020-04-10 17:29:29,007 Example #0\n", "2020-04-10 17:29:29,008 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:29:29,008 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:29:29,008 \tHypothesis: If you do so , you have chosen the best way of life .\n", "2020-04-10 17:29:29,009 Example #1\n", "2020-04-10 17:29:29,009 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:29:29,009 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:29:29,010 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 17:29:29,010 Example #2\n", "2020-04-10 17:29:29,010 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:29:29,010 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:29:29,011 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:29:29,011 Example #3\n", "2020-04-10 17:29:29,011 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:29:29,012 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:29:29,012 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:29:29,012 Validation result (greedy) at epoch 26, step 101000: bleu: 27.07, loss: 43524.2656, ppl: 5.3782, duration: 20.1858s\n", "2020-04-10 17:29:44,258 Epoch 26 Step: 101100 Batch Loss: 2.070268 Tokens per Sec: 14464, Lr: 0.000210\n", "2020-04-10 17:29:59,592 Epoch 26 Step: 101200 Batch Loss: 1.903373 Tokens per Sec: 14846, Lr: 0.000210\n", "2020-04-10 17:30:14,815 Epoch 26 Step: 101300 Batch Loss: 1.644208 Tokens per Sec: 14884, Lr: 0.000210\n", "2020-04-10 17:30:29,975 Epoch 26 Step: 101400 Batch Loss: 1.876194 Tokens per Sec: 14898, Lr: 0.000210\n", "2020-04-10 17:30:44,875 Epoch 26 Step: 101500 Batch Loss: 1.801596 Tokens per Sec: 14548, Lr: 0.000210\n", "2020-04-10 17:31:00,052 Epoch 26 Step: 101600 Batch Loss: 1.955090 Tokens per Sec: 14541, Lr: 0.000210\n", "2020-04-10 17:31:15,234 Epoch 26 Step: 101700 Batch Loss: 1.488316 Tokens per Sec: 14729, Lr: 0.000210\n", "2020-04-10 17:31:30,237 Epoch 26 Step: 101800 Batch Loss: 1.971535 Tokens per Sec: 14723, Lr: 0.000210\n", "2020-04-10 17:31:44,944 Epoch 26 Step: 101900 Batch Loss: 1.898044 Tokens per Sec: 14334, Lr: 0.000210\n", "2020-04-10 17:32:00,312 Epoch 26 Step: 102000 Batch Loss: 1.828501 Tokens per Sec: 14458, Lr: 0.000210\n", "2020-04-10 17:32:19,258 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:32:19,258 Saving new checkpoint.\n", "2020-04-10 17:32:20,538 Example #0\n", "2020-04-10 17:32:20,539 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:32:20,539 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:32:20,539 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:32:20,539 Example #1\n", "2020-04-10 17:32:20,540 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:32:20,540 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:32:20,540 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:32:20,540 Example #2\n", "2020-04-10 17:32:20,541 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:32:20,541 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:32:20,541 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:32:20,541 Example #3\n", "2020-04-10 17:32:20,542 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:32:20,542 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:32:20,542 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:32:20,543 Validation result (greedy) at epoch 26, step 102000: bleu: 26.84, loss: 43461.8398, ppl: 5.3653, duration: 20.2302s\n", "2020-04-10 17:32:36,219 Epoch 26 Step: 102100 Batch Loss: 1.948662 Tokens per Sec: 13764, Lr: 0.000210\n", "2020-04-10 17:32:51,330 Epoch 26 Step: 102200 Batch Loss: 1.882919 Tokens per Sec: 14654, Lr: 0.000210\n", "2020-04-10 17:33:06,649 Epoch 26 Step: 102300 Batch Loss: 1.936183 Tokens per Sec: 14848, Lr: 0.000210\n", "2020-04-10 17:33:21,760 Epoch 26 Step: 102400 Batch Loss: 1.789450 Tokens per Sec: 14714, Lr: 0.000210\n", "2020-04-10 17:33:29,108 Epoch 26: total training loss 7177.72\n", "2020-04-10 17:33:29,109 EPOCH 27\n", "2020-04-10 17:33:37,530 Epoch 27 Step: 102500 Batch Loss: 1.832493 Tokens per Sec: 13956, Lr: 0.000210\n", "2020-04-10 17:33:52,707 Epoch 27 Step: 102600 Batch Loss: 1.797648 Tokens per Sec: 14892, Lr: 0.000210\n", "2020-04-10 17:34:07,806 Epoch 27 Step: 102700 Batch Loss: 1.963826 Tokens per Sec: 14469, Lr: 0.000210\n", "2020-04-10 17:34:22,830 Epoch 27 Step: 102800 Batch Loss: 1.887845 Tokens per Sec: 14421, Lr: 0.000210\n", "2020-04-10 17:34:37,848 Epoch 27 Step: 102900 Batch Loss: 2.041651 Tokens per Sec: 14665, Lr: 0.000210\n", "2020-04-10 17:34:52,674 Epoch 27 Step: 103000 Batch Loss: 1.938116 Tokens per Sec: 14407, Lr: 0.000210\n", "2020-04-10 17:35:10,751 Example #0\n", "2020-04-10 17:35:10,759 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:35:10,759 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:35:10,759 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:35:10,760 Example #1\n", "2020-04-10 17:35:10,760 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:35:10,760 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:35:10,760 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 17:35:10,760 Example #2\n", "2020-04-10 17:35:10,761 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:35:10,761 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:35:10,761 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:35:10,761 Example #3\n", "2020-04-10 17:35:10,761 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:35:10,762 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:35:10,762 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:35:10,762 Validation result (greedy) at epoch 27, step 103000: bleu: 26.88, loss: 43507.4219, ppl: 5.3747, duration: 18.0870s\n", "2020-04-10 17:35:25,856 Epoch 27 Step: 103100 Batch Loss: 1.990827 Tokens per Sec: 14553, Lr: 0.000210\n", "2020-04-10 17:35:40,796 Epoch 27 Step: 103200 Batch Loss: 1.795739 Tokens per Sec: 14885, Lr: 0.000210\n", "2020-04-10 17:35:55,869 Epoch 27 Step: 103300 Batch Loss: 1.797530 Tokens per Sec: 14817, Lr: 0.000210\n", "2020-04-10 17:36:10,839 Epoch 27 Step: 103400 Batch Loss: 1.510377 Tokens per Sec: 15024, Lr: 0.000210\n", "2020-04-10 17:36:25,961 Epoch 27 Step: 103500 Batch Loss: 1.798994 Tokens per Sec: 14682, Lr: 0.000210\n", "2020-04-10 17:36:41,046 Epoch 27 Step: 103600 Batch Loss: 1.842746 Tokens per Sec: 14970, Lr: 0.000210\n", "2020-04-10 17:36:56,079 Epoch 27 Step: 103700 Batch Loss: 1.873344 Tokens per Sec: 14684, Lr: 0.000210\n", "2020-04-10 17:37:11,039 Epoch 27 Step: 103800 Batch Loss: 1.772064 Tokens per Sec: 14620, Lr: 0.000210\n", "2020-04-10 17:37:26,128 Epoch 27 Step: 103900 Batch Loss: 1.855566 Tokens per Sec: 14747, Lr: 0.000210\n", "2020-04-10 17:37:41,166 Epoch 27 Step: 104000 Batch Loss: 1.312173 Tokens per Sec: 14579, Lr: 0.000210\n", "2020-04-10 17:37:59,231 Example #0\n", "2020-04-10 17:37:59,231 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:37:59,231 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:37:59,232 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:37:59,232 Example #1\n", "2020-04-10 17:37:59,232 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:37:59,232 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:37:59,232 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:37:59,233 Example #2\n", "2020-04-10 17:37:59,233 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:37:59,233 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:37:59,233 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:37:59,233 Example #3\n", "2020-04-10 17:37:59,234 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:37:59,234 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:37:59,234 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 and 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:37:59,234 Validation result (greedy) at epoch 27, step 104000: bleu: 27.05, loss: 43480.1250, ppl: 5.3691, duration: 18.0681s\n", "2020-04-10 17:38:14,183 Epoch 27 Step: 104100 Batch Loss: 1.822574 Tokens per Sec: 14622, Lr: 0.000210\n", "2020-04-10 17:38:29,139 Epoch 27 Step: 104200 Batch Loss: 1.256550 Tokens per Sec: 14709, Lr: 0.000210\n", "2020-04-10 17:38:43,858 Epoch 27 Step: 104300 Batch Loss: 1.468794 Tokens per Sec: 14779, Lr: 0.000210\n", "2020-04-10 17:38:58,699 Epoch 27 Step: 104400 Batch Loss: 1.704270 Tokens per Sec: 14551, Lr: 0.000210\n", "2020-04-10 17:39:13,665 Epoch 27 Step: 104500 Batch Loss: 1.870960 Tokens per Sec: 14764, Lr: 0.000210\n", "2020-04-10 17:39:28,571 Epoch 27 Step: 104600 Batch Loss: 1.574908 Tokens per Sec: 14943, Lr: 0.000210\n", "2020-04-10 17:39:43,471 Epoch 27 Step: 104700 Batch Loss: 1.805791 Tokens per Sec: 14639, Lr: 0.000210\n", "2020-04-10 17:39:58,400 Epoch 27 Step: 104800 Batch Loss: 1.745327 Tokens per Sec: 14390, Lr: 0.000210\n", "2020-04-10 17:40:13,362 Epoch 27 Step: 104900 Batch Loss: 1.780707 Tokens per Sec: 14465, Lr: 0.000210\n", "2020-04-10 17:40:28,346 Epoch 27 Step: 105000 Batch Loss: 1.835290 Tokens per Sec: 14631, Lr: 0.000210\n", "2020-04-10 17:40:46,141 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:40:46,141 Saving new checkpoint.\n", "2020-04-10 17:40:47,508 Example #0\n", "2020-04-10 17:40:47,508 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:40:47,509 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:40:47,509 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:40:47,509 Example #1\n", "2020-04-10 17:40:47,509 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:40:47,510 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:40:47,510 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:40:47,510 Example #2\n", "2020-04-10 17:40:47,510 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:40:47,510 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:40:47,511 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:40:47,511 Example #3\n", "2020-04-10 17:40:47,511 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:40:47,511 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:40:47,512 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:40:47,512 Validation result (greedy) at epoch 27, step 105000: bleu: 27.10, loss: 43450.0312, ppl: 5.3628, duration: 19.1657s\n", "2020-04-10 17:41:02,836 Epoch 27 Step: 105100 Batch Loss: 1.906061 Tokens per Sec: 14511, Lr: 0.000210\n", "2020-04-10 17:41:17,741 Epoch 27 Step: 105200 Batch Loss: 1.792501 Tokens per Sec: 14637, Lr: 0.000210\n", "2020-04-10 17:41:32,474 Epoch 27 Step: 105300 Batch Loss: 1.706748 Tokens per Sec: 14810, Lr: 0.000210\n", "2020-04-10 17:41:47,446 Epoch 27 Step: 105400 Batch Loss: 1.842653 Tokens per Sec: 14540, Lr: 0.000210\n", "2020-04-10 17:42:02,580 Epoch 27 Step: 105500 Batch Loss: 1.792839 Tokens per Sec: 14734, Lr: 0.000210\n", "2020-04-10 17:42:17,543 Epoch 27 Step: 105600 Batch Loss: 1.671338 Tokens per Sec: 14927, Lr: 0.000210\n", "2020-04-10 17:42:32,558 Epoch 27 Step: 105700 Batch Loss: 1.938906 Tokens per Sec: 14814, Lr: 0.000210\n", "2020-04-10 17:42:47,331 Epoch 27 Step: 105800 Batch Loss: 1.867015 Tokens per Sec: 14587, Lr: 0.000210\n", "2020-04-10 17:43:02,430 Epoch 27 Step: 105900 Batch Loss: 1.759620 Tokens per Sec: 14511, Lr: 0.000210\n", "2020-04-10 17:43:17,515 Epoch 27 Step: 106000 Batch Loss: 1.805551 Tokens per Sec: 15116, Lr: 0.000210\n", "2020-04-10 17:43:34,814 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:43:34,815 Saving new checkpoint.\n", "2020-04-10 17:43:36,179 Example #0\n", "2020-04-10 17:43:36,180 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:43:36,180 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:43:36,180 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:43:36,181 Example #1\n", "2020-04-10 17:43:36,181 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:43:36,181 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:43:36,181 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:43:36,181 Example #2\n", "2020-04-10 17:43:36,182 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:43:36,182 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:43:36,182 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:43:36,182 Example #3\n", "2020-04-10 17:43:36,183 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:43:36,183 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:43:36,183 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:43:36,184 Validation result (greedy) at epoch 27, step 106000: bleu: 27.13, loss: 43226.9141, ppl: 5.3168, duration: 18.6682s\n", "2020-04-10 17:43:51,709 Epoch 27 Step: 106100 Batch Loss: 1.921116 Tokens per Sec: 14307, Lr: 0.000210\n", "2020-04-10 17:44:06,609 Epoch 27 Step: 106200 Batch Loss: 1.814379 Tokens per Sec: 14953, Lr: 0.000210\n", "2020-04-10 17:44:21,498 Epoch 27 Step: 106300 Batch Loss: 1.618116 Tokens per Sec: 14641, Lr: 0.000210\n", "2020-04-10 17:44:36,468 Epoch 27 Step: 106400 Batch Loss: 1.804366 Tokens per Sec: 14737, Lr: 0.000210\n", "2020-04-10 17:44:36,761 Epoch 27: total training loss 7173.71\n", "2020-04-10 17:44:36,761 EPOCH 28\n", "2020-04-10 17:44:52,022 Epoch 28 Step: 106500 Batch Loss: 1.741117 Tokens per Sec: 14603, Lr: 0.000210\n", "2020-04-10 17:45:06,853 Epoch 28 Step: 106600 Batch Loss: 1.710692 Tokens per Sec: 14681, Lr: 0.000210\n", "2020-04-10 17:45:21,780 Epoch 28 Step: 106700 Batch Loss: 1.647842 Tokens per Sec: 14674, Lr: 0.000210\n", "2020-04-10 17:45:36,897 Epoch 28 Step: 106800 Batch Loss: 1.933757 Tokens per Sec: 14570, Lr: 0.000210\n", "2020-04-10 17:45:51,817 Epoch 28 Step: 106900 Batch Loss: 1.981640 Tokens per Sec: 14860, Lr: 0.000210\n", "2020-04-10 17:46:06,948 Epoch 28 Step: 107000 Batch Loss: 1.985979 Tokens per Sec: 14567, Lr: 0.000210\n", "2020-04-10 17:46:25,290 Example #0\n", "2020-04-10 17:46:25,291 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:46:25,292 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:46:25,292 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:46:25,292 Example #1\n", "2020-04-10 17:46:25,292 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:46:25,292 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:46:25,293 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:46:25,293 Example #2\n", "2020-04-10 17:46:25,293 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:46:25,293 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:46:25,293 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:46:25,293 Example #3\n", "2020-04-10 17:46:25,294 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:46:25,294 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:46:25,294 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:46:25,294 Validation result (greedy) at epoch 28, step 107000: bleu: 26.94, loss: 43419.9883, ppl: 5.3566, duration: 18.3463s\n", "2020-04-10 17:46:40,507 Epoch 28 Step: 107100 Batch Loss: 1.855652 Tokens per Sec: 14654, Lr: 0.000210\n", "2020-04-10 17:46:55,659 Epoch 28 Step: 107200 Batch Loss: 1.874328 Tokens per Sec: 14730, Lr: 0.000210\n", "2020-04-10 17:47:10,674 Epoch 28 Step: 107300 Batch Loss: 1.943671 Tokens per Sec: 14610, Lr: 0.000210\n", "2020-04-10 17:47:25,880 Epoch 28 Step: 107400 Batch Loss: 1.916388 Tokens per Sec: 14576, Lr: 0.000210\n", "2020-04-10 17:47:41,116 Epoch 28 Step: 107500 Batch Loss: 1.767875 Tokens per Sec: 14956, Lr: 0.000210\n", "2020-04-10 17:47:55,887 Epoch 28 Step: 107600 Batch Loss: 1.368837 Tokens per Sec: 14852, Lr: 0.000210\n", "2020-04-10 17:48:11,190 Epoch 28 Step: 107700 Batch Loss: 1.644531 Tokens per Sec: 15030, Lr: 0.000210\n", "2020-04-10 17:48:26,334 Epoch 28 Step: 107800 Batch Loss: 1.987874 Tokens per Sec: 14592, Lr: 0.000210\n", "2020-04-10 17:48:41,331 Epoch 28 Step: 107900 Batch Loss: 1.646426 Tokens per Sec: 14499, Lr: 0.000210\n", "2020-04-10 17:48:56,346 Epoch 28 Step: 108000 Batch Loss: 1.702572 Tokens per Sec: 14419, Lr: 0.000210\n", "2020-04-10 17:49:14,743 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:49:14,744 Saving new checkpoint.\n", "2020-04-10 17:49:16,057 Example #0\n", "2020-04-10 17:49:16,057 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:49:16,058 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:49:16,058 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:49:16,058 Example #1\n", "2020-04-10 17:49:16,058 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:49:16,058 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:49:16,059 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:49:16,059 Example #2\n", "2020-04-10 17:49:16,059 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:49:16,059 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:49:16,059 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:49:16,060 Example #3\n", "2020-04-10 17:49:16,060 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:49:16,060 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:49:16,060 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:49:16,060 Validation result (greedy) at epoch 28, step 108000: bleu: 26.96, loss: 43152.1445, ppl: 5.3014, duration: 19.7136s\n", "2020-04-10 17:49:31,654 Epoch 28 Step: 108100 Batch Loss: 1.728486 Tokens per Sec: 14243, Lr: 0.000210\n", "2020-04-10 17:49:46,615 Epoch 28 Step: 108200 Batch Loss: 1.766248 Tokens per Sec: 14328, Lr: 0.000210\n", "2020-04-10 17:50:01,413 Epoch 28 Step: 108300 Batch Loss: 1.868133 Tokens per Sec: 14772, Lr: 0.000210\n", "2020-04-10 17:50:16,494 Epoch 28 Step: 108400 Batch Loss: 1.737754 Tokens per Sec: 14733, Lr: 0.000210\n", "2020-04-10 17:50:31,541 Epoch 28 Step: 108500 Batch Loss: 1.717531 Tokens per Sec: 14923, Lr: 0.000210\n", "2020-04-10 17:50:46,706 Epoch 28 Step: 108600 Batch Loss: 1.733981 Tokens per Sec: 14654, Lr: 0.000210\n", "2020-04-10 17:51:01,787 Epoch 28 Step: 108700 Batch Loss: 1.799729 Tokens per Sec: 14590, Lr: 0.000210\n", "2020-04-10 17:51:16,795 Epoch 28 Step: 108800 Batch Loss: 1.827415 Tokens per Sec: 14598, Lr: 0.000210\n", "2020-04-10 17:51:31,897 Epoch 28 Step: 108900 Batch Loss: 1.626874 Tokens per Sec: 14729, Lr: 0.000210\n", "2020-04-10 17:51:46,913 Epoch 28 Step: 109000 Batch Loss: 1.893314 Tokens per Sec: 14493, Lr: 0.000210\n", "2020-04-10 17:52:05,767 Hooray! New best validation result [ppl]!\n", "2020-04-10 17:52:05,767 Saving new checkpoint.\n", "2020-04-10 17:52:07,108 Example #0\n", "2020-04-10 17:52:07,109 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:52:07,109 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:52:07,109 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:52:07,109 Example #1\n", "2020-04-10 17:52:07,110 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:52:07,110 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:52:07,110 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:52:07,110 Example #2\n", "2020-04-10 17:52:07,111 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:52:07,111 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:52:07,111 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:52:07,111 Example #3\n", "2020-04-10 17:52:07,112 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:52:07,112 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:52:07,112 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:52:07,112 Validation result (greedy) at epoch 28, step 109000: bleu: 27.10, loss: 43038.9180, ppl: 5.2783, duration: 20.1982s\n", "2020-04-10 17:52:22,405 Epoch 28 Step: 109100 Batch Loss: 1.794654 Tokens per Sec: 14262, Lr: 0.000210\n", "2020-04-10 17:52:37,214 Epoch 28 Step: 109200 Batch Loss: 1.738674 Tokens per Sec: 14941, Lr: 0.000210\n", "2020-04-10 17:52:52,114 Epoch 28 Step: 109300 Batch Loss: 1.775835 Tokens per Sec: 14790, Lr: 0.000210\n", "2020-04-10 17:53:06,923 Epoch 28 Step: 109400 Batch Loss: 1.879471 Tokens per Sec: 14873, Lr: 0.000210\n", "2020-04-10 17:53:21,694 Epoch 28 Step: 109500 Batch Loss: 1.896876 Tokens per Sec: 14979, Lr: 0.000210\n", "2020-04-10 17:53:36,579 Epoch 28 Step: 109600 Batch Loss: 1.777805 Tokens per Sec: 14434, Lr: 0.000210\n", "2020-04-10 17:53:51,686 Epoch 28 Step: 109700 Batch Loss: 1.729630 Tokens per Sec: 14586, Lr: 0.000210\n", "2020-04-10 17:54:06,608 Epoch 28 Step: 109800 Batch Loss: 1.768492 Tokens per Sec: 14660, Lr: 0.000210\n", "2020-04-10 17:54:21,610 Epoch 28 Step: 109900 Batch Loss: 1.897790 Tokens per Sec: 14858, Lr: 0.000210\n", "2020-04-10 17:54:36,701 Epoch 28 Step: 110000 Batch Loss: 1.934194 Tokens per Sec: 14525, Lr: 0.000210\n", "2020-04-10 17:54:55,272 Example #0\n", "2020-04-10 17:54:55,273 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:54:55,273 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:54:55,273 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:54:55,273 Example #1\n", "2020-04-10 17:54:55,273 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:54:55,273 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:54:55,274 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:54:55,274 Example #2\n", "2020-04-10 17:54:55,274 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:54:55,274 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:54:55,274 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:54:55,274 Example #3\n", "2020-04-10 17:54:55,275 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:54:55,275 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:54:55,276 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:54:55,276 Validation result (greedy) at epoch 28, step 110000: bleu: 26.89, loss: 43166.0625, ppl: 5.3043, duration: 18.5747s\n", "2020-04-10 17:55:10,345 Epoch 28 Step: 110100 Batch Loss: 1.779188 Tokens per Sec: 14482, Lr: 0.000210\n", "2020-04-10 17:55:25,469 Epoch 28 Step: 110200 Batch Loss: 1.842648 Tokens per Sec: 14790, Lr: 0.000210\n", "2020-04-10 17:55:40,734 Epoch 28 Step: 110300 Batch Loss: 1.772082 Tokens per Sec: 14614, Lr: 0.000210\n", "2020-04-10 17:55:47,856 Epoch 28: total training loss 7128.33\n", "2020-04-10 17:55:47,856 EPOCH 29\n", "2020-04-10 17:55:56,267 Epoch 29 Step: 110400 Batch Loss: 1.711563 Tokens per Sec: 13431, Lr: 0.000210\n", "2020-04-10 17:56:11,356 Epoch 29 Step: 110500 Batch Loss: 1.877474 Tokens per Sec: 14529, Lr: 0.000210\n", "2020-04-10 17:56:26,544 Epoch 29 Step: 110600 Batch Loss: 1.940936 Tokens per Sec: 14577, Lr: 0.000210\n", "2020-04-10 17:56:41,701 Epoch 29 Step: 110700 Batch Loss: 1.772030 Tokens per Sec: 14357, Lr: 0.000210\n", "2020-04-10 17:56:56,627 Epoch 29 Step: 110800 Batch Loss: 1.737993 Tokens per Sec: 14657, Lr: 0.000210\n", "2020-04-10 17:57:11,859 Epoch 29 Step: 110900 Batch Loss: 1.910612 Tokens per Sec: 14744, Lr: 0.000210\n", "2020-04-10 17:57:27,055 Epoch 29 Step: 111000 Batch Loss: 1.741969 Tokens per Sec: 14756, Lr: 0.000210\n", "2020-04-10 17:57:45,085 Example #0\n", "2020-04-10 17:57:45,086 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 17:57:45,086 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 17:57:45,086 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 17:57:45,086 Example #1\n", "2020-04-10 17:57:45,087 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 17:57:45,087 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 17:57:45,087 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 17:57:45,087 Example #2\n", "2020-04-10 17:57:45,088 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 17:57:45,088 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:57:45,088 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 17:57:45,089 Example #3\n", "2020-04-10 17:57:45,089 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 17:57:45,089 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:57:45,089 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 17:57:45,090 Validation result (greedy) at epoch 29, step 111000: bleu: 27.36, loss: 43173.0586, ppl: 5.3057, duration: 18.0339s\n", "2020-04-10 17:58:00,186 Epoch 29 Step: 111100 Batch Loss: 1.817904 Tokens per Sec: 14692, Lr: 0.000210\n", "2020-04-10 17:58:15,647 Epoch 29 Step: 111200 Batch Loss: 1.740893 Tokens per Sec: 14959, Lr: 0.000210\n", "2020-04-10 17:58:30,679 Epoch 29 Step: 111300 Batch Loss: 1.457039 Tokens per Sec: 15020, Lr: 0.000210\n", "2020-04-10 17:58:45,691 Epoch 29 Step: 111400 Batch Loss: 1.846789 Tokens per Sec: 15180, Lr: 0.000210\n", "2020-04-10 17:59:00,468 Epoch 29 Step: 111500 Batch Loss: 1.455001 Tokens per Sec: 15000, Lr: 0.000210\n", "2020-04-10 17:59:15,172 Epoch 29 Step: 111600 Batch Loss: 1.829424 Tokens per Sec: 14789, Lr: 0.000210\n", "2020-04-10 17:59:29,852 Epoch 29 Step: 111700 Batch Loss: 1.892648 Tokens per Sec: 14709, Lr: 0.000210\n", "2020-04-10 17:59:44,365 Epoch 29 Step: 111800 Batch Loss: 1.745734 Tokens per Sec: 15277, Lr: 0.000210\n", "2020-04-10 17:59:58,801 Epoch 29 Step: 111900 Batch Loss: 1.849417 Tokens per Sec: 14773, Lr: 0.000210\n", "2020-04-10 18:00:13,273 Epoch 29 Step: 112000 Batch Loss: 1.661266 Tokens per Sec: 15023, Lr: 0.000210\n", "2020-04-10 18:00:31,481 Example #0\n", "2020-04-10 18:00:31,482 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:00:31,482 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:00:31,482 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:00:31,482 Example #1\n", "2020-04-10 18:00:31,482 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:00:31,483 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:00:31,483 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:00:31,483 Example #2\n", "2020-04-10 18:00:31,483 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:00:31,483 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:00:31,483 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:00:31,483 Example #3\n", "2020-04-10 18:00:31,484 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:00:31,484 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:00:31,484 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:00:31,484 Validation result (greedy) at epoch 29, step 112000: bleu: 27.29, loss: 43152.4141, ppl: 5.3015, duration: 18.2103s\n", "2020-04-10 18:00:45,969 Epoch 29 Step: 112100 Batch Loss: 1.776265 Tokens per Sec: 14922, Lr: 0.000210\n", "2020-04-10 18:01:00,686 Epoch 29 Step: 112200 Batch Loss: 2.033239 Tokens per Sec: 15080, Lr: 0.000210\n", "2020-04-10 18:01:15,348 Epoch 29 Step: 112300 Batch Loss: 1.961623 Tokens per Sec: 14996, Lr: 0.000210\n", "2020-04-10 18:01:29,900 Epoch 29 Step: 112400 Batch Loss: 1.763890 Tokens per Sec: 15062, Lr: 0.000210\n", "2020-04-10 18:01:44,539 Epoch 29 Step: 112500 Batch Loss: 1.868977 Tokens per Sec: 14901, Lr: 0.000210\n", "2020-04-10 18:01:59,107 Epoch 29 Step: 112600 Batch Loss: 1.781522 Tokens per Sec: 15020, Lr: 0.000210\n", "2020-04-10 18:02:13,692 Epoch 29 Step: 112700 Batch Loss: 1.710354 Tokens per Sec: 15320, Lr: 0.000210\n", "2020-04-10 18:02:28,357 Epoch 29 Step: 112800 Batch Loss: 1.864807 Tokens per Sec: 15198, Lr: 0.000210\n", "2020-04-10 18:02:43,044 Epoch 29 Step: 112900 Batch Loss: 1.651916 Tokens per Sec: 15167, Lr: 0.000210\n", "2020-04-10 18:02:57,721 Epoch 29 Step: 113000 Batch Loss: 1.816769 Tokens per Sec: 14886, Lr: 0.000210\n", "2020-04-10 18:03:15,572 Example #0\n", "2020-04-10 18:03:15,573 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:03:15,573 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:03:15,573 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:03:15,574 Example #1\n", "2020-04-10 18:03:15,574 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:03:15,575 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:03:15,575 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:03:15,575 Example #2\n", "2020-04-10 18:03:15,575 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:03:15,575 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:03:15,576 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:03:15,576 Example #3\n", "2020-04-10 18:03:15,576 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:03:15,576 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:03:15,577 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:03:15,577 Validation result (greedy) at epoch 29, step 113000: bleu: 27.07, loss: 43082.4336, ppl: 5.2871, duration: 17.8554s\n", "2020-04-10 18:03:30,178 Epoch 29 Step: 113100 Batch Loss: 2.077569 Tokens per Sec: 15227, Lr: 0.000210\n", "2020-04-10 18:03:44,779 Epoch 29 Step: 113200 Batch Loss: 1.940477 Tokens per Sec: 15111, Lr: 0.000210\n", "2020-04-10 18:03:59,698 Epoch 29 Step: 113300 Batch Loss: 1.878162 Tokens per Sec: 14709, Lr: 0.000210\n", "2020-04-10 18:04:14,731 Epoch 29 Step: 113400 Batch Loss: 1.777938 Tokens per Sec: 14665, Lr: 0.000210\n", "2020-04-10 18:04:29,614 Epoch 29 Step: 113500 Batch Loss: 1.643897 Tokens per Sec: 14780, Lr: 0.000210\n", "2020-04-10 18:04:44,403 Epoch 29 Step: 113600 Batch Loss: 1.776110 Tokens per Sec: 14651, Lr: 0.000210\n", "2020-04-10 18:04:59,232 Epoch 29 Step: 113700 Batch Loss: 1.826415 Tokens per Sec: 15103, Lr: 0.000210\n", "2020-04-10 18:05:13,906 Epoch 29 Step: 113800 Batch Loss: 1.677141 Tokens per Sec: 14986, Lr: 0.000210\n", "2020-04-10 18:05:28,808 Epoch 29 Step: 113900 Batch Loss: 2.017490 Tokens per Sec: 15160, Lr: 0.000210\n", "2020-04-10 18:05:43,859 Epoch 29 Step: 114000 Batch Loss: 1.774961 Tokens per Sec: 14909, Lr: 0.000210\n", "2020-04-10 18:06:01,955 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:06:01,956 Saving new checkpoint.\n", "2020-04-10 18:06:03,482 Example #0\n", "2020-04-10 18:06:03,484 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:06:03,484 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:06:03,485 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:06:03,485 Example #1\n", "2020-04-10 18:06:03,485 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:06:03,486 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:06:03,486 \tHypothesis: That is possible by the clergy .\n", "2020-04-10 18:06:03,486 Example #2\n", "2020-04-10 18:06:03,487 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:06:03,487 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:06:03,487 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:06:03,487 Example #3\n", "2020-04-10 18:06:03,488 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:06:03,488 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:06:03,488 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:06:03,488 Validation result (greedy) at epoch 29, step 114000: bleu: 27.25, loss: 42973.2266, ppl: 5.2649, duration: 19.6292s\n", "2020-04-10 18:06:18,406 Epoch 29 Step: 114100 Batch Loss: 1.699744 Tokens per Sec: 14549, Lr: 0.000210\n", "2020-04-10 18:06:33,537 Epoch 29 Step: 114200 Batch Loss: 1.905405 Tokens per Sec: 14917, Lr: 0.000210\n", "2020-04-10 18:06:47,024 Epoch 29: total training loss 7098.15\n", "2020-04-10 18:06:47,024 EPOCH 30\n", "2020-04-10 18:06:48,864 Epoch 30 Step: 114300 Batch Loss: 1.670810 Tokens per Sec: 11793, Lr: 0.000210\n", "2020-04-10 18:07:03,802 Epoch 30 Step: 114400 Batch Loss: 1.851554 Tokens per Sec: 14264, Lr: 0.000210\n", "2020-04-10 18:07:18,742 Epoch 30 Step: 114500 Batch Loss: 1.496409 Tokens per Sec: 14905, Lr: 0.000210\n", "2020-04-10 18:07:33,612 Epoch 30 Step: 114600 Batch Loss: 1.872842 Tokens per Sec: 14914, Lr: 0.000210\n", "2020-04-10 18:07:48,389 Epoch 30 Step: 114700 Batch Loss: 1.799786 Tokens per Sec: 14911, Lr: 0.000210\n", "2020-04-10 18:08:03,654 Epoch 30 Step: 114800 Batch Loss: 1.830643 Tokens per Sec: 14714, Lr: 0.000210\n", "2020-04-10 18:08:18,576 Epoch 30 Step: 114900 Batch Loss: 1.891690 Tokens per Sec: 14813, Lr: 0.000210\n", "2020-04-10 18:08:33,652 Epoch 30 Step: 115000 Batch Loss: 1.894463 Tokens per Sec: 15056, Lr: 0.000210\n", "2020-04-10 18:08:51,642 Example #0\n", "2020-04-10 18:08:51,643 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:08:51,643 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:08:51,643 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:08:51,643 Example #1\n", "2020-04-10 18:08:51,644 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:08:51,644 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:08:51,644 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 18:08:51,644 Example #2\n", "2020-04-10 18:08:51,644 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:08:51,645 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:08:51,645 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:08:51,645 Example #3\n", "2020-04-10 18:08:51,646 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:08:51,646 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:08:51,646 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:08:51,646 Validation result (greedy) at epoch 30, step 115000: bleu: 27.31, loss: 43193.8906, ppl: 5.3100, duration: 17.9936s\n", "2020-04-10 18:09:06,641 Epoch 30 Step: 115100 Batch Loss: 1.830912 Tokens per Sec: 14766, Lr: 0.000210\n", "2020-04-10 18:09:21,288 Epoch 30 Step: 115200 Batch Loss: 1.876273 Tokens per Sec: 14694, Lr: 0.000210\n", "2020-04-10 18:09:36,377 Epoch 30 Step: 115300 Batch Loss: 1.871201 Tokens per Sec: 14776, Lr: 0.000210\n", "2020-04-10 18:09:51,181 Epoch 30 Step: 115400 Batch Loss: 1.952326 Tokens per Sec: 14601, Lr: 0.000210\n", "2020-04-10 18:10:06,179 Epoch 30 Step: 115500 Batch Loss: 1.878395 Tokens per Sec: 14740, Lr: 0.000210\n", "2020-04-10 18:10:20,996 Epoch 30 Step: 115600 Batch Loss: 2.053251 Tokens per Sec: 14716, Lr: 0.000210\n", "2020-04-10 18:10:35,948 Epoch 30 Step: 115700 Batch Loss: 1.543179 Tokens per Sec: 14943, Lr: 0.000210\n", "2020-04-10 18:10:50,628 Epoch 30 Step: 115800 Batch Loss: 1.700348 Tokens per Sec: 14902, Lr: 0.000210\n", "2020-04-10 18:11:05,650 Epoch 30 Step: 115900 Batch Loss: 1.832570 Tokens per Sec: 15306, Lr: 0.000210\n", "2020-04-10 18:11:20,568 Epoch 30 Step: 116000 Batch Loss: 1.824711 Tokens per Sec: 14536, Lr: 0.000210\n", "2020-04-10 18:11:39,424 Example #0\n", "2020-04-10 18:11:39,425 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:11:39,425 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:11:39,426 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:11:39,426 Example #1\n", "2020-04-10 18:11:39,426 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:11:39,426 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:11:39,426 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 18:11:39,426 Example #2\n", "2020-04-10 18:11:39,427 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:11:39,427 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:11:39,427 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:11:39,427 Example #3\n", "2020-04-10 18:11:39,428 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:11:39,428 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:11:39,428 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:11:39,428 Validation result (greedy) at epoch 30, step 116000: bleu: 27.08, loss: 43012.9609, ppl: 5.2730, duration: 18.8599s\n", "2020-04-10 18:11:54,053 Epoch 30 Step: 116100 Batch Loss: 1.943922 Tokens per Sec: 14931, Lr: 0.000210\n", "2020-04-10 18:12:08,928 Epoch 30 Step: 116200 Batch Loss: 1.728792 Tokens per Sec: 15241, Lr: 0.000210\n", "2020-04-10 18:12:24,026 Epoch 30 Step: 116300 Batch Loss: 1.787969 Tokens per Sec: 14921, Lr: 0.000210\n", "2020-04-10 18:12:38,764 Epoch 30 Step: 116400 Batch Loss: 1.894293 Tokens per Sec: 14690, Lr: 0.000210\n", "2020-04-10 18:12:53,557 Epoch 30 Step: 116500 Batch Loss: 1.636884 Tokens per Sec: 15240, Lr: 0.000210\n", "2020-04-10 18:13:08,235 Epoch 30 Step: 116600 Batch Loss: 1.708662 Tokens per Sec: 14674, Lr: 0.000210\n", "2020-04-10 18:13:23,237 Epoch 30 Step: 116700 Batch Loss: 1.784939 Tokens per Sec: 15057, Lr: 0.000210\n", "2020-04-10 18:13:37,837 Epoch 30 Step: 116800 Batch Loss: 1.868091 Tokens per Sec: 14481, Lr: 0.000210\n", "2020-04-10 18:13:52,631 Epoch 30 Step: 116900 Batch Loss: 1.728679 Tokens per Sec: 14828, Lr: 0.000210\n", "2020-04-10 18:14:07,261 Epoch 30 Step: 117000 Batch Loss: 1.771315 Tokens per Sec: 15057, Lr: 0.000210\n", "2020-04-10 18:14:24,922 Example #0\n", "2020-04-10 18:14:24,923 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:14:24,923 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:14:24,923 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:14:24,923 Example #1\n", "2020-04-10 18:14:24,923 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:14:24,924 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:14:24,924 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:14:24,924 Example #2\n", "2020-04-10 18:14:24,924 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:14:24,924 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:14:24,925 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:14:24,925 Example #3\n", "2020-04-10 18:14:24,925 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:14:24,925 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:14:24,926 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:14:24,926 Validation result (greedy) at epoch 30, step 117000: bleu: 26.94, loss: 43166.0234, ppl: 5.3043, duration: 17.6642s\n", "2020-04-10 18:14:39,663 Epoch 30 Step: 117100 Batch Loss: 1.994558 Tokens per Sec: 15029, Lr: 0.000210\n", "2020-04-10 18:14:54,591 Epoch 30 Step: 117200 Batch Loss: 1.852804 Tokens per Sec: 15252, Lr: 0.000210\n", "2020-04-10 18:15:09,590 Epoch 30 Step: 117300 Batch Loss: 1.776770 Tokens per Sec: 14978, Lr: 0.000210\n", "2020-04-10 18:15:24,439 Epoch 30 Step: 117400 Batch Loss: 1.715797 Tokens per Sec: 14954, Lr: 0.000210\n", "2020-04-10 18:15:39,346 Epoch 30 Step: 117500 Batch Loss: 1.216005 Tokens per Sec: 14804, Lr: 0.000210\n", "2020-04-10 18:15:54,116 Epoch 30 Step: 117600 Batch Loss: 1.779191 Tokens per Sec: 14910, Lr: 0.000210\n", "2020-04-10 18:16:08,927 Epoch 30 Step: 117700 Batch Loss: 1.812886 Tokens per Sec: 14901, Lr: 0.000210\n", "2020-04-10 18:16:23,902 Epoch 30 Step: 117800 Batch Loss: 1.883164 Tokens per Sec: 14633, Lr: 0.000210\n", "2020-04-10 18:16:38,823 Epoch 30 Step: 117900 Batch Loss: 1.274964 Tokens per Sec: 14807, Lr: 0.000210\n", "2020-04-10 18:16:53,613 Epoch 30 Step: 118000 Batch Loss: 1.878669 Tokens per Sec: 15151, Lr: 0.000210\n", "2020-04-10 18:17:12,771 Example #0\n", "2020-04-10 18:17:12,771 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:17:12,772 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:17:12,772 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:17:12,772 Example #1\n", "2020-04-10 18:17:12,772 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:17:12,772 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:17:12,773 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 18:17:12,773 Example #2\n", "2020-04-10 18:17:12,773 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:17:12,773 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:17:12,773 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:17:12,773 Example #3\n", "2020-04-10 18:17:12,774 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:17:12,774 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:17:12,774 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:17:12,774 Validation result (greedy) at epoch 30, step 118000: bleu: 27.34, loss: 42976.4023, ppl: 5.2655, duration: 19.1605s\n", "2020-04-10 18:17:27,502 Epoch 30 Step: 118100 Batch Loss: 1.735907 Tokens per Sec: 15017, Lr: 0.000210\n", "2020-04-10 18:17:42,356 Epoch 30 Step: 118200 Batch Loss: 1.708406 Tokens per Sec: 14922, Lr: 0.000210\n", "2020-04-10 18:17:47,049 Epoch 30: total training loss 7071.53\n", "2020-04-10 18:17:47,049 EPOCH 31\n", "2020-04-10 18:17:57,611 Epoch 31 Step: 118300 Batch Loss: 1.715577 Tokens per Sec: 14691, Lr: 0.000210\n", "2020-04-10 18:18:12,150 Epoch 31 Step: 118400 Batch Loss: 1.879192 Tokens per Sec: 15075, Lr: 0.000210\n", "2020-04-10 18:18:27,019 Epoch 31 Step: 118500 Batch Loss: 1.849884 Tokens per Sec: 15287, Lr: 0.000210\n", "2020-04-10 18:18:41,685 Epoch 31 Step: 118600 Batch Loss: 1.953991 Tokens per Sec: 15093, Lr: 0.000210\n", "2020-04-10 18:18:56,400 Epoch 31 Step: 118700 Batch Loss: 1.672494 Tokens per Sec: 15246, Lr: 0.000210\n", "2020-04-10 18:19:11,109 Epoch 31 Step: 118800 Batch Loss: 1.202860 Tokens per Sec: 15411, Lr: 0.000210\n", "2020-04-10 18:19:25,516 Epoch 31 Step: 118900 Batch Loss: 1.711126 Tokens per Sec: 14729, Lr: 0.000210\n", "2020-04-10 18:19:40,301 Epoch 31 Step: 119000 Batch Loss: 1.669001 Tokens per Sec: 15439, Lr: 0.000210\n", "2020-04-10 18:19:59,389 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:19:59,390 Saving new checkpoint.\n", "2020-04-10 18:20:00,634 Example #0\n", "2020-04-10 18:20:00,635 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:20:00,635 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:20:00,635 \tHypothesis: If so , you will choose the best way of life .\n", "2020-04-10 18:20:00,635 Example #1\n", "2020-04-10 18:20:00,636 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:20:00,636 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:20:00,636 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:20:00,636 Example #2\n", "2020-04-10 18:20:00,636 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:20:00,636 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:20:00,637 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:20:00,637 Example #3\n", "2020-04-10 18:20:00,637 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:20:00,637 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:20:00,637 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:20:00,638 Validation result (greedy) at epoch 31, step 119000: bleu: 27.34, loss: 42962.8516, ppl: 5.2628, duration: 20.3363s\n", "2020-04-10 18:20:15,401 Epoch 31 Step: 119100 Batch Loss: 1.855434 Tokens per Sec: 15048, Lr: 0.000210\n", "2020-04-10 18:20:30,312 Epoch 31 Step: 119200 Batch Loss: 1.376003 Tokens per Sec: 14683, Lr: 0.000210\n", "2020-04-10 18:20:45,160 Epoch 31 Step: 119300 Batch Loss: 1.859705 Tokens per Sec: 14975, Lr: 0.000210\n", "2020-04-10 18:21:00,085 Epoch 31 Step: 119400 Batch Loss: 1.839717 Tokens per Sec: 14845, Lr: 0.000210\n", "2020-04-10 18:21:14,851 Epoch 31 Step: 119500 Batch Loss: 1.754004 Tokens per Sec: 14858, Lr: 0.000210\n", "2020-04-10 18:21:29,824 Epoch 31 Step: 119600 Batch Loss: 1.761305 Tokens per Sec: 14886, Lr: 0.000210\n", "2020-04-10 18:21:44,631 Epoch 31 Step: 119700 Batch Loss: 2.115835 Tokens per Sec: 14650, Lr: 0.000210\n", "2020-04-10 18:21:59,621 Epoch 31 Step: 119800 Batch Loss: 1.893896 Tokens per Sec: 14952, Lr: 0.000210\n", "2020-04-10 18:22:14,630 Epoch 31 Step: 119900 Batch Loss: 1.789364 Tokens per Sec: 15136, Lr: 0.000210\n", "2020-04-10 18:22:29,325 Epoch 31 Step: 120000 Batch Loss: 1.847182 Tokens per Sec: 14998, Lr: 0.000210\n", "2020-04-10 18:22:47,873 Example #0\n", "2020-04-10 18:22:47,874 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:22:47,874 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:22:47,874 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:22:47,875 Example #1\n", "2020-04-10 18:22:47,875 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:22:47,876 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:22:47,876 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 18:22:47,876 Example #2\n", "2020-04-10 18:22:47,876 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:22:47,876 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:22:47,876 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:22:47,877 Example #3\n", "2020-04-10 18:22:47,877 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:22:47,878 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:22:47,878 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:22:47,878 Validation result (greedy) at epoch 31, step 120000: bleu: 27.48, loss: 42965.5547, ppl: 5.2633, duration: 18.5522s\n", "2020-04-10 18:23:03,041 Epoch 31 Step: 120100 Batch Loss: 1.815703 Tokens per Sec: 14571, Lr: 0.000210\n", "2020-04-10 18:23:18,091 Epoch 31 Step: 120200 Batch Loss: 1.899159 Tokens per Sec: 14419, Lr: 0.000210\n", "2020-04-10 18:23:33,488 Epoch 31 Step: 120300 Batch Loss: 1.768119 Tokens per Sec: 14847, Lr: 0.000210\n", "2020-04-10 18:23:48,624 Epoch 31 Step: 120400 Batch Loss: 1.689886 Tokens per Sec: 14398, Lr: 0.000210\n", "2020-04-10 18:24:03,950 Epoch 31 Step: 120500 Batch Loss: 1.829370 Tokens per Sec: 14613, Lr: 0.000210\n", "2020-04-10 18:24:18,958 Epoch 31 Step: 120600 Batch Loss: 1.866629 Tokens per Sec: 14760, Lr: 0.000210\n", "2020-04-10 18:24:34,370 Epoch 31 Step: 120700 Batch Loss: 1.818585 Tokens per Sec: 14347, Lr: 0.000210\n", "2020-04-10 18:24:49,350 Epoch 31 Step: 120800 Batch Loss: 1.906658 Tokens per Sec: 14582, Lr: 0.000210\n", "2020-04-10 18:25:04,940 Epoch 31 Step: 120900 Batch Loss: 1.810620 Tokens per Sec: 14601, Lr: 0.000210\n", "2020-04-10 18:25:20,031 Epoch 31 Step: 121000 Batch Loss: 1.994995 Tokens per Sec: 14434, Lr: 0.000210\n", "2020-04-10 18:25:39,648 Example #0\n", "2020-04-10 18:25:39,648 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:25:39,649 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:25:39,649 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:25:39,649 Example #1\n", "2020-04-10 18:25:39,650 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:25:39,650 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:25:39,650 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 18:25:39,650 Example #2\n", "2020-04-10 18:25:39,651 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:25:39,651 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:25:39,651 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:25:39,651 Example #3\n", "2020-04-10 18:25:39,652 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:25:39,652 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:25:39,652 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:25:39,652 Validation result (greedy) at epoch 31, step 121000: bleu: 27.39, loss: 43036.5547, ppl: 5.2778, duration: 19.6210s\n", "2020-04-10 18:25:55,046 Epoch 31 Step: 121100 Batch Loss: 1.909214 Tokens per Sec: 14472, Lr: 0.000210\n", "2020-04-10 18:26:10,475 Epoch 31 Step: 121200 Batch Loss: 1.745840 Tokens per Sec: 14480, Lr: 0.000210\n", "2020-04-10 18:26:25,646 Epoch 31 Step: 121300 Batch Loss: 1.412689 Tokens per Sec: 14430, Lr: 0.000210\n", "2020-04-10 18:26:40,896 Epoch 31 Step: 121400 Batch Loss: 1.883894 Tokens per Sec: 14403, Lr: 0.000210\n", "2020-04-10 18:26:56,112 Epoch 31 Step: 121500 Batch Loss: 1.792269 Tokens per Sec: 14391, Lr: 0.000210\n", "2020-04-10 18:27:11,409 Epoch 31 Step: 121600 Batch Loss: 1.861641 Tokens per Sec: 14520, Lr: 0.000210\n", "2020-04-10 18:27:26,636 Epoch 31 Step: 121700 Batch Loss: 1.931057 Tokens per Sec: 14252, Lr: 0.000210\n", "2020-04-10 18:27:41,827 Epoch 31 Step: 121800 Batch Loss: 1.983162 Tokens per Sec: 14342, Lr: 0.000210\n", "2020-04-10 18:27:56,780 Epoch 31 Step: 121900 Batch Loss: 1.888054 Tokens per Sec: 14759, Lr: 0.000210\n", "2020-04-10 18:28:11,764 Epoch 31 Step: 122000 Batch Loss: 1.934370 Tokens per Sec: 14402, Lr: 0.000210\n", "2020-04-10 18:28:30,010 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:28:30,011 Saving new checkpoint.\n", "2020-04-10 18:28:31,341 Example #0\n", "2020-04-10 18:28:31,342 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:28:31,342 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:28:31,342 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:28:31,342 Example #1\n", "2020-04-10 18:28:31,343 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:28:31,343 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:28:31,343 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 18:28:31,343 Example #2\n", "2020-04-10 18:28:31,344 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:28:31,344 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:28:31,344 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:28:31,344 Example #3\n", "2020-04-10 18:28:31,345 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:28:31,345 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:28:31,345 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:28:31,345 Validation result (greedy) at epoch 31, step 122000: bleu: 27.25, loss: 42915.9023, ppl: 5.2532, duration: 19.5807s\n", "2020-04-10 18:28:46,912 Epoch 31 Step: 122100 Batch Loss: 1.923719 Tokens per Sec: 14310, Lr: 0.000210\n", "2020-04-10 18:28:57,100 Epoch 31: total training loss 7049.61\n", "2020-04-10 18:28:57,101 EPOCH 32\n", "2020-04-10 18:29:02,628 Epoch 32 Step: 122200 Batch Loss: 1.848732 Tokens per Sec: 13699, Lr: 0.000210\n", "2020-04-10 18:29:17,846 Epoch 32 Step: 122300 Batch Loss: 1.807819 Tokens per Sec: 14858, Lr: 0.000210\n", "2020-04-10 18:29:33,086 Epoch 32 Step: 122400 Batch Loss: 1.688684 Tokens per Sec: 14739, Lr: 0.000210\n", "2020-04-10 18:29:48,242 Epoch 32 Step: 122500 Batch Loss: 1.685675 Tokens per Sec: 14464, Lr: 0.000210\n", "2020-04-10 18:30:03,568 Epoch 32 Step: 122600 Batch Loss: 1.687589 Tokens per Sec: 14692, Lr: 0.000210\n", "2020-04-10 18:30:18,787 Epoch 32 Step: 122700 Batch Loss: 1.821373 Tokens per Sec: 14606, Lr: 0.000210\n", "2020-04-10 18:30:33,794 Epoch 32 Step: 122800 Batch Loss: 1.577907 Tokens per Sec: 14749, Lr: 0.000210\n", "2020-04-10 18:30:48,819 Epoch 32 Step: 122900 Batch Loss: 1.854878 Tokens per Sec: 14562, Lr: 0.000210\n", "2020-04-10 18:31:03,879 Epoch 32 Step: 123000 Batch Loss: 2.067629 Tokens per Sec: 14588, Lr: 0.000210\n", "2020-04-10 18:31:22,918 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:31:22,918 Saving new checkpoint.\n", "2020-04-10 18:31:24,212 Example #0\n", "2020-04-10 18:31:24,213 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:31:24,213 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:31:24,213 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:31:24,213 Example #1\n", "2020-04-10 18:31:24,213 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:31:24,213 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:31:24,214 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 18:31:24,214 Example #2\n", "2020-04-10 18:31:24,214 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:31:24,214 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:31:24,214 \tHypothesis: The same expression is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:31:24,214 Example #3\n", "2020-04-10 18:31:24,215 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:31:24,215 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:31:24,215 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:31:24,215 Validation result (greedy) at epoch 32, step 123000: bleu: 27.06, loss: 42875.6016, ppl: 5.2450, duration: 20.3360s\n", "2020-04-10 18:31:39,130 Epoch 32 Step: 123100 Batch Loss: 1.785246 Tokens per Sec: 14379, Lr: 0.000210\n", "2020-04-10 18:31:54,042 Epoch 32 Step: 123200 Batch Loss: 1.872122 Tokens per Sec: 15106, Lr: 0.000210\n", "2020-04-10 18:32:08,603 Epoch 32 Step: 123300 Batch Loss: 1.778117 Tokens per Sec: 14977, Lr: 0.000210\n", "2020-04-10 18:32:23,192 Epoch 32 Step: 123400 Batch Loss: 1.693685 Tokens per Sec: 15142, Lr: 0.000210\n", "2020-04-10 18:32:37,933 Epoch 32 Step: 123500 Batch Loss: 1.578312 Tokens per Sec: 15176, Lr: 0.000210\n", "2020-04-10 18:32:52,449 Epoch 32 Step: 123600 Batch Loss: 1.644414 Tokens per Sec: 15168, Lr: 0.000210\n", "2020-04-10 18:33:07,086 Epoch 32 Step: 123700 Batch Loss: 1.829665 Tokens per Sec: 15397, Lr: 0.000210\n", "2020-04-10 18:33:21,632 Epoch 32 Step: 123800 Batch Loss: 1.829543 Tokens per Sec: 15173, Lr: 0.000210\n", "2020-04-10 18:33:36,224 Epoch 32 Step: 123900 Batch Loss: 1.817193 Tokens per Sec: 15041, Lr: 0.000210\n", "2020-04-10 18:33:50,784 Epoch 32 Step: 124000 Batch Loss: 1.820224 Tokens per Sec: 14974, Lr: 0.000210\n", "2020-04-10 18:34:09,040 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:34:09,040 Saving new checkpoint.\n", "2020-04-10 18:34:10,341 Example #0\n", "2020-04-10 18:34:10,342 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:34:10,342 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:34:10,342 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:34:10,342 Example #1\n", "2020-04-10 18:34:10,343 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:34:10,343 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:34:10,343 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:34:10,343 Example #2\n", "2020-04-10 18:34:10,344 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:34:10,344 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:34:10,344 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:34:10,344 Example #3\n", "2020-04-10 18:34:10,345 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:34:10,345 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:34:10,345 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:34:10,345 Validation result (greedy) at epoch 32, step 124000: bleu: 27.39, loss: 42820.8164, ppl: 5.2340, duration: 19.5610s\n", "2020-04-10 18:34:24,978 Epoch 32 Step: 124100 Batch Loss: 1.853919 Tokens per Sec: 14585, Lr: 0.000210\n", "2020-04-10 18:34:39,592 Epoch 32 Step: 124200 Batch Loss: 1.851305 Tokens per Sec: 15396, Lr: 0.000210\n", "2020-04-10 18:34:54,344 Epoch 32 Step: 124300 Batch Loss: 1.705218 Tokens per Sec: 15265, Lr: 0.000210\n", "2020-04-10 18:35:09,091 Epoch 32 Step: 124400 Batch Loss: 1.752333 Tokens per Sec: 15142, Lr: 0.000210\n", "2020-04-10 18:35:23,719 Epoch 32 Step: 124500 Batch Loss: 1.825047 Tokens per Sec: 14790, Lr: 0.000210\n", "2020-04-10 18:35:38,544 Epoch 32 Step: 124600 Batch Loss: 1.743230 Tokens per Sec: 15296, Lr: 0.000210\n", "2020-04-10 18:35:53,241 Epoch 32 Step: 124700 Batch Loss: 1.841053 Tokens per Sec: 15386, Lr: 0.000210\n", "2020-04-10 18:36:07,897 Epoch 32 Step: 124800 Batch Loss: 1.848148 Tokens per Sec: 15425, Lr: 0.000210\n", "2020-04-10 18:36:22,413 Epoch 32 Step: 124900 Batch Loss: 1.796740 Tokens per Sec: 14944, Lr: 0.000210\n", "2020-04-10 18:36:37,035 Epoch 32 Step: 125000 Batch Loss: 1.844496 Tokens per Sec: 14958, Lr: 0.000210\n", "2020-04-10 18:36:54,713 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:36:54,714 Saving new checkpoint.\n", "2020-04-10 18:36:55,966 Example #0\n", "2020-04-10 18:36:55,966 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:36:55,966 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:36:55,966 \tHypothesis: If you do so , you will choose the best way of life .\n", "2020-04-10 18:36:55,967 Example #1\n", "2020-04-10 18:36:55,967 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:36:55,967 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:36:55,967 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:36:55,967 Example #2\n", "2020-04-10 18:36:55,968 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:36:55,968 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:36:55,968 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:36:55,968 Example #3\n", "2020-04-10 18:36:55,969 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:36:55,969 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:36:55,969 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:36:55,969 Validation result (greedy) at epoch 32, step 125000: bleu: 27.51, loss: 42774.9805, ppl: 5.2247, duration: 18.9334s\n", "2020-04-10 18:37:10,768 Epoch 32 Step: 125100 Batch Loss: 1.725036 Tokens per Sec: 14414, Lr: 0.000210\n", "2020-04-10 18:37:25,519 Epoch 32 Step: 125200 Batch Loss: 1.696317 Tokens per Sec: 15127, Lr: 0.000210\n", "2020-04-10 18:37:40,107 Epoch 32 Step: 125300 Batch Loss: 1.767938 Tokens per Sec: 15253, Lr: 0.000210\n", "2020-04-10 18:37:54,948 Epoch 32 Step: 125400 Batch Loss: 1.841866 Tokens per Sec: 15211, Lr: 0.000210\n", "2020-04-10 18:38:09,577 Epoch 32 Step: 125500 Batch Loss: 1.701238 Tokens per Sec: 15286, Lr: 0.000210\n", "2020-04-10 18:38:24,378 Epoch 32 Step: 125600 Batch Loss: 1.673237 Tokens per Sec: 15568, Lr: 0.000210\n", "2020-04-10 18:38:39,027 Epoch 32 Step: 125700 Batch Loss: 1.749590 Tokens per Sec: 14866, Lr: 0.000210\n", "2020-04-10 18:38:53,546 Epoch 32 Step: 125800 Batch Loss: 1.894066 Tokens per Sec: 15121, Lr: 0.000210\n", "2020-04-10 18:39:08,258 Epoch 32 Step: 125900 Batch Loss: 1.911456 Tokens per Sec: 15148, Lr: 0.000210\n", "2020-04-10 18:39:22,726 Epoch 32 Step: 126000 Batch Loss: 1.929027 Tokens per Sec: 15244, Lr: 0.000210\n", "2020-04-10 18:39:41,343 Example #0\n", "2020-04-10 18:39:41,344 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:39:41,345 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:39:41,345 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:39:41,345 Example #1\n", "2020-04-10 18:39:41,346 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:39:41,346 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:39:41,346 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 18:39:41,346 Example #2\n", "2020-04-10 18:39:41,347 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:39:41,347 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:39:41,347 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:39:41,347 Example #3\n", "2020-04-10 18:39:41,348 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:39:41,348 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:39:41,348 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:39:41,348 Validation result (greedy) at epoch 32, step 126000: bleu: 27.47, loss: 42800.5938, ppl: 5.2299, duration: 18.6219s\n", "2020-04-10 18:39:55,788 Epoch 32: total training loss 7018.72\n", "2020-04-10 18:39:55,788 EPOCH 33\n", "2020-04-10 18:39:56,345 Epoch 33 Step: 126100 Batch Loss: 1.794312 Tokens per Sec: 2360, Lr: 0.000210\n", "2020-04-10 18:40:10,961 Epoch 33 Step: 126200 Batch Loss: 1.886088 Tokens per Sec: 15360, Lr: 0.000210\n", "2020-04-10 18:40:25,423 Epoch 33 Step: 126300 Batch Loss: 1.976982 Tokens per Sec: 15177, Lr: 0.000210\n", "2020-04-10 18:40:40,196 Epoch 33 Step: 126400 Batch Loss: 1.728539 Tokens per Sec: 15188, Lr: 0.000210\n", "2020-04-10 18:40:54,810 Epoch 33 Step: 126500 Batch Loss: 1.726078 Tokens per Sec: 15144, Lr: 0.000210\n", "2020-04-10 18:41:09,403 Epoch 33 Step: 126600 Batch Loss: 1.711332 Tokens per Sec: 15379, Lr: 0.000210\n", "2020-04-10 18:41:24,000 Epoch 33 Step: 126700 Batch Loss: 1.563085 Tokens per Sec: 15563, Lr: 0.000210\n", "2020-04-10 18:41:38,500 Epoch 33 Step: 126800 Batch Loss: 1.598118 Tokens per Sec: 15311, Lr: 0.000210\n", "2020-04-10 18:41:53,279 Epoch 33 Step: 126900 Batch Loss: 1.743207 Tokens per Sec: 15225, Lr: 0.000210\n", "2020-04-10 18:42:07,968 Epoch 33 Step: 127000 Batch Loss: 1.680978 Tokens per Sec: 14928, Lr: 0.000210\n", "2020-04-10 18:42:27,656 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:42:27,656 Saving new checkpoint.\n", "2020-04-10 18:42:28,937 Example #0\n", "2020-04-10 18:42:28,938 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:42:28,938 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:42:28,938 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:42:28,938 Example #1\n", "2020-04-10 18:42:28,939 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:42:28,939 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:42:28,939 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:42:28,939 Example #2\n", "2020-04-10 18:42:28,939 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:42:28,940 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:42:28,940 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:42:28,940 Example #3\n", "2020-04-10 18:42:28,940 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:42:28,940 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:42:28,941 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:42:28,941 Validation result (greedy) at epoch 33, step 127000: bleu: 27.35, loss: 42714.2227, ppl: 5.2124, duration: 20.9723s\n", "2020-04-10 18:42:44,226 Epoch 33 Step: 127100 Batch Loss: 1.821482 Tokens per Sec: 14706, Lr: 0.000210\n", "2020-04-10 18:42:58,737 Epoch 33 Step: 127200 Batch Loss: 1.951567 Tokens per Sec: 15446, Lr: 0.000210\n", "2020-04-10 18:43:13,260 Epoch 33 Step: 127300 Batch Loss: 1.780824 Tokens per Sec: 15276, Lr: 0.000210\n", "2020-04-10 18:43:28,008 Epoch 33 Step: 127400 Batch Loss: 1.743455 Tokens per Sec: 15285, Lr: 0.000210\n", "2020-04-10 18:43:42,623 Epoch 33 Step: 127500 Batch Loss: 1.643435 Tokens per Sec: 15506, Lr: 0.000210\n", "2020-04-10 18:43:57,154 Epoch 33 Step: 127600 Batch Loss: 1.795465 Tokens per Sec: 15145, Lr: 0.000210\n", "2020-04-10 18:44:11,602 Epoch 33 Step: 127700 Batch Loss: 1.712136 Tokens per Sec: 15122, Lr: 0.000210\n", "2020-04-10 18:44:26,112 Epoch 33 Step: 127800 Batch Loss: 1.707042 Tokens per Sec: 14946, Lr: 0.000210\n", "2020-04-10 18:44:40,610 Epoch 33 Step: 127900 Batch Loss: 1.811649 Tokens per Sec: 14998, Lr: 0.000210\n", "2020-04-10 18:44:55,262 Epoch 33 Step: 128000 Batch Loss: 1.882067 Tokens per Sec: 15046, Lr: 0.000210\n", "2020-04-10 18:45:13,554 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:45:13,554 Saving new checkpoint.\n", "2020-04-10 18:45:14,767 Example #0\n", "2020-04-10 18:45:14,767 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:45:14,768 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:45:14,768 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:45:14,768 Example #1\n", "2020-04-10 18:45:14,768 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:45:14,768 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:45:14,769 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 18:45:14,769 Example #2\n", "2020-04-10 18:45:14,769 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:45:14,769 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:45:14,769 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:45:14,771 Example #3\n", "2020-04-10 18:45:14,772 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:45:14,772 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:45:14,772 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:45:14,772 Validation result (greedy) at epoch 33, step 128000: bleu: 27.38, loss: 42705.0547, ppl: 5.2106, duration: 19.5097s\n", "2020-04-10 18:45:29,449 Epoch 33 Step: 128100 Batch Loss: 1.672010 Tokens per Sec: 15212, Lr: 0.000210\n", "2020-04-10 18:45:43,919 Epoch 33 Step: 128200 Batch Loss: 1.776712 Tokens per Sec: 15078, Lr: 0.000210\n", "2020-04-10 18:45:58,319 Epoch 33 Step: 128300 Batch Loss: 1.720611 Tokens per Sec: 14764, Lr: 0.000210\n", "2020-04-10 18:46:12,845 Epoch 33 Step: 128400 Batch Loss: 1.976198 Tokens per Sec: 14947, Lr: 0.000210\n", "2020-04-10 18:46:27,384 Epoch 33 Step: 128500 Batch Loss: 1.725036 Tokens per Sec: 15135, Lr: 0.000210\n", "2020-04-10 18:46:41,883 Epoch 33 Step: 128600 Batch Loss: 1.737968 Tokens per Sec: 15159, Lr: 0.000210\n", "2020-04-10 18:46:56,307 Epoch 33 Step: 128700 Batch Loss: 1.740021 Tokens per Sec: 14797, Lr: 0.000210\n", "2020-04-10 18:47:10,903 Epoch 33 Step: 128800 Batch Loss: 1.684232 Tokens per Sec: 15141, Lr: 0.000210\n", "2020-04-10 18:47:25,493 Epoch 33 Step: 128900 Batch Loss: 1.726103 Tokens per Sec: 15294, Lr: 0.000210\n", "2020-04-10 18:47:40,204 Epoch 33 Step: 129000 Batch Loss: 1.476106 Tokens per Sec: 14845, Lr: 0.000210\n", "2020-04-10 18:47:58,228 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:47:58,228 Saving new checkpoint.\n", "2020-04-10 18:47:59,423 Example #0\n", "2020-04-10 18:47:59,423 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:47:59,424 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:47:59,424 \tHypothesis: If so , you are choosing the best way of life .\n", "2020-04-10 18:47:59,424 Example #1\n", "2020-04-10 18:47:59,424 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:47:59,425 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:47:59,425 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:47:59,425 Example #2\n", "2020-04-10 18:47:59,425 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:47:59,425 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:47:59,426 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:47:59,426 Example #3\n", "2020-04-10 18:47:59,426 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:47:59,426 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:47:59,426 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:47:59,427 Validation result (greedy) at epoch 33, step 129000: bleu: 27.60, loss: 42690.0781, ppl: 5.2076, duration: 19.2218s\n", "2020-04-10 18:48:14,195 Epoch 33 Step: 129100 Batch Loss: 1.802640 Tokens per Sec: 14827, Lr: 0.000210\n", "2020-04-10 18:48:28,882 Epoch 33 Step: 129200 Batch Loss: 1.806374 Tokens per Sec: 15098, Lr: 0.000210\n", "2020-04-10 18:48:43,457 Epoch 33 Step: 129300 Batch Loss: 1.891459 Tokens per Sec: 14718, Lr: 0.000210\n", "2020-04-10 18:48:58,334 Epoch 33 Step: 129400 Batch Loss: 1.843934 Tokens per Sec: 15135, Lr: 0.000210\n", "2020-04-10 18:49:13,143 Epoch 33 Step: 129500 Batch Loss: 1.762830 Tokens per Sec: 15044, Lr: 0.000210\n", "2020-04-10 18:49:27,790 Epoch 33 Step: 129600 Batch Loss: 1.954349 Tokens per Sec: 14501, Lr: 0.000210\n", "2020-04-10 18:49:42,467 Epoch 33 Step: 129700 Batch Loss: 1.766010 Tokens per Sec: 15329, Lr: 0.000210\n", "2020-04-10 18:49:56,959 Epoch 33 Step: 129800 Batch Loss: 1.804165 Tokens per Sec: 15429, Lr: 0.000210\n", "2020-04-10 18:50:11,479 Epoch 33 Step: 129900 Batch Loss: 1.658782 Tokens per Sec: 14880, Lr: 0.000210\n", "2020-04-10 18:50:25,873 Epoch 33 Step: 130000 Batch Loss: 1.684170 Tokens per Sec: 15396, Lr: 0.000210\n", "2020-04-10 18:50:44,645 Hooray! New best validation result [ppl]!\n", "2020-04-10 18:50:44,645 Saving new checkpoint.\n", "2020-04-10 18:50:45,844 Example #0\n", "2020-04-10 18:50:45,844 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:50:45,844 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:50:45,845 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:50:45,845 Example #1\n", "2020-04-10 18:50:45,845 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:50:45,845 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:50:45,845 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:50:45,846 Example #2\n", "2020-04-10 18:50:45,846 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:50:45,846 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:50:45,846 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:50:45,846 Example #3\n", "2020-04-10 18:50:45,847 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:50:45,847 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:50:45,847 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:50:45,847 Validation result (greedy) at epoch 33, step 130000: bleu: 27.51, loss: 42592.3633, ppl: 5.1879, duration: 19.9735s\n", "2020-04-10 18:50:53,017 Epoch 33: total training loss 7031.50\n", "2020-04-10 18:50:53,017 EPOCH 34\n", "2020-04-10 18:51:01,564 Epoch 34 Step: 130100 Batch Loss: 1.949962 Tokens per Sec: 14726, Lr: 0.000210\n", "2020-04-10 18:51:16,043 Epoch 34 Step: 130200 Batch Loss: 1.769533 Tokens per Sec: 15208, Lr: 0.000210\n", "2020-04-10 18:51:30,803 Epoch 34 Step: 130300 Batch Loss: 1.745724 Tokens per Sec: 14860, Lr: 0.000210\n", "2020-04-10 18:51:45,106 Epoch 34 Step: 130400 Batch Loss: 1.747950 Tokens per Sec: 15196, Lr: 0.000210\n", "2020-04-10 18:51:59,666 Epoch 34 Step: 130500 Batch Loss: 1.649553 Tokens per Sec: 15053, Lr: 0.000210\n", "2020-04-10 18:52:14,395 Epoch 34 Step: 130600 Batch Loss: 1.606409 Tokens per Sec: 15325, Lr: 0.000210\n", "2020-04-10 18:52:28,763 Epoch 34 Step: 130700 Batch Loss: 1.811684 Tokens per Sec: 14821, Lr: 0.000210\n", "2020-04-10 18:52:43,546 Epoch 34 Step: 130800 Batch Loss: 1.786855 Tokens per Sec: 15159, Lr: 0.000210\n", "2020-04-10 18:52:58,339 Epoch 34 Step: 130900 Batch Loss: 1.764583 Tokens per Sec: 15221, Lr: 0.000210\n", "2020-04-10 18:53:12,940 Epoch 34 Step: 131000 Batch Loss: 1.726190 Tokens per Sec: 15563, Lr: 0.000210\n", "2020-04-10 18:53:30,771 Example #0\n", "2020-04-10 18:53:30,771 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:53:30,771 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:53:30,771 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:53:30,772 Example #1\n", "2020-04-10 18:53:30,772 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:53:30,772 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:53:30,772 \tHypothesis: That may be the case of the clergy who said to them .\n", "2020-04-10 18:53:30,772 Example #2\n", "2020-04-10 18:53:30,773 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:53:30,773 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:53:30,773 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:53:30,773 Example #3\n", "2020-04-10 18:53:30,773 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:53:30,774 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:53:30,774 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:53:30,774 Validation result (greedy) at epoch 34, step 131000: bleu: 27.58, loss: 42733.6719, ppl: 5.2164, duration: 17.8336s\n", "2020-04-10 18:53:45,257 Epoch 34 Step: 131100 Batch Loss: 1.810178 Tokens per Sec: 15195, Lr: 0.000210\n", "2020-04-10 18:53:59,863 Epoch 34 Step: 131200 Batch Loss: 1.652574 Tokens per Sec: 15279, Lr: 0.000210\n", "2020-04-10 18:54:14,620 Epoch 34 Step: 131300 Batch Loss: 1.850615 Tokens per Sec: 15253, Lr: 0.000210\n", "2020-04-10 18:54:29,388 Epoch 34 Step: 131400 Batch Loss: 1.878184 Tokens per Sec: 15340, Lr: 0.000210\n", "2020-04-10 18:54:43,840 Epoch 34 Step: 131500 Batch Loss: 1.635496 Tokens per Sec: 15023, Lr: 0.000210\n", "2020-04-10 18:54:58,249 Epoch 34 Step: 131600 Batch Loss: 1.685868 Tokens per Sec: 14911, Lr: 0.000210\n", "2020-04-10 18:55:12,796 Epoch 34 Step: 131700 Batch Loss: 1.617894 Tokens per Sec: 15194, Lr: 0.000210\n", "2020-04-10 18:55:27,324 Epoch 34 Step: 131800 Batch Loss: 1.740657 Tokens per Sec: 14982, Lr: 0.000210\n", "2020-04-10 18:55:41,852 Epoch 34 Step: 131900 Batch Loss: 1.733840 Tokens per Sec: 15202, Lr: 0.000210\n", "2020-04-10 18:55:56,460 Epoch 34 Step: 132000 Batch Loss: 1.724820 Tokens per Sec: 14925, Lr: 0.000210\n", "2020-04-10 18:56:14,403 Example #0\n", "2020-04-10 18:56:14,404 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:56:14,404 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:56:14,404 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 18:56:14,404 Example #1\n", "2020-04-10 18:56:14,404 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:56:14,404 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:56:14,404 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 18:56:14,405 Example #2\n", "2020-04-10 18:56:14,405 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:56:14,405 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:56:14,405 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:56:14,405 Example #3\n", "2020-04-10 18:56:14,406 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:56:14,406 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:56:14,406 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:56:14,406 Validation result (greedy) at epoch 34, step 132000: bleu: 27.71, loss: 42710.5898, ppl: 5.2117, duration: 17.9460s\n", "2020-04-10 18:56:29,131 Epoch 34 Step: 132100 Batch Loss: 1.931297 Tokens per Sec: 14897, Lr: 0.000210\n", "2020-04-10 18:56:43,753 Epoch 34 Step: 132200 Batch Loss: 1.439427 Tokens per Sec: 15340, Lr: 0.000210\n", "2020-04-10 18:56:58,388 Epoch 34 Step: 132300 Batch Loss: 1.808099 Tokens per Sec: 14928, Lr: 0.000210\n", "2020-04-10 18:57:13,092 Epoch 34 Step: 132400 Batch Loss: 1.694427 Tokens per Sec: 15135, Lr: 0.000210\n", "2020-04-10 18:57:27,797 Epoch 34 Step: 132500 Batch Loss: 1.783790 Tokens per Sec: 15233, Lr: 0.000210\n", "2020-04-10 18:57:42,450 Epoch 34 Step: 132600 Batch Loss: 1.897055 Tokens per Sec: 14795, Lr: 0.000210\n", "2020-04-10 18:57:57,110 Epoch 34 Step: 132700 Batch Loss: 1.912278 Tokens per Sec: 15031, Lr: 0.000210\n", "2020-04-10 18:58:11,688 Epoch 34 Step: 132800 Batch Loss: 1.807095 Tokens per Sec: 15450, Lr: 0.000210\n", "2020-04-10 18:58:26,404 Epoch 34 Step: 132900 Batch Loss: 1.700251 Tokens per Sec: 15318, Lr: 0.000210\n", "2020-04-10 18:58:40,872 Epoch 34 Step: 133000 Batch Loss: 1.643323 Tokens per Sec: 15028, Lr: 0.000210\n", "2020-04-10 18:58:59,121 Example #0\n", "2020-04-10 18:58:59,122 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 18:58:59,122 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 18:58:59,122 \tHypothesis: If you do so , you choose the best way of life .\n", "2020-04-10 18:58:59,123 Example #1\n", "2020-04-10 18:58:59,123 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 18:58:59,123 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 18:58:59,123 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 18:58:59,123 Example #2\n", "2020-04-10 18:58:59,124 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 18:58:59,124 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:58:59,124 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 18:58:59,124 Example #3\n", "2020-04-10 18:58:59,124 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 18:58:59,125 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:58:59,125 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 18:58:59,125 Validation result (greedy) at epoch 34, step 133000: bleu: 27.61, loss: 42722.1367, ppl: 5.2140, duration: 18.2503s\n", "2020-04-10 18:59:13,852 Epoch 34 Step: 133100 Batch Loss: 1.787998 Tokens per Sec: 15092, Lr: 0.000210\n", "2020-04-10 18:59:28,555 Epoch 34 Step: 133200 Batch Loss: 1.820157 Tokens per Sec: 15116, Lr: 0.000210\n", "2020-04-10 18:59:43,317 Epoch 34 Step: 133300 Batch Loss: 1.831162 Tokens per Sec: 15249, Lr: 0.000210\n", "2020-04-10 18:59:57,967 Epoch 34 Step: 133400 Batch Loss: 1.889747 Tokens per Sec: 15066, Lr: 0.000210\n", "2020-04-10 19:00:12,423 Epoch 34 Step: 133500 Batch Loss: 1.928761 Tokens per Sec: 15310, Lr: 0.000210\n", "2020-04-10 19:00:27,115 Epoch 34 Step: 133600 Batch Loss: 1.816076 Tokens per Sec: 15060, Lr: 0.000210\n", "2020-04-10 19:00:41,710 Epoch 34 Step: 133700 Batch Loss: 1.656556 Tokens per Sec: 14974, Lr: 0.000210\n", "2020-04-10 19:00:56,262 Epoch 34 Step: 133800 Batch Loss: 1.251693 Tokens per Sec: 15078, Lr: 0.000210\n", "2020-04-10 19:01:10,876 Epoch 34 Step: 133900 Batch Loss: 1.767925 Tokens per Sec: 15066, Lr: 0.000210\n", "2020-04-10 19:01:23,275 Epoch 34: total training loss 7002.58\n", "2020-04-10 19:01:23,275 EPOCH 35\n", "2020-04-10 19:01:25,795 Epoch 35 Step: 134000 Batch Loss: 1.365955 Tokens per Sec: 12164, Lr: 0.000210\n", "2020-04-10 19:01:43,775 Example #0\n", "2020-04-10 19:01:43,776 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:01:43,777 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:01:43,777 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:01:43,777 Example #1\n", "2020-04-10 19:01:43,777 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:01:43,777 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:01:43,778 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 19:01:43,778 Example #2\n", "2020-04-10 19:01:43,778 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:01:43,778 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:01:43,778 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:01:43,779 Example #3\n", "2020-04-10 19:01:43,779 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:01:43,779 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:01:43,779 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 - 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:01:43,780 Validation result (greedy) at epoch 35, step 134000: bleu: 27.44, loss: 42728.0625, ppl: 5.2152, duration: 17.9841s\n", "2020-04-10 19:01:58,535 Epoch 35 Step: 134100 Batch Loss: 1.709848 Tokens per Sec: 14961, Lr: 0.000210\n", "2020-04-10 19:02:13,274 Epoch 35 Step: 134200 Batch Loss: 1.812516 Tokens per Sec: 15173, Lr: 0.000210\n", "2020-04-10 19:02:27,950 Epoch 35 Step: 134300 Batch Loss: 1.714527 Tokens per Sec: 15317, Lr: 0.000210\n", "2020-04-10 19:02:42,620 Epoch 35 Step: 134400 Batch Loss: 1.847693 Tokens per Sec: 15481, Lr: 0.000210\n", "2020-04-10 19:02:57,300 Epoch 35 Step: 134500 Batch Loss: 1.683652 Tokens per Sec: 14876, Lr: 0.000210\n", "2020-04-10 19:03:12,073 Epoch 35 Step: 134600 Batch Loss: 1.832873 Tokens per Sec: 15056, Lr: 0.000210\n", "2020-04-10 19:03:26,725 Epoch 35 Step: 134700 Batch Loss: 1.728916 Tokens per Sec: 15170, Lr: 0.000210\n", "2020-04-10 19:03:41,447 Epoch 35 Step: 134800 Batch Loss: 1.764765 Tokens per Sec: 15006, Lr: 0.000210\n", "2020-04-10 19:03:55,751 Epoch 35 Step: 134900 Batch Loss: 1.780074 Tokens per Sec: 14972, Lr: 0.000210\n", "2020-04-10 19:04:10,375 Epoch 35 Step: 135000 Batch Loss: 1.722882 Tokens per Sec: 14948, Lr: 0.000210\n", "2020-04-10 19:04:29,113 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:04:29,113 Saving new checkpoint.\n", "2020-04-10 19:04:30,776 Example #0\n", "2020-04-10 19:04:30,777 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:04:30,777 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:04:30,778 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:04:30,778 Example #1\n", "2020-04-10 19:04:30,778 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:04:30,779 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:04:30,779 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:04:30,779 Example #2\n", "2020-04-10 19:04:30,779 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:04:30,779 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:04:30,779 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:04:30,779 Example #3\n", "2020-04-10 19:04:30,780 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:04:30,780 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:04:30,780 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:04:30,780 Validation result (greedy) at epoch 35, step 135000: bleu: 27.61, loss: 42533.4688, ppl: 5.1761, duration: 20.4046s\n", "2020-04-10 19:04:45,494 Epoch 35 Step: 135100 Batch Loss: 1.846343 Tokens per Sec: 14686, Lr: 0.000210\n", "2020-04-10 19:05:00,314 Epoch 35 Step: 135200 Batch Loss: 1.881119 Tokens per Sec: 14892, Lr: 0.000210\n", "2020-04-10 19:05:14,934 Epoch 35 Step: 135300 Batch Loss: 1.782146 Tokens per Sec: 15262, Lr: 0.000210\n", "2020-04-10 19:05:29,529 Epoch 35 Step: 135400 Batch Loss: 1.752684 Tokens per Sec: 14836, Lr: 0.000210\n", "2020-04-10 19:05:44,291 Epoch 35 Step: 135500 Batch Loss: 1.814914 Tokens per Sec: 15115, Lr: 0.000210\n", "2020-04-10 19:05:59,098 Epoch 35 Step: 135600 Batch Loss: 1.922656 Tokens per Sec: 15008, Lr: 0.000210\n", "2020-04-10 19:06:13,629 Epoch 35 Step: 135700 Batch Loss: 1.748619 Tokens per Sec: 14731, Lr: 0.000210\n", "2020-04-10 19:06:28,361 Epoch 35 Step: 135800 Batch Loss: 1.644156 Tokens per Sec: 14975, Lr: 0.000210\n", "2020-04-10 19:06:42,845 Epoch 35 Step: 135900 Batch Loss: 1.888079 Tokens per Sec: 15138, Lr: 0.000210\n", "2020-04-10 19:06:57,670 Epoch 35 Step: 136000 Batch Loss: 1.816387 Tokens per Sec: 14821, Lr: 0.000210\n", "2020-04-10 19:07:15,279 Example #0\n", "2020-04-10 19:07:15,279 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:07:15,279 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:07:15,280 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:07:15,280 Example #1\n", "2020-04-10 19:07:15,280 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:07:15,280 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:07:15,281 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:07:15,281 Example #2\n", "2020-04-10 19:07:15,281 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:07:15,281 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:07:15,281 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:07:15,282 Example #3\n", "2020-04-10 19:07:15,282 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:07:15,282 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:07:15,282 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:07:15,283 Validation result (greedy) at epoch 35, step 136000: bleu: 27.50, loss: 42634.8945, ppl: 5.1965, duration: 17.6116s\n", "2020-04-10 19:07:30,100 Epoch 35 Step: 136100 Batch Loss: 1.706436 Tokens per Sec: 15086, Lr: 0.000210\n", "2020-04-10 19:07:44,676 Epoch 35 Step: 136200 Batch Loss: 1.750869 Tokens per Sec: 14921, Lr: 0.000210\n", "2020-04-10 19:07:59,499 Epoch 35 Step: 136300 Batch Loss: 1.752334 Tokens per Sec: 14908, Lr: 0.000210\n", "2020-04-10 19:08:14,360 Epoch 35 Step: 136400 Batch Loss: 1.762392 Tokens per Sec: 15212, Lr: 0.000210\n", "2020-04-10 19:08:28,913 Epoch 35 Step: 136500 Batch Loss: 1.901613 Tokens per Sec: 14797, Lr: 0.000210\n", "2020-04-10 19:08:43,813 Epoch 35 Step: 136600 Batch Loss: 1.998703 Tokens per Sec: 15187, Lr: 0.000210\n", "2020-04-10 19:08:58,605 Epoch 35 Step: 136700 Batch Loss: 1.693283 Tokens per Sec: 14955, Lr: 0.000210\n", "2020-04-10 19:09:13,480 Epoch 35 Step: 136800 Batch Loss: 1.811525 Tokens per Sec: 15083, Lr: 0.000210\n", "2020-04-10 19:09:28,190 Epoch 35 Step: 136900 Batch Loss: 1.749136 Tokens per Sec: 15007, Lr: 0.000210\n", "2020-04-10 19:09:42,845 Epoch 35 Step: 137000 Batch Loss: 1.795238 Tokens per Sec: 15231, Lr: 0.000210\n", "2020-04-10 19:10:01,226 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:10:01,228 Saving new checkpoint.\n", "2020-04-10 19:10:02,564 Example #0\n", "2020-04-10 19:10:02,565 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:10:02,565 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:10:02,565 \tHypothesis: If you do so , you choose the best way of life .\n", "2020-04-10 19:10:02,566 Example #1\n", "2020-04-10 19:10:02,566 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:10:02,566 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:10:02,566 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:10:02,567 Example #2\n", "2020-04-10 19:10:02,567 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:10:02,567 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:10:02,567 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:10:02,568 Example #3\n", "2020-04-10 19:10:02,568 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:10:02,568 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:10:02,568 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:10:02,569 Validation result (greedy) at epoch 35, step 137000: bleu: 27.60, loss: 42364.2266, ppl: 5.1424, duration: 19.7233s\n", "2020-04-10 19:10:17,468 Epoch 35 Step: 137100 Batch Loss: 1.582895 Tokens per Sec: 15125, Lr: 0.000210\n", "2020-04-10 19:10:32,084 Epoch 35 Step: 137200 Batch Loss: 1.713656 Tokens per Sec: 15254, Lr: 0.000210\n", "2020-04-10 19:10:46,669 Epoch 35 Step: 137300 Batch Loss: 1.873993 Tokens per Sec: 15160, Lr: 0.000210\n", "2020-04-10 19:11:01,394 Epoch 35 Step: 137400 Batch Loss: 1.707972 Tokens per Sec: 15020, Lr: 0.000210\n", "2020-04-10 19:11:16,136 Epoch 35 Step: 137500 Batch Loss: 1.874433 Tokens per Sec: 14897, Lr: 0.000210\n", "2020-04-10 19:11:31,024 Epoch 35 Step: 137600 Batch Loss: 1.661602 Tokens per Sec: 15275, Lr: 0.000210\n", "2020-04-10 19:11:45,653 Epoch 35 Step: 137700 Batch Loss: 1.933793 Tokens per Sec: 15065, Lr: 0.000210\n", "2020-04-10 19:12:00,269 Epoch 35 Step: 137800 Batch Loss: 1.803614 Tokens per Sec: 15071, Lr: 0.000210\n", "2020-04-10 19:12:15,052 Epoch 35 Step: 137900 Batch Loss: 1.717093 Tokens per Sec: 15032, Lr: 0.000210\n", "2020-04-10 19:12:18,505 Epoch 35: total training loss 6983.35\n", "2020-04-10 19:12:18,506 EPOCH 36\n", "2020-04-10 19:12:30,274 Epoch 36 Step: 138000 Batch Loss: 1.709860 Tokens per Sec: 14185, Lr: 0.000210\n", "2020-04-10 19:12:48,658 Example #0\n", "2020-04-10 19:12:48,659 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:12:48,659 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:12:48,660 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:12:48,660 Example #1\n", "2020-04-10 19:12:48,660 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:12:48,660 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:12:48,661 \tHypothesis: That may even be what the clergy said to them .\n", "2020-04-10 19:12:48,661 Example #2\n", "2020-04-10 19:12:48,661 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:12:48,661 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:12:48,661 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:12:48,662 Example #3\n", "2020-04-10 19:12:48,662 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:12:48,662 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:12:48,663 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:12:48,663 Validation result (greedy) at epoch 36, step 138000: bleu: 27.75, loss: 42661.8711, ppl: 5.2019, duration: 18.3879s\n", "2020-04-10 19:13:03,284 Epoch 36 Step: 138100 Batch Loss: 1.821749 Tokens per Sec: 14742, Lr: 0.000210\n", "2020-04-10 19:13:18,023 Epoch 36 Step: 138200 Batch Loss: 1.662010 Tokens per Sec: 15258, Lr: 0.000210\n", "2020-04-10 19:13:32,764 Epoch 36 Step: 138300 Batch Loss: 1.821549 Tokens per Sec: 14969, Lr: 0.000210\n", "2020-04-10 19:13:47,514 Epoch 36 Step: 138400 Batch Loss: 1.711069 Tokens per Sec: 15335, Lr: 0.000210\n", "2020-04-10 19:14:02,079 Epoch 36 Step: 138500 Batch Loss: 1.739855 Tokens per Sec: 15066, Lr: 0.000210\n", "2020-04-10 19:14:16,813 Epoch 36 Step: 138600 Batch Loss: 1.627402 Tokens per Sec: 14837, Lr: 0.000210\n", "2020-04-10 19:14:31,735 Epoch 36 Step: 138700 Batch Loss: 1.973299 Tokens per Sec: 15073, Lr: 0.000210\n", "2020-04-10 19:14:46,457 Epoch 36 Step: 138800 Batch Loss: 1.854383 Tokens per Sec: 14946, Lr: 0.000210\n", "2020-04-10 19:15:01,547 Epoch 36 Step: 138900 Batch Loss: 1.723999 Tokens per Sec: 15210, Lr: 0.000210\n", "2020-04-10 19:15:16,199 Epoch 36 Step: 139000 Batch Loss: 1.495704 Tokens per Sec: 14874, Lr: 0.000210\n", "2020-04-10 19:15:34,996 Example #0\n", "2020-04-10 19:15:34,997 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:15:34,997 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:15:34,997 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:15:34,997 Example #1\n", "2020-04-10 19:15:34,997 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:15:34,997 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:15:34,998 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:15:34,998 Example #2\n", "2020-04-10 19:15:34,998 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:15:34,998 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:15:34,998 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:15:34,998 Example #3\n", "2020-04-10 19:15:34,999 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:15:34,999 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:15:34,999 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach there and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:15:34,999 Validation result (greedy) at epoch 36, step 139000: bleu: 27.72, loss: 42599.1406, ppl: 5.1893, duration: 18.7995s\n", "2020-04-10 19:15:49,856 Epoch 36 Step: 139100 Batch Loss: 1.663644 Tokens per Sec: 15115, Lr: 0.000210\n", "2020-04-10 19:16:04,672 Epoch 36 Step: 139200 Batch Loss: 1.780377 Tokens per Sec: 14937, Lr: 0.000210\n", "2020-04-10 19:16:19,677 Epoch 36 Step: 139300 Batch Loss: 1.664848 Tokens per Sec: 14954, Lr: 0.000210\n", "2020-04-10 19:16:34,397 Epoch 36 Step: 139400 Batch Loss: 1.804031 Tokens per Sec: 14944, Lr: 0.000210\n", "2020-04-10 19:16:49,090 Epoch 36 Step: 139500 Batch Loss: 1.660545 Tokens per Sec: 14685, Lr: 0.000210\n", "2020-04-10 19:17:03,911 Epoch 36 Step: 139600 Batch Loss: 1.790026 Tokens per Sec: 14724, Lr: 0.000210\n", "2020-04-10 19:17:18,710 Epoch 36 Step: 139700 Batch Loss: 1.812170 Tokens per Sec: 15187, Lr: 0.000210\n", "2020-04-10 19:17:33,690 Epoch 36 Step: 139800 Batch Loss: 1.824678 Tokens per Sec: 14939, Lr: 0.000210\n", "2020-04-10 19:17:48,689 Epoch 36 Step: 139900 Batch Loss: 1.675081 Tokens per Sec: 15305, Lr: 0.000210\n", "2020-04-10 19:18:03,513 Epoch 36 Step: 140000 Batch Loss: 1.707585 Tokens per Sec: 14729, Lr: 0.000210\n", "2020-04-10 19:18:22,053 Example #0\n", "2020-04-10 19:18:22,053 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:18:22,053 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:18:22,054 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:18:22,054 Example #1\n", "2020-04-10 19:18:22,055 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:18:22,055 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:18:22,055 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:18:22,055 Example #2\n", "2020-04-10 19:18:22,055 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:18:22,056 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:18:22,056 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:18:22,056 Example #3\n", "2020-04-10 19:18:22,056 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:18:22,056 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:18:22,057 \tHypothesis: Paul was imprisoned in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:18:22,057 Validation result (greedy) at epoch 36, step 140000: bleu: 27.86, loss: 42480.3789, ppl: 5.1655, duration: 18.5434s\n", "2020-04-10 19:18:36,930 Epoch 36 Step: 140100 Batch Loss: 1.876608 Tokens per Sec: 14600, Lr: 0.000210\n", "2020-04-10 19:18:51,799 Epoch 36 Step: 140200 Batch Loss: 1.702274 Tokens per Sec: 15250, Lr: 0.000210\n", "2020-04-10 19:19:06,677 Epoch 36 Step: 140300 Batch Loss: 1.835694 Tokens per Sec: 14996, Lr: 0.000210\n", "2020-04-10 19:19:21,459 Epoch 36 Step: 140400 Batch Loss: 1.524791 Tokens per Sec: 14984, Lr: 0.000210\n", "2020-04-10 19:19:36,211 Epoch 36 Step: 140500 Batch Loss: 1.843871 Tokens per Sec: 14759, Lr: 0.000210\n", "2020-04-10 19:19:50,967 Epoch 36 Step: 140600 Batch Loss: 1.830146 Tokens per Sec: 14947, Lr: 0.000210\n", "2020-04-10 19:20:05,921 Epoch 36 Step: 140700 Batch Loss: 1.865537 Tokens per Sec: 15141, Lr: 0.000210\n", "2020-04-10 19:20:20,706 Epoch 36 Step: 140800 Batch Loss: 1.755746 Tokens per Sec: 14671, Lr: 0.000210\n", "2020-04-10 19:20:35,482 Epoch 36 Step: 140900 Batch Loss: 1.758374 Tokens per Sec: 15293, Lr: 0.000210\n", "2020-04-10 19:20:50,399 Epoch 36 Step: 141000 Batch Loss: 1.767390 Tokens per Sec: 14747, Lr: 0.000210\n", "2020-04-10 19:21:09,068 Example #0\n", "2020-04-10 19:21:09,068 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:21:09,068 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:21:09,069 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:21:09,069 Example #1\n", "2020-04-10 19:21:09,069 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:21:09,070 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:21:09,070 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:21:09,070 Example #2\n", "2020-04-10 19:21:09,070 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:21:09,071 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:21:09,071 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:21:09,071 Example #3\n", "2020-04-10 19:21:09,071 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:21:09,072 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:21:09,072 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:21:09,072 Validation result (greedy) at epoch 36, step 141000: bleu: 27.57, loss: 42413.2617, ppl: 5.1521, duration: 18.6726s\n", "2020-04-10 19:21:23,971 Epoch 36 Step: 141100 Batch Loss: 1.841500 Tokens per Sec: 14699, Lr: 0.000210\n", "2020-04-10 19:21:38,678 Epoch 36 Step: 141200 Batch Loss: 1.919543 Tokens per Sec: 14782, Lr: 0.000210\n", "2020-04-10 19:21:53,357 Epoch 36 Step: 141300 Batch Loss: 1.804209 Tokens per Sec: 15292, Lr: 0.000210\n", "2020-04-10 19:22:08,141 Epoch 36 Step: 141400 Batch Loss: 1.547845 Tokens per Sec: 14624, Lr: 0.000210\n", "2020-04-10 19:22:23,046 Epoch 36 Step: 141500 Batch Loss: 1.415195 Tokens per Sec: 14854, Lr: 0.000210\n", "2020-04-10 19:22:37,938 Epoch 36 Step: 141600 Batch Loss: 1.736571 Tokens per Sec: 14765, Lr: 0.000210\n", "2020-04-10 19:22:52,824 Epoch 36 Step: 141700 Batch Loss: 1.924410 Tokens per Sec: 14795, Lr: 0.000210\n", "2020-04-10 19:23:07,684 Epoch 36 Step: 141800 Batch Loss: 1.897443 Tokens per Sec: 14687, Lr: 0.000210\n", "2020-04-10 19:23:16,628 Epoch 36: total training loss 6967.58\n", "2020-04-10 19:23:16,629 EPOCH 37\n", "2020-04-10 19:23:23,049 Epoch 37 Step: 141900 Batch Loss: 1.849596 Tokens per Sec: 14259, Lr: 0.000210\n", "2020-04-10 19:23:37,857 Epoch 37 Step: 142000 Batch Loss: 1.825080 Tokens per Sec: 14630, Lr: 0.000210\n", "2020-04-10 19:23:57,270 Example #0\n", "2020-04-10 19:23:57,271 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:23:57,271 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:23:57,271 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:23:57,272 Example #1\n", "2020-04-10 19:23:57,272 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:23:57,272 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:23:57,273 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:23:57,273 Example #2\n", "2020-04-10 19:23:57,273 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:23:57,273 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:23:57,274 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:23:57,274 Example #3\n", "2020-04-10 19:23:57,274 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:23:57,275 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:23:57,275 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach there and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:23:57,275 Validation result (greedy) at epoch 37, step 142000: bleu: 27.58, loss: 42567.7344, ppl: 5.1830, duration: 19.4171s\n", "2020-04-10 19:24:12,110 Epoch 37 Step: 142100 Batch Loss: 1.714003 Tokens per Sec: 14716, Lr: 0.000210\n", "2020-04-10 19:24:27,095 Epoch 37 Step: 142200 Batch Loss: 1.742399 Tokens per Sec: 15102, Lr: 0.000210\n", "2020-04-10 19:24:42,016 Epoch 37 Step: 142300 Batch Loss: 1.901577 Tokens per Sec: 14941, Lr: 0.000210\n", "2020-04-10 19:24:56,822 Epoch 37 Step: 142400 Batch Loss: 1.668399 Tokens per Sec: 15096, Lr: 0.000210\n", "2020-04-10 19:25:11,639 Epoch 37 Step: 142500 Batch Loss: 1.422196 Tokens per Sec: 14644, Lr: 0.000210\n", "2020-04-10 19:25:26,564 Epoch 37 Step: 142600 Batch Loss: 1.684385 Tokens per Sec: 14845, Lr: 0.000210\n", "2020-04-10 19:25:41,406 Epoch 37 Step: 142700 Batch Loss: 1.828943 Tokens per Sec: 15242, Lr: 0.000210\n", "2020-04-10 19:25:56,303 Epoch 37 Step: 142800 Batch Loss: 1.726525 Tokens per Sec: 14645, Lr: 0.000210\n", "2020-04-10 19:26:11,296 Epoch 37 Step: 142900 Batch Loss: 1.708169 Tokens per Sec: 15006, Lr: 0.000210\n", "2020-04-10 19:26:26,309 Epoch 37 Step: 143000 Batch Loss: 1.545355 Tokens per Sec: 14917, Lr: 0.000210\n", "2020-04-10 19:26:45,018 Example #0\n", "2020-04-10 19:26:45,019 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:26:45,019 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:26:45,019 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:26:45,019 Example #1\n", "2020-04-10 19:26:45,019 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:26:45,020 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:26:45,020 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:26:45,020 Example #2\n", "2020-04-10 19:26:45,020 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:26:45,020 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:26:45,021 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:26:45,021 Example #3\n", "2020-04-10 19:26:45,021 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:26:45,021 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:26:45,021 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:26:45,022 Validation result (greedy) at epoch 37, step 143000: bleu: 27.63, loss: 42447.7617, ppl: 5.1590, duration: 18.7120s\n", "2020-04-10 19:26:59,902 Epoch 37 Step: 143100 Batch Loss: 1.972737 Tokens per Sec: 15004, Lr: 0.000147\n", "2020-04-10 19:27:14,612 Epoch 37 Step: 143200 Batch Loss: 1.837577 Tokens per Sec: 14754, Lr: 0.000147\n", "2020-04-10 19:27:29,703 Epoch 37 Step: 143300 Batch Loss: 1.752068 Tokens per Sec: 14759, Lr: 0.000147\n", "2020-04-10 19:27:44,463 Epoch 37 Step: 143400 Batch Loss: 1.723195 Tokens per Sec: 14736, Lr: 0.000147\n", "2020-04-10 19:27:59,340 Epoch 37 Step: 143500 Batch Loss: 1.743322 Tokens per Sec: 14790, Lr: 0.000147\n", "2020-04-10 19:28:14,142 Epoch 37 Step: 143600 Batch Loss: 1.799348 Tokens per Sec: 14935, Lr: 0.000147\n", "2020-04-10 19:28:29,020 Epoch 37 Step: 143700 Batch Loss: 1.818420 Tokens per Sec: 14618, Lr: 0.000147\n", "2020-04-10 19:28:43,866 Epoch 37 Step: 143800 Batch Loss: 1.741922 Tokens per Sec: 14910, Lr: 0.000147\n", "2020-04-10 19:28:59,102 Epoch 37 Step: 143900 Batch Loss: 1.707862 Tokens per Sec: 14593, Lr: 0.000147\n", "2020-04-10 19:29:13,969 Epoch 37 Step: 144000 Batch Loss: 1.802760 Tokens per Sec: 14825, Lr: 0.000147\n", "2020-04-10 19:29:32,787 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:29:32,787 Saving new checkpoint.\n", "2020-04-10 19:29:34,087 Example #0\n", "2020-04-10 19:29:34,088 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:29:34,088 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:29:34,088 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:29:34,088 Example #1\n", "2020-04-10 19:29:34,088 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:29:34,089 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:29:34,089 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:29:34,089 Example #2\n", "2020-04-10 19:29:34,089 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:29:34,089 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:29:34,089 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:29:34,090 Example #3\n", "2020-04-10 19:29:34,090 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:29:34,090 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:29:34,090 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:29:34,090 Validation result (greedy) at epoch 37, step 144000: bleu: 27.68, loss: 42333.4102, ppl: 5.1363, duration: 20.1205s\n", "2020-04-10 19:29:49,296 Epoch 37 Step: 144100 Batch Loss: 1.793225 Tokens per Sec: 14708, Lr: 0.000147\n", "2020-04-10 19:30:04,305 Epoch 37 Step: 144200 Batch Loss: 1.976997 Tokens per Sec: 14972, Lr: 0.000147\n", "2020-04-10 19:30:19,236 Epoch 37 Step: 144300 Batch Loss: 1.805349 Tokens per Sec: 14492, Lr: 0.000147\n", "2020-04-10 19:30:34,175 Epoch 37 Step: 144400 Batch Loss: 1.782142 Tokens per Sec: 14704, Lr: 0.000147\n", "2020-04-10 19:30:48,899 Epoch 37 Step: 144500 Batch Loss: 1.748441 Tokens per Sec: 14570, Lr: 0.000147\n", "2020-04-10 19:31:03,821 Epoch 37 Step: 144600 Batch Loss: 1.634694 Tokens per Sec: 15340, Lr: 0.000147\n", "2020-04-10 19:31:18,718 Epoch 37 Step: 144700 Batch Loss: 1.658957 Tokens per Sec: 14680, Lr: 0.000147\n", "2020-04-10 19:31:33,646 Epoch 37 Step: 144800 Batch Loss: 1.762324 Tokens per Sec: 14850, Lr: 0.000147\n", "2020-04-10 19:31:48,713 Epoch 37 Step: 144900 Batch Loss: 1.853367 Tokens per Sec: 14757, Lr: 0.000147\n", "2020-04-10 19:32:03,614 Epoch 37 Step: 145000 Batch Loss: 1.893728 Tokens per Sec: 14558, Lr: 0.000147\n", "2020-04-10 19:32:21,956 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:32:21,957 Saving new checkpoint.\n", "2020-04-10 19:32:23,532 Example #0\n", "2020-04-10 19:32:23,532 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:32:23,533 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:32:23,533 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:32:23,533 Example #1\n", "2020-04-10 19:32:23,533 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:32:23,533 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:32:23,533 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:32:23,534 Example #2\n", "2020-04-10 19:32:23,534 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:32:23,534 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:32:23,534 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:32:23,534 Example #3\n", "2020-04-10 19:32:23,535 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:32:23,535 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:32:23,535 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:32:23,535 Validation result (greedy) at epoch 37, step 145000: bleu: 27.95, loss: 42215.8398, ppl: 5.1130, duration: 19.9208s\n", "2020-04-10 19:32:38,922 Epoch 37 Step: 145100 Batch Loss: 1.970743 Tokens per Sec: 14689, Lr: 0.000147\n", "2020-04-10 19:32:54,004 Epoch 37 Step: 145200 Batch Loss: 1.818663 Tokens per Sec: 14675, Lr: 0.000147\n", "2020-04-10 19:33:08,691 Epoch 37 Step: 145300 Batch Loss: 1.732975 Tokens per Sec: 14573, Lr: 0.000147\n", "2020-04-10 19:33:23,812 Epoch 37 Step: 145400 Batch Loss: 1.811179 Tokens per Sec: 14502, Lr: 0.000147\n", "2020-04-10 19:33:38,951 Epoch 37 Step: 145500 Batch Loss: 1.814540 Tokens per Sec: 14963, Lr: 0.000147\n", "2020-04-10 19:33:54,040 Epoch 37 Step: 145600 Batch Loss: 1.860169 Tokens per Sec: 14799, Lr: 0.000147\n", "2020-04-10 19:34:09,126 Epoch 37 Step: 145700 Batch Loss: 1.734676 Tokens per Sec: 14775, Lr: 0.000147\n", "2020-04-10 19:34:23,901 Epoch 37: total training loss 6925.18\n", "2020-04-10 19:34:23,902 EPOCH 38\n", "2020-04-10 19:34:24,773 Epoch 38 Step: 145800 Batch Loss: 1.766788 Tokens per Sec: 7374, Lr: 0.000147\n", "2020-04-10 19:34:39,859 Epoch 38 Step: 145900 Batch Loss: 1.593288 Tokens per Sec: 14724, Lr: 0.000147\n", "2020-04-10 19:34:54,814 Epoch 38 Step: 146000 Batch Loss: 1.632965 Tokens per Sec: 14619, Lr: 0.000147\n", "2020-04-10 19:35:13,745 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:35:13,745 Saving new checkpoint.\n", "2020-04-10 19:35:15,002 Example #0\n", "2020-04-10 19:35:15,003 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:35:15,003 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:35:15,003 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:35:15,003 Example #1\n", "2020-04-10 19:35:15,004 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:35:15,004 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:35:15,004 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:35:15,004 Example #2\n", "2020-04-10 19:35:15,005 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:35:15,005 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:35:15,005 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:35:15,005 Example #3\n", "2020-04-10 19:35:15,006 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:35:15,006 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:35:15,006 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach there and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:35:15,006 Validation result (greedy) at epoch 38, step 146000: bleu: 28.04, loss: 42150.8828, ppl: 5.1002, duration: 20.1919s\n", "2020-04-10 19:35:30,251 Epoch 38 Step: 146100 Batch Loss: 1.885786 Tokens per Sec: 14197, Lr: 0.000147\n", "2020-04-10 19:35:45,312 Epoch 38 Step: 146200 Batch Loss: 1.771078 Tokens per Sec: 14598, Lr: 0.000147\n", "2020-04-10 19:36:00,423 Epoch 38 Step: 146300 Batch Loss: 1.852669 Tokens per Sec: 14674, Lr: 0.000147\n", "2020-04-10 19:36:15,482 Epoch 38 Step: 146400 Batch Loss: 1.795224 Tokens per Sec: 15040, Lr: 0.000147\n", "2020-04-10 19:36:30,579 Epoch 38 Step: 146500 Batch Loss: 1.797860 Tokens per Sec: 15060, Lr: 0.000147\n", "2020-04-10 19:36:45,496 Epoch 38 Step: 146600 Batch Loss: 1.725888 Tokens per Sec: 14863, Lr: 0.000147\n", "2020-04-10 19:37:00,566 Epoch 38 Step: 146700 Batch Loss: 1.834639 Tokens per Sec: 14798, Lr: 0.000147\n", "2020-04-10 19:37:15,583 Epoch 38 Step: 146800 Batch Loss: 1.719008 Tokens per Sec: 15078, Lr: 0.000147\n", "2020-04-10 19:37:30,672 Epoch 38 Step: 146900 Batch Loss: 1.731377 Tokens per Sec: 15006, Lr: 0.000147\n", "2020-04-10 19:37:45,628 Epoch 38 Step: 147000 Batch Loss: 1.815374 Tokens per Sec: 14760, Lr: 0.000147\n", "2020-04-10 19:38:04,101 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:38:04,102 Saving new checkpoint.\n", "2020-04-10 19:38:05,366 Example #0\n", "2020-04-10 19:38:05,366 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:38:05,367 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:38:05,367 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:38:05,367 Example #1\n", "2020-04-10 19:38:05,367 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:38:05,368 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:38:05,368 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:38:05,368 Example #2\n", "2020-04-10 19:38:05,368 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:38:05,368 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:38:05,369 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:38:05,369 Example #3\n", "2020-04-10 19:38:05,369 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:38:05,370 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:38:05,370 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:38:05,370 Validation result (greedy) at epoch 38, step 147000: bleu: 27.79, loss: 42141.4375, ppl: 5.0983, duration: 19.7418s\n", "2020-04-10 19:38:20,532 Epoch 38 Step: 147100 Batch Loss: 1.752488 Tokens per Sec: 14444, Lr: 0.000147\n", "2020-04-10 19:38:35,468 Epoch 38 Step: 147200 Batch Loss: 1.870031 Tokens per Sec: 14786, Lr: 0.000147\n", "2020-04-10 19:38:50,685 Epoch 38 Step: 147300 Batch Loss: 1.828513 Tokens per Sec: 14778, Lr: 0.000147\n", "2020-04-10 19:39:05,465 Epoch 38 Step: 147400 Batch Loss: 1.870370 Tokens per Sec: 14600, Lr: 0.000147\n", "2020-04-10 19:39:20,612 Epoch 38 Step: 147500 Batch Loss: 1.833598 Tokens per Sec: 14874, Lr: 0.000147\n", "2020-04-10 19:39:35,488 Epoch 38 Step: 147600 Batch Loss: 1.778724 Tokens per Sec: 14261, Lr: 0.000147\n", "2020-04-10 19:39:50,461 Epoch 38 Step: 147700 Batch Loss: 1.797175 Tokens per Sec: 14819, Lr: 0.000147\n", "2020-04-10 19:40:05,513 Epoch 38 Step: 147800 Batch Loss: 1.778067 Tokens per Sec: 14743, Lr: 0.000147\n", "2020-04-10 19:40:20,327 Epoch 38 Step: 147900 Batch Loss: 1.808450 Tokens per Sec: 14921, Lr: 0.000147\n", "2020-04-10 19:40:35,290 Epoch 38 Step: 148000 Batch Loss: 1.395058 Tokens per Sec: 14822, Lr: 0.000147\n", "2020-04-10 19:40:53,814 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:40:53,815 Saving new checkpoint.\n", "2020-04-10 19:40:55,109 Example #0\n", "2020-04-10 19:40:55,109 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:40:55,109 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:40:55,110 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:40:55,110 Example #1\n", "2020-04-10 19:40:55,110 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:40:55,110 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:40:55,110 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:40:55,111 Example #2\n", "2020-04-10 19:40:55,111 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:40:55,111 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:40:55,111 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:40:55,112 Example #3\n", "2020-04-10 19:40:55,112 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:40:55,112 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:40:55,112 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:40:55,113 Validation result (greedy) at epoch 38, step 148000: bleu: 27.84, loss: 42049.1016, ppl: 5.0801, duration: 19.8221s\n", "2020-04-10 19:41:10,148 Epoch 38 Step: 148100 Batch Loss: 1.810229 Tokens per Sec: 14300, Lr: 0.000147\n", "2020-04-10 19:41:25,007 Epoch 38 Step: 148200 Batch Loss: 1.835179 Tokens per Sec: 14670, Lr: 0.000147\n", "2020-04-10 19:41:40,068 Epoch 38 Step: 148300 Batch Loss: 1.844404 Tokens per Sec: 15016, Lr: 0.000147\n", "2020-04-10 19:41:55,037 Epoch 38 Step: 148400 Batch Loss: 1.726889 Tokens per Sec: 14832, Lr: 0.000147\n", "2020-04-10 19:42:10,105 Epoch 38 Step: 148500 Batch Loss: 1.776871 Tokens per Sec: 14591, Lr: 0.000147\n", "2020-04-10 19:42:25,053 Epoch 38 Step: 148600 Batch Loss: 1.654700 Tokens per Sec: 14904, Lr: 0.000147\n", "2020-04-10 19:42:39,864 Epoch 38 Step: 148700 Batch Loss: 1.581096 Tokens per Sec: 14610, Lr: 0.000147\n", "2020-04-10 19:42:54,910 Epoch 38 Step: 148800 Batch Loss: 1.853957 Tokens per Sec: 14696, Lr: 0.000147\n", "2020-04-10 19:43:09,792 Epoch 38 Step: 148900 Batch Loss: 1.721880 Tokens per Sec: 14693, Lr: 0.000147\n", "2020-04-10 19:43:24,604 Epoch 38 Step: 149000 Batch Loss: 1.360525 Tokens per Sec: 14824, Lr: 0.000147\n", "2020-04-10 19:43:42,031 Example #0\n", "2020-04-10 19:43:42,032 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:43:42,032 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:43:42,032 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:43:42,032 Example #1\n", "2020-04-10 19:43:42,033 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:43:42,033 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:43:42,033 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:43:42,033 Example #2\n", "2020-04-10 19:43:42,033 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:43:42,034 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:43:42,034 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:43:42,034 Example #3\n", "2020-04-10 19:43:42,034 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:43:42,034 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:43:42,035 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:43:42,035 Validation result (greedy) at epoch 38, step 149000: bleu: 27.45, loss: 42138.0273, ppl: 5.0976, duration: 17.4302s\n", "2020-04-10 19:43:56,744 Epoch 38 Step: 149100 Batch Loss: 1.871661 Tokens per Sec: 14759, Lr: 0.000147\n", "2020-04-10 19:44:11,725 Epoch 38 Step: 149200 Batch Loss: 1.675974 Tokens per Sec: 14618, Lr: 0.000147\n", "2020-04-10 19:44:26,670 Epoch 38 Step: 149300 Batch Loss: 1.842420 Tokens per Sec: 14820, Lr: 0.000147\n", "2020-04-10 19:44:41,725 Epoch 38 Step: 149400 Batch Loss: 1.799986 Tokens per Sec: 15030, Lr: 0.000147\n", "2020-04-10 19:44:56,739 Epoch 38 Step: 149500 Batch Loss: 1.359932 Tokens per Sec: 14825, Lr: 0.000147\n", "2020-04-10 19:45:11,765 Epoch 38 Step: 149600 Batch Loss: 1.771360 Tokens per Sec: 14547, Lr: 0.000147\n", "2020-04-10 19:45:26,826 Epoch 38 Step: 149700 Batch Loss: 1.948306 Tokens per Sec: 14856, Lr: 0.000147\n", "2020-04-10 19:45:32,811 Epoch 38: total training loss 6894.77\n", "2020-04-10 19:45:32,811 EPOCH 39\n", "2020-04-10 19:45:42,285 Epoch 39 Step: 149800 Batch Loss: 2.004716 Tokens per Sec: 14196, Lr: 0.000147\n", "2020-04-10 19:45:57,393 Epoch 39 Step: 149900 Batch Loss: 1.663151 Tokens per Sec: 14518, Lr: 0.000147\n", "2020-04-10 19:46:12,498 Epoch 39 Step: 150000 Batch Loss: 1.668814 Tokens per Sec: 14512, Lr: 0.000147\n", "2020-04-10 19:46:31,285 Example #0\n", "2020-04-10 19:46:31,286 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:46:31,286 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:46:31,286 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:46:31,286 Example #1\n", "2020-04-10 19:46:31,286 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:46:31,287 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:46:31,287 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:46:31,288 Example #2\n", "2020-04-10 19:46:31,288 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:46:31,288 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:46:31,288 \tHypothesis: The same expression is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:46:31,288 Example #3\n", "2020-04-10 19:46:31,289 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:46:31,289 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:46:31,289 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:46:31,289 Validation result (greedy) at epoch 39, step 150000: bleu: 28.15, loss: 42191.1367, ppl: 5.1081, duration: 18.7907s\n", "2020-04-10 19:46:46,453 Epoch 39 Step: 150100 Batch Loss: 1.738666 Tokens per Sec: 14610, Lr: 0.000147\n", "2020-04-10 19:47:01,600 Epoch 39 Step: 150200 Batch Loss: 1.738945 Tokens per Sec: 14808, Lr: 0.000147\n", "2020-04-10 19:47:16,563 Epoch 39 Step: 150300 Batch Loss: 1.860638 Tokens per Sec: 14825, Lr: 0.000147\n", "2020-04-10 19:47:31,595 Epoch 39 Step: 150400 Batch Loss: 1.788365 Tokens per Sec: 14806, Lr: 0.000147\n", "2020-04-10 19:47:46,635 Epoch 39 Step: 150500 Batch Loss: 1.656994 Tokens per Sec: 14691, Lr: 0.000147\n", "2020-04-10 19:48:01,740 Epoch 39 Step: 150600 Batch Loss: 1.728383 Tokens per Sec: 14879, Lr: 0.000147\n", "2020-04-10 19:48:16,824 Epoch 39 Step: 150700 Batch Loss: 1.828620 Tokens per Sec: 14998, Lr: 0.000147\n", "2020-04-10 19:48:31,851 Epoch 39 Step: 150800 Batch Loss: 1.693596 Tokens per Sec: 14623, Lr: 0.000147\n", "2020-04-10 19:48:46,861 Epoch 39 Step: 150900 Batch Loss: 1.193616 Tokens per Sec: 14722, Lr: 0.000147\n", "2020-04-10 19:49:01,908 Epoch 39 Step: 151000 Batch Loss: 1.761581 Tokens per Sec: 14768, Lr: 0.000147\n", "2020-04-10 19:49:20,060 Example #0\n", "2020-04-10 19:49:20,061 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:49:20,061 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:49:20,061 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:49:20,061 Example #1\n", "2020-04-10 19:49:20,062 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:49:20,062 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:49:20,062 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:49:20,062 Example #2\n", "2020-04-10 19:49:20,062 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:49:20,063 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:49:20,063 \tHypothesis: The same word is mentioned at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:49:20,063 Example #3\n", "2020-04-10 19:49:20,063 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:49:20,063 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:49:20,064 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:49:20,064 Validation result (greedy) at epoch 39, step 151000: bleu: 27.60, loss: 42144.6250, ppl: 5.0989, duration: 18.1554s\n", "2020-04-10 19:49:35,072 Epoch 39 Step: 151100 Batch Loss: 1.707235 Tokens per Sec: 14692, Lr: 0.000147\n", "2020-04-10 19:49:50,082 Epoch 39 Step: 151200 Batch Loss: 1.842870 Tokens per Sec: 15023, Lr: 0.000147\n", "2020-04-10 19:50:05,014 Epoch 39 Step: 151300 Batch Loss: 1.873412 Tokens per Sec: 14816, Lr: 0.000147\n", "2020-04-10 19:50:19,980 Epoch 39 Step: 151400 Batch Loss: 1.680215 Tokens per Sec: 14802, Lr: 0.000147\n", "2020-04-10 19:50:34,859 Epoch 39 Step: 151500 Batch Loss: 1.808620 Tokens per Sec: 14465, Lr: 0.000147\n", "2020-04-10 19:50:49,673 Epoch 39 Step: 151600 Batch Loss: 1.689303 Tokens per Sec: 14991, Lr: 0.000147\n", "2020-04-10 19:51:04,657 Epoch 39 Step: 151700 Batch Loss: 1.620233 Tokens per Sec: 14829, Lr: 0.000147\n", "2020-04-10 19:51:19,877 Epoch 39 Step: 151800 Batch Loss: 1.590416 Tokens per Sec: 14922, Lr: 0.000147\n", "2020-04-10 19:51:34,788 Epoch 39 Step: 151900 Batch Loss: 1.734505 Tokens per Sec: 14420, Lr: 0.000147\n", "2020-04-10 19:51:49,632 Epoch 39 Step: 152000 Batch Loss: 1.760526 Tokens per Sec: 14665, Lr: 0.000147\n", "2020-04-10 19:52:07,711 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:52:07,711 Saving new checkpoint.\n", "2020-04-10 19:52:08,958 Example #0\n", "2020-04-10 19:52:08,959 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:52:08,959 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:52:08,960 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:52:08,960 Example #1\n", "2020-04-10 19:52:08,960 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:52:08,960 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:52:08,960 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:52:08,961 Example #2\n", "2020-04-10 19:52:08,961 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:52:08,961 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:52:08,961 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:52:08,961 Example #3\n", "2020-04-10 19:52:08,962 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:52:08,962 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:52:08,963 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:52:08,963 Validation result (greedy) at epoch 39, step 152000: bleu: 28.09, loss: 41985.5742, ppl: 5.0677, duration: 19.3314s\n", "2020-04-10 19:52:24,569 Epoch 39 Step: 152100 Batch Loss: 1.864050 Tokens per Sec: 14532, Lr: 0.000147\n", "2020-04-10 19:52:39,573 Epoch 39 Step: 152200 Batch Loss: 1.898807 Tokens per Sec: 14746, Lr: 0.000147\n", "2020-04-10 19:52:54,647 Epoch 39 Step: 152300 Batch Loss: 1.604272 Tokens per Sec: 15054, Lr: 0.000147\n", "2020-04-10 19:53:09,666 Epoch 39 Step: 152400 Batch Loss: 1.808767 Tokens per Sec: 14491, Lr: 0.000147\n", "2020-04-10 19:53:24,729 Epoch 39 Step: 152500 Batch Loss: 1.593223 Tokens per Sec: 14593, Lr: 0.000147\n", "2020-04-10 19:53:39,763 Epoch 39 Step: 152600 Batch Loss: 1.857699 Tokens per Sec: 14707, Lr: 0.000147\n", "2020-04-10 19:53:54,749 Epoch 39 Step: 152700 Batch Loss: 1.860921 Tokens per Sec: 14916, Lr: 0.000147\n", "2020-04-10 19:54:09,981 Epoch 39 Step: 152800 Batch Loss: 1.742611 Tokens per Sec: 14680, Lr: 0.000147\n", "2020-04-10 19:54:24,738 Epoch 39 Step: 152900 Batch Loss: 1.894790 Tokens per Sec: 14371, Lr: 0.000147\n", "2020-04-10 19:54:39,947 Epoch 39 Step: 153000 Batch Loss: 1.910487 Tokens per Sec: 14926, Lr: 0.000147\n", "2020-04-10 19:54:58,578 Example #0\n", "2020-04-10 19:54:58,578 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:54:58,578 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:54:58,579 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:54:58,579 Example #1\n", "2020-04-10 19:54:58,579 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:54:58,579 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:54:58,579 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 19:54:58,579 Example #2\n", "2020-04-10 19:54:58,580 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:54:58,580 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:54:58,580 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:54:58,580 Example #3\n", "2020-04-10 19:54:58,581 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:54:58,581 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:54:58,581 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:54:58,581 Validation result (greedy) at epoch 39, step 153000: bleu: 27.99, loss: 42091.9961, ppl: 5.0886, duration: 18.6337s\n", "2020-04-10 19:55:13,512 Epoch 39 Step: 153100 Batch Loss: 1.755969 Tokens per Sec: 14378, Lr: 0.000147\n", "2020-04-10 19:55:28,525 Epoch 39 Step: 153200 Batch Loss: 1.312971 Tokens per Sec: 14982, Lr: 0.000147\n", "2020-04-10 19:55:43,573 Epoch 39 Step: 153300 Batch Loss: 1.800770 Tokens per Sec: 14720, Lr: 0.000147\n", "2020-04-10 19:55:58,413 Epoch 39 Step: 153400 Batch Loss: 1.769603 Tokens per Sec: 14482, Lr: 0.000147\n", "2020-04-10 19:56:13,314 Epoch 39 Step: 153500 Batch Loss: 1.386689 Tokens per Sec: 14740, Lr: 0.000147\n", "2020-04-10 19:56:28,430 Epoch 39 Step: 153600 Batch Loss: 1.971256 Tokens per Sec: 14685, Lr: 0.000147\n", "2020-04-10 19:56:39,774 Epoch 39: total training loss 6864.17\n", "2020-04-10 19:56:39,774 EPOCH 40\n", "2020-04-10 19:56:43,929 Epoch 40 Step: 153700 Batch Loss: 1.620313 Tokens per Sec: 13532, Lr: 0.000147\n", "2020-04-10 19:56:58,838 Epoch 40 Step: 153800 Batch Loss: 1.660029 Tokens per Sec: 14873, Lr: 0.000147\n", "2020-04-10 19:57:13,850 Epoch 40 Step: 153900 Batch Loss: 1.391699 Tokens per Sec: 14611, Lr: 0.000147\n", "2020-04-10 19:57:28,787 Epoch 40 Step: 154000 Batch Loss: 1.699097 Tokens per Sec: 14896, Lr: 0.000147\n", "2020-04-10 19:57:46,795 Hooray! New best validation result [ppl]!\n", "2020-04-10 19:57:46,796 Saving new checkpoint.\n", "2020-04-10 19:57:48,132 Example #0\n", "2020-04-10 19:57:48,132 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 19:57:48,133 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 19:57:48,133 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 19:57:48,133 Example #1\n", "2020-04-10 19:57:48,133 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 19:57:48,133 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 19:57:48,134 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 19:57:48,134 Example #2\n", "2020-04-10 19:57:48,137 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 19:57:48,137 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:57:48,137 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 19:57:48,137 Example #3\n", "2020-04-10 19:57:48,138 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 19:57:48,138 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:57:48,138 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 19:57:48,139 Validation result (greedy) at epoch 40, step 154000: bleu: 27.99, loss: 41904.0234, ppl: 5.0517, duration: 19.3508s\n", "2020-04-10 19:58:03,437 Epoch 40 Step: 154100 Batch Loss: 1.769109 Tokens per Sec: 14481, Lr: 0.000147\n", "2020-04-10 19:58:18,310 Epoch 40 Step: 154200 Batch Loss: 1.803436 Tokens per Sec: 14512, Lr: 0.000147\n", "2020-04-10 19:58:33,426 Epoch 40 Step: 154300 Batch Loss: 1.789839 Tokens per Sec: 14654, Lr: 0.000147\n", "2020-04-10 19:58:48,380 Epoch 40 Step: 154400 Batch Loss: 1.849444 Tokens per Sec: 14551, Lr: 0.000147\n", "2020-04-10 19:59:03,611 Epoch 40 Step: 154500 Batch Loss: 1.674131 Tokens per Sec: 14701, Lr: 0.000147\n", "2020-04-10 19:59:18,539 Epoch 40 Step: 154600 Batch Loss: 1.799688 Tokens per Sec: 14994, Lr: 0.000147\n", "2020-04-10 19:59:33,543 Epoch 40 Step: 154700 Batch Loss: 1.608556 Tokens per Sec: 14645, Lr: 0.000147\n", "2020-04-10 19:59:48,299 Epoch 40 Step: 154800 Batch Loss: 1.693691 Tokens per Sec: 14779, Lr: 0.000147\n", "2020-04-10 20:00:03,506 Epoch 40 Step: 154900 Batch Loss: 1.696597 Tokens per Sec: 14884, Lr: 0.000147\n", "2020-04-10 20:00:18,459 Epoch 40 Step: 155000 Batch Loss: 1.752739 Tokens per Sec: 14955, Lr: 0.000147\n", "2020-04-10 20:00:36,463 Example #0\n", "2020-04-10 20:00:36,464 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:00:36,464 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:00:36,465 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:00:36,465 Example #1\n", "2020-04-10 20:00:36,465 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:00:36,465 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:00:36,466 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:00:36,466 Example #2\n", "2020-04-10 20:00:36,466 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:00:36,466 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:00:36,466 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:00:36,467 Example #3\n", "2020-04-10 20:00:36,467 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:00:36,467 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:00:36,467 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:00:36,468 Validation result (greedy) at epoch 40, step 155000: bleu: 28.26, loss: 41940.1797, ppl: 5.0588, duration: 18.0084s\n", "2020-04-10 20:00:51,280 Epoch 40 Step: 155100 Batch Loss: 1.631420 Tokens per Sec: 14630, Lr: 0.000147\n", "2020-04-10 20:01:06,459 Epoch 40 Step: 155200 Batch Loss: 1.724657 Tokens per Sec: 14752, Lr: 0.000147\n", "2020-04-10 20:01:21,463 Epoch 40 Step: 155300 Batch Loss: 1.657191 Tokens per Sec: 14785, Lr: 0.000147\n", "2020-04-10 20:01:36,671 Epoch 40 Step: 155400 Batch Loss: 1.685838 Tokens per Sec: 14818, Lr: 0.000147\n", "2020-04-10 20:01:51,708 Epoch 40 Step: 155500 Batch Loss: 1.537724 Tokens per Sec: 14657, Lr: 0.000147\n", "2020-04-10 20:02:06,760 Epoch 40 Step: 155600 Batch Loss: 1.612371 Tokens per Sec: 14671, Lr: 0.000147\n", "2020-04-10 20:02:22,011 Epoch 40 Step: 155700 Batch Loss: 1.695913 Tokens per Sec: 14449, Lr: 0.000147\n", "2020-04-10 20:02:37,029 Epoch 40 Step: 155800 Batch Loss: 1.712440 Tokens per Sec: 14663, Lr: 0.000147\n", "2020-04-10 20:02:51,952 Epoch 40 Step: 155900 Batch Loss: 1.894638 Tokens per Sec: 14954, Lr: 0.000147\n", "2020-04-10 20:03:06,943 Epoch 40 Step: 156000 Batch Loss: 1.678716 Tokens per Sec: 14773, Lr: 0.000147\n", "2020-04-10 20:03:25,306 Example #0\n", "2020-04-10 20:03:25,307 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:03:25,307 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:03:25,307 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:03:25,307 Example #1\n", "2020-04-10 20:03:25,308 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:03:25,308 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:03:25,308 \tHypothesis: That may be the point of the clergy .\n", "2020-04-10 20:03:25,308 Example #2\n", "2020-04-10 20:03:25,309 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:03:25,309 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:03:25,309 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:03:25,309 Example #3\n", "2020-04-10 20:03:25,310 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:03:25,310 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:03:25,310 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:03:25,310 Validation result (greedy) at epoch 40, step 156000: bleu: 27.66, loss: 41975.3320, ppl: 5.0657, duration: 18.3669s\n", "2020-04-10 20:03:40,303 Epoch 40 Step: 156100 Batch Loss: 1.517451 Tokens per Sec: 14815, Lr: 0.000147\n", "2020-04-10 20:03:55,383 Epoch 40 Step: 156200 Batch Loss: 1.804766 Tokens per Sec: 14649, Lr: 0.000147\n", "2020-04-10 20:04:10,552 Epoch 40 Step: 156300 Batch Loss: 1.843354 Tokens per Sec: 14907, Lr: 0.000147\n", "2020-04-10 20:04:25,681 Epoch 40 Step: 156400 Batch Loss: 1.713439 Tokens per Sec: 14489, Lr: 0.000147\n", "2020-04-10 20:04:40,957 Epoch 40 Step: 156500 Batch Loss: 1.618103 Tokens per Sec: 14941, Lr: 0.000147\n", "2020-04-10 20:04:55,875 Epoch 40 Step: 156600 Batch Loss: 1.821722 Tokens per Sec: 14470, Lr: 0.000147\n", "2020-04-10 20:05:11,169 Epoch 40 Step: 156700 Batch Loss: 1.784724 Tokens per Sec: 14447, Lr: 0.000147\n", "2020-04-10 20:05:26,195 Epoch 40 Step: 156800 Batch Loss: 1.712469 Tokens per Sec: 14771, Lr: 0.000147\n", "2020-04-10 20:05:41,369 Epoch 40 Step: 156900 Batch Loss: 1.788074 Tokens per Sec: 14845, Lr: 0.000147\n", "2020-04-10 20:05:56,276 Epoch 40 Step: 157000 Batch Loss: 1.477072 Tokens per Sec: 14597, Lr: 0.000147\n", "2020-04-10 20:06:14,164 Example #0\n", "2020-04-10 20:06:14,165 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:06:14,165 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:06:14,165 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:06:14,166 Example #1\n", "2020-04-10 20:06:14,166 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:06:14,166 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:06:14,166 \tHypothesis: That may be the point of the clergy .\n", "2020-04-10 20:06:14,167 Example #2\n", "2020-04-10 20:06:14,167 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:06:14,167 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:06:14,167 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:06:14,167 Example #3\n", "2020-04-10 20:06:14,168 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:06:14,168 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:06:14,168 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:06:14,168 Validation result (greedy) at epoch 40, step 157000: bleu: 27.98, loss: 41976.6445, ppl: 5.0659, duration: 17.8914s\n", "2020-04-10 20:06:29,305 Epoch 40 Step: 157100 Batch Loss: 1.808237 Tokens per Sec: 14913, Lr: 0.000147\n", "2020-04-10 20:06:44,182 Epoch 40 Step: 157200 Batch Loss: 1.847011 Tokens per Sec: 14399, Lr: 0.000147\n", "2020-04-10 20:06:59,256 Epoch 40 Step: 157300 Batch Loss: 1.792852 Tokens per Sec: 15068, Lr: 0.000147\n", "2020-04-10 20:07:14,062 Epoch 40 Step: 157400 Batch Loss: 1.697152 Tokens per Sec: 14826, Lr: 0.000147\n", "2020-04-10 20:07:28,893 Epoch 40 Step: 157500 Batch Loss: 1.915959 Tokens per Sec: 14665, Lr: 0.000147\n", "2020-04-10 20:07:43,799 Epoch 40 Step: 157600 Batch Loss: 1.875095 Tokens per Sec: 14969, Lr: 0.000147\n", "2020-04-10 20:07:45,168 Epoch 40: total training loss 6844.76\n", "2020-04-10 20:07:45,169 EPOCH 41\n", "2020-04-10 20:07:59,249 Epoch 41 Step: 157700 Batch Loss: 1.860001 Tokens per Sec: 14429, Lr: 0.000147\n", "2020-04-10 20:08:14,340 Epoch 41 Step: 157800 Batch Loss: 1.695773 Tokens per Sec: 14705, Lr: 0.000147\n", "2020-04-10 20:08:29,480 Epoch 41 Step: 157900 Batch Loss: 1.827198 Tokens per Sec: 14880, Lr: 0.000147\n", "2020-04-10 20:08:44,634 Epoch 41 Step: 158000 Batch Loss: 1.704221 Tokens per Sec: 14775, Lr: 0.000147\n", "2020-04-10 20:09:03,004 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:09:03,004 Saving new checkpoint.\n", "2020-04-10 20:09:04,339 Example #0\n", "2020-04-10 20:09:04,340 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:09:04,340 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:09:04,340 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:09:04,340 Example #1\n", "2020-04-10 20:09:04,341 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:09:04,341 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:09:04,341 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:09:04,341 Example #2\n", "2020-04-10 20:09:04,342 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:09:04,342 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:09:04,342 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:09:04,342 Example #3\n", "2020-04-10 20:09:04,343 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:09:04,343 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:09:04,343 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:09:04,344 Validation result (greedy) at epoch 41, step 158000: bleu: 28.04, loss: 41841.9180, ppl: 5.0396, duration: 19.7090s\n", "2020-04-10 20:09:19,531 Epoch 41 Step: 158100 Batch Loss: 1.708475 Tokens per Sec: 14297, Lr: 0.000147\n", "2020-04-10 20:09:34,494 Epoch 41 Step: 158200 Batch Loss: 1.815525 Tokens per Sec: 15130, Lr: 0.000147\n", "2020-04-10 20:09:49,513 Epoch 41 Step: 158300 Batch Loss: 1.498021 Tokens per Sec: 14760, Lr: 0.000147\n", "2020-04-10 20:10:04,226 Epoch 41 Step: 158400 Batch Loss: 1.744543 Tokens per Sec: 14659, Lr: 0.000147\n", "2020-04-10 20:10:19,382 Epoch 41 Step: 158500 Batch Loss: 1.738889 Tokens per Sec: 14499, Lr: 0.000147\n", "2020-04-10 20:10:34,354 Epoch 41 Step: 158600 Batch Loss: 1.836583 Tokens per Sec: 14448, Lr: 0.000147\n", "2020-04-10 20:10:49,346 Epoch 41 Step: 158700 Batch Loss: 1.544674 Tokens per Sec: 14900, Lr: 0.000147\n", "2020-04-10 20:11:04,399 Epoch 41 Step: 158800 Batch Loss: 1.761492 Tokens per Sec: 14888, Lr: 0.000147\n", "2020-04-10 20:11:19,256 Epoch 41 Step: 158900 Batch Loss: 1.786498 Tokens per Sec: 14741, Lr: 0.000147\n", "2020-04-10 20:11:34,201 Epoch 41 Step: 159000 Batch Loss: 1.801213 Tokens per Sec: 14793, Lr: 0.000147\n", "2020-04-10 20:11:54,437 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:11:54,438 Saving new checkpoint.\n", "2020-04-10 20:11:55,719 Example #0\n", "2020-04-10 20:11:55,720 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:11:55,721 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:11:55,721 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:11:55,721 Example #1\n", "2020-04-10 20:11:55,721 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:11:55,722 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:11:55,722 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:11:55,722 Example #2\n", "2020-04-10 20:11:55,722 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:11:55,723 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:11:55,723 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:11:55,723 Example #3\n", "2020-04-10 20:11:55,723 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:11:55,724 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:11:55,724 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:11:55,724 Validation result (greedy) at epoch 41, step 159000: bleu: 28.06, loss: 41788.9727, ppl: 5.0293, duration: 21.5223s\n", "2020-04-10 20:12:11,018 Epoch 41 Step: 159100 Batch Loss: 1.922248 Tokens per Sec: 14466, Lr: 0.000147\n", "2020-04-10 20:12:26,106 Epoch 41 Step: 159200 Batch Loss: 1.764484 Tokens per Sec: 14839, Lr: 0.000147\n", "2020-04-10 20:12:41,093 Epoch 41 Step: 159300 Batch Loss: 1.766201 Tokens per Sec: 14808, Lr: 0.000147\n", "2020-04-10 20:12:56,080 Epoch 41 Step: 159400 Batch Loss: 1.779473 Tokens per Sec: 14937, Lr: 0.000147\n", "2020-04-10 20:13:11,141 Epoch 41 Step: 159500 Batch Loss: 1.907377 Tokens per Sec: 14888, Lr: 0.000147\n", "2020-04-10 20:13:26,060 Epoch 41 Step: 159600 Batch Loss: 1.776738 Tokens per Sec: 14647, Lr: 0.000147\n", "2020-04-10 20:13:40,897 Epoch 41 Step: 159700 Batch Loss: 1.701609 Tokens per Sec: 14877, Lr: 0.000147\n", "2020-04-10 20:13:55,906 Epoch 41 Step: 159800 Batch Loss: 1.781293 Tokens per Sec: 14756, Lr: 0.000147\n", "2020-04-10 20:14:10,589 Epoch 41 Step: 159900 Batch Loss: 1.721676 Tokens per Sec: 14614, Lr: 0.000147\n", "2020-04-10 20:14:25,908 Epoch 41 Step: 160000 Batch Loss: 1.687505 Tokens per Sec: 14969, Lr: 0.000147\n", "2020-04-10 20:14:44,769 Example #0\n", "2020-04-10 20:14:44,769 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:14:44,770 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:14:44,770 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:14:44,770 Example #1\n", "2020-04-10 20:14:44,770 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:14:44,770 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:14:44,771 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:14:44,771 Example #2\n", "2020-04-10 20:14:44,771 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:14:44,771 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:14:44,771 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:14:44,771 Example #3\n", "2020-04-10 20:14:44,772 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:14:44,772 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:14:44,772 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:14:44,772 Validation result (greedy) at epoch 41, step 160000: bleu: 28.46, loss: 41868.5195, ppl: 5.0448, duration: 18.8642s\n", "2020-04-10 20:14:59,613 Epoch 41 Step: 160100 Batch Loss: 1.668472 Tokens per Sec: 15039, Lr: 0.000147\n", "2020-04-10 20:15:14,478 Epoch 41 Step: 160200 Batch Loss: 1.748871 Tokens per Sec: 14794, Lr: 0.000147\n", "2020-04-10 20:15:29,377 Epoch 41 Step: 160300 Batch Loss: 1.727837 Tokens per Sec: 14798, Lr: 0.000147\n", "2020-04-10 20:15:44,189 Epoch 41 Step: 160400 Batch Loss: 1.644132 Tokens per Sec: 14544, Lr: 0.000147\n", "2020-04-10 20:15:59,110 Epoch 41 Step: 160500 Batch Loss: 1.709664 Tokens per Sec: 14669, Lr: 0.000147\n", "2020-04-10 20:16:14,134 Epoch 41 Step: 160600 Batch Loss: 1.839776 Tokens per Sec: 15285, Lr: 0.000147\n", "2020-04-10 20:16:29,020 Epoch 41 Step: 160700 Batch Loss: 1.950714 Tokens per Sec: 14843, Lr: 0.000147\n", "2020-04-10 20:16:43,775 Epoch 41 Step: 160800 Batch Loss: 1.655847 Tokens per Sec: 14974, Lr: 0.000147\n", "2020-04-10 20:16:58,587 Epoch 41 Step: 160900 Batch Loss: 1.690058 Tokens per Sec: 14779, Lr: 0.000147\n", "2020-04-10 20:17:13,518 Epoch 41 Step: 161000 Batch Loss: 1.805732 Tokens per Sec: 14777, Lr: 0.000147\n", "2020-04-10 20:17:32,114 Example #0\n", "2020-04-10 20:17:32,115 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:17:32,115 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:17:32,115 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:17:32,115 Example #1\n", "2020-04-10 20:17:32,116 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:17:32,116 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:17:32,116 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:17:32,116 Example #2\n", "2020-04-10 20:17:32,116 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:17:32,117 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:17:32,117 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:17:32,117 Example #3\n", "2020-04-10 20:17:32,117 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:17:32,117 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:17:32,117 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:17:32,118 Validation result (greedy) at epoch 41, step 161000: bleu: 28.04, loss: 41991.6836, ppl: 5.0689, duration: 18.5990s\n", "2020-04-10 20:17:46,899 Epoch 41 Step: 161100 Batch Loss: 1.479756 Tokens per Sec: 14922, Lr: 0.000147\n", "2020-04-10 20:18:01,835 Epoch 41 Step: 161200 Batch Loss: 1.781171 Tokens per Sec: 14562, Lr: 0.000147\n", "2020-04-10 20:18:16,800 Epoch 41 Step: 161300 Batch Loss: 1.686705 Tokens per Sec: 14832, Lr: 0.000147\n", "2020-04-10 20:18:31,750 Epoch 41 Step: 161400 Batch Loss: 1.823621 Tokens per Sec: 14538, Lr: 0.000147\n", "2020-04-10 20:18:46,594 Epoch 41 Step: 161500 Batch Loss: 1.809651 Tokens per Sec: 14752, Lr: 0.000147\n", "2020-04-10 20:18:54,020 Epoch 41: total training loss 6845.94\n", "2020-04-10 20:18:54,021 EPOCH 42\n", "2020-04-10 20:19:01,879 Epoch 42 Step: 161600 Batch Loss: 1.678506 Tokens per Sec: 13979, Lr: 0.000147\n", "2020-04-10 20:19:16,548 Epoch 42 Step: 161700 Batch Loss: 1.714329 Tokens per Sec: 14692, Lr: 0.000147\n", "2020-04-10 20:19:31,492 Epoch 42 Step: 161800 Batch Loss: 1.824260 Tokens per Sec: 14622, Lr: 0.000147\n", "2020-04-10 20:19:46,542 Epoch 42 Step: 161900 Batch Loss: 1.726548 Tokens per Sec: 14495, Lr: 0.000147\n", "2020-04-10 20:20:01,329 Epoch 42 Step: 162000 Batch Loss: 1.464630 Tokens per Sec: 14650, Lr: 0.000147\n", "2020-04-10 20:20:19,079 Example #0\n", "2020-04-10 20:20:19,079 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:20:19,079 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:20:19,080 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:20:19,080 Example #1\n", "2020-04-10 20:20:19,080 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:20:19,080 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:20:19,081 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 20:20:19,081 Example #2\n", "2020-04-10 20:20:19,081 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:20:19,081 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:20:19,081 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:20:19,081 Example #3\n", "2020-04-10 20:20:19,082 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:20:19,082 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:20:19,082 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching work and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:20:19,082 Validation result (greedy) at epoch 42, step 162000: bleu: 28.29, loss: 41930.8164, ppl: 5.0570, duration: 17.7533s\n", "2020-04-10 20:20:34,062 Epoch 42 Step: 162100 Batch Loss: 1.778694 Tokens per Sec: 14904, Lr: 0.000147\n", "2020-04-10 20:20:48,983 Epoch 42 Step: 162200 Batch Loss: 1.651421 Tokens per Sec: 14480, Lr: 0.000147\n", "2020-04-10 20:21:03,737 Epoch 42 Step: 162300 Batch Loss: 1.667154 Tokens per Sec: 14785, Lr: 0.000147\n", "2020-04-10 20:21:18,764 Epoch 42 Step: 162400 Batch Loss: 1.782467 Tokens per Sec: 15249, Lr: 0.000147\n", "2020-04-10 20:21:33,600 Epoch 42 Step: 162500 Batch Loss: 1.674940 Tokens per Sec: 14405, Lr: 0.000147\n", "2020-04-10 20:21:48,626 Epoch 42 Step: 162600 Batch Loss: 1.520381 Tokens per Sec: 14836, Lr: 0.000147\n", "2020-04-10 20:22:03,604 Epoch 42 Step: 162700 Batch Loss: 1.686064 Tokens per Sec: 14902, Lr: 0.000147\n", "2020-04-10 20:22:18,577 Epoch 42 Step: 162800 Batch Loss: 1.825844 Tokens per Sec: 15059, Lr: 0.000147\n", "2020-04-10 20:22:33,380 Epoch 42 Step: 162900 Batch Loss: 1.780065 Tokens per Sec: 14672, Lr: 0.000147\n", "2020-04-10 20:22:48,303 Epoch 42 Step: 163000 Batch Loss: 1.710847 Tokens per Sec: 15074, Lr: 0.000147\n", "2020-04-10 20:23:06,055 Example #0\n", "2020-04-10 20:23:06,056 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:23:06,056 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:23:06,056 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:23:06,056 Example #1\n", "2020-04-10 20:23:06,057 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:23:06,057 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:23:06,057 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 20:23:06,057 Example #2\n", "2020-04-10 20:23:06,058 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:23:06,058 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:23:06,058 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:23:06,058 Example #3\n", "2020-04-10 20:23:06,059 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:23:06,059 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:23:06,059 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:23:06,059 Validation result (greedy) at epoch 42, step 163000: bleu: 27.96, loss: 41978.9453, ppl: 5.0664, duration: 17.7555s\n", "2020-04-10 20:23:20,973 Epoch 42 Step: 163100 Batch Loss: 1.478251 Tokens per Sec: 14956, Lr: 0.000147\n", "2020-04-10 20:23:35,854 Epoch 42 Step: 163200 Batch Loss: 1.713815 Tokens per Sec: 14889, Lr: 0.000147\n", "2020-04-10 20:23:50,832 Epoch 42 Step: 163300 Batch Loss: 1.699358 Tokens per Sec: 15050, Lr: 0.000147\n", "2020-04-10 20:24:05,692 Epoch 42 Step: 163400 Batch Loss: 1.803541 Tokens per Sec: 14804, Lr: 0.000147\n", "2020-04-10 20:24:20,714 Epoch 42 Step: 163500 Batch Loss: 1.299862 Tokens per Sec: 14791, Lr: 0.000147\n", "2020-04-10 20:24:35,560 Epoch 42 Step: 163600 Batch Loss: 1.905559 Tokens per Sec: 14957, Lr: 0.000147\n", "2020-04-10 20:24:50,338 Epoch 42 Step: 163700 Batch Loss: 1.712925 Tokens per Sec: 15221, Lr: 0.000147\n", "2020-04-10 20:25:05,216 Epoch 42 Step: 163800 Batch Loss: 1.831139 Tokens per Sec: 14721, Lr: 0.000147\n", "2020-04-10 20:25:20,048 Epoch 42 Step: 163900 Batch Loss: 1.703192 Tokens per Sec: 14975, Lr: 0.000147\n", "2020-04-10 20:25:34,855 Epoch 42 Step: 164000 Batch Loss: 1.780314 Tokens per Sec: 14769, Lr: 0.000147\n", "2020-04-10 20:25:53,127 Example #0\n", "2020-04-10 20:25:53,131 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:25:53,131 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:25:53,131 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:25:53,131 Example #1\n", "2020-04-10 20:25:53,132 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:25:53,132 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:25:53,132 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 20:25:53,133 Example #2\n", "2020-04-10 20:25:53,134 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:25:53,134 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:25:53,135 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:25:53,135 Example #3\n", "2020-04-10 20:25:53,135 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:25:53,136 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:25:53,136 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:25:53,136 Validation result (greedy) at epoch 42, step 164000: bleu: 28.18, loss: 41888.6367, ppl: 5.0487, duration: 18.2807s\n", "2020-04-10 20:26:07,945 Epoch 42 Step: 164100 Batch Loss: 1.674625 Tokens per Sec: 15004, Lr: 0.000147\n", "2020-04-10 20:26:22,609 Epoch 42 Step: 164200 Batch Loss: 1.668052 Tokens per Sec: 14910, Lr: 0.000147\n", "2020-04-10 20:26:37,486 Epoch 42 Step: 164300 Batch Loss: 1.579221 Tokens per Sec: 14935, Lr: 0.000147\n", "2020-04-10 20:26:52,387 Epoch 42 Step: 164400 Batch Loss: 1.777146 Tokens per Sec: 14914, Lr: 0.000147\n", "2020-04-10 20:27:07,079 Epoch 42 Step: 164500 Batch Loss: 1.773932 Tokens per Sec: 14951, Lr: 0.000147\n", "2020-04-10 20:27:21,746 Epoch 42 Step: 164600 Batch Loss: 1.707162 Tokens per Sec: 14794, Lr: 0.000147\n", "2020-04-10 20:27:36,720 Epoch 42 Step: 164700 Batch Loss: 1.819339 Tokens per Sec: 15208, Lr: 0.000147\n", "2020-04-10 20:27:51,576 Epoch 42 Step: 164800 Batch Loss: 1.646407 Tokens per Sec: 14640, Lr: 0.000147\n", "2020-04-10 20:28:06,534 Epoch 42 Step: 164900 Batch Loss: 1.878720 Tokens per Sec: 14565, Lr: 0.000147\n", "2020-04-10 20:28:21,306 Epoch 42 Step: 165000 Batch Loss: 1.717915 Tokens per Sec: 14760, Lr: 0.000147\n", "2020-04-10 20:28:39,528 Example #0\n", "2020-04-10 20:28:39,529 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:28:39,529 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:28:39,529 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:28:39,530 Example #1\n", "2020-04-10 20:28:39,530 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:28:39,530 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:28:39,530 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 20:28:39,530 Example #2\n", "2020-04-10 20:28:39,531 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:28:39,531 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:28:39,531 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:28:39,531 Example #3\n", "2020-04-10 20:28:39,531 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:28:39,532 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:28:39,532 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:28:39,532 Validation result (greedy) at epoch 42, step 165000: bleu: 28.09, loss: 41790.9336, ppl: 5.0297, duration: 18.2257s\n", "2020-04-10 20:28:54,266 Epoch 42 Step: 165100 Batch Loss: 1.810147 Tokens per Sec: 14928, Lr: 0.000103\n", "2020-04-10 20:29:09,079 Epoch 42 Step: 165200 Batch Loss: 1.844609 Tokens per Sec: 14729, Lr: 0.000103\n", "2020-04-10 20:29:24,148 Epoch 42 Step: 165300 Batch Loss: 1.825577 Tokens per Sec: 14898, Lr: 0.000103\n", "2020-04-10 20:29:38,867 Epoch 42 Step: 165400 Batch Loss: 1.736954 Tokens per Sec: 15179, Lr: 0.000103\n", "2020-04-10 20:29:53,054 Epoch 42: total training loss 6843.39\n", "2020-04-10 20:29:53,055 EPOCH 43\n", "2020-04-10 20:29:53,885 Epoch 43 Step: 165500 Batch Loss: 1.756134 Tokens per Sec: 6206, Lr: 0.000103\n", "2020-04-10 20:30:08,876 Epoch 43 Step: 165600 Batch Loss: 1.786114 Tokens per Sec: 14802, Lr: 0.000103\n", "2020-04-10 20:30:23,720 Epoch 43 Step: 165700 Batch Loss: 1.724232 Tokens per Sec: 14612, Lr: 0.000103\n", "2020-04-10 20:30:38,685 Epoch 43 Step: 165800 Batch Loss: 1.771055 Tokens per Sec: 14786, Lr: 0.000103\n", "2020-04-10 20:30:53,651 Epoch 43 Step: 165900 Batch Loss: 1.791495 Tokens per Sec: 14447, Lr: 0.000103\n", "2020-04-10 20:31:08,738 Epoch 43 Step: 166000 Batch Loss: 1.669464 Tokens per Sec: 14618, Lr: 0.000103\n", "2020-04-10 20:31:27,054 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:31:27,054 Saving new checkpoint.\n", "2020-04-10 20:31:28,388 Example #0\n", "2020-04-10 20:31:28,389 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:31:28,389 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:31:28,389 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:31:28,389 Example #1\n", "2020-04-10 20:31:28,389 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:31:28,390 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:31:28,390 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 20:31:28,390 Example #2\n", "2020-04-10 20:31:28,390 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:31:28,390 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:31:28,391 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:31:28,391 Example #3\n", "2020-04-10 20:31:28,391 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:31:28,392 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:31:28,392 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:31:28,392 Validation result (greedy) at epoch 43, step 166000: bleu: 27.99, loss: 41756.0352, ppl: 5.0229, duration: 19.6537s\n", "2020-04-10 20:31:44,022 Epoch 43 Step: 166100 Batch Loss: 1.670631 Tokens per Sec: 14167, Lr: 0.000103\n", "2020-04-10 20:31:58,954 Epoch 43 Step: 166200 Batch Loss: 1.810021 Tokens per Sec: 14837, Lr: 0.000103\n", "2020-04-10 20:32:13,768 Epoch 43 Step: 166300 Batch Loss: 1.892692 Tokens per Sec: 14756, Lr: 0.000103\n", "2020-04-10 20:32:28,857 Epoch 43 Step: 166400 Batch Loss: 1.457828 Tokens per Sec: 15155, Lr: 0.000103\n", "2020-04-10 20:32:43,628 Epoch 43 Step: 166500 Batch Loss: 1.716182 Tokens per Sec: 14841, Lr: 0.000103\n", "2020-04-10 20:32:58,662 Epoch 43 Step: 166600 Batch Loss: 1.616003 Tokens per Sec: 14947, Lr: 0.000103\n", "2020-04-10 20:33:13,446 Epoch 43 Step: 166700 Batch Loss: 1.842140 Tokens per Sec: 14778, Lr: 0.000103\n", "2020-04-10 20:33:28,500 Epoch 43 Step: 166800 Batch Loss: 1.777125 Tokens per Sec: 15239, Lr: 0.000103\n", "2020-04-10 20:33:43,445 Epoch 43 Step: 166900 Batch Loss: 1.867436 Tokens per Sec: 14603, Lr: 0.000103\n", "2020-04-10 20:33:58,202 Epoch 43 Step: 167000 Batch Loss: 1.645201 Tokens per Sec: 14670, Lr: 0.000103\n", "2020-04-10 20:34:16,309 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:34:16,309 Saving new checkpoint.\n", "2020-04-10 20:34:17,554 Example #0\n", "2020-04-10 20:34:17,554 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:34:17,555 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:34:17,555 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:34:17,555 Example #1\n", "2020-04-10 20:34:17,555 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:34:17,555 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:34:17,555 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:34:17,556 Example #2\n", "2020-04-10 20:34:17,556 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:34:17,556 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:34:17,556 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:34:17,556 Example #3\n", "2020-04-10 20:34:17,557 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:34:17,557 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:34:17,557 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:34:17,557 Validation result (greedy) at epoch 43, step 167000: bleu: 28.12, loss: 41727.3906, ppl: 5.0174, duration: 19.3547s\n", "2020-04-10 20:34:32,621 Epoch 43 Step: 167100 Batch Loss: 1.739502 Tokens per Sec: 14525, Lr: 0.000103\n", "2020-04-10 20:34:47,367 Epoch 43 Step: 167200 Batch Loss: 1.555078 Tokens per Sec: 15056, Lr: 0.000103\n", "2020-04-10 20:35:02,395 Epoch 43 Step: 167300 Batch Loss: 1.678675 Tokens per Sec: 14896, Lr: 0.000103\n", "2020-04-10 20:35:17,159 Epoch 43 Step: 167400 Batch Loss: 1.812660 Tokens per Sec: 14584, Lr: 0.000103\n", "2020-04-10 20:35:32,183 Epoch 43 Step: 167500 Batch Loss: 1.740245 Tokens per Sec: 15270, Lr: 0.000103\n", "2020-04-10 20:35:46,991 Epoch 43 Step: 167600 Batch Loss: 1.710286 Tokens per Sec: 14841, Lr: 0.000103\n", "2020-04-10 20:36:01,898 Epoch 43 Step: 167700 Batch Loss: 1.763438 Tokens per Sec: 14564, Lr: 0.000103\n", "2020-04-10 20:36:16,883 Epoch 43 Step: 167800 Batch Loss: 1.875262 Tokens per Sec: 14684, Lr: 0.000103\n", "2020-04-10 20:36:31,838 Epoch 43 Step: 167900 Batch Loss: 1.499489 Tokens per Sec: 14769, Lr: 0.000103\n", "2020-04-10 20:36:47,060 Epoch 43 Step: 168000 Batch Loss: 1.700347 Tokens per Sec: 14659, Lr: 0.000103\n", "2020-04-10 20:37:05,363 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:37:05,363 Saving new checkpoint.\n", "2020-04-10 20:37:06,622 Example #0\n", "2020-04-10 20:37:06,623 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:37:06,623 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:37:06,623 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:37:06,623 Example #1\n", "2020-04-10 20:37:06,624 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:37:06,624 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:37:06,624 \tHypothesis: That may be the point of the clergy .\n", "2020-04-10 20:37:06,624 Example #2\n", "2020-04-10 20:37:06,624 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:37:06,624 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:37:06,625 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:37:06,625 Example #3\n", "2020-04-10 20:37:06,625 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:37:06,625 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:37:06,625 \tHypothesis: Paul was imprisoned in his home for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:37:06,626 Validation result (greedy) at epoch 43, step 168000: bleu: 28.53, loss: 41700.3672, ppl: 5.0121, duration: 19.5649s\n", "2020-04-10 20:37:21,892 Epoch 43 Step: 168100 Batch Loss: 1.699857 Tokens per Sec: 14844, Lr: 0.000103\n", "2020-04-10 20:37:36,592 Epoch 43 Step: 168200 Batch Loss: 1.755550 Tokens per Sec: 14745, Lr: 0.000103\n", "2020-04-10 20:37:51,375 Epoch 43 Step: 168300 Batch Loss: 1.339924 Tokens per Sec: 15090, Lr: 0.000103\n", "2020-04-10 20:38:06,280 Epoch 43 Step: 168400 Batch Loss: 1.721450 Tokens per Sec: 14943, Lr: 0.000103\n", "2020-04-10 20:38:21,121 Epoch 43 Step: 168500 Batch Loss: 1.495946 Tokens per Sec: 14826, Lr: 0.000103\n", "2020-04-10 20:38:35,988 Epoch 43 Step: 168600 Batch Loss: 1.871583 Tokens per Sec: 14681, Lr: 0.000103\n", "2020-04-10 20:38:50,890 Epoch 43 Step: 168700 Batch Loss: 1.697095 Tokens per Sec: 14827, Lr: 0.000103\n", "2020-04-10 20:39:05,533 Epoch 43 Step: 168800 Batch Loss: 1.714641 Tokens per Sec: 14773, Lr: 0.000103\n", "2020-04-10 20:39:20,231 Epoch 43 Step: 168900 Batch Loss: 1.723881 Tokens per Sec: 14846, Lr: 0.000103\n", "2020-04-10 20:39:35,084 Epoch 43 Step: 169000 Batch Loss: 1.654631 Tokens per Sec: 14564, Lr: 0.000103\n", "2020-04-10 20:39:53,753 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:39:53,754 Saving new checkpoint.\n", "2020-04-10 20:39:55,036 Example #0\n", "2020-04-10 20:39:55,036 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:39:55,036 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:39:55,037 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:39:55,037 Example #1\n", "2020-04-10 20:39:55,037 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:39:55,037 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:39:55,038 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:39:55,038 Example #2\n", "2020-04-10 20:39:55,038 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:39:55,038 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:39:55,038 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:39:55,039 Example #3\n", "2020-04-10 20:39:55,039 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:39:55,039 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:39:55,040 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:39:55,040 Validation result (greedy) at epoch 43, step 169000: bleu: 28.36, loss: 41608.4297, ppl: 4.9943, duration: 19.9553s\n", "2020-04-10 20:40:10,666 Epoch 43 Step: 169100 Batch Loss: 1.790330 Tokens per Sec: 14601, Lr: 0.000103\n", "2020-04-10 20:40:25,552 Epoch 43 Step: 169200 Batch Loss: 1.613738 Tokens per Sec: 14944, Lr: 0.000103\n", "2020-04-10 20:40:40,308 Epoch 43 Step: 169300 Batch Loss: 1.675181 Tokens per Sec: 14829, Lr: 0.000103\n", "2020-04-10 20:40:55,085 Epoch 43 Step: 169400 Batch Loss: 1.763705 Tokens per Sec: 15051, Lr: 0.000103\n", "2020-04-10 20:41:01,273 Epoch 43: total training loss 6795.86\n", "2020-04-10 20:41:01,273 EPOCH 44\n", "2020-04-10 20:41:10,529 Epoch 44 Step: 169500 Batch Loss: 1.705155 Tokens per Sec: 14239, Lr: 0.000103\n", "2020-04-10 20:41:25,346 Epoch 44 Step: 169600 Batch Loss: 1.821911 Tokens per Sec: 15065, Lr: 0.000103\n", "2020-04-10 20:41:40,119 Epoch 44 Step: 169700 Batch Loss: 1.930400 Tokens per Sec: 14976, Lr: 0.000103\n", "2020-04-10 20:41:54,838 Epoch 44 Step: 169800 Batch Loss: 1.687707 Tokens per Sec: 15270, Lr: 0.000103\n", "2020-04-10 20:42:09,729 Epoch 44 Step: 169900 Batch Loss: 2.071417 Tokens per Sec: 15344, Lr: 0.000103\n", "2020-04-10 20:42:24,644 Epoch 44 Step: 170000 Batch Loss: 1.756423 Tokens per Sec: 14969, Lr: 0.000103\n", "2020-04-10 20:42:43,058 Example #0\n", "2020-04-10 20:42:43,059 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:42:43,060 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:42:43,060 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:42:43,060 Example #1\n", "2020-04-10 20:42:43,060 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:42:43,061 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:42:43,061 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:42:43,061 Example #2\n", "2020-04-10 20:42:43,061 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:42:43,061 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:42:43,062 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:42:43,062 Example #3\n", "2020-04-10 20:42:43,062 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:42:43,062 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:42:43,063 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:42:43,063 Validation result (greedy) at epoch 44, step 170000: bleu: 28.21, loss: 41728.5508, ppl: 5.0176, duration: 18.4180s\n", "2020-04-10 20:42:57,973 Epoch 44 Step: 170100 Batch Loss: 1.878137 Tokens per Sec: 14695, Lr: 0.000103\n", "2020-04-10 20:43:12,661 Epoch 44 Step: 170200 Batch Loss: 1.349055 Tokens per Sec: 14794, Lr: 0.000103\n", "2020-04-10 20:43:27,709 Epoch 44 Step: 170300 Batch Loss: 1.638116 Tokens per Sec: 14592, Lr: 0.000103\n", "2020-04-10 20:43:42,597 Epoch 44 Step: 170400 Batch Loss: 1.820218 Tokens per Sec: 15227, Lr: 0.000103\n", "2020-04-10 20:43:57,340 Epoch 44 Step: 170500 Batch Loss: 1.841801 Tokens per Sec: 14642, Lr: 0.000103\n", "2020-04-10 20:44:12,216 Epoch 44 Step: 170600 Batch Loss: 1.770010 Tokens per Sec: 14731, Lr: 0.000103\n", "2020-04-10 20:44:27,297 Epoch 44 Step: 170700 Batch Loss: 1.683545 Tokens per Sec: 14646, Lr: 0.000103\n", "2020-04-10 20:44:42,199 Epoch 44 Step: 170800 Batch Loss: 1.777905 Tokens per Sec: 15019, Lr: 0.000103\n", "2020-04-10 20:44:57,166 Epoch 44 Step: 170900 Batch Loss: 1.572130 Tokens per Sec: 14980, Lr: 0.000103\n", "2020-04-10 20:45:12,039 Epoch 44 Step: 171000 Batch Loss: 1.710722 Tokens per Sec: 14669, Lr: 0.000103\n", "2020-04-10 20:45:30,484 Example #0\n", "2020-04-10 20:45:30,485 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:45:30,485 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:45:30,485 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:45:30,485 Example #1\n", "2020-04-10 20:45:30,486 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:45:30,486 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:45:30,486 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:45:30,486 Example #2\n", "2020-04-10 20:45:30,486 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:45:30,487 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:45:30,487 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:45:30,487 Example #3\n", "2020-04-10 20:45:30,487 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:45:30,487 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:45:30,487 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:45:30,488 Validation result (greedy) at epoch 44, step 171000: bleu: 28.29, loss: 41613.1953, ppl: 4.9953, duration: 18.4483s\n", "2020-04-10 20:45:45,520 Epoch 44 Step: 171100 Batch Loss: 1.791796 Tokens per Sec: 14784, Lr: 0.000103\n", "2020-04-10 20:46:00,276 Epoch 44 Step: 171200 Batch Loss: 1.756212 Tokens per Sec: 14723, Lr: 0.000103\n", "2020-04-10 20:46:15,104 Epoch 44 Step: 171300 Batch Loss: 1.821581 Tokens per Sec: 14651, Lr: 0.000103\n", "2020-04-10 20:46:29,862 Epoch 44 Step: 171400 Batch Loss: 1.652775 Tokens per Sec: 14481, Lr: 0.000103\n", "2020-04-10 20:46:44,548 Epoch 44 Step: 171500 Batch Loss: 1.750425 Tokens per Sec: 15141, Lr: 0.000103\n", "2020-04-10 20:46:59,300 Epoch 44 Step: 171600 Batch Loss: 1.747127 Tokens per Sec: 14867, Lr: 0.000103\n", "2020-04-10 20:47:13,949 Epoch 44 Step: 171700 Batch Loss: 1.387868 Tokens per Sec: 14858, Lr: 0.000103\n", "2020-04-10 20:47:28,699 Epoch 44 Step: 171800 Batch Loss: 1.725035 Tokens per Sec: 14799, Lr: 0.000103\n", "2020-04-10 20:47:43,430 Epoch 44 Step: 171900 Batch Loss: 1.737340 Tokens per Sec: 15279, Lr: 0.000103\n", "2020-04-10 20:47:58,052 Epoch 44 Step: 172000 Batch Loss: 1.772740 Tokens per Sec: 14731, Lr: 0.000103\n", "2020-04-10 20:48:16,111 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:48:16,111 Saving new checkpoint.\n", "2020-04-10 20:48:17,343 Example #0\n", "2020-04-10 20:48:17,344 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:48:17,344 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:48:17,344 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:48:17,344 Example #1\n", "2020-04-10 20:48:17,345 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:48:17,345 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:48:17,345 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:48:17,345 Example #2\n", "2020-04-10 20:48:17,346 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:48:17,346 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:48:17,346 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:48:17,346 Example #3\n", "2020-04-10 20:48:17,347 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:48:17,347 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:48:17,347 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:48:17,347 Validation result (greedy) at epoch 44, step 172000: bleu: 28.29, loss: 41608.0977, ppl: 4.9943, duration: 19.2943s\n", "2020-04-10 20:48:32,348 Epoch 44 Step: 172100 Batch Loss: 1.519690 Tokens per Sec: 14660, Lr: 0.000103\n", "2020-04-10 20:48:47,127 Epoch 44 Step: 172200 Batch Loss: 1.777679 Tokens per Sec: 14991, Lr: 0.000103\n", "2020-04-10 20:49:01,773 Epoch 44 Step: 172300 Batch Loss: 1.752909 Tokens per Sec: 14747, Lr: 0.000103\n", "2020-04-10 20:49:16,652 Epoch 44 Step: 172400 Batch Loss: 1.790607 Tokens per Sec: 14624, Lr: 0.000103\n", "2020-04-10 20:49:31,821 Epoch 44 Step: 172500 Batch Loss: 1.776338 Tokens per Sec: 15194, Lr: 0.000103\n", "2020-04-10 20:49:46,568 Epoch 44 Step: 172600 Batch Loss: 1.810423 Tokens per Sec: 15147, Lr: 0.000103\n", "2020-04-10 20:50:01,251 Epoch 44 Step: 172700 Batch Loss: 1.789568 Tokens per Sec: 15103, Lr: 0.000103\n", "2020-04-10 20:50:15,866 Epoch 44 Step: 172800 Batch Loss: 1.714452 Tokens per Sec: 14790, Lr: 0.000103\n", "2020-04-10 20:50:30,834 Epoch 44 Step: 172900 Batch Loss: 1.643234 Tokens per Sec: 14989, Lr: 0.000103\n", "2020-04-10 20:50:45,578 Epoch 44 Step: 173000 Batch Loss: 1.978227 Tokens per Sec: 15050, Lr: 0.000103\n", "2020-04-10 20:51:03,880 Example #0\n", "2020-04-10 20:51:03,881 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:51:03,881 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:51:03,881 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:51:03,882 Example #1\n", "2020-04-10 20:51:03,882 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:51:03,885 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:51:03,886 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 20:51:03,886 Example #2\n", "2020-04-10 20:51:03,886 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:51:03,886 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:51:03,887 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:51:03,887 Example #3\n", "2020-04-10 20:51:03,888 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:51:03,889 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:51:03,889 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:51:03,889 Validation result (greedy) at epoch 44, step 173000: bleu: 28.07, loss: 41614.4961, ppl: 4.9955, duration: 18.3101s\n", "2020-04-10 20:51:18,668 Epoch 44 Step: 173100 Batch Loss: 1.721369 Tokens per Sec: 15095, Lr: 0.000103\n", "2020-04-10 20:51:33,262 Epoch 44 Step: 173200 Batch Loss: 1.635229 Tokens per Sec: 15098, Lr: 0.000103\n", "2020-04-10 20:51:48,018 Epoch 44 Step: 173300 Batch Loss: 1.781441 Tokens per Sec: 14993, Lr: 0.000103\n", "2020-04-10 20:52:00,712 Epoch 44: total training loss 6781.80\n", "2020-04-10 20:52:00,713 EPOCH 45\n", "2020-04-10 20:52:03,243 Epoch 45 Step: 173400 Batch Loss: 1.821962 Tokens per Sec: 12681, Lr: 0.000103\n", "2020-04-10 20:52:18,022 Epoch 45 Step: 173500 Batch Loss: 1.859399 Tokens per Sec: 15020, Lr: 0.000103\n", "2020-04-10 20:52:32,956 Epoch 45 Step: 173600 Batch Loss: 1.817131 Tokens per Sec: 14832, Lr: 0.000103\n", "2020-04-10 20:52:47,520 Epoch 45 Step: 173700 Batch Loss: 1.949518 Tokens per Sec: 15284, Lr: 0.000103\n", "2020-04-10 20:53:02,203 Epoch 45 Step: 173800 Batch Loss: 1.884957 Tokens per Sec: 14457, Lr: 0.000103\n", "2020-04-10 20:53:16,949 Epoch 45 Step: 173900 Batch Loss: 1.879779 Tokens per Sec: 14931, Lr: 0.000103\n", "2020-04-10 20:53:31,714 Epoch 45 Step: 174000 Batch Loss: 1.640406 Tokens per Sec: 14804, Lr: 0.000103\n", "2020-04-10 20:53:49,847 Example #0\n", "2020-04-10 20:53:49,848 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:53:49,848 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:53:49,848 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:53:49,848 Example #1\n", "2020-04-10 20:53:49,849 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:53:49,849 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:53:49,849 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 20:53:49,849 Example #2\n", "2020-04-10 20:53:49,849 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:53:49,850 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:53:49,850 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:53:49,850 Example #3\n", "2020-04-10 20:53:49,850 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:53:49,850 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:53:49,850 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:53:49,851 Validation result (greedy) at epoch 45, step 174000: bleu: 28.34, loss: 41609.6094, ppl: 4.9946, duration: 18.1364s\n", "2020-04-10 20:54:04,629 Epoch 45 Step: 174100 Batch Loss: 1.801222 Tokens per Sec: 14879, Lr: 0.000103\n", "2020-04-10 20:54:19,400 Epoch 45 Step: 174200 Batch Loss: 1.718546 Tokens per Sec: 15200, Lr: 0.000103\n", "2020-04-10 20:54:34,402 Epoch 45 Step: 174300 Batch Loss: 1.389591 Tokens per Sec: 15118, Lr: 0.000103\n", "2020-04-10 20:54:49,056 Epoch 45 Step: 174400 Batch Loss: 1.614181 Tokens per Sec: 14629, Lr: 0.000103\n", "2020-04-10 20:55:03,895 Epoch 45 Step: 174500 Batch Loss: 1.633805 Tokens per Sec: 14826, Lr: 0.000103\n", "2020-04-10 20:55:18,473 Epoch 45 Step: 174600 Batch Loss: 1.552369 Tokens per Sec: 14921, Lr: 0.000103\n", "2020-04-10 20:55:33,504 Epoch 45 Step: 174700 Batch Loss: 1.833470 Tokens per Sec: 14975, Lr: 0.000103\n", "2020-04-10 20:55:48,147 Epoch 45 Step: 174800 Batch Loss: 1.836236 Tokens per Sec: 14711, Lr: 0.000103\n", "2020-04-10 20:56:02,996 Epoch 45 Step: 174900 Batch Loss: 1.683047 Tokens per Sec: 14845, Lr: 0.000103\n", "2020-04-10 20:56:17,551 Epoch 45 Step: 175000 Batch Loss: 1.969172 Tokens per Sec: 14687, Lr: 0.000103\n", "2020-04-10 20:56:35,661 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:56:35,662 Saving new checkpoint.\n", "2020-04-10 20:56:36,992 Example #0\n", "2020-04-10 20:56:36,992 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:56:36,993 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:56:36,993 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:56:36,993 Example #1\n", "2020-04-10 20:56:36,993 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:56:36,994 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:56:36,994 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 20:56:36,994 Example #2\n", "2020-04-10 20:56:36,994 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:56:36,994 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:56:36,995 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:56:36,995 Example #3\n", "2020-04-10 20:56:36,995 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:56:36,996 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:56:36,996 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:56:36,996 Validation result (greedy) at epoch 45, step 175000: bleu: 28.29, loss: 41582.9141, ppl: 4.9894, duration: 19.4449s\n", "2020-04-10 20:56:52,293 Epoch 45 Step: 175100 Batch Loss: 1.503335 Tokens per Sec: 14426, Lr: 0.000103\n", "2020-04-10 20:57:07,486 Epoch 45 Step: 175200 Batch Loss: 1.810423 Tokens per Sec: 14763, Lr: 0.000103\n", "2020-04-10 20:57:22,357 Epoch 45 Step: 175300 Batch Loss: 1.751563 Tokens per Sec: 14793, Lr: 0.000103\n", "2020-04-10 20:57:37,134 Epoch 45 Step: 175400 Batch Loss: 1.614820 Tokens per Sec: 14761, Lr: 0.000103\n", "2020-04-10 20:57:52,118 Epoch 45 Step: 175500 Batch Loss: 1.768399 Tokens per Sec: 15001, Lr: 0.000103\n", "2020-04-10 20:58:07,115 Epoch 45 Step: 175600 Batch Loss: 1.751233 Tokens per Sec: 14701, Lr: 0.000103\n", "2020-04-10 20:58:22,251 Epoch 45 Step: 175700 Batch Loss: 1.747193 Tokens per Sec: 15000, Lr: 0.000103\n", "2020-04-10 20:58:37,250 Epoch 45 Step: 175800 Batch Loss: 1.686442 Tokens per Sec: 14588, Lr: 0.000103\n", "2020-04-10 20:58:52,369 Epoch 45 Step: 175900 Batch Loss: 1.491812 Tokens per Sec: 15325, Lr: 0.000103\n", "2020-04-10 20:59:07,355 Epoch 45 Step: 176000 Batch Loss: 1.755553 Tokens per Sec: 15027, Lr: 0.000103\n", "2020-04-10 20:59:25,700 Hooray! New best validation result [ppl]!\n", "2020-04-10 20:59:25,701 Saving new checkpoint.\n", "2020-04-10 20:59:26,997 Example #0\n", "2020-04-10 20:59:26,998 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 20:59:26,998 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 20:59:26,998 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 20:59:26,998 Example #1\n", "2020-04-10 20:59:26,999 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 20:59:26,999 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 20:59:26,999 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 20:59:26,999 Example #2\n", "2020-04-10 20:59:27,000 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 20:59:27,000 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:59:27,000 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 20:59:27,000 Example #3\n", "2020-04-10 20:59:27,000 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 20:59:27,001 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:59:27,001 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 20:59:27,001 Validation result (greedy) at epoch 45, step 176000: bleu: 28.11, loss: 41521.3164, ppl: 4.9775, duration: 19.6454s\n", "2020-04-10 20:59:42,178 Epoch 45 Step: 176100 Batch Loss: 1.649777 Tokens per Sec: 14362, Lr: 0.000103\n", "2020-04-10 20:59:57,032 Epoch 45 Step: 176200 Batch Loss: 1.545659 Tokens per Sec: 14487, Lr: 0.000103\n", "2020-04-10 21:00:11,916 Epoch 45 Step: 176300 Batch Loss: 1.726795 Tokens per Sec: 14800, Lr: 0.000103\n", "2020-04-10 21:00:26,941 Epoch 45 Step: 176400 Batch Loss: 1.742022 Tokens per Sec: 14804, Lr: 0.000103\n", "2020-04-10 21:00:41,828 Epoch 45 Step: 176500 Batch Loss: 1.850859 Tokens per Sec: 14819, Lr: 0.000103\n", "2020-04-10 21:00:56,503 Epoch 45 Step: 176600 Batch Loss: 1.753609 Tokens per Sec: 14580, Lr: 0.000103\n", "2020-04-10 21:01:11,339 Epoch 45 Step: 176700 Batch Loss: 1.825097 Tokens per Sec: 14980, Lr: 0.000103\n", "2020-04-10 21:01:26,222 Epoch 45 Step: 176800 Batch Loss: 1.789909 Tokens per Sec: 15023, Lr: 0.000103\n", "2020-04-10 21:01:41,068 Epoch 45 Step: 176900 Batch Loss: 1.660104 Tokens per Sec: 15249, Lr: 0.000103\n", "2020-04-10 21:01:56,046 Epoch 45 Step: 177000 Batch Loss: 1.728241 Tokens per Sec: 14621, Lr: 0.000103\n", "2020-04-10 21:02:14,513 Example #0\n", "2020-04-10 21:02:14,514 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:02:14,514 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:02:14,514 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:02:14,514 Example #1\n", "2020-04-10 21:02:14,515 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:02:14,515 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:02:14,515 \tHypothesis: That may be the case of the clergy who said to them .\n", "2020-04-10 21:02:14,515 Example #2\n", "2020-04-10 21:02:14,515 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:02:14,516 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:02:14,516 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:02:14,516 Example #3\n", "2020-04-10 21:02:14,516 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:02:14,516 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:02:14,516 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:02:14,517 Validation result (greedy) at epoch 45, step 177000: bleu: 28.35, loss: 41566.6953, ppl: 4.9863, duration: 18.4696s\n", "2020-04-10 21:02:29,085 Epoch 45 Step: 177100 Batch Loss: 1.694604 Tokens per Sec: 15213, Lr: 0.000103\n", "2020-04-10 21:02:43,662 Epoch 45 Step: 177200 Batch Loss: 1.729451 Tokens per Sec: 15049, Lr: 0.000103\n", "2020-04-10 21:02:58,400 Epoch 45 Step: 177300 Batch Loss: 1.172710 Tokens per Sec: 15038, Lr: 0.000103\n", "2020-04-10 21:03:02,917 Epoch 45: total training loss 6770.26\n", "2020-04-10 21:03:02,918 EPOCH 46\n", "2020-04-10 21:03:13,484 Epoch 46 Step: 177400 Batch Loss: 1.725630 Tokens per Sec: 14711, Lr: 0.000103\n", "2020-04-10 21:03:28,393 Epoch 46 Step: 177500 Batch Loss: 1.838486 Tokens per Sec: 15570, Lr: 0.000103\n", "2020-04-10 21:03:43,047 Epoch 46 Step: 177600 Batch Loss: 1.745793 Tokens per Sec: 14968, Lr: 0.000103\n", "2020-04-10 21:03:57,753 Epoch 46 Step: 177700 Batch Loss: 1.577157 Tokens per Sec: 15104, Lr: 0.000103\n", "2020-04-10 21:04:12,478 Epoch 46 Step: 177800 Batch Loss: 1.847659 Tokens per Sec: 15281, Lr: 0.000103\n", "2020-04-10 21:04:27,298 Epoch 46 Step: 177900 Batch Loss: 1.665390 Tokens per Sec: 15289, Lr: 0.000103\n", "2020-04-10 21:04:41,925 Epoch 46 Step: 178000 Batch Loss: 1.635367 Tokens per Sec: 15223, Lr: 0.000103\n", "2020-04-10 21:04:59,746 Example #0\n", "2020-04-10 21:04:59,746 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:04:59,747 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:04:59,747 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:04:59,747 Example #1\n", "2020-04-10 21:04:59,748 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:04:59,748 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:04:59,748 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:04:59,748 Example #2\n", "2020-04-10 21:04:59,749 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:04:59,749 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:04:59,750 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:04:59,750 Example #3\n", "2020-04-10 21:04:59,750 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:04:59,750 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:04:59,751 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:04:59,751 Validation result (greedy) at epoch 46, step 178000: bleu: 28.20, loss: 41704.1602, ppl: 5.0128, duration: 17.8256s\n", "2020-04-10 21:05:14,313 Epoch 46 Step: 178100 Batch Loss: 1.719596 Tokens per Sec: 14979, Lr: 0.000103\n", "2020-04-10 21:05:28,889 Epoch 46 Step: 178200 Batch Loss: 1.537763 Tokens per Sec: 14944, Lr: 0.000103\n", "2020-04-10 21:05:43,387 Epoch 46 Step: 178300 Batch Loss: 1.841825 Tokens per Sec: 15335, Lr: 0.000103\n", "2020-04-10 21:05:57,935 Epoch 46 Step: 178400 Batch Loss: 1.844484 Tokens per Sec: 15179, Lr: 0.000103\n", "2020-04-10 21:06:12,740 Epoch 46 Step: 178500 Batch Loss: 1.765646 Tokens per Sec: 14998, Lr: 0.000103\n", "2020-04-10 21:06:27,200 Epoch 46 Step: 178600 Batch Loss: 1.722626 Tokens per Sec: 15242, Lr: 0.000103\n", "2020-04-10 21:06:41,747 Epoch 46 Step: 178700 Batch Loss: 1.732701 Tokens per Sec: 14833, Lr: 0.000103\n", "2020-04-10 21:06:56,477 Epoch 46 Step: 178800 Batch Loss: 1.691727 Tokens per Sec: 15119, Lr: 0.000103\n", "2020-04-10 21:07:11,079 Epoch 46 Step: 178900 Batch Loss: 1.774494 Tokens per Sec: 15026, Lr: 0.000103\n", "2020-04-10 21:07:25,699 Epoch 46 Step: 179000 Batch Loss: 1.602224 Tokens per Sec: 14927, Lr: 0.000103\n", "2020-04-10 21:07:43,695 Example #0\n", "2020-04-10 21:07:43,695 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:07:43,695 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:07:43,696 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:07:43,696 Example #1\n", "2020-04-10 21:07:43,696 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:07:43,696 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:07:43,696 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:07:43,696 Example #2\n", "2020-04-10 21:07:43,697 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:07:43,697 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:07:43,697 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:07:43,697 Example #3\n", "2020-04-10 21:07:43,698 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:07:43,698 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:07:43,698 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom to preach and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:07:43,698 Validation result (greedy) at epoch 46, step 179000: bleu: 28.32, loss: 41547.8125, ppl: 4.9826, duration: 17.9989s\n", "2020-04-10 21:07:58,356 Epoch 46 Step: 179100 Batch Loss: 1.780302 Tokens per Sec: 15371, Lr: 0.000103\n", "2020-04-10 21:08:13,011 Epoch 46 Step: 179200 Batch Loss: 1.759310 Tokens per Sec: 15004, Lr: 0.000103\n", "2020-04-10 21:08:27,779 Epoch 46 Step: 179300 Batch Loss: 1.697404 Tokens per Sec: 14886, Lr: 0.000103\n", "2020-04-10 21:08:42,473 Epoch 46 Step: 179400 Batch Loss: 1.782884 Tokens per Sec: 15181, Lr: 0.000103\n", "2020-04-10 21:08:56,920 Epoch 46 Step: 179500 Batch Loss: 1.886690 Tokens per Sec: 15015, Lr: 0.000103\n", "2020-04-10 21:09:11,646 Epoch 46 Step: 179600 Batch Loss: 1.802500 Tokens per Sec: 15031, Lr: 0.000103\n", "2020-04-10 21:09:26,411 Epoch 46 Step: 179700 Batch Loss: 1.664257 Tokens per Sec: 14842, Lr: 0.000103\n", "2020-04-10 21:09:41,085 Epoch 46 Step: 179800 Batch Loss: 1.761802 Tokens per Sec: 15104, Lr: 0.000103\n", "2020-04-10 21:09:55,835 Epoch 46 Step: 179900 Batch Loss: 1.820586 Tokens per Sec: 15007, Lr: 0.000103\n", "2020-04-10 21:10:10,406 Epoch 46 Step: 180000 Batch Loss: 1.646092 Tokens per Sec: 14873, Lr: 0.000103\n", "2020-04-10 21:10:28,867 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:10:28,868 Saving new checkpoint.\n", "2020-04-10 21:10:30,087 Example #0\n", "2020-04-10 21:10:30,087 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:10:30,087 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:10:30,088 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:10:30,088 Example #1\n", "2020-04-10 21:10:30,088 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:10:30,088 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:10:30,088 \tHypothesis: That may be the point of the clergy who said to them .\n", "2020-04-10 21:10:30,089 Example #2\n", "2020-04-10 21:10:30,089 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:10:30,089 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:10:30,089 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:10:30,090 Example #3\n", "2020-04-10 21:10:30,090 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:10:30,090 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:10:30,090 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:10:30,090 Validation result (greedy) at epoch 46, step 180000: bleu: 28.48, loss: 41508.9961, ppl: 4.9752, duration: 19.6839s\n", "2020-04-10 21:10:45,062 Epoch 46 Step: 180100 Batch Loss: 1.797730 Tokens per Sec: 15059, Lr: 0.000103\n", "2020-04-10 21:10:59,600 Epoch 46 Step: 180200 Batch Loss: 1.794129 Tokens per Sec: 14987, Lr: 0.000103\n", "2020-04-10 21:11:14,388 Epoch 46 Step: 180300 Batch Loss: 1.717396 Tokens per Sec: 15272, Lr: 0.000103\n", "2020-04-10 21:11:29,134 Epoch 46 Step: 180400 Batch Loss: 1.684174 Tokens per Sec: 15010, Lr: 0.000103\n", "2020-04-10 21:11:43,818 Epoch 46 Step: 180500 Batch Loss: 1.759226 Tokens per Sec: 15422, Lr: 0.000103\n", "2020-04-10 21:11:58,345 Epoch 46 Step: 180600 Batch Loss: 1.701673 Tokens per Sec: 15057, Lr: 0.000103\n", "2020-04-10 21:12:13,092 Epoch 46 Step: 180700 Batch Loss: 1.792368 Tokens per Sec: 15231, Lr: 0.000103\n", "2020-04-10 21:12:27,899 Epoch 46 Step: 180800 Batch Loss: 1.618356 Tokens per Sec: 15164, Lr: 0.000103\n", "2020-04-10 21:12:42,573 Epoch 46 Step: 180900 Batch Loss: 1.728105 Tokens per Sec: 15004, Lr: 0.000103\n", "2020-04-10 21:12:57,249 Epoch 46 Step: 181000 Batch Loss: 1.597393 Tokens per Sec: 15302, Lr: 0.000103\n", "2020-04-10 21:13:15,152 Example #0\n", "2020-04-10 21:13:15,153 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:13:15,153 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:13:15,153 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:13:15,153 Example #1\n", "2020-04-10 21:13:15,154 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:13:15,154 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:13:15,154 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 21:13:15,154 Example #2\n", "2020-04-10 21:13:15,154 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:13:15,155 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:13:15,155 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:13:15,155 Example #3\n", "2020-04-10 21:13:15,155 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:13:15,155 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:13:15,156 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:13:15,156 Validation result (greedy) at epoch 46, step 181000: bleu: 28.36, loss: 41552.5156, ppl: 4.9836, duration: 17.9056s\n", "2020-04-10 21:13:29,806 Epoch 46 Step: 181100 Batch Loss: 1.784324 Tokens per Sec: 14786, Lr: 0.000103\n", "2020-04-10 21:13:44,564 Epoch 46 Step: 181200 Batch Loss: 1.797777 Tokens per Sec: 15113, Lr: 0.000103\n", "2020-04-10 21:13:53,910 Epoch 46: total training loss 6739.55\n", "2020-04-10 21:13:53,911 EPOCH 47\n", "2020-04-10 21:13:59,678 Epoch 47 Step: 181300 Batch Loss: 1.812605 Tokens per Sec: 13925, Lr: 0.000103\n", "2020-04-10 21:14:14,481 Epoch 47 Step: 181400 Batch Loss: 1.885252 Tokens per Sec: 15370, Lr: 0.000103\n", "2020-04-10 21:14:29,370 Epoch 47 Step: 181500 Batch Loss: 1.560443 Tokens per Sec: 14864, Lr: 0.000103\n", "2020-04-10 21:14:44,150 Epoch 47 Step: 181600 Batch Loss: 1.755026 Tokens per Sec: 15198, Lr: 0.000103\n", "2020-04-10 21:14:58,690 Epoch 47 Step: 181700 Batch Loss: 1.779574 Tokens per Sec: 14888, Lr: 0.000103\n", "2020-04-10 21:15:13,527 Epoch 47 Step: 181800 Batch Loss: 1.766571 Tokens per Sec: 14829, Lr: 0.000103\n", "2020-04-10 21:15:28,246 Epoch 47 Step: 181900 Batch Loss: 1.803252 Tokens per Sec: 14341, Lr: 0.000103\n", "2020-04-10 21:15:43,141 Epoch 47 Step: 182000 Batch Loss: 1.590314 Tokens per Sec: 14674, Lr: 0.000103\n", "2020-04-10 21:16:01,601 Example #0\n", "2020-04-10 21:16:01,601 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:16:01,601 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:16:01,602 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:16:01,602 Example #1\n", "2020-04-10 21:16:01,602 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:16:01,602 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:16:01,603 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 21:16:01,603 Example #2\n", "2020-04-10 21:16:01,603 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:16:01,603 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:16:01,603 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:16:01,604 Example #3\n", "2020-04-10 21:16:01,604 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:16:01,604 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:16:01,604 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:16:01,605 Validation result (greedy) at epoch 47, step 182000: bleu: 28.10, loss: 41566.2500, ppl: 4.9862, duration: 18.4633s\n", "2020-04-10 21:16:16,695 Epoch 47 Step: 182100 Batch Loss: 1.697575 Tokens per Sec: 15171, Lr: 0.000103\n", "2020-04-10 21:16:31,645 Epoch 47 Step: 182200 Batch Loss: 1.726550 Tokens per Sec: 14760, Lr: 0.000103\n", "2020-04-10 21:16:46,496 Epoch 47 Step: 182300 Batch Loss: 1.894810 Tokens per Sec: 14916, Lr: 0.000103\n", "2020-04-10 21:17:01,315 Epoch 47 Step: 182400 Batch Loss: 1.624695 Tokens per Sec: 14803, Lr: 0.000103\n", "2020-04-10 21:17:16,264 Epoch 47 Step: 182500 Batch Loss: 1.789742 Tokens per Sec: 14953, Lr: 0.000103\n", "2020-04-10 21:17:31,045 Epoch 47 Step: 182600 Batch Loss: 1.665595 Tokens per Sec: 14674, Lr: 0.000103\n", "2020-04-10 21:17:45,934 Epoch 47 Step: 182700 Batch Loss: 1.742536 Tokens per Sec: 14921, Lr: 0.000103\n", "2020-04-10 21:18:00,735 Epoch 47 Step: 182800 Batch Loss: 1.737933 Tokens per Sec: 14798, Lr: 0.000103\n", "2020-04-10 21:18:15,592 Epoch 47 Step: 182900 Batch Loss: 1.526268 Tokens per Sec: 14918, Lr: 0.000103\n", "2020-04-10 21:18:30,515 Epoch 47 Step: 183000 Batch Loss: 1.919525 Tokens per Sec: 14637, Lr: 0.000103\n", "2020-04-10 21:18:49,483 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:18:49,484 Saving new checkpoint.\n", "2020-04-10 21:18:51,130 Example #0\n", "2020-04-10 21:18:51,131 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:18:51,131 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:18:51,131 \tHypothesis: If you do so , you choose the best way of life .\n", "2020-04-10 21:18:51,131 Example #1\n", "2020-04-10 21:18:51,132 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:18:51,132 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:18:51,132 \tHypothesis: That may be what the clergy said to them .\n", "2020-04-10 21:18:51,132 Example #2\n", "2020-04-10 21:18:51,133 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:18:51,133 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:18:51,133 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:18:51,133 Example #3\n", "2020-04-10 21:18:51,133 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:18:51,134 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:18:51,134 \tHypothesis: Paul was imprisoned in his home for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:18:51,134 Validation result (greedy) at epoch 47, step 183000: bleu: 28.28, loss: 41505.9375, ppl: 4.9746, duration: 20.6181s\n", "2020-04-10 21:19:06,534 Epoch 47 Step: 183100 Batch Loss: 1.796367 Tokens per Sec: 14730, Lr: 0.000103\n", "2020-04-10 21:19:21,305 Epoch 47 Step: 183200 Batch Loss: 1.795421 Tokens per Sec: 14650, Lr: 0.000103\n", "2020-04-10 21:19:36,138 Epoch 47 Step: 183300 Batch Loss: 1.929910 Tokens per Sec: 14734, Lr: 0.000103\n", "2020-04-10 21:19:51,225 Epoch 47 Step: 183400 Batch Loss: 1.968371 Tokens per Sec: 14909, Lr: 0.000103\n", "2020-04-10 21:20:06,232 Epoch 47 Step: 183500 Batch Loss: 1.696493 Tokens per Sec: 15096, Lr: 0.000103\n", "2020-04-10 21:20:21,035 Epoch 47 Step: 183600 Batch Loss: 1.742449 Tokens per Sec: 14781, Lr: 0.000103\n", "2020-04-10 21:20:35,881 Epoch 47 Step: 183700 Batch Loss: 1.699265 Tokens per Sec: 15081, Lr: 0.000103\n", "2020-04-10 21:20:50,754 Epoch 47 Step: 183800 Batch Loss: 1.791385 Tokens per Sec: 14706, Lr: 0.000103\n", "2020-04-10 21:21:05,665 Epoch 47 Step: 183900 Batch Loss: 1.673690 Tokens per Sec: 14850, Lr: 0.000103\n", "2020-04-10 21:21:20,359 Epoch 47 Step: 184000 Batch Loss: 1.620754 Tokens per Sec: 14799, Lr: 0.000103\n", "2020-04-10 21:21:38,586 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:21:38,587 Saving new checkpoint.\n", "2020-04-10 21:21:39,830 Example #0\n", "2020-04-10 21:21:39,831 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:21:39,831 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:21:39,832 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:21:39,832 Example #1\n", "2020-04-10 21:21:39,832 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:21:39,832 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:21:39,833 \tHypothesis: That may be the point of the clergy who said to them .\n", "2020-04-10 21:21:39,833 Example #2\n", "2020-04-10 21:21:39,833 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:21:39,833 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:21:39,833 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:21:39,834 Example #3\n", "2020-04-10 21:21:39,834 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:21:39,834 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:21:39,834 \tHypothesis: Paul was imprisoned in his home for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:21:39,835 Validation result (greedy) at epoch 47, step 184000: bleu: 28.54, loss: 41490.0703, ppl: 4.9715, duration: 19.4747s\n", "2020-04-10 21:21:55,003 Epoch 47 Step: 184100 Batch Loss: 1.716649 Tokens per Sec: 14287, Lr: 0.000103\n", "2020-04-10 21:22:09,830 Epoch 47 Step: 184200 Batch Loss: 1.881483 Tokens per Sec: 14944, Lr: 0.000103\n", "2020-04-10 21:22:24,770 Epoch 47 Step: 184300 Batch Loss: 1.653139 Tokens per Sec: 14871, Lr: 0.000103\n", "2020-04-10 21:22:39,673 Epoch 47 Step: 184400 Batch Loss: 1.639322 Tokens per Sec: 15053, Lr: 0.000103\n", "2020-04-10 21:22:54,562 Epoch 47 Step: 184500 Batch Loss: 1.767979 Tokens per Sec: 14866, Lr: 0.000103\n", "2020-04-10 21:23:09,396 Epoch 47 Step: 184600 Batch Loss: 1.960881 Tokens per Sec: 14853, Lr: 0.000103\n", "2020-04-10 21:23:24,221 Epoch 47 Step: 184700 Batch Loss: 1.824730 Tokens per Sec: 14989, Lr: 0.000103\n", "2020-04-10 21:23:39,016 Epoch 47 Step: 184800 Batch Loss: 1.640811 Tokens per Sec: 14901, Lr: 0.000103\n", "2020-04-10 21:23:53,907 Epoch 47 Step: 184900 Batch Loss: 1.914399 Tokens per Sec: 15174, Lr: 0.000103\n", "2020-04-10 21:24:08,835 Epoch 47 Step: 185000 Batch Loss: 1.676069 Tokens per Sec: 14721, Lr: 0.000103\n", "2020-04-10 21:24:26,759 Example #0\n", "2020-04-10 21:24:26,760 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:24:26,760 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:24:26,760 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:24:26,760 Example #1\n", "2020-04-10 21:24:26,761 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:24:26,761 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:24:26,761 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:24:26,762 Example #2\n", "2020-04-10 21:24:26,762 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:24:26,762 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:24:26,763 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:24:26,763 Example #3\n", "2020-04-10 21:24:26,763 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:24:26,763 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:24:26,764 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:24:26,764 Validation result (greedy) at epoch 47, step 185000: bleu: 28.27, loss: 41533.0078, ppl: 4.9798, duration: 17.9289s\n", "2020-04-10 21:24:41,954 Epoch 47 Step: 185100 Batch Loss: 1.665434 Tokens per Sec: 14971, Lr: 0.000103\n", "2020-04-10 21:24:56,799 Epoch 47 Step: 185200 Batch Loss: 1.805963 Tokens per Sec: 14631, Lr: 0.000103\n", "2020-04-10 21:24:57,258 Epoch 47: total training loss 6741.60\n", "2020-04-10 21:24:57,258 EPOCH 48\n", "2020-04-10 21:25:12,032 Epoch 48 Step: 185300 Batch Loss: 1.815986 Tokens per Sec: 14478, Lr: 0.000103\n", "2020-04-10 21:25:27,052 Epoch 48 Step: 185400 Batch Loss: 1.649281 Tokens per Sec: 14925, Lr: 0.000103\n", "2020-04-10 21:25:41,800 Epoch 48 Step: 185500 Batch Loss: 1.811633 Tokens per Sec: 14532, Lr: 0.000103\n", "2020-04-10 21:25:56,773 Epoch 48 Step: 185600 Batch Loss: 1.746354 Tokens per Sec: 14929, Lr: 0.000103\n", "2020-04-10 21:26:11,688 Epoch 48 Step: 185700 Batch Loss: 1.724394 Tokens per Sec: 15128, Lr: 0.000103\n", "2020-04-10 21:26:26,395 Epoch 48 Step: 185800 Batch Loss: 1.730867 Tokens per Sec: 14774, Lr: 0.000103\n", "2020-04-10 21:26:41,211 Epoch 48 Step: 185900 Batch Loss: 1.708736 Tokens per Sec: 15157, Lr: 0.000103\n", "2020-04-10 21:26:55,909 Epoch 48 Step: 186000 Batch Loss: 1.867961 Tokens per Sec: 14759, Lr: 0.000103\n", "2020-04-10 21:27:14,322 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:27:14,322 Saving new checkpoint.\n", "2020-04-10 21:27:15,531 Example #0\n", "2020-04-10 21:27:15,532 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:27:15,532 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:27:15,532 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:27:15,533 Example #1\n", "2020-04-10 21:27:15,533 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:27:15,533 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:27:15,533 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:27:15,533 Example #2\n", "2020-04-10 21:27:15,534 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:27:15,534 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:27:15,534 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:27:15,534 Example #3\n", "2020-04-10 21:27:15,535 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:27:15,535 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:27:15,535 \tHypothesis: Paul was imprisoned in his home for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:27:15,535 Validation result (greedy) at epoch 48, step 186000: bleu: 28.37, loss: 41461.7188, ppl: 4.9661, duration: 19.6262s\n", "2020-04-10 21:27:31,166 Epoch 48 Step: 186100 Batch Loss: 1.657327 Tokens per Sec: 14202, Lr: 0.000103\n", "2020-04-10 21:27:46,004 Epoch 48 Step: 186200 Batch Loss: 1.737849 Tokens per Sec: 14859, Lr: 0.000103\n", "2020-04-10 21:28:01,059 Epoch 48 Step: 186300 Batch Loss: 1.650551 Tokens per Sec: 14908, Lr: 0.000103\n", "2020-04-10 21:28:15,711 Epoch 48 Step: 186400 Batch Loss: 1.746919 Tokens per Sec: 14605, Lr: 0.000103\n", "2020-04-10 21:28:30,697 Epoch 48 Step: 186500 Batch Loss: 1.588929 Tokens per Sec: 15014, Lr: 0.000103\n", "2020-04-10 21:28:45,418 Epoch 48 Step: 186600 Batch Loss: 1.665008 Tokens per Sec: 15021, Lr: 0.000103\n", "2020-04-10 21:29:00,346 Epoch 48 Step: 186700 Batch Loss: 1.756752 Tokens per Sec: 14599, Lr: 0.000103\n", "2020-04-10 21:29:15,231 Epoch 48 Step: 186800 Batch Loss: 1.838758 Tokens per Sec: 15309, Lr: 0.000103\n", "2020-04-10 21:29:29,996 Epoch 48 Step: 186900 Batch Loss: 1.794762 Tokens per Sec: 14744, Lr: 0.000103\n", "2020-04-10 21:29:44,818 Epoch 48 Step: 187000 Batch Loss: 1.736067 Tokens per Sec: 15047, Lr: 0.000103\n", "2020-04-10 21:30:03,257 Example #0\n", "2020-04-10 21:30:03,257 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:30:03,258 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:30:03,258 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:30:03,258 Example #1\n", "2020-04-10 21:30:03,258 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:30:03,258 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:30:03,258 \tHypothesis: That may be the point of the clergy .\n", "2020-04-10 21:30:03,259 Example #2\n", "2020-04-10 21:30:03,259 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:30:03,259 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:30:03,259 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:30:03,259 Example #3\n", "2020-04-10 21:30:03,260 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:30:03,260 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:30:03,260 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he sought the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:30:03,260 Validation result (greedy) at epoch 48, step 187000: bleu: 28.41, loss: 41488.8359, ppl: 4.9713, duration: 18.4421s\n", "2020-04-10 21:30:17,994 Epoch 48 Step: 187100 Batch Loss: 1.984215 Tokens per Sec: 14819, Lr: 0.000103\n", "2020-04-10 21:30:32,846 Epoch 48 Step: 187200 Batch Loss: 1.739346 Tokens per Sec: 15063, Lr: 0.000103\n", "2020-04-10 21:30:47,743 Epoch 48 Step: 187300 Batch Loss: 1.195745 Tokens per Sec: 14912, Lr: 0.000103\n", "2020-04-10 21:31:02,712 Epoch 48 Step: 187400 Batch Loss: 1.889356 Tokens per Sec: 15171, Lr: 0.000103\n", "2020-04-10 21:31:17,576 Epoch 48 Step: 187500 Batch Loss: 1.681360 Tokens per Sec: 14471, Lr: 0.000103\n", "2020-04-10 21:31:32,688 Epoch 48 Step: 187600 Batch Loss: 1.702432 Tokens per Sec: 15178, Lr: 0.000103\n", "2020-04-10 21:31:47,519 Epoch 48 Step: 187700 Batch Loss: 1.781997 Tokens per Sec: 15097, Lr: 0.000103\n", "2020-04-10 21:32:02,058 Epoch 48 Step: 187800 Batch Loss: 1.802357 Tokens per Sec: 14542, Lr: 0.000103\n", "2020-04-10 21:32:16,771 Epoch 48 Step: 187900 Batch Loss: 1.770341 Tokens per Sec: 14951, Lr: 0.000103\n", "2020-04-10 21:32:31,430 Epoch 48 Step: 188000 Batch Loss: 1.830493 Tokens per Sec: 14542, Lr: 0.000103\n", "2020-04-10 21:32:50,218 Example #0\n", "2020-04-10 21:32:50,218 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:32:50,219 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:32:50,219 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:32:50,219 Example #1\n", "2020-04-10 21:32:50,219 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:32:50,220 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:32:50,220 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:32:50,220 Example #2\n", "2020-04-10 21:32:50,220 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:32:50,220 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:32:50,221 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:32:50,221 Example #3\n", "2020-04-10 21:32:50,221 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:32:50,221 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:32:50,222 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:32:50,222 Validation result (greedy) at epoch 48, step 188000: bleu: 28.63, loss: 41539.2695, ppl: 4.9810, duration: 18.7917s\n", "2020-04-10 21:33:05,261 Epoch 48 Step: 188100 Batch Loss: 1.861143 Tokens per Sec: 14819, Lr: 0.000103\n", "2020-04-10 21:33:20,216 Epoch 48 Step: 188200 Batch Loss: 1.652198 Tokens per Sec: 14939, Lr: 0.000103\n", "2020-04-10 21:33:35,076 Epoch 48 Step: 188300 Batch Loss: 1.742703 Tokens per Sec: 14694, Lr: 0.000103\n", "2020-04-10 21:33:50,018 Epoch 48 Step: 188400 Batch Loss: 1.857923 Tokens per Sec: 14734, Lr: 0.000103\n", "2020-04-10 21:34:05,021 Epoch 48 Step: 188500 Batch Loss: 1.759960 Tokens per Sec: 14898, Lr: 0.000103\n", "2020-04-10 21:34:19,963 Epoch 48 Step: 188600 Batch Loss: 1.759976 Tokens per Sec: 15106, Lr: 0.000103\n", "2020-04-10 21:34:34,901 Epoch 48 Step: 188700 Batch Loss: 1.732728 Tokens per Sec: 14751, Lr: 0.000103\n", "2020-04-10 21:34:49,779 Epoch 48 Step: 188800 Batch Loss: 1.771153 Tokens per Sec: 14593, Lr: 0.000103\n", "2020-04-10 21:35:04,519 Epoch 48 Step: 188900 Batch Loss: 1.703954 Tokens per Sec: 14808, Lr: 0.000103\n", "2020-04-10 21:35:19,177 Epoch 48 Step: 189000 Batch Loss: 1.741977 Tokens per Sec: 14691, Lr: 0.000103\n", "2020-04-10 21:35:37,451 Example #0\n", "2020-04-10 21:35:37,452 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:35:37,452 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:35:37,453 \tHypothesis: If you do so , you choose the best way of life .\n", "2020-04-10 21:35:37,453 Example #1\n", "2020-04-10 21:35:37,453 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:35:37,453 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:35:37,453 \tHypothesis: That may be the case with the clergy .\n", "2020-04-10 21:35:37,453 Example #2\n", "2020-04-10 21:35:37,454 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:35:37,454 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:35:37,454 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:35:37,454 Example #3\n", "2020-04-10 21:35:37,454 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:35:37,455 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:35:37,455 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:35:37,455 Validation result (greedy) at epoch 48, step 189000: bleu: 28.27, loss: 41493.2266, ppl: 4.9721, duration: 18.2776s\n", "2020-04-10 21:35:52,299 Epoch 48 Step: 189100 Batch Loss: 1.696998 Tokens per Sec: 14714, Lr: 0.000103\n", "2020-04-10 21:35:59,655 Epoch 48: total training loss 6745.10\n", "2020-04-10 21:35:59,656 EPOCH 49\n", "2020-04-10 21:36:07,846 Epoch 49 Step: 189200 Batch Loss: 1.646928 Tokens per Sec: 14518, Lr: 0.000103\n", "2020-04-10 21:36:22,682 Epoch 49 Step: 189300 Batch Loss: 1.662438 Tokens per Sec: 14716, Lr: 0.000103\n", "2020-04-10 21:36:37,681 Epoch 49 Step: 189400 Batch Loss: 1.804051 Tokens per Sec: 15145, Lr: 0.000103\n", "2020-04-10 21:36:52,445 Epoch 49 Step: 189500 Batch Loss: 1.602428 Tokens per Sec: 14694, Lr: 0.000103\n", "2020-04-10 21:37:07,213 Epoch 49 Step: 189600 Batch Loss: 1.760293 Tokens per Sec: 14695, Lr: 0.000103\n", "2020-04-10 21:37:22,108 Epoch 49 Step: 189700 Batch Loss: 1.783909 Tokens per Sec: 14842, Lr: 0.000103\n", "2020-04-10 21:37:37,121 Epoch 49 Step: 189800 Batch Loss: 1.599798 Tokens per Sec: 14642, Lr: 0.000103\n", "2020-04-10 21:37:51,796 Epoch 49 Step: 189900 Batch Loss: 1.593897 Tokens per Sec: 14702, Lr: 0.000103\n", "2020-04-10 21:38:06,651 Epoch 49 Step: 190000 Batch Loss: 1.561192 Tokens per Sec: 14798, Lr: 0.000103\n", "2020-04-10 21:38:25,414 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:38:25,415 Saving new checkpoint.\n", "2020-04-10 21:38:26,670 Example #0\n", "2020-04-10 21:38:26,671 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:38:26,671 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:38:26,671 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:38:26,671 Example #1\n", "2020-04-10 21:38:26,672 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:38:26,672 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:38:26,672 \tHypothesis: That may be the point of the clergy who said to them .\n", "2020-04-10 21:38:26,673 Example #2\n", "2020-04-10 21:38:26,673 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:38:26,673 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:38:26,674 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:38:26,674 Example #3\n", "2020-04-10 21:38:26,674 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:38:26,675 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:38:26,675 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he looks for the Kingdom preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:38:26,675 Validation result (greedy) at epoch 49, step 190000: bleu: 28.25, loss: 41425.5312, ppl: 4.9591, duration: 20.0230s\n", "2020-04-10 21:38:41,605 Epoch 49 Step: 190100 Batch Loss: 1.737305 Tokens per Sec: 14447, Lr: 0.000103\n", "2020-04-10 21:38:56,260 Epoch 49 Step: 190200 Batch Loss: 1.242959 Tokens per Sec: 14638, Lr: 0.000103\n", "2020-04-10 21:39:11,181 Epoch 49 Step: 190300 Batch Loss: 1.209860 Tokens per Sec: 14802, Lr: 0.000103\n", "2020-04-10 21:39:26,266 Epoch 49 Step: 190400 Batch Loss: 1.575521 Tokens per Sec: 14964, Lr: 0.000103\n", "2020-04-10 21:39:41,222 Epoch 49 Step: 190500 Batch Loss: 1.525348 Tokens per Sec: 14976, Lr: 0.000103\n", "2020-04-10 21:39:56,096 Epoch 49 Step: 190600 Batch Loss: 1.819680 Tokens per Sec: 14581, Lr: 0.000103\n", "2020-04-10 21:40:10,998 Epoch 49 Step: 190700 Batch Loss: 1.758599 Tokens per Sec: 14945, Lr: 0.000103\n", "2020-04-10 21:40:25,811 Epoch 49 Step: 190800 Batch Loss: 1.664189 Tokens per Sec: 14938, Lr: 0.000103\n", "2020-04-10 21:40:40,746 Epoch 49 Step: 190900 Batch Loss: 1.734493 Tokens per Sec: 14913, Lr: 0.000103\n", "2020-04-10 21:40:55,759 Epoch 49 Step: 191000 Batch Loss: 1.664728 Tokens per Sec: 15423, Lr: 0.000103\n", "2020-04-10 21:41:14,286 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:41:14,286 Saving new checkpoint.\n", "2020-04-10 21:41:15,908 Example #0\n", "2020-04-10 21:41:15,909 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:41:15,909 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:41:15,909 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:41:15,910 Example #1\n", "2020-04-10 21:41:15,910 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:41:15,910 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:41:15,910 \tHypothesis: That may be the point of the clergy .\n", "2020-04-10 21:41:15,910 Example #2\n", "2020-04-10 21:41:15,911 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:41:15,911 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:41:15,911 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:41:15,911 Example #3\n", "2020-04-10 21:41:15,912 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:41:15,912 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:41:15,912 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:41:15,912 Validation result (greedy) at epoch 49, step 191000: bleu: 28.54, loss: 41397.6797, ppl: 4.9538, duration: 20.1529s\n", "2020-04-10 21:41:31,220 Epoch 49 Step: 191100 Batch Loss: 1.551174 Tokens per Sec: 14509, Lr: 0.000103\n", "2020-04-10 21:41:46,133 Epoch 49 Step: 191200 Batch Loss: 1.811680 Tokens per Sec: 14923, Lr: 0.000103\n", "2020-04-10 21:42:00,951 Epoch 49 Step: 191300 Batch Loss: 1.767874 Tokens per Sec: 14835, Lr: 0.000103\n", "2020-04-10 21:42:15,925 Epoch 49 Step: 191400 Batch Loss: 1.728907 Tokens per Sec: 14737, Lr: 0.000103\n", "2020-04-10 21:42:30,677 Epoch 49 Step: 191500 Batch Loss: 1.545603 Tokens per Sec: 14908, Lr: 0.000103\n", "2020-04-10 21:42:45,415 Epoch 49 Step: 191600 Batch Loss: 1.758112 Tokens per Sec: 14997, Lr: 0.000103\n", "2020-04-10 21:43:00,219 Epoch 49 Step: 191700 Batch Loss: 1.682051 Tokens per Sec: 14728, Lr: 0.000103\n", "2020-04-10 21:43:15,115 Epoch 49 Step: 191800 Batch Loss: 1.654013 Tokens per Sec: 15045, Lr: 0.000103\n", "2020-04-10 21:43:30,038 Epoch 49 Step: 191900 Batch Loss: 1.747666 Tokens per Sec: 14783, Lr: 0.000103\n", "2020-04-10 21:43:44,978 Epoch 49 Step: 192000 Batch Loss: 1.298318 Tokens per Sec: 15107, Lr: 0.000103\n", "2020-04-10 21:44:03,580 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:44:03,581 Saving new checkpoint.\n", "2020-04-10 21:44:04,804 Example #0\n", "2020-04-10 21:44:04,805 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:44:04,805 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:44:04,805 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:44:04,806 Example #1\n", "2020-04-10 21:44:04,806 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:44:04,806 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:44:04,807 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:44:04,807 Example #2\n", "2020-04-10 21:44:04,807 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:44:04,807 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:44:04,808 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:44:04,808 Example #3\n", "2020-04-10 21:44:04,809 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:44:04,809 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:44:04,809 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:44:04,809 Validation result (greedy) at epoch 49, step 192000: bleu: 28.16, loss: 41394.2656, ppl: 4.9532, duration: 19.8309s\n", "2020-04-10 21:44:20,020 Epoch 49 Step: 192100 Batch Loss: 1.663148 Tokens per Sec: 14510, Lr: 0.000103\n", "2020-04-10 21:44:34,875 Epoch 49 Step: 192200 Batch Loss: 1.683984 Tokens per Sec: 14980, Lr: 0.000103\n", "2020-04-10 21:44:49,720 Epoch 49 Step: 192300 Batch Loss: 1.502367 Tokens per Sec: 14774, Lr: 0.000103\n", "2020-04-10 21:45:04,584 Epoch 49 Step: 192400 Batch Loss: 1.592277 Tokens per Sec: 14882, Lr: 0.000103\n", "2020-04-10 21:45:19,506 Epoch 49 Step: 192500 Batch Loss: 1.571975 Tokens per Sec: 15015, Lr: 0.000103\n", "2020-04-10 21:45:34,357 Epoch 49 Step: 192600 Batch Loss: 1.750814 Tokens per Sec: 14688, Lr: 0.000103\n", "2020-04-10 21:45:49,010 Epoch 49 Step: 192700 Batch Loss: 1.763808 Tokens per Sec: 15022, Lr: 0.000103\n", "2020-04-10 21:46:03,981 Epoch 49 Step: 192800 Batch Loss: 1.719818 Tokens per Sec: 15011, Lr: 0.000103\n", "2020-04-10 21:46:18,670 Epoch 49 Step: 192900 Batch Loss: 1.643352 Tokens per Sec: 15099, Lr: 0.000103\n", "2020-04-10 21:46:33,719 Epoch 49 Step: 193000 Batch Loss: 1.741283 Tokens per Sec: 14860, Lr: 0.000103\n", "2020-04-10 21:46:52,221 Example #0\n", "2020-04-10 21:46:52,222 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:46:52,222 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:46:52,223 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:46:52,223 Example #1\n", "2020-04-10 21:46:52,223 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:46:52,223 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:46:52,224 \tHypothesis: That may be the point of the clergy who said to them .\n", "2020-04-10 21:46:52,224 Example #2\n", "2020-04-10 21:46:52,224 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:46:52,225 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:46:52,225 \tHypothesis: The same word is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:46:52,225 Example #3\n", "2020-04-10 21:46:52,226 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:46:52,226 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:46:52,226 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:46:52,227 Validation result (greedy) at epoch 49, step 193000: bleu: 28.34, loss: 41451.8555, ppl: 4.9642, duration: 18.5074s\n", "2020-04-10 21:47:04,993 Epoch 49: total training loss 6723.11\n", "2020-04-10 21:47:04,994 EPOCH 50\n", "2020-04-10 21:47:07,508 Epoch 50 Step: 193100 Batch Loss: 1.815011 Tokens per Sec: 12302, Lr: 0.000103\n", "2020-04-10 21:47:22,140 Epoch 50 Step: 193200 Batch Loss: 1.567707 Tokens per Sec: 15034, Lr: 0.000103\n", "2020-04-10 21:47:36,899 Epoch 50 Step: 193300 Batch Loss: 1.618548 Tokens per Sec: 14874, Lr: 0.000103\n", "2020-04-10 21:47:51,736 Epoch 50 Step: 193400 Batch Loss: 1.701065 Tokens per Sec: 15116, Lr: 0.000103\n", "2020-04-10 21:48:06,620 Epoch 50 Step: 193500 Batch Loss: 1.764743 Tokens per Sec: 14821, Lr: 0.000103\n", "2020-04-10 21:48:21,305 Epoch 50 Step: 193600 Batch Loss: 1.680739 Tokens per Sec: 14786, Lr: 0.000103\n", "2020-04-10 21:48:36,257 Epoch 50 Step: 193700 Batch Loss: 1.734905 Tokens per Sec: 14479, Lr: 0.000103\n", "2020-04-10 21:48:51,302 Epoch 50 Step: 193800 Batch Loss: 1.608275 Tokens per Sec: 14686, Lr: 0.000103\n", "2020-04-10 21:49:06,213 Epoch 50 Step: 193900 Batch Loss: 1.749007 Tokens per Sec: 15183, Lr: 0.000103\n", "2020-04-10 21:49:20,936 Epoch 50 Step: 194000 Batch Loss: 1.645606 Tokens per Sec: 14857, Lr: 0.000103\n", "2020-04-10 21:49:39,119 Hooray! New best validation result [ppl]!\n", "2020-04-10 21:49:39,120 Saving new checkpoint.\n", "2020-04-10 21:49:40,377 Example #0\n", "2020-04-10 21:49:40,379 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:49:40,379 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:49:40,379 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:49:40,379 Example #1\n", "2020-04-10 21:49:40,380 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:49:40,380 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:49:40,380 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:49:40,380 Example #2\n", "2020-04-10 21:49:40,381 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:49:40,381 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:49:40,381 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:49:40,381 Example #3\n", "2020-04-10 21:49:40,382 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:49:40,382 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:49:40,382 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:49:40,382 Validation result (greedy) at epoch 50, step 194000: bleu: 28.24, loss: 41329.2695, ppl: 4.9407, duration: 19.4455s\n", "2020-04-10 21:49:55,324 Epoch 50 Step: 194100 Batch Loss: 1.724791 Tokens per Sec: 14161, Lr: 0.000103\n", "2020-04-10 21:50:10,272 Epoch 50 Step: 194200 Batch Loss: 1.861104 Tokens per Sec: 14997, Lr: 0.000103\n", "2020-04-10 21:50:25,036 Epoch 50 Step: 194300 Batch Loss: 1.647884 Tokens per Sec: 14615, Lr: 0.000103\n", "2020-04-10 21:50:39,964 Epoch 50 Step: 194400 Batch Loss: 1.760430 Tokens per Sec: 15137, Lr: 0.000103\n", "2020-04-10 21:50:54,717 Epoch 50 Step: 194500 Batch Loss: 1.876848 Tokens per Sec: 14977, Lr: 0.000103\n", "2020-04-10 21:51:09,726 Epoch 50 Step: 194600 Batch Loss: 1.696380 Tokens per Sec: 14872, Lr: 0.000103\n", "2020-04-10 21:51:24,677 Epoch 50 Step: 194700 Batch Loss: 1.525051 Tokens per Sec: 15016, Lr: 0.000103\n", "2020-04-10 21:51:39,613 Epoch 50 Step: 194800 Batch Loss: 1.686287 Tokens per Sec: 14876, Lr: 0.000103\n", "2020-04-10 21:51:54,474 Epoch 50 Step: 194900 Batch Loss: 1.375776 Tokens per Sec: 15017, Lr: 0.000103\n", "2020-04-10 21:52:09,337 Epoch 50 Step: 195000 Batch Loss: 1.763261 Tokens per Sec: 14437, Lr: 0.000103\n", "2020-04-10 21:52:27,902 Example #0\n", "2020-04-10 21:52:27,903 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:52:27,903 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:52:27,903 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:52:27,903 Example #1\n", "2020-04-10 21:52:27,904 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:52:27,904 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:52:27,904 \tHypothesis: That may be the clergy who said to them .\n", "2020-04-10 21:52:27,904 Example #2\n", "2020-04-10 21:52:27,905 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:52:27,905 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:52:27,905 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:52:27,905 Example #3\n", "2020-04-10 21:52:27,906 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:52:27,906 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:52:27,906 \tHypothesis: Paul was imprisoned in his home in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:52:27,906 Validation result (greedy) at epoch 50, step 195000: bleu: 28.25, loss: 41347.0977, ppl: 4.9441, duration: 18.5691s\n", "2020-04-10 21:52:42,798 Epoch 50 Step: 195100 Batch Loss: 1.554026 Tokens per Sec: 14785, Lr: 0.000103\n", "2020-04-10 21:52:57,737 Epoch 50 Step: 195200 Batch Loss: 1.635526 Tokens per Sec: 14779, Lr: 0.000103\n", "2020-04-10 21:53:12,501 Epoch 50 Step: 195300 Batch Loss: 1.758509 Tokens per Sec: 14795, Lr: 0.000103\n", "2020-04-10 21:53:27,525 Epoch 50 Step: 195400 Batch Loss: 1.463529 Tokens per Sec: 15016, Lr: 0.000103\n", "2020-04-10 21:53:42,365 Epoch 50 Step: 195500 Batch Loss: 1.665914 Tokens per Sec: 14700, Lr: 0.000103\n", "2020-04-10 21:53:57,334 Epoch 50 Step: 195600 Batch Loss: 1.658631 Tokens per Sec: 15009, Lr: 0.000103\n", "2020-04-10 21:54:12,119 Epoch 50 Step: 195700 Batch Loss: 1.514345 Tokens per Sec: 14948, Lr: 0.000103\n", "2020-04-10 21:54:26,999 Epoch 50 Step: 195800 Batch Loss: 1.755374 Tokens per Sec: 14921, Lr: 0.000103\n", "2020-04-10 21:54:42,192 Epoch 50 Step: 195900 Batch Loss: 1.707376 Tokens per Sec: 14961, Lr: 0.000103\n", "2020-04-10 21:54:57,228 Epoch 50 Step: 196000 Batch Loss: 1.728197 Tokens per Sec: 14999, Lr: 0.000103\n", "2020-04-10 21:55:15,865 Example #0\n", "2020-04-10 21:55:15,866 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:55:15,866 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:55:15,867 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:55:15,867 Example #1\n", "2020-04-10 21:55:15,867 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:55:15,867 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:55:15,867 \tHypothesis: That is even what the clergy said to them .\n", "2020-04-10 21:55:15,868 Example #2\n", "2020-04-10 21:55:15,868 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:55:15,869 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:55:15,869 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:55:15,869 Example #3\n", "2020-04-10 21:55:15,869 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:55:15,870 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:55:15,870 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants to preach the Kingdom and teach others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:55:15,870 Validation result (greedy) at epoch 50, step 196000: bleu: 28.32, loss: 41405.9141, ppl: 4.9554, duration: 18.6411s\n", "2020-04-10 21:55:30,945 Epoch 50 Step: 196100 Batch Loss: 1.569001 Tokens per Sec: 15098, Lr: 0.000103\n", "2020-04-10 21:55:45,883 Epoch 50 Step: 196200 Batch Loss: 1.724166 Tokens per Sec: 14538, Lr: 0.000103\n", "2020-04-10 21:56:00,661 Epoch 50 Step: 196300 Batch Loss: 1.755005 Tokens per Sec: 15051, Lr: 0.000103\n", "2020-04-10 21:56:15,541 Epoch 50 Step: 196400 Batch Loss: 1.338450 Tokens per Sec: 14971, Lr: 0.000103\n", "2020-04-10 21:56:30,548 Epoch 50 Step: 196500 Batch Loss: 1.347011 Tokens per Sec: 14720, Lr: 0.000103\n", "2020-04-10 21:56:45,283 Epoch 50 Step: 196600 Batch Loss: 1.856374 Tokens per Sec: 15071, Lr: 0.000103\n", "2020-04-10 21:57:00,289 Epoch 50 Step: 196700 Batch Loss: 1.774738 Tokens per Sec: 14594, Lr: 0.000103\n", "2020-04-10 21:57:15,183 Epoch 50 Step: 196800 Batch Loss: 1.786795 Tokens per Sec: 14897, Lr: 0.000103\n", "2020-04-10 21:57:30,120 Epoch 50 Step: 196900 Batch Loss: 1.606050 Tokens per Sec: 15016, Lr: 0.000103\n", "2020-04-10 21:57:45,049 Epoch 50 Step: 197000 Batch Loss: 1.783485 Tokens per Sec: 14896, Lr: 0.000103\n", "2020-04-10 21:58:03,457 Example #0\n", "2020-04-10 21:58:03,457 \tSource: Edieke anamde ntre , ọwọrọ ke ememek mfọnn̄kan usụn̄ uwem .\n", "2020-04-10 21:58:03,457 \tReference: If you do , you will be choosing the best possible way of life .\n", "2020-04-10 21:58:03,458 \tHypothesis: If you do so , you are choosing the best way of life .\n", "2020-04-10 21:58:03,458 Example #1\n", "2020-04-10 21:58:03,459 \tSource: Akam ekeme ndidi se ọkwọrọ ederi eketịn̄de ọnọ mmọ edi oro .\n", "2020-04-10 21:58:03,459 \tReference: They may even have been told as much by a clergyman .\n", "2020-04-10 21:58:03,459 \tHypothesis: That may be the case of the clergy .\n", "2020-04-10 21:58:03,459 Example #2\n", "2020-04-10 21:58:03,460 \tSource: Ẹtịn̄ ukem ikọ oro ke 2 Chronicles 5 : 9 .\n", "2020-04-10 21:58:03,460 \tReference: The same point is made at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:58:03,460 \tHypothesis: The same expression is described at 2 Chronicles 5 : 9 .\n", "2020-04-10 21:58:03,461 Example #3\n", "2020-04-10 21:58:03,461 \tSource: Ẹkọbi Paul ẹtem ke ufọk esie ke Rome ke isua iba ( ke n̄kpọ nte isua 59 esịm 61 E.N . ) , ndien enye oyom usụn̄ do ọkwọrọ Obio Ubọn̄ onyụn̄ ekpep mbon en̄wen “ mme n̄kpọ emi ẹban̄ade Ọbọn̄ Jesus Christ . ” — Utom 28 : 30 , 31 .\n", "2020-04-10 21:58:03,461 \tReference: 59 - 61 C.E . ) , and from there he finds ways to preach about the Kingdom and teach “ the things concerning the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:58:03,462 \tHypothesis: Paul was imprisoned in his house in Rome for two years ( about 59 to 61 C.E . ) , and he wants the Kingdom - preaching and teaching others “ the things about the Lord Jesus Christ . ” ​ — Acts 28 : 30 , 31 .\n", "2020-04-10 21:58:03,462 Validation result (greedy) at epoch 50, step 197000: bleu: 28.31, loss: 41373.3164, ppl: 4.9492, duration: 18.4127s\n", "2020-04-10 21:58:06,528 Epoch 50: total training loss 6714.16\n", "2020-04-10 21:58:06,529 Training ended after 50 epochs.\n", "2020-04-10 21:58:06,529 Best validation result (greedy) at step 194000: 4.94 ppl.\n", "2020-04-10 21:58:35,705 dev bleu: 28.54 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-04-10 21:58:35,711 Translations saved to: /content/drive/My Drive/masakhane/model-temp/00194000.hyps.dev\n", "2020-04-10 21:59:17,295 test bleu: 33.68 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-04-10 21:59:17,301 Translations saved to: /content/drive/My Drive/masakhane/model-temp/00194000.hyps.test\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "MBoDS09JM807", "colab": {} }, "source": [ "# Copy the created models from the temporary storage to main storage on google drive for persistant storage \n", "!cp -r \"/content/drive/My Drive/masakhane/model-temp/\"* \"$gdrive_path/models/${src}${tgt}_transformer/\"" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "n94wlrCjVc17", "outputId": "e1a1bd66-9fed-49db-ef17-284fc6562494", "colab": { "base_uri": "https://localhost:8080/", "height": 1000 } }, "source": [ "# Output our validation accuracy\n", "! cat \"$gdrive_path/models/${src}${tgt}_transformer/validations.txt\"" ], "execution_count": 17, "outputs": [ { "output_type": "stream", "text": [ "Steps: 1000\tLoss: 111572.57812\tPPL: 74.63804\tbleu: 1.35220\tLR: 0.00030000\t*\n", "Steps: 2000\tLoss: 97350.62500\tPPL: 43.07422\tbleu: 3.17081\tLR: 0.00030000\t*\n", "Steps: 3000\tLoss: 88266.82031\tPPL: 30.31993\tbleu: 5.37002\tLR: 0.00030000\t*\n", "Steps: 4000\tLoss: 81728.03906\tPPL: 23.54844\tbleu: 7.36726\tLR: 0.00030000\t*\n", "Steps: 5000\tLoss: 77013.80469\tPPL: 19.62568\tbleu: 8.87327\tLR: 0.00030000\t*\n", "Steps: 6000\tLoss: 73350.49219\tPPL: 17.03449\tbleu: 10.38091\tLR: 0.00030000\t*\n", "Steps: 7000\tLoss: 70315.99219\tPPL: 15.14918\tbleu: 12.35965\tLR: 0.00030000\t*\n", "Steps: 8000\tLoss: 67509.00781\tPPL: 13.59153\tbleu: 13.74374\tLR: 0.00030000\t*\n", "Steps: 9000\tLoss: 65475.03125\tPPL: 12.56390\tbleu: 14.65290\tLR: 0.00030000\t*\n", "Steps: 10000\tLoss: 63727.16406\tPPL: 11.74311\tbleu: 15.95746\tLR: 0.00030000\t*\n", "Steps: 11000\tLoss: 62284.03906\tPPL: 11.10599\tbleu: 16.49099\tLR: 0.00030000\t*\n", "Steps: 12000\tLoss: 61020.59766\tPPL: 10.57665\tbleu: 16.96966\tLR: 0.00030000\t*\n", "Steps: 13000\tLoss: 59996.48047\tPPL: 10.16614\tbleu: 17.70745\tLR: 0.00030000\t*\n", "Steps: 14000\tLoss: 58825.36328\tPPL: 9.71621\tbleu: 18.12532\tLR: 0.00030000\t*\n", "Steps: 15000\tLoss: 57883.91016\tPPL: 9.36899\tbleu: 18.49852\tLR: 0.00030000\t*\n", "Steps: 16000\tLoss: 57231.01953\tPPL: 9.13551\tbleu: 19.09363\tLR: 0.00030000\t*\n", "Steps: 17000\tLoss: 56573.35938\tPPL: 8.90620\tbleu: 19.74843\tLR: 0.00030000\t*\n", "Steps: 18000\tLoss: 56030.92188\tPPL: 8.72141\tbleu: 19.90852\tLR: 0.00030000\t*\n", "Steps: 19000\tLoss: 55777.83203\tPPL: 8.63651\tbleu: 20.44947\tLR: 0.00030000\t*\n", "Steps: 20000\tLoss: 54515.53906\tPPL: 8.22523\tbleu: 20.39566\tLR: 0.00030000\t*\n", "Steps: 21000\tLoss: 54266.94922\tPPL: 8.14657\tbleu: 21.06155\tLR: 0.00030000\t*\n", "Steps: 22000\tLoss: 53543.59766\tPPL: 7.92195\tbleu: 21.36213\tLR: 0.00030000\t*\n", "Steps: 23000\tLoss: 53190.76172\tPPL: 7.81464\tbleu: 21.18003\tLR: 0.00030000\t*\n", "Steps: 24000\tLoss: 52630.28906\tPPL: 7.64717\tbleu: 21.60468\tLR: 0.00030000\t*\n", "Steps: 25000\tLoss: 52676.03906\tPPL: 7.66070\tbleu: 21.79004\tLR: 0.00030000\t\n", "Steps: 26000\tLoss: 51996.80078\tPPL: 7.46219\tbleu: 22.22905\tLR: 0.00030000\t*\n", "Steps: 27000\tLoss: 51752.22266\tPPL: 7.39198\tbleu: 22.44913\tLR: 0.00030000\t*\n", "Steps: 28000\tLoss: 51364.62109\tPPL: 7.28205\tbleu: 22.50925\tLR: 0.00030000\t*\n", "Steps: 29000\tLoss: 50935.36719\tPPL: 7.16223\tbleu: 22.74345\tLR: 0.00030000\t*\n", "Steps: 30000\tLoss: 50825.53906\tPPL: 7.13189\tbleu: 22.61524\tLR: 0.00030000\t*\n", "Steps: 31000\tLoss: 50553.08594\tPPL: 7.05717\tbleu: 23.10531\tLR: 0.00030000\t*\n", "Steps: 32000\tLoss: 50277.42969\tPPL: 6.98238\tbleu: 23.06061\tLR: 0.00030000\t*\n", "Steps: 33000\tLoss: 50053.46484\tPPL: 6.92219\tbleu: 22.77997\tLR: 0.00030000\t*\n", "Steps: 34000\tLoss: 49847.91016\tPPL: 6.86741\tbleu: 23.38327\tLR: 0.00030000\t*\n", "Steps: 35000\tLoss: 49624.49609\tPPL: 6.80836\tbleu: 23.35067\tLR: 0.00030000\t*\n", "Steps: 36000\tLoss: 49450.29297\tPPL: 6.76267\tbleu: 23.48698\tLR: 0.00030000\t*\n", "Steps: 37000\tLoss: 49132.97656\tPPL: 6.68023\tbleu: 23.72194\tLR: 0.00030000\t*\n", "Steps: 38000\tLoss: 49010.94922\tPPL: 6.64880\tbleu: 23.80013\tLR: 0.00030000\t*\n", "Steps: 39000\tLoss: 48869.10938\tPPL: 6.61244\tbleu: 23.62029\tLR: 0.00030000\t*\n", "Steps: 40000\tLoss: 48631.02344\tPPL: 6.55187\tbleu: 23.70368\tLR: 0.00030000\t*\n", "Steps: 41000\tLoss: 48569.50781\tPPL: 6.53631\tbleu: 23.63059\tLR: 0.00030000\t*\n", "Steps: 42000\tLoss: 48315.43750\tPPL: 6.47243\tbleu: 24.05682\tLR: 0.00030000\t*\n", "Steps: 43000\tLoss: 48242.44922\tPPL: 6.45420\tbleu: 24.59599\tLR: 0.00030000\t*\n", "Steps: 44000\tLoss: 48099.02344\tPPL: 6.41852\tbleu: 24.21245\tLR: 0.00030000\t*\n", "Steps: 45000\tLoss: 47876.26953\tPPL: 6.36349\tbleu: 24.56846\tLR: 0.00030000\t*\n", "Steps: 46000\tLoss: 47673.32422\tPPL: 6.31377\tbleu: 24.31368\tLR: 0.00030000\t*\n", "Steps: 47000\tLoss: 47651.17188\tPPL: 6.30836\tbleu: 24.50307\tLR: 0.00030000\t*\n", "Steps: 48000\tLoss: 47527.15625\tPPL: 6.27819\tbleu: 24.15798\tLR: 0.00030000\t*\n", "Steps: 49000\tLoss: 47476.22266\tPPL: 6.26585\tbleu: 24.39658\tLR: 0.00030000\t*\n", "Steps: 50000\tLoss: 47418.73828\tPPL: 6.25194\tbleu: 24.85747\tLR: 0.00030000\t*\n", "Steps: 51000\tLoss: 47163.41406\tPPL: 6.19054\tbleu: 24.48586\tLR: 0.00030000\t*\n", "Steps: 52000\tLoss: 46993.80469\tPPL: 6.15009\tbleu: 24.94666\tLR: 0.00030000\t*\n", "Steps: 53000\tLoss: 46798.44531\tPPL: 6.10382\tbleu: 24.90647\tLR: 0.00030000\t*\n", "Steps: 54000\tLoss: 46862.74219\tPPL: 6.11901\tbleu: 24.84688\tLR: 0.00030000\t\n", "Steps: 55000\tLoss: 46748.29297\tPPL: 6.09200\tbleu: 24.79534\tLR: 0.00030000\t*\n", "Steps: 56000\tLoss: 46622.84375\tPPL: 6.06253\tbleu: 24.71733\tLR: 0.00030000\t*\n", "Steps: 57000\tLoss: 46839.48438\tPPL: 6.11351\tbleu: 24.85773\tLR: 0.00030000\t\n", "Steps: 58000\tLoss: 46464.46875\tPPL: 6.02553\tbleu: 24.94796\tLR: 0.00030000\t*\n", "Steps: 59000\tLoss: 46212.78125\tPPL: 5.96720\tbleu: 25.10420\tLR: 0.00030000\t*\n", "Steps: 60000\tLoss: 46578.27734\tPPL: 6.05210\tbleu: 25.47274\tLR: 0.00030000\t\n", "Steps: 61000\tLoss: 46245.92969\tPPL: 5.97485\tbleu: 25.12876\tLR: 0.00030000\t\n", "Steps: 62000\tLoss: 46116.96484\tPPL: 5.94514\tbleu: 25.34519\tLR: 0.00030000\t*\n", "Steps: 63000\tLoss: 45940.31250\tPPL: 5.90468\tbleu: 25.21044\tLR: 0.00030000\t*\n", "Steps: 64000\tLoss: 45897.68750\tPPL: 5.89496\tbleu: 25.36617\tLR: 0.00030000\t*\n", "Steps: 65000\tLoss: 45796.10156\tPPL: 5.87186\tbleu: 25.44046\tLR: 0.00030000\t*\n", "Steps: 66000\tLoss: 45723.00391\tPPL: 5.85529\tbleu: 25.52325\tLR: 0.00030000\t*\n", "Steps: 67000\tLoss: 45728.43359\tPPL: 5.85652\tbleu: 25.41103\tLR: 0.00030000\t\n", "Steps: 68000\tLoss: 45593.50000\tPPL: 5.82605\tbleu: 25.72215\tLR: 0.00030000\t*\n", "Steps: 69000\tLoss: 45686.98828\tPPL: 5.84715\tbleu: 25.48189\tLR: 0.00030000\t\n", "Steps: 70000\tLoss: 45353.02734\tPPL: 5.77215\tbleu: 25.65070\tLR: 0.00030000\t*\n", "Steps: 71000\tLoss: 45487.21094\tPPL: 5.80217\tbleu: 25.97463\tLR: 0.00030000\t\n", "Steps: 72000\tLoss: 45251.19141\tPPL: 5.74948\tbleu: 25.86669\tLR: 0.00030000\t*\n", "Steps: 73000\tLoss: 45370.07812\tPPL: 5.77596\tbleu: 25.79751\tLR: 0.00030000\t\n", "Steps: 74000\tLoss: 45016.45312\tPPL: 5.69754\tbleu: 25.85114\tLR: 0.00030000\t*\n", "Steps: 75000\tLoss: 45197.41406\tPPL: 5.73754\tbleu: 25.74771\tLR: 0.00030000\t\n", "Steps: 76000\tLoss: 45193.39844\tPPL: 5.73665\tbleu: 26.03340\tLR: 0.00030000\t\n", "Steps: 77000\tLoss: 45037.28516\tPPL: 5.70213\tbleu: 25.85779\tLR: 0.00030000\t\n", "Steps: 78000\tLoss: 44911.22656\tPPL: 5.67442\tbleu: 26.22149\tLR: 0.00030000\t*\n", "Steps: 79000\tLoss: 44888.43750\tPPL: 5.66942\tbleu: 26.08215\tLR: 0.00030000\t*\n", "Steps: 80000\tLoss: 44836.57031\tPPL: 5.65807\tbleu: 26.61760\tLR: 0.00030000\t*\n", "Steps: 81000\tLoss: 44817.87891\tPPL: 5.65398\tbleu: 26.33948\tLR: 0.00030000\t*\n", "Steps: 82000\tLoss: 44657.02344\tPPL: 5.61893\tbleu: 26.19229\tLR: 0.00030000\t*\n", "Steps: 83000\tLoss: 44615.28516\tPPL: 5.60988\tbleu: 26.20216\tLR: 0.00030000\t*\n", "Steps: 84000\tLoss: 44699.71875\tPPL: 5.62822\tbleu: 26.38474\tLR: 0.00030000\t\n", "Steps: 85000\tLoss: 44685.17188\tPPL: 5.62505\tbleu: 26.44543\tLR: 0.00030000\t\n", "Steps: 86000\tLoss: 44461.53906\tPPL: 5.57664\tbleu: 26.43159\tLR: 0.00030000\t*\n", "Steps: 87000\tLoss: 44433.78516\tPPL: 5.57066\tbleu: 26.34416\tLR: 0.00030000\t*\n", "Steps: 88000\tLoss: 44352.40234\tPPL: 5.55316\tbleu: 26.65106\tLR: 0.00030000\t*\n", "Steps: 89000\tLoss: 44379.56250\tPPL: 5.55899\tbleu: 26.58934\tLR: 0.00030000\t\n", "Steps: 90000\tLoss: 44311.92188\tPPL: 5.54448\tbleu: 26.40650\tLR: 0.00030000\t*\n", "Steps: 91000\tLoss: 44121.04297\tPPL: 5.50372\tbleu: 26.42063\tLR: 0.00030000\t*\n", "Steps: 92000\tLoss: 44016.07812\tPPL: 5.48144\tbleu: 26.49163\tLR: 0.00030000\t*\n", "Steps: 93000\tLoss: 44160.51172\tPPL: 5.51213\tbleu: 26.28457\tLR: 0.00030000\t\n", "Steps: 94000\tLoss: 44174.82031\tPPL: 5.51517\tbleu: 26.71014\tLR: 0.00030000\t\n", "Steps: 95000\tLoss: 44108.21875\tPPL: 5.50100\tbleu: 26.78466\tLR: 0.00030000\t\n", "Steps: 96000\tLoss: 44136.95703\tPPL: 5.50711\tbleu: 26.75720\tLR: 0.00030000\t\n", "Steps: 97000\tLoss: 44190.66406\tPPL: 5.51855\tbleu: 26.60570\tLR: 0.00030000\t\n", "Steps: 98000\tLoss: 44055.97656\tPPL: 5.48990\tbleu: 26.70095\tLR: 0.00021000\t\n", "Steps: 99000\tLoss: 43855.50781\tPPL: 5.44752\tbleu: 26.74119\tLR: 0.00021000\t*\n", "Steps: 100000\tLoss: 43759.71875\tPPL: 5.42739\tbleu: 26.76101\tLR: 0.00021000\t*\n", "Steps: 101000\tLoss: 43524.26562\tPPL: 5.37822\tbleu: 27.06654\tLR: 0.00021000\t*\n", "Steps: 102000\tLoss: 43461.83984\tPPL: 5.36526\tbleu: 26.84225\tLR: 0.00021000\t*\n", "Steps: 103000\tLoss: 43507.42188\tPPL: 5.37472\tbleu: 26.87755\tLR: 0.00021000\t\n", "Steps: 104000\tLoss: 43480.12500\tPPL: 5.36905\tbleu: 27.05003\tLR: 0.00021000\t\n", "Steps: 105000\tLoss: 43450.03125\tPPL: 5.36281\tbleu: 27.10161\tLR: 0.00021000\t*\n", "Steps: 106000\tLoss: 43226.91406\tPPL: 5.31676\tbleu: 27.13303\tLR: 0.00021000\t*\n", "Steps: 107000\tLoss: 43419.98828\tPPL: 5.35658\tbleu: 26.94353\tLR: 0.00021000\t\n", "Steps: 108000\tLoss: 43152.14453\tPPL: 5.30141\tbleu: 26.96297\tLR: 0.00021000\t*\n", "Steps: 109000\tLoss: 43038.91797\tPPL: 5.27826\tbleu: 27.10030\tLR: 0.00021000\t*\n", "Steps: 110000\tLoss: 43166.06250\tPPL: 5.30427\tbleu: 26.88897\tLR: 0.00021000\t\n", "Steps: 111000\tLoss: 43173.05859\tPPL: 5.30570\tbleu: 27.35719\tLR: 0.00021000\t\n", "Steps: 112000\tLoss: 43152.41406\tPPL: 5.30147\tbleu: 27.28979\tLR: 0.00021000\t\n", "Steps: 113000\tLoss: 43082.43359\tPPL: 5.28715\tbleu: 27.06896\tLR: 0.00021000\t\n", "Steps: 114000\tLoss: 42973.22656\tPPL: 5.26488\tbleu: 27.25405\tLR: 0.00021000\t*\n", "Steps: 115000\tLoss: 43193.89062\tPPL: 5.30997\tbleu: 27.31384\tLR: 0.00021000\t\n", "Steps: 116000\tLoss: 43012.96094\tPPL: 5.27297\tbleu: 27.07664\tLR: 0.00021000\t\n", "Steps: 117000\tLoss: 43166.02344\tPPL: 5.30426\tbleu: 26.94001\tLR: 0.00021000\t\n", "Steps: 118000\tLoss: 42976.40234\tPPL: 5.26552\tbleu: 27.34469\tLR: 0.00021000\t\n", "Steps: 119000\tLoss: 42962.85156\tPPL: 5.26277\tbleu: 27.34249\tLR: 0.00021000\t*\n", "Steps: 120000\tLoss: 42965.55469\tPPL: 5.26332\tbleu: 27.48371\tLR: 0.00021000\t\n", "Steps: 121000\tLoss: 43036.55469\tPPL: 5.27778\tbleu: 27.39383\tLR: 0.00021000\t\n", "Steps: 122000\tLoss: 42915.90234\tPPL: 5.25322\tbleu: 27.24763\tLR: 0.00021000\t*\n", "Steps: 123000\tLoss: 42875.60156\tPPL: 5.24505\tbleu: 27.06446\tLR: 0.00021000\t*\n", "Steps: 124000\tLoss: 42820.81641\tPPL: 5.23395\tbleu: 27.38629\tLR: 0.00021000\t*\n", "Steps: 125000\tLoss: 42774.98047\tPPL: 5.22469\tbleu: 27.50818\tLR: 0.00021000\t*\n", "Steps: 126000\tLoss: 42800.59375\tPPL: 5.22986\tbleu: 27.47181\tLR: 0.00021000\t\n", "Steps: 127000\tLoss: 42714.22266\tPPL: 5.21243\tbleu: 27.34994\tLR: 0.00021000\t*\n", "Steps: 128000\tLoss: 42705.05469\tPPL: 5.21058\tbleu: 27.38320\tLR: 0.00021000\t*\n", "Steps: 129000\tLoss: 42690.07812\tPPL: 5.20757\tbleu: 27.60327\tLR: 0.00021000\t*\n", "Steps: 130000\tLoss: 42592.36328\tPPL: 5.18794\tbleu: 27.51179\tLR: 0.00021000\t*\n", "Steps: 131000\tLoss: 42733.67188\tPPL: 5.21635\tbleu: 27.58280\tLR: 0.00021000\t\n", "Steps: 132000\tLoss: 42710.58984\tPPL: 5.21170\tbleu: 27.70831\tLR: 0.00021000\t\n", "Steps: 133000\tLoss: 42722.13672\tPPL: 5.21403\tbleu: 27.60978\tLR: 0.00021000\t\n", "Steps: 134000\tLoss: 42728.06250\tPPL: 5.21522\tbleu: 27.44487\tLR: 0.00021000\t\n", "Steps: 135000\tLoss: 42533.46875\tPPL: 5.17614\tbleu: 27.61477\tLR: 0.00021000\t*\n", "Steps: 136000\tLoss: 42634.89453\tPPL: 5.19647\tbleu: 27.49827\tLR: 0.00021000\t\n", "Steps: 137000\tLoss: 42364.22656\tPPL: 5.14239\tbleu: 27.59801\tLR: 0.00021000\t*\n", "Steps: 138000\tLoss: 42661.87109\tPPL: 5.20189\tbleu: 27.74686\tLR: 0.00021000\t\n", "Steps: 139000\tLoss: 42599.14062\tPPL: 5.18930\tbleu: 27.71583\tLR: 0.00021000\t\n", "Steps: 140000\tLoss: 42480.37891\tPPL: 5.16553\tbleu: 27.86349\tLR: 0.00021000\t\n", "Steps: 141000\tLoss: 42413.26172\tPPL: 5.15215\tbleu: 27.57116\tLR: 0.00021000\t\n", "Steps: 142000\tLoss: 42567.73438\tPPL: 5.18300\tbleu: 27.57791\tLR: 0.00021000\t\n", "Steps: 143000\tLoss: 42447.76172\tPPL: 5.15902\tbleu: 27.62842\tLR: 0.00014700\t\n", "Steps: 144000\tLoss: 42333.41016\tPPL: 5.13627\tbleu: 27.68049\tLR: 0.00014700\t*\n", "Steps: 145000\tLoss: 42215.83984\tPPL: 5.11298\tbleu: 27.95219\tLR: 0.00014700\t*\n", "Steps: 146000\tLoss: 42150.88281\tPPL: 5.10016\tbleu: 28.04493\tLR: 0.00014700\t*\n", "Steps: 147000\tLoss: 42141.43750\tPPL: 5.09830\tbleu: 27.79338\tLR: 0.00014700\t*\n", "Steps: 148000\tLoss: 42049.10156\tPPL: 5.08013\tbleu: 27.83603\tLR: 0.00014700\t*\n", "Steps: 149000\tLoss: 42138.02734\tPPL: 5.09762\tbleu: 27.44726\tLR: 0.00014700\t\n", "Steps: 150000\tLoss: 42191.13672\tPPL: 5.10810\tbleu: 28.15070\tLR: 0.00014700\t\n", "Steps: 151000\tLoss: 42144.62500\tPPL: 5.09892\tbleu: 27.59791\tLR: 0.00014700\t\n", "Steps: 152000\tLoss: 41985.57422\tPPL: 5.06767\tbleu: 28.09297\tLR: 0.00014700\t*\n", "Steps: 153000\tLoss: 42091.99609\tPPL: 5.08856\tbleu: 27.98983\tLR: 0.00014700\t\n", "Steps: 154000\tLoss: 41904.02344\tPPL: 5.05172\tbleu: 27.98759\tLR: 0.00014700\t*\n", "Steps: 155000\tLoss: 41940.17969\tPPL: 5.05879\tbleu: 28.26162\tLR: 0.00014700\t\n", "Steps: 156000\tLoss: 41975.33203\tPPL: 5.06567\tbleu: 27.65920\tLR: 0.00014700\t\n", "Steps: 157000\tLoss: 41976.64453\tPPL: 5.06592\tbleu: 27.98073\tLR: 0.00014700\t\n", "Steps: 158000\tLoss: 41841.91797\tPPL: 5.03961\tbleu: 28.03736\tLR: 0.00014700\t*\n", "Steps: 159000\tLoss: 41788.97266\tPPL: 5.02931\tbleu: 28.06437\tLR: 0.00014700\t*\n", "Steps: 160000\tLoss: 41868.51953\tPPL: 5.04480\tbleu: 28.45676\tLR: 0.00014700\t\n", "Steps: 161000\tLoss: 41991.68359\tPPL: 5.06887\tbleu: 28.03911\tLR: 0.00014700\t\n", "Steps: 162000\tLoss: 41930.81641\tPPL: 5.05696\tbleu: 28.29204\tLR: 0.00014700\t\n", "Steps: 163000\tLoss: 41978.94531\tPPL: 5.06637\tbleu: 27.95565\tLR: 0.00014700\t\n", "Steps: 164000\tLoss: 41888.63672\tPPL: 5.04872\tbleu: 28.18490\tLR: 0.00014700\t\n", "Steps: 165000\tLoss: 41790.93359\tPPL: 5.02969\tbleu: 28.08983\tLR: 0.00010290\t\n", "Steps: 166000\tLoss: 41756.03516\tPPL: 5.02291\tbleu: 27.98896\tLR: 0.00010290\t*\n", "Steps: 167000\tLoss: 41727.39062\tPPL: 5.01735\tbleu: 28.11847\tLR: 0.00010290\t*\n", "Steps: 168000\tLoss: 41700.36719\tPPL: 5.01211\tbleu: 28.52862\tLR: 0.00010290\t*\n", "Steps: 169000\tLoss: 41608.42969\tPPL: 4.99433\tbleu: 28.35947\tLR: 0.00010290\t*\n", "Steps: 170000\tLoss: 41728.55078\tPPL: 5.01758\tbleu: 28.21108\tLR: 0.00010290\t\n", "Steps: 171000\tLoss: 41613.19531\tPPL: 4.99525\tbleu: 28.29080\tLR: 0.00010290\t\n", "Steps: 172000\tLoss: 41608.09766\tPPL: 4.99427\tbleu: 28.29089\tLR: 0.00010290\t*\n", "Steps: 173000\tLoss: 41614.49609\tPPL: 4.99550\tbleu: 28.07141\tLR: 0.00010290\t\n", "Steps: 174000\tLoss: 41609.60938\tPPL: 4.99456\tbleu: 28.34092\tLR: 0.00010290\t\n", "Steps: 175000\tLoss: 41582.91406\tPPL: 4.98941\tbleu: 28.28975\tLR: 0.00010290\t*\n", "Steps: 176000\tLoss: 41521.31641\tPPL: 4.97754\tbleu: 28.11397\tLR: 0.00010290\t*\n", "Steps: 177000\tLoss: 41566.69531\tPPL: 4.98628\tbleu: 28.35377\tLR: 0.00010290\t\n", "Steps: 178000\tLoss: 41704.16016\tPPL: 5.01285\tbleu: 28.19767\tLR: 0.00010290\t\n", "Steps: 179000\tLoss: 41547.81250\tPPL: 4.98264\tbleu: 28.32318\tLR: 0.00010290\t\n", "Steps: 180000\tLoss: 41508.99609\tPPL: 4.97517\tbleu: 28.48310\tLR: 0.00010290\t*\n", "Steps: 181000\tLoss: 41552.51562\tPPL: 4.98355\tbleu: 28.36160\tLR: 0.00010290\t\n", "Steps: 182000\tLoss: 41566.25000\tPPL: 4.98620\tbleu: 28.09705\tLR: 0.00010290\t\n", "Steps: 183000\tLoss: 41505.93750\tPPL: 4.97459\tbleu: 28.27728\tLR: 0.00010290\t*\n", "Steps: 184000\tLoss: 41490.07031\tPPL: 4.97154\tbleu: 28.53747\tLR: 0.00010290\t*\n", "Steps: 185000\tLoss: 41533.00781\tPPL: 4.97979\tbleu: 28.26647\tLR: 0.00010290\t\n", "Steps: 186000\tLoss: 41461.71875\tPPL: 4.96609\tbleu: 28.37255\tLR: 0.00010290\t*\n", "Steps: 187000\tLoss: 41488.83594\tPPL: 4.97130\tbleu: 28.40811\tLR: 0.00010290\t\n", "Steps: 188000\tLoss: 41539.26953\tPPL: 4.98100\tbleu: 28.63279\tLR: 0.00010290\t\n", "Steps: 189000\tLoss: 41493.22656\tPPL: 4.97214\tbleu: 28.26740\tLR: 0.00010290\t\n", "Steps: 190000\tLoss: 41425.53125\tPPL: 4.95915\tbleu: 28.25106\tLR: 0.00010290\t*\n", "Steps: 191000\tLoss: 41397.67969\tPPL: 4.95381\tbleu: 28.54351\tLR: 0.00010290\t*\n", "Steps: 192000\tLoss: 41394.26562\tPPL: 4.95316\tbleu: 28.16282\tLR: 0.00010290\t*\n", "Steps: 193000\tLoss: 41451.85547\tPPL: 4.96420\tbleu: 28.33910\tLR: 0.00010290\t\n", "Steps: 194000\tLoss: 41329.26953\tPPL: 4.94073\tbleu: 28.24327\tLR: 0.00010290\t*\n", "Steps: 195000\tLoss: 41347.09766\tPPL: 4.94414\tbleu: 28.25469\tLR: 0.00010290\t\n", "Steps: 196000\tLoss: 41405.91406\tPPL: 4.95539\tbleu: 28.32200\tLR: 0.00010290\t\n", "Steps: 197000\tLoss: 41373.31641\tPPL: 4.94915\tbleu: 28.31384\tLR: 0.00010290\t\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "colab_type": "code", "id": "66WhRE9lIhoD", "outputId": "0ad61ac8-4b76-447d-d373-90eae3a84897", "colab": { "base_uri": "https://localhost:8080/", "height": 68 } }, "source": [ "# Test our model\n", "! cd joeynmt; python3 -m joeynmt test \"$gdrive_path/models/${src}${tgt}_transformer/config.yaml\"\n" ], "execution_count": 18, "outputs": [ { "output_type": "stream", "text": [ "2020-04-10 22:01:59,541 Hello! This is Joey-NMT.\n", "2020-04-10 22:02:30,804 dev bleu: 28.54 [Beam search decoding with beam size = 5 and alpha = 1.0]\n", "2020-04-10 22:03:11,353 test bleu: 33.68 [Beam search decoding with beam size = 5 and alpha = 1.0]\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "GMM9isXuGu-s", "colab_type": "code", "colab": {} }, "source": [ "" ], "execution_count": 0, "outputs": [] } ] }